2004-11-09 23:19:42 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-11-09 23:19:42 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2004-11-09 23:19:42 +00:00
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-11-09 23:19:42 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2014-11-26 14:14:51 +01:00
|
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
2004-11-09 23:19:42 +00:00
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2010-05-29 19:33:54 +01:00
|
|
|
#include <xcb/xcb.h>
|
2004-11-09 23:19:42 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2011-08-10 10:30:15 +02:00
|
|
|
#include <pulsecore/i18n.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/x11prop.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2004-11-09 23:19:42 +00:00
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "client-conf-x11.h"
|
|
|
|
|
|
2014-03-19 12:19:07 +02:00
|
|
|
int pa_client_conf_from_x11(pa_client_conf *c) {
|
|
|
|
|
const char *dname;
|
2010-05-29 19:33:54 +01:00
|
|
|
xcb_connection_t *xcb = NULL;
|
2010-09-18 11:12:56 +01:00
|
|
|
int ret = -1, screen = 0;
|
2004-11-09 23:19:42 +00:00
|
|
|
char t[1024];
|
2004-11-11 21:18:33 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
|
2019-06-22 14:33:59 +02:00
|
|
|
/* Local connections will have configuration and X root window
|
|
|
|
|
* properties match 1:1, these paths are only strictly necessary
|
|
|
|
|
* for remote clients, so check for SSH_CONNECTION to make sure
|
|
|
|
|
* this is a remote session with X forwarding.
|
|
|
|
|
*/
|
|
|
|
|
if (!getenv("SSH_CONNECTION"))
|
|
|
|
|
goto finish;
|
|
|
|
|
|
2014-03-19 12:19:07 +02:00
|
|
|
if (!(dname = getenv("DISPLAY")))
|
2008-05-15 23:34:41 +00:00
|
|
|
goto finish;
|
|
|
|
|
|
|
|
|
|
if (*dname == 0)
|
2004-11-11 21:18:33 +00:00
|
|
|
goto finish;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2010-05-29 19:33:54 +01:00
|
|
|
if (!(xcb = xcb_connect(dname, NULL))) {
|
|
|
|
|
pa_log(_("xcb_connect() failed"));
|
2004-11-09 23:19:42 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 10:35:38 +01:00
|
|
|
if (xcb_connection_has_error(xcb)) {
|
|
|
|
|
pa_log(_("xcb_connection_has_error() returned true"));
|
|
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SERVER", t, sizeof(t))) {
|
2013-06-27 19:28:09 +02:00
|
|
|
bool disable_autospawn = true;
|
2009-04-13 22:28:35 +02:00
|
|
|
|
2005-01-06 01:07:43 +00:00
|
|
|
pa_xfree(c->default_server);
|
|
|
|
|
c->default_server = pa_xstrdup(t);
|
2009-04-13 22:28:35 +02:00
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SESSION_ID", t, sizeof(t))) {
|
2009-04-13 22:28:35 +02:00
|
|
|
char *id;
|
|
|
|
|
|
|
|
|
|
if ((id = pa_session_id())) {
|
|
|
|
|
if (pa_streq(t, id))
|
2013-06-27 19:28:09 +02:00
|
|
|
disable_autospawn = false;
|
2009-04-13 22:28:35 +02:00
|
|
|
pa_xfree(id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (disable_autospawn)
|
2013-06-27 19:28:09 +02:00
|
|
|
c->autospawn = false;
|
2005-01-06 01:07:43 +00:00
|
|
|
}
|
2004-11-09 23:19:42 +00:00
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SINK", t, sizeof(t))) {
|
2004-11-09 23:19:42 +00:00
|
|
|
pa_xfree(c->default_sink);
|
|
|
|
|
c->default_sink = pa_xstrdup(t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_SOURCE", t, sizeof(t))) {
|
2004-11-09 23:19:42 +00:00
|
|
|
pa_xfree(c->default_source);
|
|
|
|
|
c->default_source = pa_xstrdup(t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-18 11:12:56 +01:00
|
|
|
if (pa_x11_get_prop(xcb, screen, "PULSE_COOKIE", t, sizeof(t))) {
|
2014-03-19 12:19:08 +02:00
|
|
|
if (pa_parsehex(t, c->cookie_from_x11, sizeof(c->cookie_from_x11)) != sizeof(c->cookie_from_x11)) {
|
2008-08-06 18:54:13 +02:00
|
|
|
pa_log(_("Failed to parse cookie data"));
|
2004-11-09 23:19:42 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
2014-03-19 12:19:08 +02:00
|
|
|
|
|
|
|
|
c->cookie_from_x11_valid = true;
|
2004-11-09 23:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
finish:
|
2010-05-29 19:33:54 +01:00
|
|
|
if (xcb)
|
|
|
|
|
xcb_disconnect(xcb);
|
2004-11-09 23:19:42 +00:00
|
|
|
|
|
|
|
|
return ret;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-09 23:19:42 +00:00
|
|
|
}
|