4 This file is part of PulseAudio.
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
33 #include <X11/Xatom.h>
35 #include <pulse/util.h>
36 #include <pulse/xmalloc.h>
38 #include <pulsecore/module.h>
39 #include <pulsecore/sink.h>
40 #include <pulsecore/core-scache.h>
41 #include <pulsecore/modargs.h>
42 #include <pulsecore/namereg.h>
43 #include <pulsecore/log.h>
44 #include <pulsecore/x11wrap.h>
45 #include <pulsecore/core-util.h>
46 #include <pulsecore/native-common.h>
47 #include <pulsecore/authkey-prop.h>
48 #include <pulsecore/authkey.h>
49 #include <pulsecore/x11prop.h>
50 #include <pulsecore/strlist.h>
51 #include <pulsecore/props.h>
53 #include "module-x11-publish-symdef.h"
55 PA_MODULE_AUTHOR("Lennart Poettering")
56 PA_MODULE_DESCRIPTION("X11 Credential Publisher")
57 PA_MODULE_VERSION(PACKAGE_VERSION
)
58 PA_MODULE_USAGE("display=<X11 display>")
60 static const char* const valid_modargs
[] = {
70 pa_x11_wrapper
*x11_wrapper
;
72 uint8_t auth_cookie
[PA_NATIVE_COOKIE_LENGTH
];
73 int auth_cookie_in_property
;
76 static int load_key(struct userdata
*u
, const char*fn
) {
79 u
->auth_cookie_in_property
= 0;
81 if (!fn
&& pa_authkey_prop_get(u
->core
, PA_NATIVE_COOKIE_PROPERTY_NAME
, u
->auth_cookie
, sizeof(u
->auth_cookie
)) >= 0) {
82 pa_log_debug(__FILE__
": using already loaded auth cookie.");
83 pa_authkey_prop_ref(u
->core
, PA_NATIVE_COOKIE_PROPERTY_NAME
);
84 u
->auth_cookie_in_property
= 1;
89 fn
= PA_NATIVE_COOKIE_FILE
;
91 if (pa_authkey_load_auto(fn
, u
->auth_cookie
, sizeof(u
->auth_cookie
)) < 0)
94 pa_log_debug(__FILE__
": loading cookie from disk.");
96 if (pa_authkey_prop_put(u
->core
, PA_NATIVE_COOKIE_PROPERTY_NAME
, u
->auth_cookie
, sizeof(u
->auth_cookie
)) >= 0)
97 u
->auth_cookie_in_property
= 1;
102 int pa__init(pa_core
*c
, pa_module
*m
) {
104 pa_modargs
*ma
= NULL
;
105 char hn
[256], un
[128];
106 char hx
[PA_NATIVE_COOKIE_LENGTH
*2+1];
111 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
112 pa_log(__FILE__
": failed to parse module arguments");
116 m
->userdata
= u
= pa_xmalloc(sizeof(struct userdata
));
119 u
->auth_cookie_in_property
= 0;
121 if (load_key(u
, pa_modargs_get_value(ma
, "cookie", NULL
)) < 0)
124 if (!(u
->x11_wrapper
= pa_x11_wrapper_get(c
, pa_modargs_get_value(ma
, "display", NULL
))))
127 if (!(l
= pa_property_get(c
, PA_NATIVE_SERVER_PROPERTY_NAME
)))
130 s
= pa_strlist_tostring(l
);
131 pa_x11_set_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SERVER", s
);
134 if (!pa_get_fqdn(hn
, sizeof(hn
)) || !pa_get_user_name(un
, sizeof(un
)))
137 u
->id
= pa_sprintf_malloc("%s@%s/%u", un
, hn
, (unsigned) getpid());
138 pa_x11_set_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_ID", u
->id
);
140 if ((t
= pa_modargs_get_value(ma
, "source", NULL
)))
141 pa_x11_set_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SOURCE", t
);
143 if ((t
= pa_modargs_get_value(ma
, "sink", NULL
)))
144 pa_x11_set_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SINK", t
);
146 pa_x11_set_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_COOKIE", pa_hexstr(u
->auth_cookie
, sizeof(u
->auth_cookie
), hx
, sizeof(hx
)));
159 void pa__done(pa_core
*c
, pa_module
*m
) {
163 if (!(u
= m
->userdata
))
166 if (u
->x11_wrapper
) {
169 /* Yes, here is a race condition */
170 if (!pa_x11_get_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_ID", t
, sizeof(t
)) || strcmp(t
, u
->id
))
171 pa_log_warn(__FILE__
": PulseAudio information vanished from X11!");
173 pa_x11_del_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_ID");
174 pa_x11_del_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SERVER");
175 pa_x11_del_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SINK");
176 pa_x11_del_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_SOURCE");
177 pa_x11_del_prop(pa_x11_wrapper_get_display(u
->x11_wrapper
), "POLYP_COOKIE");
178 XSync(pa_x11_wrapper_get_display(u
->x11_wrapper
), False
);
183 pa_x11_wrapper_unref(u
->x11_wrapper
);
185 if (u
->auth_cookie_in_property
)
186 pa_authkey_prop_unref(c
, PA_NATIVE_COOKIE_PROPERTY_NAME
);