]> code.delx.au - pulseaudio/blob - src/modules/module-x11-publish.c
initialize properties for ALSA sinks/sources more elaborately, re #277
[pulseaudio] / src / modules / module-x11-publish.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2004-2006 Lennart Poettering
7
8 PulseAudio is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation; either version 2 of the License,
11 or (at your option) any later version.
12
13 PulseAudio is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with PulseAudio; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32
33 #include <X11/Xlib.h>
34 #include <X11/Xatom.h>
35
36 #include <pulse/util.h>
37 #include <pulse/xmalloc.h>
38
39 #include <pulsecore/module.h>
40 #include <pulsecore/sink.h>
41 #include <pulsecore/core-scache.h>
42 #include <pulsecore/modargs.h>
43 #include <pulsecore/namereg.h>
44 #include <pulsecore/log.h>
45 #include <pulsecore/x11wrap.h>
46 #include <pulsecore/core-util.h>
47 #include <pulsecore/native-common.h>
48 #include <pulsecore/authkey-prop.h>
49 #include <pulsecore/authkey.h>
50 #include <pulsecore/x11prop.h>
51 #include <pulsecore/strlist.h>
52 #include <pulsecore/props.h>
53
54 #include "module-x11-publish-symdef.h"
55
56 PA_MODULE_AUTHOR("Lennart Poettering");
57 PA_MODULE_DESCRIPTION("X11 Credential Publisher");
58 PA_MODULE_VERSION(PACKAGE_VERSION);
59 PA_MODULE_LOAD_ONCE(FALSE);
60 PA_MODULE_USAGE("display=<X11 display>");
61
62 static const char* const valid_modargs[] = {
63 "display",
64 "sink",
65 "source",
66 "cookie",
67 NULL
68 };
69
70 struct userdata {
71 pa_core *core;
72 pa_x11_wrapper *x11_wrapper;
73 char *id;
74 uint8_t auth_cookie[PA_NATIVE_COOKIE_LENGTH];
75 int auth_cookie_in_property;
76 };
77
78 static int load_key(struct userdata *u, const char*fn) {
79 pa_assert(u);
80
81 u->auth_cookie_in_property = 0;
82
83 if (!fn && pa_authkey_prop_get(u->core, PA_NATIVE_COOKIE_PROPERTY_NAME, u->auth_cookie, sizeof(u->auth_cookie)) >= 0) {
84 pa_log_debug("using already loaded auth cookie.");
85 pa_authkey_prop_ref(u->core, PA_NATIVE_COOKIE_PROPERTY_NAME);
86 u->auth_cookie_in_property = 1;
87 return 0;
88 }
89
90 if (!fn)
91 fn = PA_NATIVE_COOKIE_FILE;
92
93 if (pa_authkey_load_auto(fn, u->auth_cookie, sizeof(u->auth_cookie)) < 0)
94 return -1;
95
96 pa_log_debug("Loading cookie from disk.");
97
98 if (pa_authkey_prop_put(u->core, PA_NATIVE_COOKIE_PROPERTY_NAME, u->auth_cookie, sizeof(u->auth_cookie)) >= 0)
99 u->auth_cookie_in_property = 1;
100
101 return 0;
102 }
103
104 int pa__init(pa_module*m) {
105 struct userdata *u;
106 pa_modargs *ma = NULL;
107 char hn[256], un[128];
108 char hx[PA_NATIVE_COOKIE_LENGTH*2+1];
109 const char *t;
110 char *s;
111 pa_strlist *l;
112
113 pa_assert(m);
114
115 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
116 pa_log("failed to parse module arguments");
117 goto fail;
118 }
119
120 m->userdata = u = pa_xmalloc(sizeof(struct userdata));
121 u->core = m->core;
122 u->id = NULL;
123 u->auth_cookie_in_property = 0;
124
125 if (load_key(u, pa_modargs_get_value(ma, "cookie", NULL)) < 0)
126 goto fail;
127
128 if (!(u->x11_wrapper = pa_x11_wrapper_get(m->core, pa_modargs_get_value(ma, "display", NULL))))
129 goto fail;
130
131 if (!(l = pa_property_get(m->core, PA_NATIVE_SERVER_PROPERTY_NAME)))
132 goto fail;
133
134 l = pa_strlist_reverse(l);
135 s = pa_strlist_tostring(l);
136 l = pa_strlist_reverse(l);
137
138 pa_x11_set_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SERVER", s);
139 pa_xfree(s);
140
141 if (!pa_get_fqdn(hn, sizeof(hn)) || !pa_get_user_name(un, sizeof(un)))
142 goto fail;
143
144 u->id = pa_sprintf_malloc("%s@%s/%u", un, hn, (unsigned) getpid());
145 pa_x11_set_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_ID", u->id);
146
147 if ((t = pa_modargs_get_value(ma, "source", NULL)))
148 pa_x11_set_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SOURCE", t);
149
150 if ((t = pa_modargs_get_value(ma, "sink", NULL)))
151 pa_x11_set_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SINK", t);
152
153 pa_x11_set_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_COOKIE", pa_hexstr(u->auth_cookie, sizeof(u->auth_cookie), hx, sizeof(hx)));
154
155 pa_modargs_free(ma);
156 return 0;
157
158 fail:
159 if (ma)
160 pa_modargs_free(ma);
161
162 pa__done(m);
163 return -1;
164 }
165
166 void pa__done(pa_module*m) {
167 struct userdata*u;
168
169 pa_assert(m);
170
171 if (!(u = m->userdata))
172 return;
173
174 if (u->x11_wrapper) {
175 char t[256];
176
177 /* Yes, here is a race condition */
178 if (!pa_x11_get_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_ID", t, sizeof(t)) || strcmp(t, u->id))
179 pa_log_warn("PulseAudio information vanished from X11!");
180 else {
181 pa_x11_del_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_ID");
182 pa_x11_del_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SERVER");
183 pa_x11_del_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SINK");
184 pa_x11_del_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_SOURCE");
185 pa_x11_del_prop(pa_x11_wrapper_get_display(u->x11_wrapper), "PULSE_COOKIE");
186 XSync(pa_x11_wrapper_get_display(u->x11_wrapper), False);
187 }
188 }
189
190 if (u->x11_wrapper)
191 pa_x11_wrapper_unref(u->x11_wrapper);
192
193 if (u->auth_cookie_in_property)
194 pa_authkey_prop_unref(m->core, PA_NATIVE_COOKIE_PROPERTY_NAME);
195
196 pa_xfree(u->id);
197 pa_xfree(u);
198 }