]> code.delx.au - pulseaudio/blob - src/polypcore/protocol-esound.c
unhide padsp
[pulseaudio] / src / polypcore / protocol-esound.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 <errno.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <assert.h>
30 #include <stdlib.h>
31 #include <limits.h>
32
33 #include <polyp/sample.h>
34 #include <polyp/timeval.h>
35 #include <polyp/utf8.h>
36 #include <polyp/xmalloc.h>
37
38 #include <polypcore/esound.h>
39 #include <polypcore/memblock.h>
40 #include <polypcore/client.h>
41 #include <polypcore/sink-input.h>
42 #include <polypcore/sink.h>
43 #include <polypcore/source-output.h>
44 #include <polypcore/source.h>
45 #include <polypcore/core-scache.h>
46 #include <polypcore/sample-util.h>
47 #include <polypcore/authkey.h>
48 #include <polypcore/namereg.h>
49 #include <polypcore/log.h>
50 #include <polypcore/core-util.h>
51 #include <polypcore/core-error.h>
52
53 #include "endianmacros.h"
54
55 #include "protocol-esound.h"
56
57 /* Don't accept more connection than this */
58 #define MAX_CONNECTIONS 10
59
60 /* Kick a client if it doesn't authenticate within this time */
61 #define AUTH_TIMEOUT 5
62
63 #define DEFAULT_COOKIE_FILE ".esd_auth"
64
65 #define PLAYBACK_BUFFER_SECONDS (.25)
66 #define PLAYBACK_BUFFER_FRAGMENTS (10)
67 #define RECORD_BUFFER_SECONDS (5)
68 #define RECORD_BUFFER_FRAGMENTS (100)
69
70 #define MAX_CACHE_SAMPLE_SIZE (1024000)
71
72 #define SCACHE_PREFIX "esound."
73
74 /* This is heavily based on esound's code */
75
76 struct connection {
77 uint32_t index;
78 int dead;
79 pa_protocol_esound *protocol;
80 pa_iochannel *io;
81 pa_client *client;
82 int authorized, swap_byte_order;
83 void *write_data;
84 size_t write_data_alloc, write_data_index, write_data_length;
85 void *read_data;
86 size_t read_data_alloc, read_data_length;
87 esd_proto_t request;
88 esd_client_state_t state;
89 pa_sink_input *sink_input;
90 pa_source_output *source_output;
91 pa_memblockq *input_memblockq, *output_memblockq;
92 pa_defer_event *defer_event;
93
94 char *original_name;
95
96 struct {
97 pa_memblock *current_memblock;
98 size_t memblock_index, fragment_size;
99 } playback;
100
101 struct {
102 pa_memchunk memchunk;
103 char *name;
104 pa_sample_spec sample_spec;
105 } scache;
106
107 pa_time_event *auth_timeout_event;
108 };
109
110 struct pa_protocol_esound {
111 int public;
112 pa_module *module;
113 pa_core *core;
114 pa_socket_server *server;
115 pa_idxset *connections;
116 char *sink_name, *source_name;
117 unsigned n_player;
118 uint8_t esd_key[ESD_KEY_LEN];
119 };
120
121 typedef struct proto_handler {
122 size_t data_length;
123 int (*proc)(struct connection *c, esd_proto_t request, const void *data, size_t length);
124 const char *description;
125 } esd_proto_handler_info_t;
126
127 static void sink_input_drop_cb(pa_sink_input *i, const pa_memchunk *chunk, size_t length);
128 static int sink_input_peek_cb(pa_sink_input *i, pa_memchunk *chunk);
129 static void sink_input_kill_cb(pa_sink_input *i);
130 static pa_usec_t sink_input_get_latency_cb(pa_sink_input *i);
131 static pa_usec_t source_output_get_latency_cb(pa_source_output *o);
132
133 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk);
134 static void source_output_kill_cb(pa_source_output *o);
135
136 static int esd_proto_connect(struct connection *c, esd_proto_t request, const void *data, size_t length);
137 static int esd_proto_stream_play(struct connection *c, esd_proto_t request, const void *data, size_t length);
138 static int esd_proto_stream_record(struct connection *c, esd_proto_t request, const void *data, size_t length);
139 static int esd_proto_get_latency(struct connection *c, esd_proto_t request, const void *data, size_t length);
140 static int esd_proto_server_info(struct connection *c, esd_proto_t request, const void *data, size_t length);
141 static int esd_proto_all_info(struct connection *c, esd_proto_t request, const void *data, size_t length);
142 static int esd_proto_stream_pan(struct connection *c, esd_proto_t request, const void *data, size_t length);
143 static int esd_proto_sample_cache(struct connection *c, esd_proto_t request, const void *data, size_t length);
144 static int esd_proto_sample_free_or_play(struct connection *c, esd_proto_t request, const void *data, size_t length);
145 static int esd_proto_sample_get_id(struct connection *c, esd_proto_t request, const void *data, size_t length);
146 static int esd_proto_standby_or_resume(struct connection *c, esd_proto_t request, const void *data, size_t length);
147
148 /* the big map of protocol handler info */
149 static struct proto_handler proto_map[ESD_PROTO_MAX] = {
150 { ESD_KEY_LEN + sizeof(int), esd_proto_connect, "connect" },
151 { ESD_KEY_LEN + sizeof(int), NULL, "lock" },
152 { ESD_KEY_LEN + sizeof(int), NULL, "unlock" },
153
154 { ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_play, "stream play" },
155 { ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_record, "stream rec" },
156 { ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_record, "stream mon" },
157
158 { ESD_NAME_MAX + 3 * sizeof(int), esd_proto_sample_cache, "sample cache" }, /* 6 */
159 { sizeof(int), esd_proto_sample_free_or_play, "sample free" },
160 { sizeof(int), esd_proto_sample_free_or_play, "sample play" }, /* 8 */
161 { sizeof(int), NULL, "sample loop" },
162 { sizeof(int), NULL, "sample stop" },
163 { -1, NULL, "TODO: sample kill" },
164
165 { ESD_KEY_LEN + sizeof(int), esd_proto_standby_or_resume, "standby" }, /* NOOP! */
166 { ESD_KEY_LEN + sizeof(int), esd_proto_standby_or_resume, "resume" }, /* NOOP! */ /* 13 */
167
168 { ESD_NAME_MAX, esd_proto_sample_get_id, "sample getid" }, /* 14 */
169 { ESD_NAME_MAX + 2 * sizeof(int), NULL, "stream filter" },
170
171 { sizeof(int), esd_proto_server_info, "server info" },
172 { sizeof(int), esd_proto_all_info, "all info" },
173 { -1, NULL, "TODO: subscribe" },
174 { -1, NULL, "TODO: unsubscribe" },
175
176 { 3 * sizeof(int), esd_proto_stream_pan, "stream pan"},
177 { 3 * sizeof(int), NULL, "sample pan" },
178
179 { sizeof(int), NULL, "standby mode" },
180 { 0, esd_proto_get_latency, "get latency" }
181 };
182
183 static void connection_free(struct connection *c) {
184 assert(c);
185 pa_idxset_remove_by_data(c->protocol->connections, c, NULL);
186
187 if (c->state == ESD_STREAMING_DATA)
188 c->protocol->n_player--;
189
190 pa_client_free(c->client);
191
192 if (c->sink_input) {
193 pa_sink_input_disconnect(c->sink_input);
194 pa_sink_input_unref(c->sink_input);
195 }
196
197 if (c->source_output) {
198 pa_source_output_disconnect(c->source_output);
199 pa_source_output_unref(c->source_output);
200 }
201
202 if (c->input_memblockq)
203 pa_memblockq_free(c->input_memblockq);
204 if (c->output_memblockq)
205 pa_memblockq_free(c->output_memblockq);
206
207 if (c->playback.current_memblock)
208 pa_memblock_unref(c->playback.current_memblock);
209
210 pa_xfree(c->read_data);
211 pa_xfree(c->write_data);
212
213 if (c->io)
214 pa_iochannel_free(c->io);
215
216 if (c->defer_event)
217 c->protocol->core->mainloop->defer_free(c->defer_event);
218
219 if (c->scache.memchunk.memblock)
220 pa_memblock_unref(c->scache.memchunk.memblock);
221 pa_xfree(c->scache.name);
222
223 if (c->auth_timeout_event)
224 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
225
226 pa_xfree(c->original_name);
227 pa_xfree(c);
228 }
229
230 static void connection_write_prepare(struct connection *c, size_t length) {
231 size_t t;
232 assert(c);
233
234 t = c->write_data_length+length;
235
236 if (c->write_data_alloc < t)
237 c->write_data = pa_xrealloc(c->write_data, c->write_data_alloc = t);
238
239 assert(c->write_data);
240 }
241
242 static void connection_write(struct connection *c, const void *data, size_t length) {
243 size_t i;
244 assert(c);
245
246 assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
247 c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
248
249 connection_write_prepare(c, length);
250
251 assert(c->write_data);
252
253 i = c->write_data_length;
254 c->write_data_length += length;
255
256 memcpy((char*)c->write_data + i, data, length);
257 }
258
259 static void format_esd2native(int format, int swap_bytes, pa_sample_spec *ss) {
260 assert(ss);
261
262 ss->channels = ((format & ESD_MASK_CHAN) == ESD_STEREO) ? 2 : 1;
263 if ((format & ESD_MASK_BITS) == ESD_BITS16)
264 ss->format = swap_bytes ? PA_SAMPLE_S16RE : PA_SAMPLE_S16NE;
265 else
266 ss->format = PA_SAMPLE_U8;
267 }
268
269 static int format_native2esd(pa_sample_spec *ss) {
270 int format = 0;
271
272 format = (ss->format == PA_SAMPLE_U8) ? ESD_BITS8 : ESD_BITS16;
273 format |= (ss->channels >= 2) ? ESD_STEREO : ESD_MONO;
274
275 return format;
276 }
277
278 #define CHECK_VALIDITY(expression, string) do { \
279 if (!(expression)) { \
280 pa_log_warn(__FILE__ ": " string); \
281 return -1; \
282 } \
283 } while(0);
284
285 /*** esound commands ***/
286
287 static int esd_proto_connect(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
288 uint32_t ekey;
289 int ok;
290
291 assert(length == (ESD_KEY_LEN + sizeof(uint32_t)));
292
293 if (!c->authorized) {
294 if (memcmp(data, c->protocol->esd_key, ESD_KEY_LEN) != 0) {
295 pa_log(__FILE__": kicked client with invalid authorization key.");
296 return -1;
297 }
298
299 c->authorized = 1;
300 if (c->auth_timeout_event) {
301 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
302 c->auth_timeout_event = NULL;
303 }
304 }
305
306 data = (const char*)data + ESD_KEY_LEN;
307
308 memcpy(&ekey, data, sizeof(uint32_t));
309 if (ekey == ESD_ENDIAN_KEY)
310 c->swap_byte_order = 0;
311 else if (ekey == ESD_SWAP_ENDIAN_KEY)
312 c->swap_byte_order = 1;
313 else {
314 pa_log(__FILE__": client sent invalid endian key");
315 return -1;
316 }
317
318 ok = 1;
319 connection_write(c, &ok, sizeof(int));
320 return 0;
321 }
322
323 static int esd_proto_stream_play(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
324 char name[ESD_NAME_MAX], *utf8_name;
325 int32_t format, rate;
326 pa_sink *sink;
327 pa_sample_spec ss;
328 size_t l;
329
330 assert(c && length == (sizeof(int32_t)*2+ESD_NAME_MAX));
331
332 memcpy(&format, data, sizeof(int32_t));
333 format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
334 data = (const char*)data + sizeof(int32_t);
335
336 memcpy(&rate, data, sizeof(int32_t));
337 rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
338 data = (const char*)data + sizeof(int32_t);
339
340 ss.rate = rate;
341 format_esd2native(format, c->swap_byte_order, &ss);
342
343 CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification");
344 sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1);
345 CHECK_VALIDITY(sink, "No such sink");
346
347 strncpy(name, data, sizeof(name));
348 name[sizeof(name)-1] = 0;
349 utf8_name = pa_utf8_filter(name);
350
351 pa_client_set_name(c->client, utf8_name);
352 c->original_name = pa_xstrdup(name);
353
354 assert(!c->sink_input && !c->input_memblockq);
355
356 c->sink_input = pa_sink_input_new(sink, __FILE__, utf8_name, &ss, NULL, NULL, 0, -1);
357
358 pa_xfree(utf8_name);
359
360 CHECK_VALIDITY(c->sink_input, "Failed to create sink input.");
361
362 l = (size_t) (pa_bytes_per_second(&ss)*PLAYBACK_BUFFER_SECONDS);
363 c->input_memblockq = pa_memblockq_new(
364 0,
365 l,
366 0,
367 pa_frame_size(&ss),
368 (size_t) -1,
369 l/PLAYBACK_BUFFER_FRAGMENTS,
370 NULL,
371 c->protocol->core->memblock_stat);
372 pa_iochannel_socket_set_rcvbuf(c->io, l/PLAYBACK_BUFFER_FRAGMENTS*2);
373 c->playback.fragment_size = l/10;
374
375 c->sink_input->owner = c->protocol->module;
376 c->sink_input->client = c->client;
377 c->sink_input->peek = sink_input_peek_cb;
378 c->sink_input->drop = sink_input_drop_cb;
379 c->sink_input->kill = sink_input_kill_cb;
380 c->sink_input->get_latency = sink_input_get_latency_cb;
381 c->sink_input->userdata = c;
382
383 c->state = ESD_STREAMING_DATA;
384
385 c->protocol->n_player++;
386
387 return 0;
388 }
389
390 static int esd_proto_stream_record(struct connection *c, esd_proto_t request, const void *data, size_t length) {
391 char name[ESD_NAME_MAX], *utf8_name;
392 int32_t format, rate;
393 pa_source *source;
394 pa_sample_spec ss;
395 size_t l;
396
397 assert(c && length == (sizeof(int32_t)*2+ESD_NAME_MAX));
398
399 memcpy(&format, data, sizeof(int32_t));
400 format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
401 data = (const char*)data + sizeof(int32_t);
402
403 memcpy(&rate, data, sizeof(int32_t));
404 rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
405 data = (const char*)data + sizeof(int32_t);
406
407 ss.rate = rate;
408 format_esd2native(format, c->swap_byte_order, &ss);
409
410 CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification.");
411
412 if (request == ESD_PROTO_STREAM_MON) {
413 pa_sink* sink;
414
415 if (!(sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1))) {
416 pa_log(__FILE__": no such sink.");
417 return -1;
418 }
419
420 if (!(source = sink->monitor_source)) {
421 pa_log(__FILE__": no such monitor source.");
422 return -1;
423 }
424 } else {
425 assert(request == ESD_PROTO_STREAM_REC);
426
427 if (!(source = pa_namereg_get(c->protocol->core, c->protocol->source_name, PA_NAMEREG_SOURCE, 1))) {
428 pa_log(__FILE__": no such source.");
429 return -1;
430 }
431 }
432
433 strncpy(name, data, sizeof(name));
434 name[sizeof(name)-1] = 0;
435
436 utf8_name = pa_utf8_filter(name);
437 pa_client_set_name(c->client, utf8_name);
438 pa_xfree(utf8_name);
439
440 c->original_name = pa_xstrdup(name);
441
442 assert(!c->output_memblockq && !c->source_output);
443
444 if (!(c->source_output = pa_source_output_new(source, __FILE__, c->client->name, &ss, NULL, -1))) {
445 pa_log(__FILE__": failed to create source output");
446 return -1;
447 }
448
449 l = (size_t) (pa_bytes_per_second(&ss)*RECORD_BUFFER_SECONDS);
450 c->output_memblockq = pa_memblockq_new(
451 0,
452 l,
453 0,
454 pa_frame_size(&ss),
455 1,
456 0,
457 NULL,
458 c->protocol->core->memblock_stat);
459 pa_iochannel_socket_set_sndbuf(c->io, l/RECORD_BUFFER_FRAGMENTS*2);
460
461 c->source_output->owner = c->protocol->module;
462 c->source_output->client = c->client;
463 c->source_output->push = source_output_push_cb;
464 c->source_output->kill = source_output_kill_cb;
465 c->source_output->get_latency = source_output_get_latency_cb;
466 c->source_output->userdata = c;
467
468 c->state = ESD_STREAMING_DATA;
469
470 c->protocol->n_player++;
471
472 return 0;
473 }
474
475 static int esd_proto_get_latency(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
476 pa_sink *sink;
477 int32_t latency;
478
479 assert(c && !data && length == 0);
480
481 if (!(sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1)))
482 latency = 0;
483 else {
484 double usec = pa_sink_get_latency(sink);
485 latency = (int) ((usec*44100)/1000000);
486 }
487
488 latency = MAYBE_INT32_SWAP(c->swap_byte_order, latency);
489 connection_write(c, &latency, sizeof(int32_t));
490 return 0;
491 }
492
493 static int esd_proto_server_info(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
494 int32_t rate = 44100, format = ESD_STEREO|ESD_BITS16;
495 int32_t response;
496 pa_sink *sink;
497
498 assert(c && data && length == sizeof(int32_t));
499
500 if ((sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1))) {
501 rate = sink->sample_spec.rate;
502 format = format_native2esd(&sink->sample_spec);
503 }
504
505 connection_write_prepare(c, sizeof(int32_t) * 3);
506
507 response = 0;
508 connection_write(c, &response, sizeof(int32_t));
509 rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
510 connection_write(c, &rate, sizeof(int32_t));
511 format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
512 connection_write(c, &format, sizeof(int32_t));
513
514 return 0;
515 }
516
517 static int esd_proto_all_info(struct connection *c, esd_proto_t request, const void *data, size_t length) {
518 size_t t, k, s;
519 struct connection *conn;
520 uint32_t idx = PA_IDXSET_INVALID;
521 unsigned nsamples;
522 char terminator[sizeof(int32_t)*6+ESD_NAME_MAX];
523
524 assert(c && data && length == sizeof(int32_t));
525
526 if (esd_proto_server_info(c, request, data, length) < 0)
527 return -1;
528
529 k = sizeof(int32_t)*5+ESD_NAME_MAX;
530 s = sizeof(int32_t)*6+ESD_NAME_MAX;
531 nsamples = c->protocol->core->scache ? pa_idxset_size(c->protocol->core->scache) : 0;
532 t = s*(nsamples+1) + k*(c->protocol->n_player+1);
533
534 connection_write_prepare(c, t);
535
536 memset(terminator, 0, sizeof(terminator));
537
538 for (conn = pa_idxset_first(c->protocol->connections, &idx); conn; conn = pa_idxset_next(c->protocol->connections, &idx)) {
539 int32_t id, format = ESD_BITS16 | ESD_STEREO, rate = 44100, lvolume = ESD_VOLUME_BASE, rvolume = ESD_VOLUME_BASE;
540 char name[ESD_NAME_MAX];
541
542 if (conn->state != ESD_STREAMING_DATA)
543 continue;
544
545 assert(t >= k*2+s);
546
547 if (conn->sink_input) {
548 pa_cvolume volume = *pa_sink_input_get_volume(conn->sink_input);
549 rate = conn->sink_input->sample_spec.rate;
550 lvolume = (volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM;
551 rvolume = (volume.values[1]*ESD_VOLUME_BASE)/PA_VOLUME_NORM;
552 format = format_native2esd(&conn->sink_input->sample_spec);
553 }
554
555 /* id */
556 id = MAYBE_INT32_SWAP(c->swap_byte_order, (int32_t) (conn->index+1));
557 connection_write(c, &id, sizeof(int32_t));
558
559 /* name */
560 memset(name, 0, ESD_NAME_MAX); /* don't leak old data */
561 if (conn->original_name)
562 strncpy(name, conn->original_name, ESD_NAME_MAX);
563 else if (conn->client && conn->client->name)
564 strncpy(name, conn->client->name, ESD_NAME_MAX);
565 connection_write(c, name, ESD_NAME_MAX);
566
567 /* rate */
568 rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
569 connection_write(c, &rate, sizeof(int32_t));
570
571 /* left */
572 lvolume = MAYBE_INT32_SWAP(c->swap_byte_order, lvolume);
573 connection_write(c, &lvolume, sizeof(int32_t));
574
575 /*right*/
576 rvolume = MAYBE_INT32_SWAP(c->swap_byte_order, rvolume);
577 connection_write(c, &rvolume, sizeof(int32_t));
578
579 /*format*/
580 format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
581 connection_write(c, &format, sizeof(int32_t));
582
583 t -= k;
584 }
585
586 assert(t == s*(nsamples+1)+k);
587 t -= k;
588
589 connection_write(c, terminator, k);
590
591 if (nsamples) {
592 pa_scache_entry *ce;
593
594 idx = PA_IDXSET_INVALID;
595 for (ce = pa_idxset_first(c->protocol->core->scache, &idx); ce; ce = pa_idxset_next(c->protocol->core->scache, &idx)) {
596 int32_t id, rate, lvolume, rvolume, format, len;
597 char name[ESD_NAME_MAX];
598
599 assert(t >= s*2);
600
601 /* id */
602 id = MAYBE_INT32_SWAP(c->swap_byte_order, (int) (ce->index+1));
603 connection_write(c, &id, sizeof(int32_t));
604
605 /* name */
606 memset(name, 0, ESD_NAME_MAX); /* don't leak old data */
607 if (strncmp(ce->name, SCACHE_PREFIX, sizeof(SCACHE_PREFIX)-1) == 0)
608 strncpy(name, ce->name+sizeof(SCACHE_PREFIX)-1, ESD_NAME_MAX);
609 else
610 snprintf(name, ESD_NAME_MAX, "native.%s", ce->name);
611 connection_write(c, name, ESD_NAME_MAX);
612
613 /* rate */
614 rate = MAYBE_UINT32_SWAP(c->swap_byte_order, ce->sample_spec.rate);
615 connection_write(c, &rate, sizeof(int32_t));
616
617 /* left */
618 lvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, (ce->volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM);
619 connection_write(c, &lvolume, sizeof(int32_t));
620
621 /*right*/
622 rvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, (ce->volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM);
623 connection_write(c, &rvolume, sizeof(int32_t));
624
625 /*format*/
626 format = MAYBE_INT32_SWAP(c->swap_byte_order, format_native2esd(&ce->sample_spec));
627 connection_write(c, &format, sizeof(int32_t));
628
629 /*length*/
630 len = MAYBE_INT32_SWAP(c->swap_byte_order, (int) ce->memchunk.length);
631 connection_write(c, &len, sizeof(int32_t));
632
633 t -= s;
634 }
635 }
636
637 assert(t == s);
638
639 connection_write(c, terminator, s);
640
641 return 0;
642 }
643
644 static int esd_proto_stream_pan(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
645 int32_t ok;
646 uint32_t idx, lvolume, rvolume;
647 struct connection *conn;
648
649 assert(c && data && length == sizeof(int32_t)*3);
650
651 memcpy(&idx, data, sizeof(uint32_t));
652 idx = MAYBE_UINT32_SWAP(c->swap_byte_order, idx) - 1;
653 data = (const char*)data + sizeof(uint32_t);
654
655 memcpy(&lvolume, data, sizeof(uint32_t));
656 lvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, lvolume);
657 data = (const char*)data + sizeof(uint32_t);
658
659 memcpy(&rvolume, data, sizeof(uint32_t));
660 rvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, rvolume);
661 data = (const char*)data + sizeof(uint32_t);
662
663 if ((conn = pa_idxset_get_by_index(c->protocol->connections, idx)) && conn->sink_input) {
664 pa_cvolume volume;
665 volume.values[0] = (lvolume*PA_VOLUME_NORM)/ESD_VOLUME_BASE;
666 volume.values[1] = (rvolume*PA_VOLUME_NORM)/ESD_VOLUME_BASE;
667 volume.channels = 2;
668 pa_sink_input_set_volume(conn->sink_input, &volume);
669 ok = 1;
670 } else
671 ok = 0;
672
673 connection_write(c, &ok, sizeof(int32_t));
674
675 return 0;
676 }
677
678 static int esd_proto_sample_cache(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
679 pa_sample_spec ss;
680 int32_t format, rate, sc_length;
681 uint32_t idx;
682 char name[ESD_NAME_MAX+sizeof(SCACHE_PREFIX)-1];
683
684 assert(c && data && length == (ESD_NAME_MAX+3*sizeof(int32_t)));
685
686 memcpy(&format, data, sizeof(int32_t));
687 format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
688 data = (const char*)data + sizeof(int32_t);
689
690 memcpy(&rate, data, sizeof(int32_t));
691 rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
692 data = (const char*)data + sizeof(int32_t);
693
694 ss.rate = rate;
695 format_esd2native(format, c->swap_byte_order, &ss);
696
697 CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification.");
698
699 memcpy(&sc_length, data, sizeof(int32_t));
700 sc_length = MAYBE_INT32_SWAP(c->swap_byte_order, sc_length);
701 data = (const char*)data + sizeof(int32_t);
702
703 CHECK_VALIDITY(sc_length <= MAX_CACHE_SAMPLE_SIZE, "Sample too large.");
704
705 strcpy(name, SCACHE_PREFIX);
706 strncpy(name+sizeof(SCACHE_PREFIX)-1, data, ESD_NAME_MAX);
707 name[sizeof(name)-1] = 0;
708
709 CHECK_VALIDITY(pa_utf8_valid(name), "Invalid UTF8 in sample name.");
710
711 assert(!c->scache.memchunk.memblock);
712 c->scache.memchunk.memblock = pa_memblock_new(sc_length, c->protocol->core->memblock_stat);
713 c->scache.memchunk.index = 0;
714 c->scache.memchunk.length = sc_length;
715 c->scache.sample_spec = ss;
716 assert(!c->scache.name);
717 c->scache.name = pa_xstrdup(name);
718
719 c->state = ESD_CACHING_SAMPLE;
720
721 pa_scache_add_item(c->protocol->core, c->scache.name, NULL, NULL, NULL, &idx);
722
723 idx += 1;
724 connection_write(c, &idx, sizeof(uint32_t));
725
726 return 0;
727 }
728
729 static int esd_proto_sample_get_id(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
730 int32_t ok;
731 uint32_t idx;
732 char name[ESD_NAME_MAX+sizeof(SCACHE_PREFIX)-1];
733
734 assert(c && data && length == ESD_NAME_MAX);
735
736 strcpy(name, SCACHE_PREFIX);
737 strncpy(name+sizeof(SCACHE_PREFIX)-1, data, ESD_NAME_MAX);
738 name[sizeof(name)-1] = 0;
739
740 CHECK_VALIDITY(pa_utf8_valid(name), "Invalid UTF8 in sample name.");
741
742 ok = -1;
743 if ((idx = pa_scache_get_id_by_name(c->protocol->core, name)) != PA_IDXSET_INVALID)
744 ok = idx + 1;
745
746 connection_write(c, &ok, sizeof(int32_t));
747
748 return 0;
749 }
750
751 static int esd_proto_sample_free_or_play(struct connection *c, esd_proto_t request, const void *data, size_t length) {
752 int32_t ok;
753 const char *name;
754 uint32_t idx;
755
756 assert(c && data && length == sizeof(int32_t));
757
758 memcpy(&idx, data, sizeof(uint32_t));
759 idx = MAYBE_UINT32_SWAP(c->swap_byte_order, idx) - 1;
760
761 ok = 0;
762
763 if ((name = pa_scache_get_name_by_id(c->protocol->core, idx))) {
764 if (request == ESD_PROTO_SAMPLE_PLAY) {
765 pa_sink *sink;
766
767 if ((sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1)))
768 if (pa_scache_play_item(c->protocol->core, name, sink, PA_VOLUME_NORM) >= 0)
769 ok = idx + 1;
770 } else {
771 assert(request == ESD_PROTO_SAMPLE_FREE);
772
773 if (pa_scache_remove_item(c->protocol->core, name) >= 0)
774 ok = idx + 1;
775 }
776 }
777
778 connection_write(c, &ok, sizeof(int32_t));
779
780 return 0;
781 }
782
783 static int esd_proto_standby_or_resume(struct connection *c, PA_GCC_UNUSED esd_proto_t request, PA_GCC_UNUSED const void *data, PA_GCC_UNUSED size_t length) {
784 int32_t ok;
785
786 connection_write_prepare(c, sizeof(int32_t) * 2);
787
788 ok = 1;
789 connection_write(c, &ok, sizeof(int32_t));
790 connection_write(c, &ok, sizeof(int32_t));
791
792 return 0;
793 }
794
795 /*** client callbacks ***/
796
797 static void client_kill_cb(pa_client *c) {
798 assert(c && c->userdata);
799 connection_free(c->userdata);
800 }
801
802 /*** pa_iochannel callbacks ***/
803
804 static int do_read(struct connection *c) {
805 assert(c && c->io);
806
807 /* pa_log("READ"); */
808
809 if (c->state == ESD_NEXT_REQUEST) {
810 ssize_t r;
811 assert(c->read_data_length < sizeof(c->request));
812
813 if ((r = pa_iochannel_read(c->io, ((uint8_t*) &c->request) + c->read_data_length, sizeof(c->request) - c->read_data_length)) <= 0) {
814 pa_log_debug(__FILE__": read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
815 return -1;
816 }
817
818 if ((c->read_data_length+= r) >= sizeof(c->request)) {
819 struct proto_handler *handler;
820
821 c->request = MAYBE_INT32_SWAP(c->swap_byte_order, c->request);
822
823 if (c->request < ESD_PROTO_CONNECT || c->request > ESD_PROTO_MAX) {
824 pa_log(__FILE__": recieved invalid request.");
825 return -1;
826 }
827
828 handler = proto_map+c->request;
829
830 /* pa_log(__FILE__": executing request #%u", c->request); */
831
832 if (!handler->proc) {
833 pa_log(__FILE__": recieved unimplemented request #%u.", c->request);
834 return -1;
835 }
836
837 if (handler->data_length == 0) {
838 c->read_data_length = 0;
839
840 if (handler->proc(c, c->request, NULL, 0) < 0)
841 return -1;
842
843 } else {
844 if (c->read_data_alloc < handler->data_length)
845 c->read_data = pa_xrealloc(c->read_data, c->read_data_alloc = handler->data_length);
846 assert(c->read_data);
847
848 c->state = ESD_NEEDS_REQDATA;
849 c->read_data_length = 0;
850 }
851 }
852
853 } else if (c->state == ESD_NEEDS_REQDATA) {
854 ssize_t r;
855 struct proto_handler *handler = proto_map+c->request;
856
857 assert(handler->proc);
858
859 assert(c->read_data && c->read_data_length < handler->data_length);
860
861 if ((r = pa_iochannel_read(c->io, (uint8_t*) c->read_data + c->read_data_length, handler->data_length - c->read_data_length)) <= 0) {
862 pa_log_debug(__FILE__": read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
863 return -1;
864 }
865
866 if ((c->read_data_length += r) >= handler->data_length) {
867 size_t l = c->read_data_length;
868 assert(handler->proc);
869
870 c->state = ESD_NEXT_REQUEST;
871 c->read_data_length = 0;
872
873 if (handler->proc(c, c->request, c->read_data, l) < 0)
874 return -1;
875 }
876 } else if (c->state == ESD_CACHING_SAMPLE) {
877 ssize_t r;
878
879 assert(c->scache.memchunk.memblock && c->scache.name && c->scache.memchunk.index < c->scache.memchunk.length);
880
881 if ((r = pa_iochannel_read(c->io, (uint8_t*) c->scache.memchunk.memblock->data+c->scache.memchunk.index, c->scache.memchunk.length-c->scache.memchunk.index)) <= 0) {
882 pa_log_debug(__FILE__": read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
883 return -1;
884 }
885
886 c->scache.memchunk.index += r;
887 assert(c->scache.memchunk.index <= c->scache.memchunk.length);
888
889 if (c->scache.memchunk.index == c->scache.memchunk.length) {
890 uint32_t idx;
891
892 c->scache.memchunk.index = 0;
893 pa_scache_add_item(c->protocol->core, c->scache.name, &c->scache.sample_spec, NULL, &c->scache.memchunk, &idx);
894
895 pa_memblock_unref(c->scache.memchunk.memblock);
896 c->scache.memchunk.memblock = NULL;
897 c->scache.memchunk.index = c->scache.memchunk.length = 0;
898
899 pa_xfree(c->scache.name);
900 c->scache.name = NULL;
901
902 c->state = ESD_NEXT_REQUEST;
903
904 idx += 1;
905 connection_write(c, &idx, sizeof(uint32_t));
906 }
907
908 } else if (c->state == ESD_STREAMING_DATA && c->sink_input) {
909 pa_memchunk chunk;
910 ssize_t r;
911 size_t l;
912
913 assert(c->input_memblockq);
914
915 /* pa_log("STREAMING_DATA"); */
916
917 if (!(l = pa_memblockq_missing(c->input_memblockq)))
918 return 0;
919
920 if (l > c->playback.fragment_size)
921 l = c->playback.fragment_size;
922
923 if (c->playback.current_memblock)
924 if (c->playback.current_memblock->length - c->playback.memblock_index < l) {
925 pa_memblock_unref(c->playback.current_memblock);
926 c->playback.current_memblock = NULL;
927 c->playback.memblock_index = 0;
928 }
929
930 if (!c->playback.current_memblock) {
931 c->playback.current_memblock = pa_memblock_new(c->playback.fragment_size*2, c->protocol->core->memblock_stat);
932 assert(c->playback.current_memblock && c->playback.current_memblock->length >= l);
933 c->playback.memblock_index = 0;
934 }
935
936 if ((r = pa_iochannel_read(c->io, (uint8_t*) c->playback.current_memblock->data+c->playback.memblock_index, l)) <= 0) {
937 pa_log_debug(__FILE__": read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
938 return -1;
939 }
940
941 chunk.memblock = c->playback.current_memblock;
942 chunk.index = c->playback.memblock_index;
943 chunk.length = r;
944 assert(chunk.memblock);
945
946 c->playback.memblock_index += r;
947
948 assert(c->input_memblockq);
949 pa_memblockq_push_align(c->input_memblockq, &chunk);
950 assert(c->sink_input);
951 pa_sink_notify(c->sink_input->sink);
952 }
953
954 return 0;
955 }
956
957 static int do_write(struct connection *c) {
958 assert(c && c->io);
959
960 /* pa_log("WRITE"); */
961
962 if (c->write_data_length) {
963 ssize_t r;
964
965 assert(c->write_data_index < c->write_data_length);
966 if ((r = pa_iochannel_write(c->io, (uint8_t*) c->write_data+c->write_data_index, c->write_data_length-c->write_data_index)) < 0) {
967 pa_log(__FILE__": write(): %s", pa_cstrerror(errno));
968 return -1;
969 }
970
971 if ((c->write_data_index +=r) >= c->write_data_length)
972 c->write_data_length = c->write_data_index = 0;
973
974 } else if (c->state == ESD_STREAMING_DATA && c->source_output) {
975 pa_memchunk chunk;
976 ssize_t r;
977
978 assert(c->output_memblockq);
979 if (pa_memblockq_peek(c->output_memblockq, &chunk) < 0)
980 return 0;
981
982 assert(chunk.memblock && chunk.length);
983
984 if ((r = pa_iochannel_write(c->io, (uint8_t*) chunk.memblock->data+chunk.index, chunk.length)) < 0) {
985 pa_memblock_unref(chunk.memblock);
986 pa_log(__FILE__": write(): %s", pa_cstrerror(errno));
987 return -1;
988 }
989
990 pa_memblockq_drop(c->output_memblockq, &chunk, r);
991 pa_memblock_unref(chunk.memblock);
992
993 pa_source_notify(c->source_output->source);
994 }
995
996 return 0;
997 }
998
999 static void do_work(struct connection *c) {
1000 assert(c);
1001
1002 assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
1003 c->protocol->core->mainloop->defer_enable(c->defer_event, 0);
1004
1005 if (c->dead)
1006 return;
1007
1008 if (pa_iochannel_is_readable(c->io)) {
1009 if (do_read(c) < 0)
1010 goto fail;
1011 }
1012
1013 if (c->state == ESD_STREAMING_DATA && c->source_output && pa_iochannel_is_hungup(c->io))
1014 /* In case we are in capture mode we will never call read()
1015 * on the socket, hence we need to detect the hangup manually
1016 * here, instead of simply waiting for read() to return 0. */
1017 goto fail;
1018
1019 if (pa_iochannel_is_writable(c->io))
1020 if (do_write(c) < 0)
1021 goto fail;
1022
1023 return;
1024
1025 fail:
1026
1027 if (c->state == ESD_STREAMING_DATA && c->sink_input) {
1028 c->dead = 1;
1029
1030 pa_iochannel_free(c->io);
1031 c->io = NULL;
1032
1033 pa_memblockq_prebuf_disable(c->input_memblockq);
1034 pa_sink_notify(c->sink_input->sink);
1035 } else
1036 connection_free(c);
1037 }
1038
1039 static void io_callback(pa_iochannel*io, void *userdata) {
1040 struct connection *c = userdata;
1041 assert(io && c && c->io == io);
1042
1043 do_work(c);
1044 }
1045
1046 /*** defer callback ***/
1047
1048 static void defer_callback(pa_mainloop_api*a, pa_defer_event *e, void *userdata) {
1049 struct connection *c = userdata;
1050 assert(a && c && c->defer_event == e);
1051
1052 /* pa_log("DEFER"); */
1053
1054 do_work(c);
1055 }
1056
1057 /*** sink_input callbacks ***/
1058
1059 static int sink_input_peek_cb(pa_sink_input *i, pa_memchunk *chunk) {
1060 struct connection*c;
1061 assert(i && i->userdata && chunk);
1062 c = i->userdata;
1063
1064 if (pa_memblockq_peek(c->input_memblockq, chunk) < 0) {
1065
1066 if (c->dead)
1067 connection_free(c);
1068
1069 return -1;
1070 }
1071
1072 return 0;
1073 }
1074
1075 static void sink_input_drop_cb(pa_sink_input *i, const pa_memchunk *chunk, size_t length) {
1076 struct connection*c = i->userdata;
1077 assert(i && c && length);
1078
1079 /* pa_log("DROP"); */
1080
1081 pa_memblockq_drop(c->input_memblockq, chunk, length);
1082
1083 /* do something */
1084 assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
1085
1086 if (!c->dead)
1087 c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
1088
1089 /* assert(pa_memblockq_get_length(c->input_memblockq) > 2048); */
1090 }
1091
1092 static void sink_input_kill_cb(pa_sink_input *i) {
1093 assert(i && i->userdata);
1094 connection_free((struct connection *) i->userdata);
1095 }
1096
1097 static pa_usec_t sink_input_get_latency_cb(pa_sink_input *i) {
1098 struct connection*c = i->userdata;
1099 assert(i && c);
1100 return pa_bytes_to_usec(pa_memblockq_get_length(c->input_memblockq), &c->sink_input->sample_spec);
1101 }
1102
1103 /*** source_output callbacks ***/
1104
1105 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) {
1106 struct connection *c = o->userdata;
1107 assert(o && c && chunk);
1108
1109 pa_memblockq_push(c->output_memblockq, chunk);
1110
1111 /* do something */
1112 assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
1113
1114 if (!c->dead)
1115 c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
1116 }
1117
1118 static void source_output_kill_cb(pa_source_output *o) {
1119 assert(o && o->userdata);
1120 connection_free((struct connection *) o->userdata);
1121 }
1122
1123 static pa_usec_t source_output_get_latency_cb(pa_source_output *o) {
1124 struct connection*c = o->userdata;
1125 assert(o && c);
1126 return pa_bytes_to_usec(pa_memblockq_get_length(c->output_memblockq), &c->source_output->sample_spec);
1127 }
1128
1129 /*** socket server callback ***/
1130
1131 static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
1132 struct connection *c = userdata;
1133 assert(m && tv && c && c->auth_timeout_event == e);
1134
1135 if (!c->authorized)
1136 connection_free(c);
1137 }
1138
1139 static void on_connection(pa_socket_server*s, pa_iochannel *io, void *userdata) {
1140 struct connection *c;
1141 pa_protocol_esound *p = userdata;
1142 char cname[256], pname[128];
1143 assert(s && io && p);
1144
1145 if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
1146 pa_log(__FILE__": Warning! Too many connections (%u), dropping incoming connection.", MAX_CONNECTIONS);
1147 pa_iochannel_free(io);
1148 return;
1149 }
1150
1151 c = pa_xnew(struct connection, 1);
1152 c->protocol = p;
1153 c->io = io;
1154 pa_iochannel_set_callback(c->io, io_callback, c);
1155
1156 pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
1157 snprintf(cname, sizeof(cname), "EsounD client (%s)", pname);
1158 assert(p->core);
1159 c->client = pa_client_new(p->core, __FILE__, cname);
1160 assert(c->client);
1161 c->client->owner = p->module;
1162 c->client->kill = client_kill_cb;
1163 c->client->userdata = c;
1164
1165 c->authorized = p->public;
1166 c->swap_byte_order = 0;
1167 c->dead = 0;
1168
1169 c->read_data_length = 0;
1170 c->read_data = pa_xmalloc(c->read_data_alloc = proto_map[ESD_PROTO_CONNECT].data_length);
1171
1172 c->write_data_length = c->write_data_index = c->write_data_alloc = 0;
1173 c->write_data = NULL;
1174
1175 c->state = ESD_NEEDS_REQDATA;
1176 c->request = ESD_PROTO_CONNECT;
1177
1178 c->sink_input = NULL;
1179 c->input_memblockq = NULL;
1180
1181 c->source_output = NULL;
1182 c->output_memblockq = NULL;
1183
1184 c->playback.current_memblock = NULL;
1185 c->playback.memblock_index = 0;
1186 c->playback.fragment_size = 0;
1187
1188 c->scache.memchunk.length = c->scache.memchunk.index = 0;
1189 c->scache.memchunk.memblock = NULL;
1190 c->scache.name = NULL;
1191
1192 c->original_name = NULL;
1193
1194 if (!c->authorized) {
1195 struct timeval tv;
1196 pa_gettimeofday(&tv);
1197 tv.tv_sec += AUTH_TIMEOUT;
1198 c->auth_timeout_event = p->core->mainloop->time_new(p->core->mainloop, &tv, auth_timeout, c);
1199 } else
1200 c->auth_timeout_event = NULL;
1201
1202 c->defer_event = p->core->mainloop->defer_new(p->core->mainloop, defer_callback, c);
1203 assert(c->defer_event);
1204 p->core->mainloop->defer_enable(c->defer_event, 0);
1205
1206 pa_idxset_put(p->connections, c, &c->index);
1207 }
1208
1209 /*** entry points ***/
1210
1211 pa_protocol_esound* pa_protocol_esound_new(pa_core*core, pa_socket_server *server, pa_module *m, pa_modargs *ma) {
1212 pa_protocol_esound *p;
1213 int public = 0;
1214 assert(core && server && ma);
1215
1216 p = pa_xnew(pa_protocol_esound, 1);
1217
1218 if (pa_modargs_get_value_boolean(ma, "auth-anonymous", &public) < 0) {
1219 pa_log(__FILE__": auth-anonymous= expects a boolean argument.");
1220 return NULL;
1221 }
1222
1223 if (pa_authkey_load_auto(pa_modargs_get_value(ma, "cookie", DEFAULT_COOKIE_FILE), p->esd_key, sizeof(p->esd_key)) < 0) {
1224 pa_xfree(p);
1225 return NULL;
1226 }
1227
1228 p->module = m;
1229 p->public = public;
1230 p->server = server;
1231 pa_socket_server_set_callback(p->server, on_connection, p);
1232 p->core = core;
1233 p->connections = pa_idxset_new(NULL, NULL);
1234 assert(p->connections);
1235
1236 p->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
1237 p->source_name = pa_xstrdup(pa_modargs_get_value(ma, "source", NULL));
1238 p->n_player = 0;
1239
1240 return p;
1241 }
1242
1243 void pa_protocol_esound_free(pa_protocol_esound *p) {
1244 struct connection *c;
1245 assert(p);
1246
1247 while ((c = pa_idxset_first(p->connections, NULL)))
1248 connection_free(c);
1249
1250 pa_idxset_free(p->connections, NULL, NULL);
1251 pa_socket_server_unref(p->server);
1252 pa_xfree(p);
1253 }