]> code.delx.au - pulseaudio/blob - src/modules/module-protocol-stub.c
* for unix sockets: remove the right parent directory on shutdown
[pulseaudio] / src / modules / module-protocol-stub.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 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.
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 Lesser 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 <string.h>
27 #include <errno.h>
28 #include <stdio.h>
29 #include <assert.h>
30 #include <unistd.h>
31 #include <limits.h>
32
33 #ifdef HAVE_SYS_SOCKET_H
34 #include <sys/socket.h>
35 #endif
36 #ifdef HAVE_ARPA_INET_H
37 #include <arpa/inet.h>
38 #endif
39 #ifdef HAVE_NETINET_IN_H
40 #include <netinet/in.h>
41 #endif
42
43 #include "../polypcore/winsock.h"
44
45 #include <polypcore/module.h>
46 #include <polypcore/socket-server.h>
47 #include <polypcore/socket-util.h>
48 #include <polypcore/util.h>
49 #include <polypcore/modargs.h>
50 #include <polypcore/log.h>
51 #include <polypcore/native-common.h>
52 #include <polypcore/xmalloc.h>
53
54 #ifdef USE_TCP_SOCKETS
55 #define SOCKET_DESCRIPTION "(TCP sockets)"
56 #define SOCKET_USAGE "port=<TCP port number> loopback=<listen on loopback device only?> listen=<address to listen on>"
57 #else
58 #define SOCKET_DESCRIPTION "(UNIX sockets)"
59 #define SOCKET_USAGE "socket=<path to UNIX socket>"
60 #endif
61
62 #if defined(USE_PROTOCOL_SIMPLE)
63 #include <polypcore/protocol-simple.h>
64 #define protocol_new pa_protocol_simple_new
65 #define protocol_free pa_protocol_simple_free
66 #define TCPWRAP_SERVICE "polypaudio-simple"
67 #define IPV4_PORT 4711
68 #define UNIX_SOCKET "simple"
69 #define MODULE_ARGUMENTS "rate", "format", "channels", "sink", "source", "playback", "record",
70 #if defined(USE_TCP_SOCKETS)
71 #include "module-simple-protocol-tcp-symdef.h"
72 #else
73 #include "module-simple-protocol-unix-symdef.h"
74 #endif
75 PA_MODULE_DESCRIPTION("Simple protocol "SOCKET_DESCRIPTION)
76 PA_MODULE_USAGE("rate=<sample rate> format=<sample format> channels=<number of channels> sink=<sink to connect to> source=<source to connect to> playback=<enable playback?> record=<enable record?> "SOCKET_USAGE)
77 #elif defined(USE_PROTOCOL_CLI)
78 #include <polypcore/protocol-cli.h>
79 #define protocol_new pa_protocol_cli_new
80 #define protocol_free pa_protocol_cli_free
81 #define TCPWRAP_SERVICE "polypaudio-cli"
82 #define IPV4_PORT 4712
83 #define UNIX_SOCKET "cli"
84 #define MODULE_ARGUMENTS
85 #ifdef USE_TCP_SOCKETS
86 #include "module-cli-protocol-tcp-symdef.h"
87 #else
88 #include "module-cli-protocol-unix-symdef.h"
89 #endif
90 PA_MODULE_DESCRIPTION("Command line interface protocol "SOCKET_DESCRIPTION)
91 PA_MODULE_USAGE(SOCKET_USAGE)
92 #elif defined(USE_PROTOCOL_HTTP)
93 #include <polypcore/protocol-http.h>
94 #define protocol_new pa_protocol_http_new
95 #define protocol_free pa_protocol_http_free
96 #define TCPWRAP_SERVICE "polypaudio-http"
97 #define IPV4_PORT 4714
98 #define UNIX_SOCKET "http"
99 #define MODULE_ARGUMENTS
100 #ifdef USE_TCP_SOCKETS
101 #include "module-http-protocol-tcp-symdef.h"
102 #else
103 #include "module-http-protocol-unix-symdef.h"
104 #endif
105 PA_MODULE_DESCRIPTION("HTTP "SOCKET_DESCRIPTION)
106 PA_MODULE_USAGE(SOCKET_USAGE)
107 #elif defined(USE_PROTOCOL_NATIVE)
108 #include <polypcore/protocol-native.h>
109 #define protocol_new pa_protocol_native_new
110 #define protocol_free pa_protocol_native_free
111 #define TCPWRAP_SERVICE "polypaudio-native"
112 #define IPV4_PORT PA_NATIVE_DEFAULT_PORT
113 #define UNIX_SOCKET PA_NATIVE_DEFAULT_UNIX_SOCKET
114 #define MODULE_ARGUMENTS_COMMON "cookie", "auth-anonymous",
115 #ifdef USE_TCP_SOCKETS
116 #include "module-native-protocol-tcp-symdef.h"
117 #else
118 #include "module-native-protocol-unix-symdef.h"
119 #endif
120
121 #if defined(SCM_CREDENTIALS) && !defined(USE_TCP_SOCKETS)
122 #define MODULE_ARGUMENTS MODULE_ARGUMENTS_COMMON "auth-group",
123 #define AUTH_USAGE "auth-group=<local group to allow access>"
124 #else
125 #define MODULE_ARGUMENTS MODULE_ARGUMENTS_COMMON
126 #define AUTH_USAGE
127 #endif
128
129 PA_MODULE_DESCRIPTION("Native protocol "SOCKET_DESCRIPTION)
130 PA_MODULE_USAGE("auth-anonymous=<don't check for cookies?> cookie=<path to cookie file> "AUTH_USAGE SOCKET_USAGE)
131 #elif defined(USE_PROTOCOL_ESOUND)
132 #include <polypcore/protocol-esound.h>
133 #include <polypcore/esound.h>
134 #define protocol_new pa_protocol_esound_new
135 #define protocol_free pa_protocol_esound_free
136 #define TCPWRAP_SERVICE "esound"
137 #define IPV4_PORT ESD_DEFAULT_PORT
138 #define UNIX_SOCKET ESD_UNIX_SOCKET_NAME
139 #define MODULE_ARGUMENTS "sink", "source", "auth-anonymous", "cookie",
140 #ifdef USE_TCP_SOCKETS
141 #include "module-esound-protocol-tcp-symdef.h"
142 #else
143 #include "module-esound-protocol-unix-symdef.h"
144 #endif
145 PA_MODULE_DESCRIPTION("ESOUND protocol "SOCKET_DESCRIPTION)
146 PA_MODULE_USAGE("sink=<sink to connect to> source=<source to connect to> auth-anonymous=<don't check for cookies?> cookie=<path to cookie file> "SOCKET_USAGE)
147 #else
148 #error "Broken build system"
149 #endif
150
151 PA_MODULE_AUTHOR("Lennart Poettering")
152 PA_MODULE_VERSION(PACKAGE_VERSION)
153
154 static const char* const valid_modargs[] = {
155 MODULE_ARGUMENTS
156 #if defined(USE_TCP_SOCKETS)
157 "port",
158 "loopback",
159 "listen",
160 #else
161 "socket",
162 #endif
163 NULL
164 };
165
166 struct userdata {
167 #if defined(USE_TCP_SOCKETS)
168 void *protocol_ipv4;
169 void *protocol_ipv6;
170 #else
171 void *protocol_unix;
172 char *socket_path;
173 #endif
174 };
175
176 int pa__init(pa_core *c, pa_module*m) {
177 pa_modargs *ma = NULL;
178 int ret = -1;
179
180 struct userdata *u = NULL;
181
182 #if defined(USE_TCP_SOCKETS)
183 pa_socket_server *s_ipv4 = NULL, *s_ipv6 = NULL;
184 int loopback = 1;
185 uint32_t port = IPV4_PORT;
186 const char *listen_on;
187 #else
188 pa_socket_server *s;
189 int r;
190 const char *v;
191 char tmp[PATH_MAX];
192 #endif
193
194 assert(c && m);
195
196 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
197 pa_log(__FILE__": Failed to parse module arguments");
198 goto finish;
199 }
200
201 u = pa_xnew0(struct userdata, 1);
202
203 #if defined(USE_TCP_SOCKETS)
204 if (pa_modargs_get_value_boolean(ma, "loopback", &loopback) < 0) {
205 pa_log(__FILE__": loopback= expects a boolean argument.");
206 goto fail;
207 }
208
209 if (pa_modargs_get_value_u32(ma, "port", &port) < 0 || port < 1 || port > 0xFFFF) {
210 pa_log(__FILE__": port= expects a numerical argument between 1 and 65535.");
211 goto fail;
212 }
213
214 listen_on = pa_modargs_get_value(ma, "listen", NULL);
215
216 if (listen_on) {
217 s_ipv6 = pa_socket_server_new_ipv6_string(c->mainloop, listen_on, port, TCPWRAP_SERVICE);
218 s_ipv4 = pa_socket_server_new_ipv4_string(c->mainloop, listen_on, port, TCPWRAP_SERVICE);
219 } else if (loopback) {
220 s_ipv6 = pa_socket_server_new_ipv6_loopback(c->mainloop, port, TCPWRAP_SERVICE);
221 s_ipv4 = pa_socket_server_new_ipv4_loopback(c->mainloop, port, TCPWRAP_SERVICE);
222 } else {
223 s_ipv6 = pa_socket_server_new_ipv6_any(c->mainloop, port, TCPWRAP_SERVICE);
224 s_ipv4 = pa_socket_server_new_ipv4_any(c->mainloop, port, TCPWRAP_SERVICE);
225 }
226
227 if (!s_ipv4 && !s_ipv6)
228 goto fail;
229
230 if (s_ipv4)
231 if (!(u->protocol_ipv4 = protocol_new(c, s_ipv4, m, ma)))
232 pa_socket_server_unref(s_ipv4);
233
234 if (s_ipv6)
235 if (!(u->protocol_ipv6 = protocol_new(c, s_ipv6, m, ma)))
236 pa_socket_server_unref(s_ipv6);
237
238 if (!u->protocol_ipv4 && !u->protocol_ipv6)
239 goto fail;
240
241 #else
242 v = pa_modargs_get_value(ma, "socket", UNIX_SOCKET);
243 pa_runtime_path(v, tmp, sizeof(tmp));
244 u->socket_path = pa_xstrdup(tmp);
245
246 if (pa_make_secure_parent_dir(tmp) < 0) {
247 pa_log(__FILE__": Failed to create secure socket directory.");
248 goto fail;
249 }
250
251 if ((r = pa_unix_socket_remove_stale(tmp)) < 0) {
252 pa_log(__FILE__": Failed to remove stale UNIX socket '%s': %s", tmp, strerror(errno));
253 goto fail;
254 }
255
256 if (r)
257 pa_log(__FILE__": Removed stale UNIX socket '%s'.", tmp);
258
259 if (!(s = pa_socket_server_new_unix(c->mainloop, tmp)))
260 goto fail;
261
262 if (!(u->protocol_unix = protocol_new(c, s, m, ma)))
263 goto fail;
264
265 #endif
266
267 m->userdata = u;
268
269 ret = 0;
270
271 finish:
272 if (ma)
273 pa_modargs_free(ma);
274
275 return ret;
276
277 fail:
278 if (u) {
279 #if defined(USE_TCP_SOCKETS)
280 if (u->protocol_ipv4)
281 protocol_free(u->protocol_ipv4);
282 if (u->protocol_ipv6)
283 protocol_free(u->protocol_ipv6);
284 #else
285 if (u->protocol_unix)
286 protocol_free(u->protocol_unix);
287
288 if (u->socket_path)
289 pa_xfree(u->socket_path);
290 #endif
291
292 pa_xfree(u);
293 } else {
294 #if defined(USE_TCP_SOCKETS)
295 if (s_ipv4)
296 pa_socket_server_unref(s_ipv4);
297 if (s_ipv6)
298 pa_socket_server_unref(s_ipv6);
299 #else
300 if (s)
301 pa_socket_server_unref(s);
302 #endif
303 }
304
305 goto finish;
306 }
307
308 void pa__done(pa_core *c, pa_module*m) {
309 struct userdata *u;
310
311 assert(c);
312 assert(m);
313
314 u = m->userdata;
315
316 #if defined(USE_TCP_SOCKETS)
317 if (u->protocol_ipv4)
318 protocol_free(u->protocol_ipv4);
319 if (u->protocol_ipv6)
320 protocol_free(u->protocol_ipv6);
321 #else
322 if (u->protocol_unix)
323 protocol_free(u->protocol_unix);
324
325 if (u->socket_path) {
326 char *p;
327
328 if ((p = pa_parent_dir(u->socket_path))) {
329 if (rmdir(p) < 0 && errno != ENOENT && errno != ENOTEMPTY)
330 pa_log(__FILE__": Failed to remove %s: %s.", u->socket_path, strerror(errno));
331
332 pa_xfree(p);
333 }
334
335 pa_xfree(u->socket_path);
336 }
337 #endif
338
339 pa_xfree(u);
340 }