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