/* PipeWire */ /* SPDX-FileCopyrightText: Copyright © 2016 Wim Taymans */ /* SPDX-FileCopyrightText: Copyright © 2019 Red Hat Inc. */ /* SPDX-License-Identifier: MIT */ #include #include #include #include #include #include #include #include "config.h" #include #include #include #include #include #include "pipewire/context.h" #include "pipewire/impl-client.h" #include "pipewire/log.h" #include "pipewire/module.h" #include "pipewire/utils.h" /** \page page_module_portal Portal * * The `portal` module performs access control management for clients started * inside an XDG portal. * * The module connects to the session DBus and subscribes to * `NameOwnerChanged` signals for the `org.freedesktop.portal.Desktop` name. * The PID of the DBus name owner is the portal. * * A client connection from the portal PID to PipeWire gets assigned a \ref * PW_KEY_ACCESS of `"portal"` and set to permissions ALL - it is the * responsibility of the portal to limit the permissions before passing the * connection on to the client. See \ref page_access for details on * permissions. * * Clients connecting from other PIDs are ignored by this module. * * ## Module Name * * `libpipewire-module-portal` * * ## Module Options * * There are no module-specific options. * * ## General options * * There are no general options for this module. * * ## Example configuration *\code{.unparsed} * context.modules = [ * { name = libpipewire-portal } * ] *\endcode * */ #define NAME "portal" #define PORTAL_SERVICE_NAME "org.freedesktop.portal.Desktop" PW_LOG_TOPIC_STATIC(mod_topic, "mod." NAME); #define PW_LOG_TOPIC_DEFAULT mod_topic struct impl { struct pw_context *context; struct pw_properties *properties; struct spa_dbus_connection *conn; DBusConnection *bus; struct spa_hook context_listener; struct spa_hook module_listener; DBusPendingCall *portal_pid_pending; pid_t portal_pid; }; static void context_check_access(void *data, struct pw_impl_client *client) { struct impl *impl = data; const struct pw_properties *props; struct pw_permission permissions[1]; struct spa_dict_item items[1]; pid_t pid; if (impl->portal_pid == 0) return; if ((props = pw_impl_client_get_properties(client)) == NULL) return; if (pw_properties_fetch_int32(props, PW_KEY_SEC_PID, &pid) < 0) return; if (pid != impl->portal_pid) return; items[0] = SPA_DICT_ITEM_INIT(PW_KEY_ACCESS, "portal"); pw_impl_client_update_properties(client, &SPA_DICT_INIT(items, 1)); pw_log_info("%p: portal managed client %p added", impl, client); /* portal makes this connection and will change the permissions before * handing this connection to the client */ permissions[0] = PW_PERMISSION_INIT(PW_ID_ANY, PW_PERM_ALL); pw_impl_client_update_permissions(client, 1, permissions); return; } static const struct pw_context_events context_events = { PW_VERSION_CONTEXT_EVENTS, .check_access = context_check_access, }; static void module_destroy(void *data) { struct impl *impl = data; spa_hook_remove(&impl->context_listener); spa_hook_remove(&impl->module_listener); cancel_and_unref(&impl->portal_pid_pending); if (impl->bus) dbus_connection_unref(impl->bus); spa_dbus_connection_destroy(impl->conn); pw_properties_free(impl->properties); free(impl); } static const struct pw_impl_module_events module_events = { PW_VERSION_IMPL_MODULE_EVENTS, .destroy = module_destroy, }; static void on_portal_pid_received(DBusPendingCall *pending, void *user_data) { struct impl *impl = user_data; uint32_t portal_pid = 0; spa_assert(impl->portal_pid_pending == pending); spa_autoptr(DBusMessage) m = steal_reply_and_unref(&impl->portal_pid_pending); if (!m) { pw_log_error("Failed to receive portal pid"); return; } if (dbus_message_is_error(m, DBUS_ERROR_NAME_HAS_NO_OWNER)) { pw_log_info("Portal is not running"); return; } if (dbus_message_get_type(m) == DBUS_MESSAGE_TYPE_ERROR) { const char *message = "unknown"; dbus_message_get_args(m, NULL, DBUS_TYPE_STRING, &message, DBUS_TYPE_INVALID); pw_log_warn("Failed to receive portal pid: %s: %s", dbus_message_get_error_name(m), message); return; } spa_auto(DBusError) error = DBUS_ERROR_INIT; dbus_message_get_args(m, &error, DBUS_TYPE_UINT32, &portal_pid, DBUS_TYPE_INVALID); if (dbus_error_is_set(&error)) { impl->portal_pid = 0; pw_log_warn("Could not get portal pid: %s", error.message); } else { pw_log_info("Got portal pid %d", portal_pid); impl->portal_pid = portal_pid; } } static void update_portal_pid(struct impl *impl) { impl->portal_pid = 0; cancel_and_unref(&impl->portal_pid_pending); spa_autoptr(DBusMessage) m = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "GetConnectionUnixProcessID"); if (!m) return; if (!dbus_message_append_args(m, DBUS_TYPE_STRING, &(const char *){ PORTAL_SERVICE_NAME }, DBUS_TYPE_INVALID)) return; impl->portal_pid_pending = send_with_reply(impl->bus, m, on_portal_pid_received, impl); } static DBusHandlerResult name_owner_changed_handler(DBusConnection *connection, DBusMessage *message, void *user_data) { struct impl *impl = user_data; const char *name; const char *old_owner; const char *new_owner; if (!dbus_message_is_signal(message, "org.freedesktop.DBus", "NameOwnerChanged")) return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; if (!dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &name, DBUS_TYPE_STRING, &old_owner, DBUS_TYPE_STRING, &new_owner, DBUS_TYPE_INVALID)) { pw_log_error("Failed to get OwnerChanged args"); return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; } if (!spa_streq(name, PORTAL_SERVICE_NAME)) return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; if (spa_streq(new_owner, "")) { impl->portal_pid = 0; cancel_and_unref(&impl->portal_pid_pending); } else { update_portal_pid(impl); } return DBUS_HANDLER_RESULT_HANDLED; } static int init_dbus_connection(struct impl *impl) { impl->bus = spa_dbus_connection_get(impl->conn); if (impl->bus == NULL) return -EIO; /* XXX: we don't handle dbus reconnection yet, so ref the handle instead */ dbus_connection_ref(impl->bus); spa_auto(DBusError) error = DBUS_ERROR_INIT; dbus_bus_add_match(impl->bus, "type='signal',\ sender='org.freedesktop.DBus',\ interface='org.freedesktop.DBus',\ member='NameOwnerChanged',\ arg0='" PORTAL_SERVICE_NAME "'", &error); if (dbus_error_is_set(&error)) { pw_log_error("Failed to add name owner changed listener: %s", error.message); return -EIO; } dbus_connection_add_filter(impl->bus, name_owner_changed_handler, impl, NULL); update_portal_pid(impl); return 0; } SPA_EXPORT int pipewire__module_init(struct pw_impl_module *module, const char *args) { struct pw_context *context = pw_impl_module_get_context(module); struct impl *impl; struct spa_dbus *dbus; const struct spa_support *support; uint32_t n_support; int res; PW_LOG_TOPIC_INIT(mod_topic); support = pw_context_get_support(context, &n_support); dbus = spa_support_find(support, n_support, SPA_TYPE_INTERFACE_DBus); if (dbus == NULL) return -ENOTSUP; impl = calloc(1, sizeof(struct impl)); if (impl == NULL) return -ENOMEM; pw_log_debug("module %p: new", impl); impl->context = context; impl->properties = args ? pw_properties_new_string(args) : NULL; impl->conn = spa_dbus_get_connection(dbus, SPA_DBUS_TYPE_SESSION); if (impl->conn == NULL) { res = -errno; goto error; } if ((res = init_dbus_connection(impl)) < 0) goto error; pw_context_add_listener(context, &impl->context_listener, &context_events, impl); pw_impl_module_add_listener(module, &impl->module_listener, &module_events, impl); return 0; error: free(impl); pw_log_error("Failed to connect to session bus: %s", spa_strerror(res)); return res; }