2020-07-17 14:12:10 +02:00
|
|
|
/* PipeWire
|
|
|
|
|
*
|
2021-02-10 13:11:00 +02:00
|
|
|
* Copyright © 2016 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
|
* Copyright © 2019 Red Hat Inc.
|
2020-07-17 14:12:10 +02:00
|
|
|
*
|
2021-02-10 13:11:00 +02:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2020-07-17 14:12:10 +02:00
|
|
|
*
|
2021-02-10 13:11:00 +02:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2020-07-17 14:12:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/support/dbus.h>
|
|
|
|
|
|
|
|
|
|
#include "pipewire/context.h"
|
|
|
|
|
#include "pipewire/impl-client.h"
|
|
|
|
|
#include "pipewire/log.h"
|
|
|
|
|
#include "pipewire/module.h"
|
|
|
|
|
#include "pipewire/utils.h"
|
|
|
|
|
#include "pipewire/private.h"
|
|
|
|
|
|
|
|
|
|
#define NAME "portal"
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
const char *str;
|
|
|
|
|
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 ((str = pw_properties_get(props, PW_KEY_SEC_PID)) == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pid = atoi(str);
|
|
|
|
|
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(NAME" %p: portal managed client %p added", impl, client);
|
|
|
|
|
|
|
|
|
|
/* portal makes this connection and will change the permissions before
|
|
|
|
|
* handing this connection to the client */
|
2020-07-30 16:26:29 +02:00
|
|
|
permissions[0] = PW_PERMISSION_INIT(PW_ID_ANY, PW_PERM_ALL);
|
2020-07-17 14:12:10 +02:00
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
spa_dbus_connection_destroy(impl->conn);
|
|
|
|
|
|
|
|
|
|
if (impl->properties)
|
|
|
|
|
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;
|
|
|
|
|
DBusMessage *m;
|
|
|
|
|
DBusError error;
|
|
|
|
|
uint32_t portal_pid = 0;
|
|
|
|
|
|
|
|
|
|
m = dbus_pending_call_steal_reply(pending);
|
|
|
|
|
dbus_pending_call_unref(pending);
|
|
|
|
|
impl->portal_pid_pending = NULL;
|
|
|
|
|
|
|
|
|
|
if (!m) {
|
|
|
|
|
pw_log_error("Failed to receive portal pid");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-14 17:11:42 +01:00
|
|
|
if (dbus_message_is_error(m, DBUS_ERROR_NAME_HAS_NO_OWNER)) {
|
|
|
|
|
pw_log_info("Portal is not running");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-11-29 16:51:33 +01:00
|
|
|
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);
|
2021-01-14 15:07:42 +01:00
|
|
|
pw_log_warn("Failed to receive portal pid: %s: %s",
|
2020-11-29 16:51:33 +01:00
|
|
|
dbus_message_get_error_name(m), message);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-07-17 14:12:10 +02:00
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
dbus_message_get_args(m, &error, DBUS_TYPE_UINT32, &portal_pid,
|
|
|
|
|
DBUS_TYPE_INVALID);
|
|
|
|
|
dbus_message_unref(m);
|
|
|
|
|
|
|
|
|
|
if (dbus_error_is_set(&error)) {
|
|
|
|
|
impl->portal_pid = 0;
|
2020-11-09 16:50:47 +01:00
|
|
|
pw_log_warn("Could not get portal pid: %s", error.message);
|
|
|
|
|
dbus_error_free(&error);
|
|
|
|
|
} else {
|
2020-07-17 14:12:10 +02:00
|
|
|
pw_log_info("Got portal pid %d", portal_pid);
|
|
|
|
|
impl->portal_pid = portal_pid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void update_portal_pid(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
DBusMessage *m;
|
|
|
|
|
const char *name;
|
|
|
|
|
DBusPendingCall *pending;
|
|
|
|
|
|
|
|
|
|
impl->portal_pid = 0;
|
|
|
|
|
|
|
|
|
|
m = dbus_message_new_method_call("org.freedesktop.DBus",
|
|
|
|
|
"/",
|
|
|
|
|
"org.freedesktop.DBus",
|
|
|
|
|
"GetConnectionUnixProcessID");
|
|
|
|
|
|
|
|
|
|
name = "org.freedesktop.portal.Desktop";
|
|
|
|
|
dbus_message_append_args(m,
|
|
|
|
|
DBUS_TYPE_STRING, &name,
|
|
|
|
|
DBUS_TYPE_INVALID);
|
|
|
|
|
|
|
|
|
|
dbus_connection_send_with_reply(impl->bus, m, &pending, -1);
|
|
|
|
|
dbus_pending_call_set_notify(pending, on_portal_pid_received, impl, NULL);
|
|
|
|
|
if (impl->portal_pid_pending != NULL) {
|
|
|
|
|
dbus_pending_call_cancel(impl->portal_pid_pending);
|
|
|
|
|
dbus_pending_call_unref(impl->portal_pid_pending);
|
|
|
|
|
}
|
|
|
|
|
impl->portal_pid_pending = pending;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 (strcmp(name, "org.freedesktop.portal.Desktop") != 0)
|
|
|
|
|
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
|
|
|
|
|
|
|
|
|
|
if (strcmp(new_owner, "") == 0) {
|
|
|
|
|
impl->portal_pid = 0;
|
|
|
|
|
if (impl->portal_pid_pending != NULL) {
|
|
|
|
|
dbus_pending_call_cancel(impl->portal_pid_pending);
|
|
|
|
|
dbus_pending_call_unref(impl->portal_pid_pending);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
update_portal_pid(impl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DBUS_HANDLER_RESULT_HANDLED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int init_dbus_connection(struct impl *impl)
|
|
|
|
|
{
|
|
|
|
|
DBusError error;
|
|
|
|
|
|
|
|
|
|
impl->bus = spa_dbus_connection_get(impl->conn);
|
2021-03-11 15:18:28 +01:00
|
|
|
if (impl->bus == NULL)
|
|
|
|
|
return -EIO;
|
2020-07-17 14:12:10 +02:00
|
|
|
|
|
|
|
|
dbus_error_init(&error);
|
|
|
|
|
|
|
|
|
|
dbus_bus_add_match(impl->bus,
|
|
|
|
|
"type='signal',\
|
|
|
|
|
sender='org.freedesktop.DBus',\
|
|
|
|
|
interface='org.freedesktop.DBus',\
|
|
|
|
|
member='NameOwnerChanged'",
|
|
|
|
|
&error);
|
|
|
|
|
if (dbus_error_is_set(&error)) {
|
|
|
|
|
pw_log_error("Failed to add name owner changed listener: %s",
|
|
|
|
|
error.message);
|
|
|
|
|
dbus_error_free(&error);
|
2021-03-11 15:18:28 +01:00
|
|
|
return -EIO;
|
2020-07-17 14:12:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2021-03-11 15:18:28 +01:00
|
|
|
int res;
|
2020-07-17 14:12:10 +02:00
|
|
|
|
|
|
|
|
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);
|
2021-03-11 15:18:28 +01:00
|
|
|
if (impl->conn == NULL) {
|
|
|
|
|
res = -errno;
|
2020-07-17 14:12:10 +02:00
|
|
|
goto error;
|
2021-03-11 15:18:28 +01:00
|
|
|
}
|
2020-07-17 14:12:10 +02:00
|
|
|
|
2021-03-11 15:18:28 +01:00
|
|
|
if ((res = init_dbus_connection(impl)) < 0)
|
2020-07-17 14:12:10 +02:00
|
|
|
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);
|
2021-03-11 15:18:28 +01:00
|
|
|
pw_log_error("Failed to connect to system bus: %s", spa_strerror(res));
|
|
|
|
|
return res;
|
2020-07-17 14:12:10 +02:00
|
|
|
}
|