]> code.delx.au - pulseaudio/blob - src/pulsecore/protocol-native.c
properly handle directed card info requests
[pulseaudio] / src / pulsecore / protocol-native.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published
9 by the Free Software Foundation; either version 2 of the License,
10 or (at your option) any later version.
11
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA.
21 ***/
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <string.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31
32 #include <pulse/timeval.h>
33 #include <pulse/version.h>
34 #include <pulse/utf8.h>
35 #include <pulse/util.h>
36 #include <pulse/xmalloc.h>
37
38 #include <pulsecore/native-common.h>
39 #include <pulsecore/packet.h>
40 #include <pulsecore/client.h>
41 #include <pulsecore/source-output.h>
42 #include <pulsecore/sink-input.h>
43 #include <pulsecore/pstream.h>
44 #include <pulsecore/tagstruct.h>
45 #include <pulsecore/pdispatch.h>
46 #include <pulsecore/pstream-util.h>
47 #include <pulsecore/authkey.h>
48 #include <pulsecore/namereg.h>
49 #include <pulsecore/core-scache.h>
50 #include <pulsecore/core-subscribe.h>
51 #include <pulsecore/log.h>
52 #include <pulsecore/strlist.h>
53 #include <pulsecore/shared.h>
54 #include <pulsecore/sample-util.h>
55 #include <pulsecore/llist.h>
56 #include <pulsecore/creds.h>
57 #include <pulsecore/core-util.h>
58 #include <pulsecore/ipacl.h>
59 #include <pulsecore/thread-mq.h>
60
61 #include "protocol-native.h"
62
63 /* Kick a client if it doesn't authenticate within this time */
64 #define AUTH_TIMEOUT 60
65
66 /* Don't accept more connection than this */
67 #define MAX_CONNECTIONS 64
68
69 #define MAX_MEMBLOCKQ_LENGTH (4*1024*1024) /* 4MB */
70 #define DEFAULT_TLENGTH_MSEC 2000 /* 2s */
71 #define DEFAULT_PROCESS_MSEC 20 /* 20ms */
72 #define DEFAULT_FRAGSIZE_MSEC DEFAULT_TLENGTH_MSEC
73
74 struct pa_native_protocol;
75
76 typedef struct record_stream {
77 pa_msgobject parent;
78
79 pa_native_connection *connection;
80 uint32_t index;
81
82 pa_source_output *source_output;
83 pa_memblockq *memblockq;
84 size_t fragment_size;
85 pa_usec_t source_latency;
86 } record_stream;
87
88 PA_DECLARE_CLASS(record_stream);
89 #define RECORD_STREAM(o) (record_stream_cast(o))
90 static PA_DEFINE_CHECK_TYPE(record_stream, pa_msgobject);
91
92 typedef struct output_stream {
93 pa_msgobject parent;
94 } output_stream;
95
96 PA_DECLARE_CLASS(output_stream);
97 #define OUTPUT_STREAM(o) (output_stream_cast(o))
98 static PA_DEFINE_CHECK_TYPE(output_stream, pa_msgobject);
99
100 typedef struct playback_stream {
101 output_stream parent;
102
103 pa_native_connection *connection;
104 uint32_t index;
105
106 pa_sink_input *sink_input;
107 pa_memblockq *memblockq;
108 pa_bool_t is_underrun:1;
109 pa_bool_t drain_request:1;
110 uint32_t drain_tag;
111 uint32_t syncid;
112
113 pa_atomic_t missing;
114 size_t minreq;
115 pa_usec_t sink_latency;
116
117 /* Only updated after SINK_INPUT_MESSAGE_UPDATE_LATENCY */
118 int64_t read_index, write_index;
119 size_t render_memblockq_length;
120 } playback_stream;
121
122 PA_DECLARE_CLASS(playback_stream);
123 #define PLAYBACK_STREAM(o) (playback_stream_cast(o))
124 static PA_DEFINE_CHECK_TYPE(playback_stream, output_stream);
125
126 typedef struct upload_stream {
127 output_stream parent;
128
129 pa_native_connection *connection;
130 uint32_t index;
131
132 pa_memchunk memchunk;
133 size_t length;
134 char *name;
135 pa_sample_spec sample_spec;
136 pa_channel_map channel_map;
137 pa_proplist *proplist;
138 } upload_stream;
139
140 PA_DECLARE_CLASS(upload_stream);
141 #define UPLOAD_STREAM(o) (upload_stream_cast(o))
142 static PA_DEFINE_CHECK_TYPE(upload_stream, output_stream);
143
144 struct pa_native_connection {
145 pa_msgobject parent;
146 pa_native_protocol *protocol;
147 pa_native_options *options;
148 pa_bool_t authorized:1;
149 pa_bool_t is_local:1;
150 uint32_t version;
151 pa_client *client;
152 pa_pstream *pstream;
153 pa_pdispatch *pdispatch;
154 pa_idxset *record_streams, *output_streams;
155 uint32_t rrobin_index;
156 pa_subscription *subscription;
157 pa_time_event *auth_timeout_event;
158 };
159
160 PA_DECLARE_CLASS(pa_native_connection);
161 #define PA_NATIVE_CONNECTION(o) (pa_native_connection_cast(o))
162 static PA_DEFINE_CHECK_TYPE(pa_native_connection, pa_msgobject);
163
164 struct pa_native_protocol {
165 PA_REFCNT_DECLARE;
166
167 pa_core *core;
168 pa_idxset *connections;
169
170 pa_strlist *servers;
171 pa_hook hooks[PA_NATIVE_HOOK_MAX];
172
173 pa_hashmap *extensions;
174 };
175
176 enum {
177 SINK_INPUT_MESSAGE_POST_DATA = PA_SINK_INPUT_MESSAGE_MAX, /* data from main loop to sink input */
178 SINK_INPUT_MESSAGE_DRAIN, /* disabled prebuf, get playback started. */
179 SINK_INPUT_MESSAGE_FLUSH,
180 SINK_INPUT_MESSAGE_TRIGGER,
181 SINK_INPUT_MESSAGE_SEEK,
182 SINK_INPUT_MESSAGE_PREBUF_FORCE,
183 SINK_INPUT_MESSAGE_UPDATE_LATENCY
184 };
185
186 enum {
187 PLAYBACK_STREAM_MESSAGE_REQUEST_DATA, /* data requested from sink input from the main loop */
188 PLAYBACK_STREAM_MESSAGE_UNDERFLOW,
189 PLAYBACK_STREAM_MESSAGE_OVERFLOW,
190 PLAYBACK_STREAM_MESSAGE_DRAIN_ACK,
191 PLAYBACK_STREAM_MESSAGE_STARTED
192 };
193
194 enum {
195 RECORD_STREAM_MESSAGE_POST_DATA /* data from source output to main loop */
196 };
197
198 enum {
199 CONNECTION_MESSAGE_RELEASE,
200 CONNECTION_MESSAGE_REVOKE
201 };
202
203 static int sink_input_pop_cb(pa_sink_input *i, size_t length, pa_memchunk *chunk);
204 static void sink_input_kill_cb(pa_sink_input *i);
205 static void sink_input_suspend_cb(pa_sink_input *i, pa_bool_t suspend);
206 static void sink_input_moved_cb(pa_sink_input *i);
207 static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes);
208 static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes);
209 static void sink_input_update_max_request_cb(pa_sink_input *i, size_t nbytes);
210 static void sink_input_send_event_cb(pa_sink_input *i, const char *event, pa_proplist *pl);
211
212 static void native_connection_send_memblock(pa_native_connection *c);
213 static void playback_stream_request_bytes(struct playback_stream*s);
214
215 static void source_output_kill_cb(pa_source_output *o);
216 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk);
217 static void source_output_suspend_cb(pa_source_output *o, pa_bool_t suspend);
218 static void source_output_moved_cb(pa_source_output *o);
219 static pa_usec_t source_output_get_latency_cb(pa_source_output *o);
220 static void source_output_send_event_cb(pa_source_output *o, const char *event, pa_proplist *pl);
221
222 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk);
223
224 static void command_exit(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
225 static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
226 static void command_drain_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
227 static void command_create_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
228 static void command_delete_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
229 static void command_auth(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
230 static void command_set_client_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
231 static void command_lookup(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
232 static void command_stat(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
233 static void command_get_playback_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
234 static void command_get_record_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
235 static void command_create_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
236 static void command_finish_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
237 static void command_play_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
238 static void command_remove_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
239 static void command_get_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
240 static void command_get_info_list(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
241 static void command_get_server_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
242 static void command_subscribe(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
243 static void command_set_volume(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
244 static void command_set_mute(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
245 static void command_cork_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
246 static void command_trigger_or_flush_or_prebuf_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
247 static void command_set_default_sink_or_source(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
248 static void command_set_stream_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
249 static void command_kill(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
250 static void command_load_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
251 static void command_unload_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
252 static void command_cork_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
253 static void command_flush_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
254 static void command_move_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
255 static void command_suspend(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
256 static void command_set_stream_buffer_attr(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
257 static void command_update_stream_sample_rate(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
258 static void command_update_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
259 static void command_remove_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
260 static void command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
261 static void command_set_card_profile(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
262
263 static const pa_pdispatch_cb_t command_table[PA_COMMAND_MAX] = {
264 [PA_COMMAND_ERROR] = NULL,
265 [PA_COMMAND_TIMEOUT] = NULL,
266 [PA_COMMAND_REPLY] = NULL,
267 [PA_COMMAND_CREATE_PLAYBACK_STREAM] = command_create_playback_stream,
268 [PA_COMMAND_DELETE_PLAYBACK_STREAM] = command_delete_stream,
269 [PA_COMMAND_DRAIN_PLAYBACK_STREAM] = command_drain_playback_stream,
270 [PA_COMMAND_CREATE_RECORD_STREAM] = command_create_record_stream,
271 [PA_COMMAND_DELETE_RECORD_STREAM] = command_delete_stream,
272 [PA_COMMAND_AUTH] = command_auth,
273 [PA_COMMAND_REQUEST] = NULL,
274 [PA_COMMAND_EXIT] = command_exit,
275 [PA_COMMAND_SET_CLIENT_NAME] = command_set_client_name,
276 [PA_COMMAND_LOOKUP_SINK] = command_lookup,
277 [PA_COMMAND_LOOKUP_SOURCE] = command_lookup,
278 [PA_COMMAND_STAT] = command_stat,
279 [PA_COMMAND_GET_PLAYBACK_LATENCY] = command_get_playback_latency,
280 [PA_COMMAND_GET_RECORD_LATENCY] = command_get_record_latency,
281 [PA_COMMAND_CREATE_UPLOAD_STREAM] = command_create_upload_stream,
282 [PA_COMMAND_DELETE_UPLOAD_STREAM] = command_delete_stream,
283 [PA_COMMAND_FINISH_UPLOAD_STREAM] = command_finish_upload_stream,
284 [PA_COMMAND_PLAY_SAMPLE] = command_play_sample,
285 [PA_COMMAND_REMOVE_SAMPLE] = command_remove_sample,
286 [PA_COMMAND_GET_SINK_INFO] = command_get_info,
287 [PA_COMMAND_GET_SOURCE_INFO] = command_get_info,
288 [PA_COMMAND_GET_CLIENT_INFO] = command_get_info,
289 [PA_COMMAND_GET_CARD_INFO] = command_get_info,
290 [PA_COMMAND_GET_MODULE_INFO] = command_get_info,
291 [PA_COMMAND_GET_SINK_INPUT_INFO] = command_get_info,
292 [PA_COMMAND_GET_SOURCE_OUTPUT_INFO] = command_get_info,
293 [PA_COMMAND_GET_SAMPLE_INFO] = command_get_info,
294 [PA_COMMAND_GET_SINK_INFO_LIST] = command_get_info_list,
295 [PA_COMMAND_GET_SOURCE_INFO_LIST] = command_get_info_list,
296 [PA_COMMAND_GET_MODULE_INFO_LIST] = command_get_info_list,
297 [PA_COMMAND_GET_CLIENT_INFO_LIST] = command_get_info_list,
298 [PA_COMMAND_GET_CARD_INFO_LIST] = command_get_info_list,
299 [PA_COMMAND_GET_SINK_INPUT_INFO_LIST] = command_get_info_list,
300 [PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST] = command_get_info_list,
301 [PA_COMMAND_GET_SAMPLE_INFO_LIST] = command_get_info_list,
302 [PA_COMMAND_GET_SERVER_INFO] = command_get_server_info,
303 [PA_COMMAND_SUBSCRIBE] = command_subscribe,
304
305 [PA_COMMAND_SET_SINK_VOLUME] = command_set_volume,
306 [PA_COMMAND_SET_SINK_INPUT_VOLUME] = command_set_volume,
307 [PA_COMMAND_SET_SOURCE_VOLUME] = command_set_volume,
308
309 [PA_COMMAND_SET_SINK_MUTE] = command_set_mute,
310 [PA_COMMAND_SET_SINK_INPUT_MUTE] = command_set_mute,
311 [PA_COMMAND_SET_SOURCE_MUTE] = command_set_mute,
312
313 [PA_COMMAND_SUSPEND_SINK] = command_suspend,
314 [PA_COMMAND_SUSPEND_SOURCE] = command_suspend,
315
316 [PA_COMMAND_CORK_PLAYBACK_STREAM] = command_cork_playback_stream,
317 [PA_COMMAND_FLUSH_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
318 [PA_COMMAND_TRIGGER_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
319 [PA_COMMAND_PREBUF_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
320
321 [PA_COMMAND_CORK_RECORD_STREAM] = command_cork_record_stream,
322 [PA_COMMAND_FLUSH_RECORD_STREAM] = command_flush_record_stream,
323
324 [PA_COMMAND_SET_DEFAULT_SINK] = command_set_default_sink_or_source,
325 [PA_COMMAND_SET_DEFAULT_SOURCE] = command_set_default_sink_or_source,
326 [PA_COMMAND_SET_PLAYBACK_STREAM_NAME] = command_set_stream_name,
327 [PA_COMMAND_SET_RECORD_STREAM_NAME] = command_set_stream_name,
328 [PA_COMMAND_KILL_CLIENT] = command_kill,
329 [PA_COMMAND_KILL_SINK_INPUT] = command_kill,
330 [PA_COMMAND_KILL_SOURCE_OUTPUT] = command_kill,
331 [PA_COMMAND_LOAD_MODULE] = command_load_module,
332 [PA_COMMAND_UNLOAD_MODULE] = command_unload_module,
333
334 [PA_COMMAND_GET_AUTOLOAD_INFO___OBSOLETE] = NULL,
335 [PA_COMMAND_GET_AUTOLOAD_INFO_LIST___OBSOLETE] = NULL,
336 [PA_COMMAND_ADD_AUTOLOAD___OBSOLETE] = NULL,
337 [PA_COMMAND_REMOVE_AUTOLOAD___OBSOLETE] = NULL,
338
339 [PA_COMMAND_MOVE_SINK_INPUT] = command_move_stream,
340 [PA_COMMAND_MOVE_SOURCE_OUTPUT] = command_move_stream,
341
342 [PA_COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR] = command_set_stream_buffer_attr,
343 [PA_COMMAND_SET_RECORD_STREAM_BUFFER_ATTR] = command_set_stream_buffer_attr,
344
345 [PA_COMMAND_UPDATE_PLAYBACK_STREAM_SAMPLE_RATE] = command_update_stream_sample_rate,
346 [PA_COMMAND_UPDATE_RECORD_STREAM_SAMPLE_RATE] = command_update_stream_sample_rate,
347
348 [PA_COMMAND_UPDATE_RECORD_STREAM_PROPLIST] = command_update_proplist,
349 [PA_COMMAND_UPDATE_PLAYBACK_STREAM_PROPLIST] = command_update_proplist,
350 [PA_COMMAND_UPDATE_CLIENT_PROPLIST] = command_update_proplist,
351
352 [PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST] = command_remove_proplist,
353 [PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST] = command_remove_proplist,
354 [PA_COMMAND_REMOVE_CLIENT_PROPLIST] = command_remove_proplist,
355
356 [PA_COMMAND_SET_CARD_PROFILE] = command_set_card_profile,
357
358 [PA_COMMAND_EXTENSION] = command_extension
359 };
360
361 /* structure management */
362
363 static void upload_stream_unlink(upload_stream *s) {
364 pa_assert(s);
365
366 if (!s->connection)
367 return;
368
369 pa_assert_se(pa_idxset_remove_by_data(s->connection->output_streams, s, NULL) == s);
370 s->connection = NULL;
371 upload_stream_unref(s);
372 }
373
374 static void upload_stream_free(pa_object *o) {
375 upload_stream *s = UPLOAD_STREAM(o);
376 pa_assert(s);
377
378 upload_stream_unlink(s);
379
380 pa_xfree(s->name);
381
382 if (s->proplist)
383 pa_proplist_free(s->proplist);
384
385 if (s->memchunk.memblock)
386 pa_memblock_unref(s->memchunk.memblock);
387
388 pa_xfree(s);
389 }
390
391 static upload_stream* upload_stream_new(
392 pa_native_connection *c,
393 const pa_sample_spec *ss,
394 const pa_channel_map *map,
395 const char *name,
396 size_t length,
397 pa_proplist *p) {
398
399 upload_stream *s;
400
401 pa_assert(c);
402 pa_assert(ss);
403 pa_assert(name);
404 pa_assert(length > 0);
405 pa_assert(p);
406
407 s = pa_msgobject_new(upload_stream);
408 s->parent.parent.parent.free = upload_stream_free;
409 s->connection = c;
410 s->sample_spec = *ss;
411 s->channel_map = *map;
412 s->name = pa_xstrdup(name);
413 pa_memchunk_reset(&s->memchunk);
414 s->length = length;
415 s->proplist = pa_proplist_copy(p);
416 pa_proplist_update(s->proplist, PA_UPDATE_MERGE, c->client->proplist);
417
418 pa_idxset_put(c->output_streams, s, &s->index);
419
420 return s;
421 }
422
423 static void record_stream_unlink(record_stream *s) {
424 pa_assert(s);
425
426 if (!s->connection)
427 return;
428
429 if (s->source_output) {
430 pa_source_output_unlink(s->source_output);
431 pa_source_output_unref(s->source_output);
432 s->source_output = NULL;
433 }
434
435 pa_assert_se(pa_idxset_remove_by_data(s->connection->record_streams, s, NULL) == s);
436 s->connection = NULL;
437 record_stream_unref(s);
438 }
439
440 static void record_stream_free(pa_object *o) {
441 record_stream *s = RECORD_STREAM(o);
442 pa_assert(s);
443
444 record_stream_unlink(s);
445
446 pa_memblockq_free(s->memblockq);
447 pa_xfree(s);
448 }
449
450 static int record_stream_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
451 record_stream *s = RECORD_STREAM(o);
452 record_stream_assert_ref(s);
453
454 if (!s->connection)
455 return -1;
456
457 switch (code) {
458
459 case RECORD_STREAM_MESSAGE_POST_DATA:
460
461 if (pa_memblockq_push_align(s->memblockq, chunk) < 0) {
462 /* pa_log_warn("Failed to push data into output queue."); */
463 return -1;
464 }
465
466 if (!pa_pstream_is_pending(s->connection->pstream))
467 native_connection_send_memblock(s->connection);
468
469 break;
470 }
471
472 return 0;
473 }
474
475 static void fix_record_buffer_attr_pre(
476 record_stream *s,
477 pa_bool_t adjust_latency,
478 pa_bool_t early_requests,
479 uint32_t *maxlength,
480 uint32_t *fragsize) {
481
482 size_t frame_size;
483 pa_usec_t orig_fragsize_usec, fragsize_usec, source_usec;
484
485 pa_assert(s);
486 pa_assert(maxlength);
487 pa_assert(fragsize);
488
489 frame_size = pa_frame_size(&s->source_output->sample_spec);
490
491 if (*maxlength == (uint32_t) -1 || *maxlength > MAX_MEMBLOCKQ_LENGTH)
492 *maxlength = MAX_MEMBLOCKQ_LENGTH;
493 if (*maxlength <= 0)
494 *maxlength = (uint32_t) frame_size;
495
496 if (*fragsize == (uint32_t) -1)
497 *fragsize = (uint32_t) pa_usec_to_bytes(DEFAULT_FRAGSIZE_MSEC*PA_USEC_PER_MSEC, &s->source_output->sample_spec);
498 if (*fragsize <= 0)
499 *fragsize = (uint32_t) frame_size;
500
501 orig_fragsize_usec = fragsize_usec = pa_bytes_to_usec(*fragsize, &s->source_output->sample_spec);
502
503 if (early_requests) {
504
505 /* In early request mode we need to emulate the classic
506 * fragment-based playback model. We do this setting the source
507 * latency to the fragment size. */
508
509 source_usec = fragsize_usec;
510
511 } else if (adjust_latency) {
512
513 /* So, the user asked us to adjust the latency according to
514 * what the source can provide. Half the latency will be
515 * spent on the hw buffer, half of it in the async buffer
516 * queue we maintain for each client. */
517
518 source_usec = fragsize_usec/2;
519
520 } else {
521
522 /* Ok, the user didn't ask us to adjust the latency, hence we
523 * don't */
524
525 source_usec = 0;
526 }
527
528 if (source_usec > 0)
529 s->source_latency = pa_source_output_set_requested_latency(s->source_output, source_usec);
530 else
531 s->source_latency = 0;
532
533 if (early_requests) {
534
535 /* Ok, we didn't necessarily get what we were asking for, so
536 * let's tell the user */
537
538 fragsize_usec = s->source_latency;
539
540 } else if (adjust_latency) {
541
542 /* Now subtract what we actually got */
543
544 if (fragsize_usec >= s->source_latency*2)
545 fragsize_usec -= s->source_latency;
546 else
547 fragsize_usec = s->source_latency;
548 }
549
550 if (pa_usec_to_bytes(orig_fragsize_usec, &s->source_output->sample_spec) !=
551 pa_usec_to_bytes(fragsize_usec, &s->source_output->sample_spec))
552
553 *fragsize = (uint32_t) pa_usec_to_bytes(fragsize_usec, &s->source_output->sample_spec);
554
555 if (*fragsize <= 0)
556 *fragsize = (uint32_t) frame_size;
557 }
558
559 static void fix_record_buffer_attr_post(
560 record_stream *s,
561 uint32_t *maxlength,
562 uint32_t *fragsize) {
563
564 size_t base;
565
566 pa_assert(s);
567 pa_assert(maxlength);
568 pa_assert(fragsize);
569
570 *maxlength = (uint32_t) pa_memblockq_get_maxlength(s->memblockq);
571
572 base = pa_frame_size(&s->source_output->sample_spec);
573
574 s->fragment_size = (*fragsize/base)*base;
575 if (s->fragment_size <= 0)
576 s->fragment_size = base;
577
578 if (s->fragment_size > *maxlength)
579 s->fragment_size = *maxlength;
580
581 *fragsize = (uint32_t) s->fragment_size;
582 }
583
584 static record_stream* record_stream_new(
585 pa_native_connection *c,
586 pa_source *source,
587 pa_sample_spec *ss,
588 pa_channel_map *map,
589 pa_bool_t peak_detect,
590 uint32_t *maxlength,
591 uint32_t *fragsize,
592 pa_source_output_flags_t flags,
593 pa_proplist *p,
594 pa_bool_t adjust_latency,
595 pa_sink_input *direct_on_input,
596 pa_bool_t early_requests,
597 int *ret) {
598
599 record_stream *s;
600 pa_source_output *source_output = NULL;
601 size_t base;
602 pa_source_output_new_data data;
603
604 pa_assert(c);
605 pa_assert(ss);
606 pa_assert(maxlength);
607 pa_assert(p);
608 pa_assert(ret);
609
610 pa_source_output_new_data_init(&data);
611
612 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
613 data.driver = __FILE__;
614 data.module = c->options->module;
615 data.client = c->client;
616 data.source = source;
617 data.direct_on_input = direct_on_input;
618 pa_source_output_new_data_set_sample_spec(&data, ss);
619 pa_source_output_new_data_set_channel_map(&data, map);
620 if (peak_detect)
621 data.resample_method = PA_RESAMPLER_PEAKS;
622
623 *ret = -pa_source_output_new(&source_output, c->protocol->core, &data, flags);
624
625 pa_source_output_new_data_done(&data);
626
627 if (!source_output)
628 return NULL;
629
630 s = pa_msgobject_new(record_stream);
631 s->parent.parent.free = record_stream_free;
632 s->parent.process_msg = record_stream_process_msg;
633 s->connection = c;
634 s->source_output = source_output;
635
636 s->source_output->push = source_output_push_cb;
637 s->source_output->kill = source_output_kill_cb;
638 s->source_output->get_latency = source_output_get_latency_cb;
639 s->source_output->moved = source_output_moved_cb;
640 s->source_output->suspend = source_output_suspend_cb;
641 s->source_output->send_event = source_output_send_event_cb;
642 s->source_output->userdata = s;
643
644 fix_record_buffer_attr_pre(s, adjust_latency, early_requests, maxlength, fragsize);
645
646 s->memblockq = pa_memblockq_new(
647 0,
648 *maxlength,
649 0,
650 base = pa_frame_size(&source_output->sample_spec),
651 1,
652 0,
653 0,
654 NULL);
655
656 fix_record_buffer_attr_post(s, maxlength, fragsize);
657
658 *ss = s->source_output->sample_spec;
659 *map = s->source_output->channel_map;
660
661 pa_idxset_put(c->record_streams, s, &s->index);
662
663 pa_log_info("Final latency %0.2f ms = %0.2f ms + %0.2f ms",
664 ((double) pa_bytes_to_usec(s->fragment_size, &source_output->sample_spec) + (double) s->source_latency) / PA_USEC_PER_MSEC,
665 (double) pa_bytes_to_usec(s->fragment_size, &source_output->sample_spec) / PA_USEC_PER_MSEC,
666 (double) s->source_latency / PA_USEC_PER_MSEC);
667
668 pa_source_output_put(s->source_output);
669 return s;
670 }
671
672 static void record_stream_send_killed(record_stream *r) {
673 pa_tagstruct *t;
674 record_stream_assert_ref(r);
675
676 t = pa_tagstruct_new(NULL, 0);
677 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_KILLED);
678 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
679 pa_tagstruct_putu32(t, r->index);
680 pa_pstream_send_tagstruct(r->connection->pstream, t);
681 }
682
683 static void playback_stream_unlink(playback_stream *s) {
684 pa_assert(s);
685
686 if (!s->connection)
687 return;
688
689 if (s->sink_input) {
690 pa_sink_input_unlink(s->sink_input);
691 pa_sink_input_unref(s->sink_input);
692 s->sink_input = NULL;
693 }
694
695 if (s->drain_request)
696 pa_pstream_send_error(s->connection->pstream, s->drain_tag, PA_ERR_NOENTITY);
697
698 pa_assert_se(pa_idxset_remove_by_data(s->connection->output_streams, s, NULL) == s);
699 s->connection = NULL;
700 playback_stream_unref(s);
701 }
702
703 static void playback_stream_free(pa_object* o) {
704 playback_stream *s = PLAYBACK_STREAM(o);
705 pa_assert(s);
706
707 playback_stream_unlink(s);
708
709 pa_memblockq_free(s->memblockq);
710 pa_xfree(s);
711 }
712
713 static int playback_stream_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
714 playback_stream *s = PLAYBACK_STREAM(o);
715 playback_stream_assert_ref(s);
716
717 if (!s->connection)
718 return -1;
719
720 switch (code) {
721 case PLAYBACK_STREAM_MESSAGE_REQUEST_DATA: {
722 pa_tagstruct *t;
723 uint32_t l = 0;
724
725 for (;;) {
726 if ((l = (uint32_t) pa_atomic_load(&s->missing)) <= 0)
727 break;
728
729 if (pa_atomic_cmpxchg(&s->missing, (int) l, 0))
730 break;
731 }
732
733 if (l <= 0)
734 break;
735
736 t = pa_tagstruct_new(NULL, 0);
737 pa_tagstruct_putu32(t, PA_COMMAND_REQUEST);
738 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
739 pa_tagstruct_putu32(t, s->index);
740 pa_tagstruct_putu32(t, l);
741 pa_pstream_send_tagstruct(s->connection->pstream, t);
742
743 /* pa_log("Requesting %lu bytes", (unsigned long) l); */
744 break;
745 }
746
747 case PLAYBACK_STREAM_MESSAGE_UNDERFLOW: {
748 pa_tagstruct *t;
749
750 /* pa_log("signalling underflow"); */
751
752 /* Report that we're empty */
753 t = pa_tagstruct_new(NULL, 0);
754 pa_tagstruct_putu32(t, PA_COMMAND_UNDERFLOW);
755 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
756 pa_tagstruct_putu32(t, s->index);
757 pa_pstream_send_tagstruct(s->connection->pstream, t);
758 break;
759 }
760
761 case PLAYBACK_STREAM_MESSAGE_OVERFLOW: {
762 pa_tagstruct *t;
763
764 /* Notify the user we're overflowed*/
765 t = pa_tagstruct_new(NULL, 0);
766 pa_tagstruct_putu32(t, PA_COMMAND_OVERFLOW);
767 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
768 pa_tagstruct_putu32(t, s->index);
769 pa_pstream_send_tagstruct(s->connection->pstream, t);
770 break;
771 }
772
773 case PLAYBACK_STREAM_MESSAGE_STARTED:
774
775 if (s->connection->version >= 13) {
776 pa_tagstruct *t;
777
778 /* Notify the user we're overflowed*/
779 t = pa_tagstruct_new(NULL, 0);
780 pa_tagstruct_putu32(t, PA_COMMAND_STARTED);
781 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
782 pa_tagstruct_putu32(t, s->index);
783 pa_pstream_send_tagstruct(s->connection->pstream, t);
784 }
785
786 break;
787
788 case PLAYBACK_STREAM_MESSAGE_DRAIN_ACK:
789 pa_pstream_send_simple_ack(s->connection->pstream, PA_PTR_TO_UINT(userdata));
790 break;
791 }
792
793 return 0;
794 }
795
796 static void fix_playback_buffer_attr_pre(
797 playback_stream *s,
798 pa_bool_t adjust_latency,
799 pa_bool_t early_requests,
800 uint32_t *maxlength,
801 uint32_t *tlength,
802 uint32_t* prebuf,
803 uint32_t* minreq) {
804
805 size_t frame_size;
806 pa_usec_t orig_tlength_usec, tlength_usec, orig_minreq_usec, minreq_usec, sink_usec;
807
808 pa_assert(s);
809 pa_assert(maxlength);
810 pa_assert(tlength);
811 pa_assert(prebuf);
812 pa_assert(minreq);
813
814 frame_size = pa_frame_size(&s->sink_input->sample_spec);
815
816 if (*maxlength == (uint32_t) -1 || *maxlength > MAX_MEMBLOCKQ_LENGTH)
817 *maxlength = MAX_MEMBLOCKQ_LENGTH;
818 if (*maxlength <= 0)
819 *maxlength = (uint32_t) frame_size;
820
821 if (*tlength == (uint32_t) -1)
822 *tlength = (uint32_t) pa_usec_to_bytes_round_up(DEFAULT_TLENGTH_MSEC*PA_USEC_PER_MSEC, &s->sink_input->sample_spec);
823 if (*tlength <= 0)
824 *tlength = (uint32_t) frame_size;
825
826 if (*minreq == (uint32_t) -1)
827 *minreq = (uint32_t) pa_usec_to_bytes_round_up(DEFAULT_PROCESS_MSEC*PA_USEC_PER_MSEC, &s->sink_input->sample_spec);
828 if (*minreq <= 0)
829 *minreq = (uint32_t) frame_size;
830
831 if (*tlength < *minreq+frame_size)
832 *tlength = *minreq+(uint32_t) frame_size;
833
834 orig_tlength_usec = tlength_usec = pa_bytes_to_usec(*tlength, &s->sink_input->sample_spec);
835 orig_minreq_usec = minreq_usec = pa_bytes_to_usec(*minreq, &s->sink_input->sample_spec);
836
837 pa_log_info("Requested tlength=%0.2f ms, minreq=%0.2f ms",
838 (double) tlength_usec / PA_USEC_PER_MSEC,
839 (double) minreq_usec / PA_USEC_PER_MSEC);
840
841 if (early_requests) {
842
843 /* In early request mode we need to emulate the classic
844 * fragment-based playback model. We do this setting the sink
845 * latency to the fragment size. */
846
847 sink_usec = minreq_usec;
848
849 pa_log_debug("Early requests mode enabled, configuring sink latency to minreq.");
850
851 } else if (adjust_latency) {
852
853 /* So, the user asked us to adjust the latency of the stream
854 * buffer according to the what the sink can provide. The
855 * tlength passed in shall be the overall latency. Roughly
856 * half the latency will be spent on the hw buffer, the other
857 * half of it in the async buffer queue we maintain for each
858 * client. In between we'll have a safety space of size
859 * 2*minreq. Why the 2*minreq? When the hw buffer is completey
860 * empty and needs to be filled, then our buffer must have
861 * enough data to fulfill this request immediatly and thus
862 * have at least the same tlength as the size of the hw
863 * buffer. It additionally needs space for 2 times minreq
864 * because if the buffer ran empty and a partial fillup
865 * happens immediately on the next iteration we need to be
866 * able to fulfill it and give the application also minreq
867 * time to fill it up again for the next request Makes 2 times
868 * minreq in plus.. */
869
870 if (tlength_usec > minreq_usec*2)
871 sink_usec = (tlength_usec - minreq_usec*2)/2;
872 else
873 sink_usec = 0;
874
875 pa_log_debug("Adjust latency mode enabled, configuring sink latency to half of overall latency.");
876
877 } else {
878
879 /* Ok, the user didn't ask us to adjust the latency, but we
880 * still need to make sure that the parameters from the user
881 * do make sense. */
882
883 if (tlength_usec > minreq_usec*2)
884 sink_usec = (tlength_usec - minreq_usec*2);
885 else
886 sink_usec = 0;
887
888 pa_log_debug("Traditional mode enabled, modifying sink usec only for compat with minreq.");
889 }
890
891 s->sink_latency = pa_sink_input_set_requested_latency(s->sink_input, sink_usec);
892
893 if (early_requests) {
894
895 /* Ok, we didn't necessarily get what we were asking for, so
896 * let's tell the user */
897
898 minreq_usec = s->sink_latency;
899
900 } else if (adjust_latency) {
901
902 /* Ok, we didn't necessarily get what we were asking for, so
903 * let's subtract from what we asked for for the remaining
904 * buffer space */
905
906 if (tlength_usec >= s->sink_latency)
907 tlength_usec -= s->sink_latency;
908 }
909
910 /* FIXME: This is actually larger than necessary, since not all of
911 * the sink latency is actually rewritable. */
912 if (tlength_usec < s->sink_latency + 2*minreq_usec)
913 tlength_usec = s->sink_latency + 2*minreq_usec;
914
915 if (pa_usec_to_bytes_round_up(orig_tlength_usec, &s->sink_input->sample_spec) !=
916 pa_usec_to_bytes_round_up(tlength_usec, &s->sink_input->sample_spec))
917 *tlength = (uint32_t) pa_usec_to_bytes_round_up(tlength_usec, &s->sink_input->sample_spec);
918
919 if (pa_usec_to_bytes(orig_minreq_usec, &s->sink_input->sample_spec) !=
920 pa_usec_to_bytes(minreq_usec, &s->sink_input->sample_spec))
921 *minreq = (uint32_t) pa_usec_to_bytes(minreq_usec, &s->sink_input->sample_spec);
922
923 if (*minreq <= 0) {
924 *minreq = (uint32_t) frame_size;
925 *tlength += (uint32_t) frame_size*2;
926 }
927
928 if (*tlength <= *minreq)
929 *tlength = *minreq*2 + (uint32_t) frame_size;
930
931 if (*prebuf == (uint32_t) -1 || *prebuf > *tlength)
932 *prebuf = *tlength;
933 }
934
935 static void fix_playback_buffer_attr_post(
936 playback_stream *s,
937 uint32_t *maxlength,
938 uint32_t *tlength,
939 uint32_t* prebuf,
940 uint32_t* minreq) {
941
942 pa_assert(s);
943 pa_assert(maxlength);
944 pa_assert(tlength);
945 pa_assert(prebuf);
946 pa_assert(minreq);
947
948 *maxlength = (uint32_t) pa_memblockq_get_maxlength(s->memblockq);
949 *tlength = (uint32_t) pa_memblockq_get_tlength(s->memblockq);
950 *prebuf = (uint32_t) pa_memblockq_get_prebuf(s->memblockq);
951 *minreq = (uint32_t) pa_memblockq_get_minreq(s->memblockq);
952
953 s->minreq = *minreq;
954 }
955
956 static playback_stream* playback_stream_new(
957 pa_native_connection *c,
958 pa_sink *sink,
959 pa_sample_spec *ss,
960 pa_channel_map *map,
961 uint32_t *maxlength,
962 uint32_t *tlength,
963 uint32_t *prebuf,
964 uint32_t *minreq,
965 pa_cvolume *volume,
966 pa_bool_t muted,
967 pa_bool_t muted_set,
968 uint32_t syncid,
969 uint32_t *missing,
970 pa_sink_input_flags_t flags,
971 pa_proplist *p,
972 pa_bool_t adjust_latency,
973 pa_bool_t early_requests,
974 int *ret) {
975
976 playback_stream *s, *ssync;
977 pa_sink_input *sink_input = NULL;
978 pa_memchunk silence;
979 uint32_t idx;
980 int64_t start_index;
981 pa_sink_input_new_data data;
982
983 pa_assert(c);
984 pa_assert(ss);
985 pa_assert(maxlength);
986 pa_assert(tlength);
987 pa_assert(prebuf);
988 pa_assert(minreq);
989 pa_assert(missing);
990 pa_assert(p);
991 pa_assert(ret);
992
993 /* Find syncid group */
994 for (ssync = pa_idxset_first(c->output_streams, &idx); ssync; ssync = pa_idxset_next(c->output_streams, &idx)) {
995
996 if (!playback_stream_isinstance(ssync))
997 continue;
998
999 if (ssync->syncid == syncid)
1000 break;
1001 }
1002
1003 /* Synced streams must connect to the same sink */
1004 if (ssync) {
1005
1006 if (!sink)
1007 sink = ssync->sink_input->sink;
1008 else if (sink != ssync->sink_input->sink) {
1009 *ret = PA_ERR_INVALID;
1010 return NULL;
1011 }
1012 }
1013
1014 pa_sink_input_new_data_init(&data);
1015
1016 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
1017 data.driver = __FILE__;
1018 data.module = c->options->module;
1019 data.client = c->client;
1020 data.sink = sink;
1021 pa_sink_input_new_data_set_sample_spec(&data, ss);
1022 pa_sink_input_new_data_set_channel_map(&data, map);
1023 if (volume)
1024 pa_sink_input_new_data_set_volume(&data, volume);
1025 if (muted_set)
1026 pa_sink_input_new_data_set_muted(&data, muted);
1027 data.sync_base = ssync ? ssync->sink_input : NULL;
1028
1029 *ret = -pa_sink_input_new(&sink_input, c->protocol->core, &data, flags);
1030
1031 pa_sink_input_new_data_done(&data);
1032
1033 if (!sink_input)
1034 return NULL;
1035
1036 s = pa_msgobject_new(playback_stream);
1037 s->parent.parent.parent.free = playback_stream_free;
1038 s->parent.parent.process_msg = playback_stream_process_msg;
1039 s->connection = c;
1040 s->syncid = syncid;
1041 s->sink_input = sink_input;
1042 s->is_underrun = TRUE;
1043 s->drain_request = FALSE;
1044 pa_atomic_store(&s->missing, 0);
1045
1046 s->sink_input->parent.process_msg = sink_input_process_msg;
1047 s->sink_input->pop = sink_input_pop_cb;
1048 s->sink_input->process_rewind = sink_input_process_rewind_cb;
1049 s->sink_input->update_max_rewind = sink_input_update_max_rewind_cb;
1050 s->sink_input->update_max_request = sink_input_update_max_request_cb;
1051 s->sink_input->kill = sink_input_kill_cb;
1052 s->sink_input->moved = sink_input_moved_cb;
1053 s->sink_input->suspend = sink_input_suspend_cb;
1054 s->sink_input->send_event = sink_input_send_event_cb;
1055 s->sink_input->userdata = s;
1056
1057 start_index = ssync ? pa_memblockq_get_read_index(ssync->memblockq) : 0;
1058
1059 fix_playback_buffer_attr_pre(s, adjust_latency, early_requests, maxlength, tlength, prebuf, minreq);
1060 pa_sink_input_get_silence(sink_input, &silence);
1061
1062 s->memblockq = pa_memblockq_new(
1063 start_index,
1064 *maxlength,
1065 *tlength,
1066 pa_frame_size(&sink_input->sample_spec),
1067 *prebuf,
1068 *minreq,
1069 0,
1070 &silence);
1071
1072 pa_memblock_unref(silence.memblock);
1073 fix_playback_buffer_attr_post(s, maxlength, tlength, prebuf, minreq);
1074
1075 *missing = (uint32_t) pa_memblockq_pop_missing(s->memblockq);
1076
1077 *ss = s->sink_input->sample_spec;
1078 *map = s->sink_input->channel_map;
1079
1080 pa_idxset_put(c->output_streams, s, &s->index);
1081
1082 pa_log_info("Final latency %0.2f ms = %0.2f ms + 2*%0.2f ms + %0.2f ms",
1083 ((double) pa_bytes_to_usec(*tlength, &sink_input->sample_spec) + (double) s->sink_latency) / PA_USEC_PER_MSEC,
1084 (double) pa_bytes_to_usec(*tlength-*minreq*2, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
1085 (double) pa_bytes_to_usec(*minreq, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
1086 (double) s->sink_latency / PA_USEC_PER_MSEC);
1087
1088 pa_sink_input_put(s->sink_input);
1089 return s;
1090 }
1091
1092 /* Called from thread context */
1093 static void playback_stream_request_bytes(playback_stream *s) {
1094 size_t m, previous_missing;
1095
1096 playback_stream_assert_ref(s);
1097
1098 m = pa_memblockq_pop_missing(s->memblockq);
1099
1100 if (m <= 0)
1101 return;
1102
1103 /* pa_log("request_bytes(%lu)", (unsigned long) m); */
1104
1105 previous_missing = (size_t) pa_atomic_add(&s->missing, (int) m);
1106
1107 if (pa_memblockq_prebuf_active(s->memblockq) ||
1108 (previous_missing < s->minreq && previous_missing+m >= s->minreq))
1109 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_REQUEST_DATA, NULL, 0, NULL, NULL);
1110 }
1111
1112
1113 static void playback_stream_send_killed(playback_stream *p) {
1114 pa_tagstruct *t;
1115 playback_stream_assert_ref(p);
1116
1117 t = pa_tagstruct_new(NULL, 0);
1118 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_KILLED);
1119 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1120 pa_tagstruct_putu32(t, p->index);
1121 pa_pstream_send_tagstruct(p->connection->pstream, t);
1122 }
1123
1124 static int native_connection_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
1125 pa_native_connection *c = PA_NATIVE_CONNECTION(o);
1126 pa_native_connection_assert_ref(c);
1127
1128 if (!c->protocol)
1129 return -1;
1130
1131 switch (code) {
1132
1133 case CONNECTION_MESSAGE_REVOKE:
1134 pa_pstream_send_revoke(c->pstream, PA_PTR_TO_UINT(userdata));
1135 break;
1136
1137 case CONNECTION_MESSAGE_RELEASE:
1138 pa_pstream_send_release(c->pstream, PA_PTR_TO_UINT(userdata));
1139 break;
1140 }
1141
1142 return 0;
1143 }
1144
1145 static void native_connection_unlink(pa_native_connection *c) {
1146 record_stream *r;
1147 output_stream *o;
1148
1149 pa_assert(c);
1150
1151 if (!c->protocol)
1152 return;
1153
1154 pa_hook_fire(&c->protocol->hooks[PA_NATIVE_HOOK_CONNECTION_UNLINK], c);
1155
1156 if (c->options)
1157 pa_native_options_unref(c->options);
1158
1159 while ((r = pa_idxset_first(c->record_streams, NULL)))
1160 record_stream_unlink(r);
1161
1162 while ((o = pa_idxset_first(c->output_streams, NULL)))
1163 if (playback_stream_isinstance(o))
1164 playback_stream_unlink(PLAYBACK_STREAM(o));
1165 else
1166 upload_stream_unlink(UPLOAD_STREAM(o));
1167
1168 if (c->subscription)
1169 pa_subscription_free(c->subscription);
1170
1171 if (c->pstream)
1172 pa_pstream_unlink(c->pstream);
1173
1174 if (c->auth_timeout_event) {
1175 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
1176 c->auth_timeout_event = NULL;
1177 }
1178
1179 pa_assert_se(pa_idxset_remove_by_data(c->protocol->connections, c, NULL) == c);
1180 c->protocol = NULL;
1181 pa_native_connection_unref(c);
1182 }
1183
1184 static void native_connection_free(pa_object *o) {
1185 pa_native_connection *c = PA_NATIVE_CONNECTION(o);
1186
1187 pa_assert(c);
1188
1189 native_connection_unlink(c);
1190
1191 pa_idxset_free(c->record_streams, NULL, NULL);
1192 pa_idxset_free(c->output_streams, NULL, NULL);
1193
1194 pa_pdispatch_unref(c->pdispatch);
1195 pa_pstream_unref(c->pstream);
1196 pa_client_free(c->client);
1197
1198 pa_xfree(c);
1199 }
1200
1201 static void native_connection_send_memblock(pa_native_connection *c) {
1202 uint32_t start;
1203 record_stream *r;
1204
1205 start = PA_IDXSET_INVALID;
1206 for (;;) {
1207 pa_memchunk chunk;
1208
1209 if (!(r = RECORD_STREAM(pa_idxset_rrobin(c->record_streams, &c->rrobin_index))))
1210 return;
1211
1212 if (start == PA_IDXSET_INVALID)
1213 start = c->rrobin_index;
1214 else if (start == c->rrobin_index)
1215 return;
1216
1217 if (pa_memblockq_peek(r->memblockq, &chunk) >= 0) {
1218 pa_memchunk schunk = chunk;
1219
1220 if (schunk.length > r->fragment_size)
1221 schunk.length = r->fragment_size;
1222
1223 pa_pstream_send_memblock(c->pstream, r->index, 0, PA_SEEK_RELATIVE, &schunk);
1224
1225 pa_memblockq_drop(r->memblockq, schunk.length);
1226 pa_memblock_unref(schunk.memblock);
1227
1228 return;
1229 }
1230 }
1231 }
1232
1233 /*** sink input callbacks ***/
1234
1235 static void handle_seek(playback_stream *s, int64_t indexw) {
1236 playback_stream_assert_ref(s);
1237
1238 /* pa_log("handle_seek: %llu -- %i", (unsigned long long) s->sink_input->thread_info.underrun_for, pa_memblockq_is_readable(s->memblockq)); */
1239
1240 if (s->sink_input->thread_info.underrun_for > 0) {
1241
1242 /* pa_log("%lu vs. %lu", (unsigned long) pa_memblockq_get_length(s->memblockq), (unsigned long) pa_memblockq_get_prebuf(s->memblockq)); */
1243
1244 if (pa_memblockq_is_readable(s->memblockq)) {
1245
1246 /* We just ended an underrun, let's ask the sink
1247 * for a complete rewind rewrite */
1248
1249 pa_log_debug("Requesting rewind due to end of underrun.");
1250 pa_sink_input_request_rewind(s->sink_input,
1251 (size_t) (s->sink_input->thread_info.underrun_for == (size_t) -1 ? 0 : s->sink_input->thread_info.underrun_for),
1252 FALSE, TRUE, FALSE);
1253 }
1254
1255 } else {
1256 int64_t indexr;
1257
1258 indexr = pa_memblockq_get_read_index(s->memblockq);
1259
1260 if (indexw < indexr) {
1261 /* OK, the sink already asked for this data, so
1262 * let's have it usk us again */
1263
1264 pa_log_debug("Requesting rewind due to rewrite.");
1265 pa_sink_input_request_rewind(s->sink_input, (size_t) (indexr - indexw), TRUE, FALSE, FALSE);
1266 }
1267 }
1268
1269 playback_stream_request_bytes(s);
1270 }
1271
1272 /* Called from thread context */
1273 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
1274 pa_sink_input *i = PA_SINK_INPUT(o);
1275 playback_stream *s;
1276
1277 pa_sink_input_assert_ref(i);
1278 s = PLAYBACK_STREAM(i->userdata);
1279 playback_stream_assert_ref(s);
1280
1281 switch (code) {
1282
1283 case SINK_INPUT_MESSAGE_SEEK: {
1284 int64_t windex;
1285
1286 windex = pa_memblockq_get_write_index(s->memblockq);
1287 pa_memblockq_seek(s->memblockq, offset, PA_PTR_TO_UINT(userdata));
1288
1289 handle_seek(s, windex);
1290 return 0;
1291 }
1292
1293 case SINK_INPUT_MESSAGE_POST_DATA: {
1294 int64_t windex;
1295
1296 pa_assert(chunk);
1297
1298 windex = pa_memblockq_get_write_index(s->memblockq);
1299
1300 /* pa_log("sink input post: %lu %lli", (unsigned long) chunk->length, (long long) windex); */
1301
1302 if (pa_memblockq_push_align(s->memblockq, chunk) < 0) {
1303 pa_log_warn("Failed to push data into queue");
1304 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_OVERFLOW, NULL, 0, NULL, NULL);
1305 pa_memblockq_seek(s->memblockq, (int64_t) chunk->length, PA_SEEK_RELATIVE);
1306 }
1307
1308 handle_seek(s, windex);
1309
1310 /* pa_log("sink input post2: %lu", (unsigned long) pa_memblockq_get_length(s->memblockq)); */
1311
1312 return 0;
1313 }
1314
1315 case SINK_INPUT_MESSAGE_DRAIN:
1316 case SINK_INPUT_MESSAGE_FLUSH:
1317 case SINK_INPUT_MESSAGE_PREBUF_FORCE:
1318 case SINK_INPUT_MESSAGE_TRIGGER: {
1319
1320 int64_t windex;
1321 pa_sink_input *isync;
1322 void (*func)(pa_memblockq *bq);
1323
1324 switch (code) {
1325 case SINK_INPUT_MESSAGE_FLUSH:
1326 func = pa_memblockq_flush_write;
1327 break;
1328
1329 case SINK_INPUT_MESSAGE_PREBUF_FORCE:
1330 func = pa_memblockq_prebuf_force;
1331 break;
1332
1333 case SINK_INPUT_MESSAGE_DRAIN:
1334 case SINK_INPUT_MESSAGE_TRIGGER:
1335 func = pa_memblockq_prebuf_disable;
1336 break;
1337
1338 default:
1339 pa_assert_not_reached();
1340 }
1341
1342 windex = pa_memblockq_get_write_index(s->memblockq);
1343 func(s->memblockq);
1344 handle_seek(s, windex);
1345
1346 /* Do the same for all other members in the sync group */
1347 for (isync = i->sync_prev; isync; isync = isync->sync_prev) {
1348 playback_stream *ssync = PLAYBACK_STREAM(isync->userdata);
1349 windex = pa_memblockq_get_write_index(ssync->memblockq);
1350 func(ssync->memblockq);
1351 handle_seek(ssync, windex);
1352 }
1353
1354 for (isync = i->sync_next; isync; isync = isync->sync_next) {
1355 playback_stream *ssync = PLAYBACK_STREAM(isync->userdata);
1356 windex = pa_memblockq_get_write_index(ssync->memblockq);
1357 func(ssync->memblockq);
1358 handle_seek(ssync, windex);
1359 }
1360
1361 if (code == SINK_INPUT_MESSAGE_DRAIN) {
1362 if (!pa_memblockq_is_readable(s->memblockq))
1363 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_DRAIN_ACK, userdata, 0, NULL, NULL);
1364 else {
1365 s->drain_tag = PA_PTR_TO_UINT(userdata);
1366 s->drain_request = TRUE;
1367 }
1368 }
1369
1370 return 0;
1371 }
1372
1373 case SINK_INPUT_MESSAGE_UPDATE_LATENCY:
1374
1375 s->read_index = pa_memblockq_get_read_index(s->memblockq);
1376 s->write_index = pa_memblockq_get_write_index(s->memblockq);
1377 s->render_memblockq_length = pa_memblockq_get_length(s->sink_input->thread_info.render_memblockq);
1378 return 0;
1379
1380 case PA_SINK_INPUT_MESSAGE_SET_STATE: {
1381 int64_t windex;
1382
1383 windex = pa_memblockq_get_write_index(s->memblockq);
1384
1385 pa_memblockq_prebuf_force(s->memblockq);
1386
1387 handle_seek(s, windex);
1388
1389 /* Fall through to the default handler */
1390 break;
1391 }
1392
1393 case PA_SINK_INPUT_MESSAGE_GET_LATENCY: {
1394 pa_usec_t *r = userdata;
1395
1396 *r = pa_bytes_to_usec(pa_memblockq_get_length(s->memblockq), &i->sample_spec);
1397
1398 /* Fall through, the default handler will add in the extra
1399 * latency added by the resampler */
1400 break;
1401 }
1402 }
1403
1404 return pa_sink_input_process_msg(o, code, userdata, offset, chunk);
1405 }
1406
1407 /* Called from thread context */
1408 static int sink_input_pop_cb(pa_sink_input *i, size_t nbytes, pa_memchunk *chunk) {
1409 playback_stream *s;
1410
1411 pa_sink_input_assert_ref(i);
1412 s = PLAYBACK_STREAM(i->userdata);
1413 playback_stream_assert_ref(s);
1414 pa_assert(chunk);
1415
1416 /* pa_log("%s, pop(): %lu", pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME), (unsigned long) pa_memblockq_get_length(s->memblockq)); */
1417
1418 if (pa_memblockq_is_readable(s->memblockq))
1419 s->is_underrun = FALSE;
1420 else {
1421 /* pa_log("%s, UNDERRUN: %lu", pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME), (unsigned long) pa_memblockq_get_length(s->memblockq)); */
1422
1423 if (s->drain_request && pa_sink_input_safe_to_remove(i)) {
1424 s->drain_request = FALSE;
1425 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_DRAIN_ACK, PA_UINT_TO_PTR(s->drain_tag), 0, NULL, NULL);
1426 } else if (!s->is_underrun)
1427 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_UNDERFLOW, NULL, 0, NULL, NULL);
1428
1429 s->is_underrun = TRUE;
1430
1431 playback_stream_request_bytes(s);
1432 }
1433
1434 /* This call will not fail with prebuf=0, hence we check for
1435 underrun explicitly above */
1436 if (pa_memblockq_peek(s->memblockq, chunk) < 0)
1437 return -1;
1438
1439 chunk->length = PA_MIN(nbytes, chunk->length);
1440
1441 if (i->thread_info.underrun_for > 0)
1442 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_STARTED, NULL, 0, NULL, NULL);
1443
1444 pa_memblockq_drop(s->memblockq, chunk->length);
1445 playback_stream_request_bytes(s);
1446
1447 return 0;
1448 }
1449
1450 static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes) {
1451 playback_stream *s;
1452
1453 pa_sink_input_assert_ref(i);
1454 s = PLAYBACK_STREAM(i->userdata);
1455 playback_stream_assert_ref(s);
1456
1457 /* If we are in an underrun, then we don't rewind */
1458 if (i->thread_info.underrun_for > 0)
1459 return;
1460
1461 pa_memblockq_rewind(s->memblockq, nbytes);
1462 }
1463
1464 static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes) {
1465 playback_stream *s;
1466
1467 pa_sink_input_assert_ref(i);
1468 s = PLAYBACK_STREAM(i->userdata);
1469 playback_stream_assert_ref(s);
1470
1471 pa_memblockq_set_maxrewind(s->memblockq, nbytes);
1472 }
1473
1474 static void sink_input_update_max_request_cb(pa_sink_input *i, size_t nbytes) {
1475 playback_stream *s;
1476 size_t tlength;
1477
1478 pa_sink_input_assert_ref(i);
1479 s = PLAYBACK_STREAM(i->userdata);
1480 playback_stream_assert_ref(s);
1481
1482 tlength = nbytes+2*pa_memblockq_get_minreq(s->memblockq);
1483
1484 if (pa_memblockq_get_tlength(s->memblockq) < tlength)
1485 pa_memblockq_set_tlength(s->memblockq, tlength);
1486 }
1487
1488 /* Called from main context */
1489 static void sink_input_kill_cb(pa_sink_input *i) {
1490 playback_stream *s;
1491
1492 pa_sink_input_assert_ref(i);
1493 s = PLAYBACK_STREAM(i->userdata);
1494 playback_stream_assert_ref(s);
1495
1496 playback_stream_send_killed(s);
1497 playback_stream_unlink(s);
1498 }
1499
1500 /* Called from main context */
1501 static void sink_input_send_event_cb(pa_sink_input *i, const char *event, pa_proplist *pl) {
1502 playback_stream *s;
1503 pa_tagstruct *t;
1504
1505 pa_sink_input_assert_ref(i);
1506 s = PLAYBACK_STREAM(i->userdata);
1507 playback_stream_assert_ref(s);
1508
1509 if (s->connection->version < 15)
1510 return;
1511
1512 t = pa_tagstruct_new(NULL, 0);
1513 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_EVENT);
1514 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1515 pa_tagstruct_putu32(t, s->index);
1516 pa_tagstruct_puts(t, event);
1517 pa_tagstruct_put_proplist(t, pl);
1518 pa_pstream_send_tagstruct(s->connection->pstream, t);
1519 }
1520
1521 /* Called from main context */
1522 static void sink_input_suspend_cb(pa_sink_input *i, pa_bool_t suspend) {
1523 playback_stream *s;
1524 pa_tagstruct *t;
1525
1526 pa_sink_input_assert_ref(i);
1527 s = PLAYBACK_STREAM(i->userdata);
1528 playback_stream_assert_ref(s);
1529
1530 if (s->connection->version < 12)
1531 return;
1532
1533 t = pa_tagstruct_new(NULL, 0);
1534 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_SUSPENDED);
1535 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1536 pa_tagstruct_putu32(t, s->index);
1537 pa_tagstruct_put_boolean(t, suspend);
1538 pa_pstream_send_tagstruct(s->connection->pstream, t);
1539 }
1540
1541 /* Called from main context */
1542 static void sink_input_moved_cb(pa_sink_input *i) {
1543 playback_stream *s;
1544 pa_tagstruct *t;
1545 uint32_t maxlength, tlength, prebuf, minreq;
1546
1547 pa_sink_input_assert_ref(i);
1548 s = PLAYBACK_STREAM(i->userdata);
1549 playback_stream_assert_ref(s);
1550
1551 maxlength = (uint32_t) pa_memblockq_get_maxlength(s->memblockq);
1552 tlength = (uint32_t) pa_memblockq_get_tlength(s->memblockq);
1553 prebuf = (uint32_t) pa_memblockq_get_prebuf(s->memblockq);
1554 minreq = (uint32_t) pa_memblockq_get_minreq(s->memblockq);
1555
1556 fix_playback_buffer_attr_pre(s, TRUE, FALSE, &maxlength, &tlength, &prebuf, &minreq);
1557 pa_memblockq_set_maxlength(s->memblockq, maxlength);
1558 pa_memblockq_set_tlength(s->memblockq, tlength);
1559 pa_memblockq_set_prebuf(s->memblockq, prebuf);
1560 pa_memblockq_set_minreq(s->memblockq, minreq);
1561 fix_playback_buffer_attr_post(s, &maxlength, &tlength, &prebuf, &minreq);
1562
1563 if (s->connection->version < 12)
1564 return;
1565
1566 t = pa_tagstruct_new(NULL, 0);
1567 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_MOVED);
1568 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1569 pa_tagstruct_putu32(t, s->index);
1570 pa_tagstruct_putu32(t, i->sink->index);
1571 pa_tagstruct_puts(t, i->sink->name);
1572 pa_tagstruct_put_boolean(t, pa_sink_get_state(i->sink) == PA_SINK_SUSPENDED);
1573
1574 if (s->connection->version >= 13) {
1575 pa_tagstruct_putu32(t, maxlength);
1576 pa_tagstruct_putu32(t, tlength);
1577 pa_tagstruct_putu32(t, prebuf);
1578 pa_tagstruct_putu32(t, minreq);
1579 pa_tagstruct_put_usec(t, s->sink_latency);
1580 }
1581
1582 pa_pstream_send_tagstruct(s->connection->pstream, t);
1583 }
1584
1585 /*** source_output callbacks ***/
1586
1587 /* Called from thread context */
1588 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) {
1589 record_stream *s;
1590
1591 pa_source_output_assert_ref(o);
1592 s = RECORD_STREAM(o->userdata);
1593 record_stream_assert_ref(s);
1594 pa_assert(chunk);
1595
1596 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), RECORD_STREAM_MESSAGE_POST_DATA, NULL, 0, chunk, NULL);
1597 }
1598
1599 static void source_output_kill_cb(pa_source_output *o) {
1600 record_stream *s;
1601
1602 pa_source_output_assert_ref(o);
1603 s = RECORD_STREAM(o->userdata);
1604 record_stream_assert_ref(s);
1605
1606 record_stream_send_killed(s);
1607 record_stream_unlink(s);
1608 }
1609
1610 static pa_usec_t source_output_get_latency_cb(pa_source_output *o) {
1611 record_stream *s;
1612
1613 pa_source_output_assert_ref(o);
1614 s = RECORD_STREAM(o->userdata);
1615 record_stream_assert_ref(s);
1616
1617 /*pa_log("get_latency: %u", pa_memblockq_get_length(s->memblockq));*/
1618
1619 return pa_bytes_to_usec(pa_memblockq_get_length(s->memblockq), &o->sample_spec);
1620 }
1621
1622 /* Called from main context */
1623 static void source_output_send_event_cb(pa_source_output *o, const char *event, pa_proplist *pl) {
1624 record_stream *s;
1625 pa_tagstruct *t;
1626
1627 pa_source_output_assert_ref(o);
1628 s = RECORD_STREAM(o->userdata);
1629 record_stream_assert_ref(s);
1630
1631 if (s->connection->version < 15)
1632 return;
1633
1634 t = pa_tagstruct_new(NULL, 0);
1635 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_EVENT);
1636 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1637 pa_tagstruct_putu32(t, s->index);
1638 pa_tagstruct_puts(t, event);
1639 pa_tagstruct_put_proplist(t, pl);
1640 pa_pstream_send_tagstruct(s->connection->pstream, t);
1641 }
1642
1643 /* Called from main context */
1644 static void source_output_suspend_cb(pa_source_output *o, pa_bool_t suspend) {
1645 record_stream *s;
1646 pa_tagstruct *t;
1647
1648 pa_source_output_assert_ref(o);
1649 s = RECORD_STREAM(o->userdata);
1650 record_stream_assert_ref(s);
1651
1652 if (s->connection->version < 12)
1653 return;
1654
1655 t = pa_tagstruct_new(NULL, 0);
1656 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_SUSPENDED);
1657 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1658 pa_tagstruct_putu32(t, s->index);
1659 pa_tagstruct_put_boolean(t, suspend);
1660 pa_pstream_send_tagstruct(s->connection->pstream, t);
1661 }
1662
1663 /* Called from main context */
1664 static void source_output_moved_cb(pa_source_output *o) {
1665 record_stream *s;
1666 pa_tagstruct *t;
1667 uint32_t maxlength, fragsize;
1668
1669 pa_source_output_assert_ref(o);
1670 s = RECORD_STREAM(o->userdata);
1671 record_stream_assert_ref(s);
1672
1673 fragsize = (uint32_t) s->fragment_size;
1674 maxlength = (uint32_t) pa_memblockq_get_length(s->memblockq);
1675
1676 fix_record_buffer_attr_pre(s, TRUE, FALSE, &maxlength, &fragsize);
1677 pa_memblockq_set_maxlength(s->memblockq, maxlength);
1678 fix_record_buffer_attr_post(s, &maxlength, &fragsize);
1679
1680 if (s->connection->version < 12)
1681 return;
1682
1683 t = pa_tagstruct_new(NULL, 0);
1684 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_MOVED);
1685 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1686 pa_tagstruct_putu32(t, s->index);
1687 pa_tagstruct_putu32(t, o->source->index);
1688 pa_tagstruct_puts(t, o->source->name);
1689 pa_tagstruct_put_boolean(t, pa_source_get_state(o->source) == PA_SOURCE_SUSPENDED);
1690
1691 if (s->connection->version >= 13) {
1692 pa_tagstruct_putu32(t, maxlength);
1693 pa_tagstruct_putu32(t, fragsize);
1694 pa_tagstruct_put_usec(t, s->source_latency);
1695 }
1696
1697 pa_pstream_send_tagstruct(s->connection->pstream, t);
1698 }
1699
1700 /*** pdispatch callbacks ***/
1701
1702 static void protocol_error(pa_native_connection *c) {
1703 pa_log("protocol error, kicking client");
1704 native_connection_unlink(c);
1705 }
1706
1707 #define CHECK_VALIDITY(pstream, expression, tag, error) do { \
1708 if (!(expression)) { \
1709 pa_pstream_send_error((pstream), (tag), (error)); \
1710 return; \
1711 } \
1712 } while(0);
1713
1714 static pa_tagstruct *reply_new(uint32_t tag) {
1715 pa_tagstruct *reply;
1716
1717 reply = pa_tagstruct_new(NULL, 0);
1718 pa_tagstruct_putu32(reply, PA_COMMAND_REPLY);
1719 pa_tagstruct_putu32(reply, tag);
1720 return reply;
1721 }
1722
1723 static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
1724 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
1725 playback_stream *s;
1726 uint32_t maxlength, tlength, prebuf, minreq, sink_index, syncid, missing;
1727 const char *name = NULL, *sink_name;
1728 pa_sample_spec ss;
1729 pa_channel_map map;
1730 pa_tagstruct *reply;
1731 pa_sink *sink = NULL;
1732 pa_cvolume volume;
1733 pa_bool_t
1734 corked = FALSE,
1735 no_remap = FALSE,
1736 no_remix = FALSE,
1737 fix_format = FALSE,
1738 fix_rate = FALSE,
1739 fix_channels = FALSE,
1740 no_move = FALSE,
1741 variable_rate = FALSE,
1742 muted = FALSE,
1743 adjust_latency = FALSE,
1744 early_requests = FALSE,
1745 dont_inhibit_auto_suspend = FALSE,
1746 muted_set = FALSE,
1747 fail_on_suspend = FALSE;
1748 pa_sink_input_flags_t flags = 0;
1749 pa_proplist *p;
1750 pa_bool_t volume_set = TRUE;
1751 int ret = PA_ERR_INVALID;
1752
1753 pa_native_connection_assert_ref(c);
1754 pa_assert(t);
1755
1756 if ((c->version < 13 && (pa_tagstruct_gets(t, &name) < 0 || !name)) ||
1757 pa_tagstruct_get(
1758 t,
1759 PA_TAG_SAMPLE_SPEC, &ss,
1760 PA_TAG_CHANNEL_MAP, &map,
1761 PA_TAG_U32, &sink_index,
1762 PA_TAG_STRING, &sink_name,
1763 PA_TAG_U32, &maxlength,
1764 PA_TAG_BOOLEAN, &corked,
1765 PA_TAG_U32, &tlength,
1766 PA_TAG_U32, &prebuf,
1767 PA_TAG_U32, &minreq,
1768 PA_TAG_U32, &syncid,
1769 PA_TAG_CVOLUME, &volume,
1770 PA_TAG_INVALID) < 0) {
1771
1772 protocol_error(c);
1773 return;
1774 }
1775
1776 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
1777 CHECK_VALIDITY(c->pstream, !sink_name || pa_namereg_is_valid_name(sink_name), tag, PA_ERR_INVALID);
1778 CHECK_VALIDITY(c->pstream, sink_index == PA_INVALID_INDEX || !sink_name, tag, PA_ERR_INVALID);
1779 CHECK_VALIDITY(c->pstream, !sink_name || sink_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
1780 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
1781 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
1782 CHECK_VALIDITY(c->pstream, pa_cvolume_valid(&volume), tag, PA_ERR_INVALID);
1783 CHECK_VALIDITY(c->pstream, map.channels == ss.channels && volume.channels == ss.channels, tag, PA_ERR_INVALID);
1784
1785 p = pa_proplist_new();
1786
1787 if (name)
1788 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
1789
1790 if (c->version >= 12) {
1791 /* Since 0.9.8 the user can ask for a couple of additional flags */
1792
1793 if (pa_tagstruct_get_boolean(t, &no_remap) < 0 ||
1794 pa_tagstruct_get_boolean(t, &no_remix) < 0 ||
1795 pa_tagstruct_get_boolean(t, &fix_format) < 0 ||
1796 pa_tagstruct_get_boolean(t, &fix_rate) < 0 ||
1797 pa_tagstruct_get_boolean(t, &fix_channels) < 0 ||
1798 pa_tagstruct_get_boolean(t, &no_move) < 0 ||
1799 pa_tagstruct_get_boolean(t, &variable_rate) < 0) {
1800
1801 protocol_error(c);
1802 pa_proplist_free(p);
1803 return;
1804 }
1805 }
1806
1807 if (c->version >= 13) {
1808
1809 if (pa_tagstruct_get_boolean(t, &muted) < 0 ||
1810 pa_tagstruct_get_boolean(t, &adjust_latency) < 0 ||
1811 pa_tagstruct_get_proplist(t, p) < 0) {
1812 protocol_error(c);
1813 pa_proplist_free(p);
1814 return;
1815 }
1816 }
1817
1818 if (c->version >= 14) {
1819
1820 if (pa_tagstruct_get_boolean(t, &volume_set) < 0 ||
1821 pa_tagstruct_get_boolean(t, &early_requests) < 0) {
1822 protocol_error(c);
1823 pa_proplist_free(p);
1824 return;
1825 }
1826 }
1827
1828 if (c->version >= 15) {
1829
1830 if (pa_tagstruct_get_boolean(t, &muted_set) < 0 ||
1831 pa_tagstruct_get_boolean(t, &dont_inhibit_auto_suspend) < 0 ||
1832 pa_tagstruct_get_boolean(t, &fail_on_suspend) < 0) {
1833 protocol_error(c);
1834 pa_proplist_free(p);
1835 return;
1836 }
1837 }
1838
1839 if (!pa_tagstruct_eof(t)) {
1840 protocol_error(c);
1841 pa_proplist_free(p);
1842 return;
1843 }
1844
1845 if (sink_index != PA_INVALID_INDEX) {
1846
1847 if (!(sink = pa_idxset_get_by_index(c->protocol->core->sinks, sink_index))) {
1848 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
1849 pa_proplist_free(p);
1850 return;
1851 }
1852
1853 } else if (sink_name) {
1854
1855 if (!(sink = pa_namereg_get(c->protocol->core, sink_name, PA_NAMEREG_SINK))) {
1856 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
1857 pa_proplist_free(p);
1858 return;
1859 }
1860 }
1861
1862 flags =
1863 (corked ? PA_SINK_INPUT_START_CORKED : 0) |
1864 (no_remap ? PA_SINK_INPUT_NO_REMAP : 0) |
1865 (no_remix ? PA_SINK_INPUT_NO_REMIX : 0) |
1866 (fix_format ? PA_SINK_INPUT_FIX_FORMAT : 0) |
1867 (fix_rate ? PA_SINK_INPUT_FIX_RATE : 0) |
1868 (fix_channels ? PA_SINK_INPUT_FIX_CHANNELS : 0) |
1869 (no_move ? PA_SINK_INPUT_DONT_MOVE : 0) |
1870 (variable_rate ? PA_SINK_INPUT_VARIABLE_RATE : 0) |
1871 (dont_inhibit_auto_suspend ? PA_SINK_INPUT_DONT_INHIBIT_AUTO_SUSPEND : 0) |
1872 (fail_on_suspend ? PA_SINK_INPUT_FAIL_ON_SUSPEND : 0);
1873
1874 /* Only since protocol version 15 there's a seperate muted_set
1875 * flag. For older versions we synthesize it here */
1876 muted_set = muted_set || muted;
1877
1878 s = playback_stream_new(c, sink, &ss, &map, &maxlength, &tlength, &prebuf, &minreq, volume_set ? &volume : NULL, muted, muted_set, syncid, &missing, flags, p, adjust_latency, early_requests, &ret);
1879 pa_proplist_free(p);
1880
1881 CHECK_VALIDITY(c->pstream, s, tag, ret);
1882
1883 reply = reply_new(tag);
1884 pa_tagstruct_putu32(reply, s->index);
1885 pa_assert(s->sink_input);
1886 pa_tagstruct_putu32(reply, s->sink_input->index);
1887 pa_tagstruct_putu32(reply, missing);
1888
1889 /* pa_log("initial request is %u", missing); */
1890
1891 if (c->version >= 9) {
1892 /* Since 0.9.0 we support sending the buffer metrics back to the client */
1893
1894 pa_tagstruct_putu32(reply, (uint32_t) maxlength);
1895 pa_tagstruct_putu32(reply, (uint32_t) tlength);
1896 pa_tagstruct_putu32(reply, (uint32_t) prebuf);
1897 pa_tagstruct_putu32(reply, (uint32_t) minreq);
1898 }
1899
1900 if (c->version >= 12) {
1901 /* Since 0.9.8 we support sending the chosen sample
1902 * spec/channel map/device/suspend status back to the
1903 * client */
1904
1905 pa_tagstruct_put_sample_spec(reply, &ss);
1906 pa_tagstruct_put_channel_map(reply, &map);
1907
1908 pa_tagstruct_putu32(reply, s->sink_input->sink->index);
1909 pa_tagstruct_puts(reply, s->sink_input->sink->name);
1910
1911 pa_tagstruct_put_boolean(reply, pa_sink_get_state(s->sink_input->sink) == PA_SINK_SUSPENDED);
1912 }
1913
1914 if (c->version >= 13)
1915 pa_tagstruct_put_usec(reply, s->sink_latency);
1916
1917 pa_pstream_send_tagstruct(c->pstream, reply);
1918 }
1919
1920 static void command_delete_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
1921 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
1922 uint32_t channel;
1923
1924 pa_native_connection_assert_ref(c);
1925 pa_assert(t);
1926
1927 if (pa_tagstruct_getu32(t, &channel) < 0 ||
1928 !pa_tagstruct_eof(t)) {
1929 protocol_error(c);
1930 return;
1931 }
1932
1933 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
1934
1935 switch (command) {
1936
1937 case PA_COMMAND_DELETE_PLAYBACK_STREAM: {
1938 playback_stream *s;
1939 if (!(s = pa_idxset_get_by_index(c->output_streams, channel)) || !playback_stream_isinstance(s)) {
1940 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
1941 return;
1942 }
1943
1944 playback_stream_unlink(s);
1945 break;
1946 }
1947
1948 case PA_COMMAND_DELETE_RECORD_STREAM: {
1949 record_stream *s;
1950 if (!(s = pa_idxset_get_by_index(c->record_streams, channel))) {
1951 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
1952 return;
1953 }
1954
1955 record_stream_unlink(s);
1956 break;
1957 }
1958
1959 case PA_COMMAND_DELETE_UPLOAD_STREAM: {
1960 upload_stream *s;
1961
1962 if (!(s = pa_idxset_get_by_index(c->output_streams, channel)) || !upload_stream_isinstance(s)) {
1963 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
1964 return;
1965 }
1966
1967 upload_stream_unlink(s);
1968 break;
1969 }
1970
1971 default:
1972 pa_assert_not_reached();
1973 }
1974
1975 pa_pstream_send_simple_ack(c->pstream, tag);
1976 }
1977
1978 static void command_create_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
1979 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
1980 record_stream *s;
1981 uint32_t maxlength, fragment_size;
1982 uint32_t source_index;
1983 const char *name = NULL, *source_name;
1984 pa_sample_spec ss;
1985 pa_channel_map map;
1986 pa_tagstruct *reply;
1987 pa_source *source = NULL;
1988 pa_bool_t
1989 corked = FALSE,
1990 no_remap = FALSE,
1991 no_remix = FALSE,
1992 fix_format = FALSE,
1993 fix_rate = FALSE,
1994 fix_channels = FALSE,
1995 no_move = FALSE,
1996 variable_rate = FALSE,
1997 adjust_latency = FALSE,
1998 peak_detect = FALSE,
1999 early_requests = FALSE,
2000 dont_inhibit_auto_suspend = FALSE,
2001 fail_on_suspend = FALSE;
2002 pa_source_output_flags_t flags = 0;
2003 pa_proplist *p;
2004 uint32_t direct_on_input_idx = PA_INVALID_INDEX;
2005 pa_sink_input *direct_on_input = NULL;
2006 int ret = PA_ERR_INVALID;
2007
2008 pa_native_connection_assert_ref(c);
2009 pa_assert(t);
2010
2011 if ((c->version < 13 && (pa_tagstruct_gets(t, &name) < 0 || !name)) ||
2012 pa_tagstruct_get_sample_spec(t, &ss) < 0 ||
2013 pa_tagstruct_get_channel_map(t, &map) < 0 ||
2014 pa_tagstruct_getu32(t, &source_index) < 0 ||
2015 pa_tagstruct_gets(t, &source_name) < 0 ||
2016 pa_tagstruct_getu32(t, &maxlength) < 0 ||
2017 pa_tagstruct_get_boolean(t, &corked) < 0 ||
2018 pa_tagstruct_getu32(t, &fragment_size) < 0) {
2019 protocol_error(c);
2020 return;
2021 }
2022
2023 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2024 CHECK_VALIDITY(c->pstream, !source_name || pa_namereg_is_valid_name(source_name), tag, PA_ERR_INVALID);
2025 CHECK_VALIDITY(c->pstream, source_index == PA_INVALID_INDEX || !source_name, tag, PA_ERR_INVALID);
2026 CHECK_VALIDITY(c->pstream, !source_name || source_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
2027 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
2028 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
2029 CHECK_VALIDITY(c->pstream, map.channels == ss.channels, tag, PA_ERR_INVALID);
2030
2031 p = pa_proplist_new();
2032
2033 if (name)
2034 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
2035
2036 if (c->version >= 12) {
2037 /* Since 0.9.8 the user can ask for a couple of additional flags */
2038
2039 if (pa_tagstruct_get_boolean(t, &no_remap) < 0 ||
2040 pa_tagstruct_get_boolean(t, &no_remix) < 0 ||
2041 pa_tagstruct_get_boolean(t, &fix_format) < 0 ||
2042 pa_tagstruct_get_boolean(t, &fix_rate) < 0 ||
2043 pa_tagstruct_get_boolean(t, &fix_channels) < 0 ||
2044 pa_tagstruct_get_boolean(t, &no_move) < 0 ||
2045 pa_tagstruct_get_boolean(t, &variable_rate) < 0) {
2046
2047 protocol_error(c);
2048 pa_proplist_free(p);
2049 return;
2050 }
2051 }
2052
2053 if (c->version >= 13) {
2054
2055 if (pa_tagstruct_get_boolean(t, &peak_detect) < 0 ||
2056 pa_tagstruct_get_boolean(t, &adjust_latency) < 0 ||
2057 pa_tagstruct_get_proplist(t, p) < 0 ||
2058 pa_tagstruct_getu32(t, &direct_on_input_idx) < 0) {
2059 protocol_error(c);
2060 pa_proplist_free(p);
2061 return;
2062 }
2063 }
2064
2065 if (c->version >= 14) {
2066
2067 if (pa_tagstruct_get_boolean(t, &early_requests) < 0) {
2068 protocol_error(c);
2069 pa_proplist_free(p);
2070 return;
2071 }
2072 }
2073
2074 if (c->version >= 15) {
2075
2076 if (pa_tagstruct_get_boolean(t, &dont_inhibit_auto_suspend) < 0 ||
2077 pa_tagstruct_get_boolean(t, &fail_on_suspend) < 0) {
2078 protocol_error(c);
2079 pa_proplist_free(p);
2080 return;
2081 }
2082 }
2083
2084 if (!pa_tagstruct_eof(t)) {
2085 protocol_error(c);
2086 pa_proplist_free(p);
2087 return;
2088 }
2089
2090 if (source_index != PA_INVALID_INDEX) {
2091
2092 if (!(source = pa_idxset_get_by_index(c->protocol->core->sources, source_index))) {
2093 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2094 pa_proplist_free(p);
2095 return;
2096 }
2097
2098 } else if (source_name) {
2099
2100 if (!(source = pa_namereg_get(c->protocol->core, source_name, PA_NAMEREG_SOURCE))) {
2101 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2102 pa_proplist_free(p);
2103 return;
2104 }
2105 }
2106
2107 if (direct_on_input_idx != PA_INVALID_INDEX) {
2108
2109 if (!(direct_on_input = pa_idxset_get_by_index(c->protocol->core->sink_inputs, direct_on_input_idx))) {
2110 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2111 pa_proplist_free(p);
2112 return;
2113 }
2114 }
2115
2116 flags =
2117 (corked ? PA_SOURCE_OUTPUT_START_CORKED : 0) |
2118 (no_remap ? PA_SOURCE_OUTPUT_NO_REMAP : 0) |
2119 (no_remix ? PA_SOURCE_OUTPUT_NO_REMIX : 0) |
2120 (fix_format ? PA_SOURCE_OUTPUT_FIX_FORMAT : 0) |
2121 (fix_rate ? PA_SOURCE_OUTPUT_FIX_RATE : 0) |
2122 (fix_channels ? PA_SOURCE_OUTPUT_FIX_CHANNELS : 0) |
2123 (no_move ? PA_SOURCE_OUTPUT_DONT_MOVE : 0) |
2124 (variable_rate ? PA_SOURCE_OUTPUT_VARIABLE_RATE : 0) |
2125 (dont_inhibit_auto_suspend ? PA_SOURCE_OUTPUT_DONT_INHIBIT_AUTO_SUSPEND : 0) |
2126 (fail_on_suspend ? PA_SOURCE_OUTPUT_FAIL_ON_SUSPEND : 0);
2127
2128 s = record_stream_new(c, source, &ss, &map, peak_detect, &maxlength, &fragment_size, flags, p, adjust_latency, direct_on_input, early_requests, &ret);
2129 pa_proplist_free(p);
2130
2131 CHECK_VALIDITY(c->pstream, s, tag, ret);
2132
2133 reply = reply_new(tag);
2134 pa_tagstruct_putu32(reply, s->index);
2135 pa_assert(s->source_output);
2136 pa_tagstruct_putu32(reply, s->source_output->index);
2137
2138 if (c->version >= 9) {
2139 /* Since 0.9 we support sending the buffer metrics back to the client */
2140
2141 pa_tagstruct_putu32(reply, (uint32_t) maxlength);
2142 pa_tagstruct_putu32(reply, (uint32_t) fragment_size);
2143 }
2144
2145 if (c->version >= 12) {
2146 /* Since 0.9.8 we support sending the chosen sample
2147 * spec/channel map/device/suspend status back to the
2148 * client */
2149
2150 pa_tagstruct_put_sample_spec(reply, &ss);
2151 pa_tagstruct_put_channel_map(reply, &map);
2152
2153 pa_tagstruct_putu32(reply, s->source_output->source->index);
2154 pa_tagstruct_puts(reply, s->source_output->source->name);
2155
2156 pa_tagstruct_put_boolean(reply, pa_source_get_state(s->source_output->source) == PA_SOURCE_SUSPENDED);
2157 }
2158
2159 if (c->version >= 13)
2160 pa_tagstruct_put_usec(reply, s->source_latency);
2161
2162 pa_pstream_send_tagstruct(c->pstream, reply);
2163 }
2164
2165 static void command_exit(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2166 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2167 int ret;
2168
2169 pa_native_connection_assert_ref(c);
2170 pa_assert(t);
2171
2172 if (!pa_tagstruct_eof(t)) {
2173 protocol_error(c);
2174 return;
2175 }
2176
2177 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2178 ret = pa_core_exit(c->protocol->core, FALSE, 0);
2179 CHECK_VALIDITY(c->pstream, ret >= 0, tag, PA_ERR_ACCESS);
2180
2181 pa_pstream_send_simple_ack(c->pstream, tag); /* nonsense */
2182 }
2183
2184 static void command_auth(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2185 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2186 const void*cookie;
2187 pa_tagstruct *reply;
2188 pa_bool_t shm_on_remote = FALSE, do_shm;
2189
2190 pa_native_connection_assert_ref(c);
2191 pa_assert(t);
2192
2193 if (pa_tagstruct_getu32(t, &c->version) < 0 ||
2194 pa_tagstruct_get_arbitrary(t, &cookie, PA_NATIVE_COOKIE_LENGTH) < 0 ||
2195 !pa_tagstruct_eof(t)) {
2196 protocol_error(c);
2197 return;
2198 }
2199
2200 /* Minimum supported version */
2201 if (c->version < 8) {
2202 pa_pstream_send_error(c->pstream, tag, PA_ERR_VERSION);
2203 return;
2204 }
2205
2206 /* Starting with protocol version 13 the MSB of the version tag
2207 reflects if shm is available for this pa_native_connection or
2208 not. */
2209 if (c->version >= 13) {
2210 shm_on_remote = !!(c->version & 0x80000000U);
2211 c->version &= 0x7FFFFFFFU;
2212 }
2213
2214 pa_log_debug("Protocol version: remote %u, local %u", c->version, PA_PROTOCOL_VERSION);
2215
2216 pa_proplist_setf(c->client->proplist, "native-protocol.version", "%u", c->version);
2217
2218 if (!c->authorized) {
2219 pa_bool_t success = FALSE;
2220
2221 #ifdef HAVE_CREDS
2222 const pa_creds *creds;
2223
2224 if ((creds = pa_pdispatch_creds(pd))) {
2225 if (creds->uid == getuid())
2226 success = TRUE;
2227 else if (c->options->auth_group) {
2228 int r;
2229 gid_t gid;
2230
2231 if ((gid = pa_get_gid_of_group(c->options->auth_group)) == (gid_t) -1)
2232 pa_log_warn("Failed to get GID of group '%s'", c->options->auth_group);
2233 else if (gid == creds->gid)
2234 success = TRUE;
2235
2236 if (!success) {
2237 if ((r = pa_uid_in_group(creds->uid, c->options->auth_group)) < 0)
2238 pa_log_warn("Failed to check group membership.");
2239 else if (r > 0)
2240 success = TRUE;
2241 }
2242 }
2243
2244 pa_log_info("Got credentials: uid=%lu gid=%lu success=%i",
2245 (unsigned long) creds->uid,
2246 (unsigned long) creds->gid,
2247 (int) success);
2248 }
2249 #endif
2250
2251 if (!success && c->options->auth_cookie) {
2252 const uint8_t *ac;
2253
2254 if ((ac = pa_auth_cookie_read(c->options->auth_cookie, PA_NATIVE_COOKIE_LENGTH)))
2255 if (memcmp(ac, cookie, PA_NATIVE_COOKIE_LENGTH) == 0)
2256 success = TRUE;
2257 }
2258
2259 if (!success) {
2260 pa_log_warn("Denied access to client with invalid authorization data.");
2261 pa_pstream_send_error(c->pstream, tag, PA_ERR_ACCESS);
2262 return;
2263 }
2264
2265 c->authorized = TRUE;
2266 if (c->auth_timeout_event) {
2267 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
2268 c->auth_timeout_event = NULL;
2269 }
2270 }
2271
2272 /* Enable shared memory support if possible */
2273 do_shm =
2274 pa_mempool_is_shared(c->protocol->core->mempool) &&
2275 c->is_local;
2276
2277 pa_log_debug("SHM possible: %s", pa_yes_no(do_shm));
2278
2279 if (do_shm)
2280 if (c->version < 10 || (c->version >= 13 && !shm_on_remote))
2281 do_shm = FALSE;
2282
2283 #ifdef HAVE_CREDS
2284 if (do_shm) {
2285 /* Only enable SHM if both sides are owned by the same
2286 * user. This is a security measure because otherwise data
2287 * private to the user might leak. */
2288
2289 const pa_creds *creds;
2290 if (!(creds = pa_pdispatch_creds(pd)) || getuid() != creds->uid)
2291 do_shm = FALSE;
2292 }
2293 #endif
2294
2295 pa_log_debug("Negotiated SHM: %s", pa_yes_no(do_shm));
2296 pa_pstream_enable_shm(c->pstream, do_shm);
2297
2298 reply = reply_new(tag);
2299 pa_tagstruct_putu32(reply, PA_PROTOCOL_VERSION | (do_shm ? 0x80000000 : 0));
2300
2301 #ifdef HAVE_CREDS
2302 {
2303 /* SHM support is only enabled after both sides made sure they are the same user. */
2304
2305 pa_creds ucred;
2306
2307 ucred.uid = getuid();
2308 ucred.gid = getgid();
2309
2310 pa_pstream_send_tagstruct_with_creds(c->pstream, reply, &ucred);
2311 }
2312 #else
2313 pa_pstream_send_tagstruct(c->pstream, reply);
2314 #endif
2315 }
2316
2317 static void command_set_client_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2318 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2319 const char *name = NULL;
2320 pa_proplist *p;
2321 pa_tagstruct *reply;
2322
2323 pa_native_connection_assert_ref(c);
2324 pa_assert(t);
2325
2326 p = pa_proplist_new();
2327
2328 if ((c->version < 13 && pa_tagstruct_gets(t, &name) < 0) ||
2329 (c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2330 !pa_tagstruct_eof(t)) {
2331
2332 protocol_error(c);
2333 pa_proplist_free(p);
2334 return;
2335 }
2336
2337 if (name)
2338 if (pa_proplist_sets(p, PA_PROP_APPLICATION_NAME, name) < 0) {
2339 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
2340 pa_proplist_free(p);
2341 return;
2342 }
2343
2344 pa_client_update_proplist(c->client, PA_UPDATE_REPLACE, p);
2345 pa_proplist_free(p);
2346
2347 reply = reply_new(tag);
2348
2349 if (c->version >= 13)
2350 pa_tagstruct_putu32(reply, c->client->index);
2351
2352 pa_pstream_send_tagstruct(c->pstream, reply);
2353 }
2354
2355 static void command_lookup(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2356 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2357 const char *name;
2358 uint32_t idx = PA_IDXSET_INVALID;
2359
2360 pa_native_connection_assert_ref(c);
2361 pa_assert(t);
2362
2363 if (pa_tagstruct_gets(t, &name) < 0 ||
2364 !pa_tagstruct_eof(t)) {
2365 protocol_error(c);
2366 return;
2367 }
2368
2369 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2370 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2371
2372 if (command == PA_COMMAND_LOOKUP_SINK) {
2373 pa_sink *sink;
2374 if ((sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK)))
2375 idx = sink->index;
2376 } else {
2377 pa_source *source;
2378 pa_assert(command == PA_COMMAND_LOOKUP_SOURCE);
2379 if ((source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE)))
2380 idx = source->index;
2381 }
2382
2383 if (idx == PA_IDXSET_INVALID)
2384 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2385 else {
2386 pa_tagstruct *reply;
2387 reply = reply_new(tag);
2388 pa_tagstruct_putu32(reply, idx);
2389 pa_pstream_send_tagstruct(c->pstream, reply);
2390 }
2391 }
2392
2393 static void command_drain_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2394 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2395 uint32_t idx;
2396 playback_stream *s;
2397
2398 pa_native_connection_assert_ref(c);
2399 pa_assert(t);
2400
2401 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2402 !pa_tagstruct_eof(t)) {
2403 protocol_error(c);
2404 return;
2405 }
2406
2407 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2408 s = pa_idxset_get_by_index(c->output_streams, idx);
2409 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2410 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2411
2412 pa_asyncmsgq_post(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_DRAIN, PA_UINT_TO_PTR(tag), 0, NULL, NULL);
2413 }
2414
2415 static void command_stat(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2416 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2417 pa_tagstruct *reply;
2418 const pa_mempool_stat *stat;
2419
2420 pa_native_connection_assert_ref(c);
2421 pa_assert(t);
2422
2423 if (!pa_tagstruct_eof(t)) {
2424 protocol_error(c);
2425 return;
2426 }
2427
2428 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2429
2430 stat = pa_mempool_get_stat(c->protocol->core->mempool);
2431
2432 reply = reply_new(tag);
2433 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->n_allocated));
2434 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->allocated_size));
2435 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->n_accumulated));
2436 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->accumulated_size));
2437 pa_tagstruct_putu32(reply, (uint32_t) pa_scache_total_size(c->protocol->core));
2438 pa_pstream_send_tagstruct(c->pstream, reply);
2439 }
2440
2441 static void command_get_playback_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2442 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2443 pa_tagstruct *reply;
2444 playback_stream *s;
2445 struct timeval tv, now;
2446 uint32_t idx;
2447 pa_usec_t latency;
2448
2449 pa_native_connection_assert_ref(c);
2450 pa_assert(t);
2451
2452 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2453 pa_tagstruct_get_timeval(t, &tv) < 0 ||
2454 !pa_tagstruct_eof(t)) {
2455 protocol_error(c);
2456 return;
2457 }
2458
2459 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2460 s = pa_idxset_get_by_index(c->output_streams, idx);
2461 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2462 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2463 CHECK_VALIDITY(c->pstream, pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_UPDATE_LATENCY, s, 0, NULL) == 0, tag, PA_ERR_NOENTITY)
2464
2465 reply = reply_new(tag);
2466
2467 latency = pa_sink_get_latency(s->sink_input->sink);
2468 latency += pa_bytes_to_usec(s->render_memblockq_length, &s->sink_input->sample_spec);
2469
2470 pa_tagstruct_put_usec(reply, latency);
2471
2472 pa_tagstruct_put_usec(reply, 0);
2473 pa_tagstruct_put_boolean(reply, s->sink_input->thread_info.playing_for > 0);
2474 pa_tagstruct_put_timeval(reply, &tv);
2475 pa_tagstruct_put_timeval(reply, pa_gettimeofday(&now));
2476 pa_tagstruct_puts64(reply, s->write_index);
2477 pa_tagstruct_puts64(reply, s->read_index);
2478
2479 if (c->version >= 13) {
2480 pa_tagstruct_putu64(reply, s->sink_input->thread_info.underrun_for);
2481 pa_tagstruct_putu64(reply, s->sink_input->thread_info.playing_for);
2482 }
2483
2484 pa_pstream_send_tagstruct(c->pstream, reply);
2485 }
2486
2487 static void command_get_record_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2488 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2489 pa_tagstruct *reply;
2490 record_stream *s;
2491 struct timeval tv, now;
2492 uint32_t idx;
2493
2494 pa_native_connection_assert_ref(c);
2495 pa_assert(t);
2496
2497 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2498 pa_tagstruct_get_timeval(t, &tv) < 0 ||
2499 !pa_tagstruct_eof(t)) {
2500 protocol_error(c);
2501 return;
2502 }
2503
2504 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2505 s = pa_idxset_get_by_index(c->record_streams, idx);
2506 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2507
2508 reply = reply_new(tag);
2509 pa_tagstruct_put_usec(reply, s->source_output->source->monitor_of ? pa_sink_get_latency(s->source_output->source->monitor_of) : 0);
2510 pa_tagstruct_put_usec(reply, pa_source_get_latency(s->source_output->source));
2511 pa_tagstruct_put_boolean(reply, pa_source_get_state(s->source_output->source) == PA_SOURCE_RUNNING);
2512 pa_tagstruct_put_timeval(reply, &tv);
2513 pa_tagstruct_put_timeval(reply, pa_gettimeofday(&now));
2514 pa_tagstruct_puts64(reply, pa_memblockq_get_write_index(s->memblockq));
2515 pa_tagstruct_puts64(reply, pa_memblockq_get_read_index(s->memblockq));
2516 pa_pstream_send_tagstruct(c->pstream, reply);
2517 }
2518
2519 static void command_create_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2520 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2521 upload_stream *s;
2522 uint32_t length;
2523 const char *name = NULL;
2524 pa_sample_spec ss;
2525 pa_channel_map map;
2526 pa_tagstruct *reply;
2527 pa_proplist *p;
2528
2529 pa_native_connection_assert_ref(c);
2530 pa_assert(t);
2531
2532 if (pa_tagstruct_gets(t, &name) < 0 ||
2533 pa_tagstruct_get_sample_spec(t, &ss) < 0 ||
2534 pa_tagstruct_get_channel_map(t, &map) < 0 ||
2535 pa_tagstruct_getu32(t, &length) < 0) {
2536 protocol_error(c);
2537 return;
2538 }
2539
2540 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2541 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
2542 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
2543 CHECK_VALIDITY(c->pstream, map.channels == ss.channels, tag, PA_ERR_INVALID);
2544 CHECK_VALIDITY(c->pstream, (length % pa_frame_size(&ss)) == 0 && length > 0, tag, PA_ERR_INVALID);
2545 CHECK_VALIDITY(c->pstream, length <= PA_SCACHE_ENTRY_SIZE_MAX, tag, PA_ERR_TOOLARGE);
2546
2547 p = pa_proplist_new();
2548
2549 if ((c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2550 !pa_tagstruct_eof(t)) {
2551
2552 protocol_error(c);
2553 pa_proplist_free(p);
2554 return;
2555 }
2556
2557 if (c->version < 13)
2558 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
2559 else if (!name)
2560 if (!(name = pa_proplist_gets(p, PA_PROP_EVENT_ID)))
2561 name = pa_proplist_gets(p, PA_PROP_MEDIA_NAME);
2562
2563 if (!name || !pa_namereg_is_valid_name(name)) {
2564 pa_proplist_free(p);
2565 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_INVALID);
2566 }
2567
2568 s = upload_stream_new(c, &ss, &map, name, length, p);
2569 pa_proplist_free(p);
2570
2571 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_INVALID);
2572
2573 reply = reply_new(tag);
2574 pa_tagstruct_putu32(reply, s->index);
2575 pa_tagstruct_putu32(reply, length);
2576 pa_pstream_send_tagstruct(c->pstream, reply);
2577 }
2578
2579 static void command_finish_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2580 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2581 uint32_t channel;
2582 upload_stream *s;
2583 uint32_t idx;
2584
2585 pa_native_connection_assert_ref(c);
2586 pa_assert(t);
2587
2588 if (pa_tagstruct_getu32(t, &channel) < 0 ||
2589 !pa_tagstruct_eof(t)) {
2590 protocol_error(c);
2591 return;
2592 }
2593
2594 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2595
2596 s = pa_idxset_get_by_index(c->output_streams, channel);
2597 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2598 CHECK_VALIDITY(c->pstream, upload_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2599
2600 if (pa_scache_add_item(c->protocol->core, s->name, &s->sample_spec, &s->channel_map, &s->memchunk, s->proplist, &idx) < 0)
2601 pa_pstream_send_error(c->pstream, tag, PA_ERR_INTERNAL);
2602 else
2603 pa_pstream_send_simple_ack(c->pstream, tag);
2604
2605 upload_stream_unlink(s);
2606 }
2607
2608 static void command_play_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2609 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2610 uint32_t sink_index;
2611 pa_volume_t volume;
2612 pa_sink *sink;
2613 const char *name, *sink_name;
2614 uint32_t idx;
2615 pa_proplist *p;
2616 pa_tagstruct *reply;
2617
2618 pa_native_connection_assert_ref(c);
2619 pa_assert(t);
2620
2621 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2622
2623 if (pa_tagstruct_getu32(t, &sink_index) < 0 ||
2624 pa_tagstruct_gets(t, &sink_name) < 0 ||
2625 pa_tagstruct_getu32(t, &volume) < 0 ||
2626 pa_tagstruct_gets(t, &name) < 0) {
2627 protocol_error(c);
2628 return;
2629 }
2630
2631 CHECK_VALIDITY(c->pstream, !sink_name || pa_namereg_is_valid_name(sink_name), tag, PA_ERR_INVALID);
2632 CHECK_VALIDITY(c->pstream, sink_index == PA_INVALID_INDEX || !sink_name, tag, PA_ERR_INVALID);
2633 CHECK_VALIDITY(c->pstream, !sink_name || sink_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
2634 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2635
2636 if (sink_index != PA_INVALID_INDEX)
2637 sink = pa_idxset_get_by_index(c->protocol->core->sinks, sink_index);
2638 else
2639 sink = pa_namereg_get(c->protocol->core, sink_name, PA_NAMEREG_SINK);
2640
2641 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
2642
2643 p = pa_proplist_new();
2644
2645 if ((c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2646 !pa_tagstruct_eof(t)) {
2647 protocol_error(c);
2648 pa_proplist_free(p);
2649 return;
2650 }
2651
2652 pa_proplist_update(p, PA_UPDATE_MERGE, c->client->proplist);
2653
2654 if (pa_scache_play_item(c->protocol->core, name, sink, volume, p, &idx) < 0) {
2655 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2656 pa_proplist_free(p);
2657 return;
2658 }
2659
2660 pa_proplist_free(p);
2661
2662 reply = reply_new(tag);
2663
2664 if (c->version >= 13)
2665 pa_tagstruct_putu32(reply, idx);
2666
2667 pa_pstream_send_tagstruct(c->pstream, reply);
2668 }
2669
2670 static void command_remove_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2671 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2672 const char *name;
2673
2674 pa_native_connection_assert_ref(c);
2675 pa_assert(t);
2676
2677 if (pa_tagstruct_gets(t, &name) < 0 ||
2678 !pa_tagstruct_eof(t)) {
2679 protocol_error(c);
2680 return;
2681 }
2682
2683 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2684 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2685
2686 if (pa_scache_remove_item(c->protocol->core, name) < 0) {
2687 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2688 return;
2689 }
2690
2691 pa_pstream_send_simple_ack(c->pstream, tag);
2692 }
2693
2694 static void fixup_sample_spec(pa_native_connection *c, pa_sample_spec *fixed, const pa_sample_spec *original) {
2695 pa_assert(c);
2696 pa_assert(fixed);
2697 pa_assert(original);
2698
2699 *fixed = *original;
2700
2701 if (c->version < 12) {
2702 /* Before protocol version 12 we didn't support S32 samples,
2703 * so we need to lie about this to the client */
2704
2705 if (fixed->format == PA_SAMPLE_S32LE)
2706 fixed->format = PA_SAMPLE_FLOAT32LE;
2707 if (fixed->format == PA_SAMPLE_S32BE)
2708 fixed->format = PA_SAMPLE_FLOAT32BE;
2709 }
2710
2711 if (c->version < 15) {
2712 if (fixed->format == PA_SAMPLE_S24LE || fixed->format == PA_SAMPLE_S24_32LE)
2713 fixed->format = PA_SAMPLE_FLOAT32LE;
2714 if (fixed->format == PA_SAMPLE_S24BE || fixed->format == PA_SAMPLE_S24_32BE)
2715 fixed->format = PA_SAMPLE_FLOAT32BE;
2716 }
2717 }
2718
2719 static void sink_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sink *sink) {
2720 pa_sample_spec fixed_ss;
2721
2722 pa_assert(t);
2723 pa_sink_assert_ref(sink);
2724
2725 fixup_sample_spec(c, &fixed_ss, &sink->sample_spec);
2726
2727 pa_tagstruct_put(
2728 t,
2729 PA_TAG_U32, sink->index,
2730 PA_TAG_STRING, sink->name,
2731 PA_TAG_STRING, pa_strnull(pa_proplist_gets(sink->proplist, PA_PROP_DEVICE_DESCRIPTION)),
2732 PA_TAG_SAMPLE_SPEC, &fixed_ss,
2733 PA_TAG_CHANNEL_MAP, &sink->channel_map,
2734 PA_TAG_U32, sink->module ? sink->module->index : PA_INVALID_INDEX,
2735 PA_TAG_CVOLUME, pa_sink_get_volume(sink, FALSE),
2736 PA_TAG_BOOLEAN, pa_sink_get_mute(sink, FALSE),
2737 PA_TAG_U32, sink->monitor_source ? sink->monitor_source->index : PA_INVALID_INDEX,
2738 PA_TAG_STRING, sink->monitor_source ? sink->monitor_source->name : NULL,
2739 PA_TAG_USEC, pa_sink_get_latency(sink),
2740 PA_TAG_STRING, sink->driver,
2741 PA_TAG_U32, sink->flags,
2742 PA_TAG_INVALID);
2743
2744 if (c->version >= 13) {
2745 pa_tagstruct_put_proplist(t, sink->proplist);
2746 pa_tagstruct_put_usec(t, pa_sink_get_requested_latency(sink));
2747 }
2748
2749 if (c->version >= 15) {
2750 pa_tagstruct_put_volume(t, sink->base_volume);
2751 if (PA_UNLIKELY(pa_sink_get_state(sink) == PA_SINK_INVALID_STATE))
2752 pa_log_error("Internal sink state is invalid.");
2753 pa_tagstruct_putu32(t, pa_sink_get_state(sink));
2754 pa_tagstruct_putu32(t, sink->n_volume_steps);
2755 pa_tagstruct_putu32(t, sink->card ? sink->card->index : PA_INVALID_INDEX);
2756 }
2757 }
2758
2759 static void source_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source *source) {
2760 pa_sample_spec fixed_ss;
2761
2762 pa_assert(t);
2763 pa_source_assert_ref(source);
2764
2765 fixup_sample_spec(c, &fixed_ss, &source->sample_spec);
2766
2767 pa_tagstruct_put(
2768 t,
2769 PA_TAG_U32, source->index,
2770 PA_TAG_STRING, source->name,
2771 PA_TAG_STRING, pa_strnull(pa_proplist_gets(source->proplist, PA_PROP_DEVICE_DESCRIPTION)),
2772 PA_TAG_SAMPLE_SPEC, &fixed_ss,
2773 PA_TAG_CHANNEL_MAP, &source->channel_map,
2774 PA_TAG_U32, source->module ? source->module->index : PA_INVALID_INDEX,
2775 PA_TAG_CVOLUME, pa_source_get_volume(source, FALSE),
2776 PA_TAG_BOOLEAN, pa_source_get_mute(source, FALSE),
2777 PA_TAG_U32, source->monitor_of ? source->monitor_of->index : PA_INVALID_INDEX,
2778 PA_TAG_STRING, source->monitor_of ? source->monitor_of->name : NULL,
2779 PA_TAG_USEC, pa_source_get_latency(source),
2780 PA_TAG_STRING, source->driver,
2781 PA_TAG_U32, source->flags,
2782 PA_TAG_INVALID);
2783
2784 if (c->version >= 13) {
2785 pa_tagstruct_put_proplist(t, source->proplist);
2786 pa_tagstruct_put_usec(t, pa_source_get_requested_latency(source));
2787 }
2788
2789 if (c->version >= 15) {
2790 pa_tagstruct_put_volume(t, source->base_volume);
2791 if (PA_UNLIKELY(pa_source_get_state(source) == PA_SOURCE_INVALID_STATE))
2792 pa_log_error("Internal source state is invalid.");
2793 pa_tagstruct_putu32(t, pa_source_get_state(source));
2794 pa_tagstruct_putu32(t, source->n_volume_steps);
2795 pa_tagstruct_putu32(t, source->card ? source->card->index : PA_INVALID_INDEX);
2796 }
2797 }
2798
2799 static void client_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_client *client) {
2800 pa_assert(t);
2801 pa_assert(client);
2802
2803 pa_tagstruct_putu32(t, client->index);
2804 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(client->proplist, PA_PROP_APPLICATION_NAME)));
2805 pa_tagstruct_putu32(t, client->module ? client->module->index : PA_INVALID_INDEX);
2806 pa_tagstruct_puts(t, client->driver);
2807
2808 if (c->version >= 13)
2809 pa_tagstruct_put_proplist(t, client->proplist);
2810 }
2811
2812 static void card_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_card *card) {
2813 void *state = NULL;
2814 pa_card_profile *p;
2815
2816 pa_assert(t);
2817 pa_assert(card);
2818
2819 pa_tagstruct_putu32(t, card->index);
2820 pa_tagstruct_puts(t, card->name);
2821 pa_tagstruct_putu32(t, card->module ? card->module->index : PA_INVALID_INDEX);
2822 pa_tagstruct_puts(t, card->driver);
2823
2824 pa_tagstruct_putu32(t, card->profiles ? pa_hashmap_size(card->profiles) : 0);
2825
2826 if (card->profiles) {
2827 while ((p = pa_hashmap_iterate(card->profiles, &state, NULL))) {
2828 pa_tagstruct_puts(t, p->name);
2829 pa_tagstruct_puts(t, p->description);
2830 pa_tagstruct_putu32(t, p->n_sinks);
2831 pa_tagstruct_putu32(t, p->n_sources);
2832 }
2833 }
2834
2835 pa_tagstruct_puts(t, card->active_profile ? card->active_profile->name : NULL);
2836 pa_tagstruct_put_proplist(t, card->proplist);
2837 }
2838
2839 static void module_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_module *module) {
2840 pa_assert(t);
2841 pa_assert(module);
2842
2843 pa_tagstruct_putu32(t, module->index);
2844 pa_tagstruct_puts(t, module->name);
2845 pa_tagstruct_puts(t, module->argument);
2846 pa_tagstruct_putu32(t, (uint32_t) pa_module_get_n_used(module));
2847
2848 if (c->version < 15)
2849 pa_tagstruct_put_boolean(t, FALSE); /* autoload is obsolete */
2850
2851 if (c->version >= 15)
2852 pa_tagstruct_put_proplist(t, module->proplist);
2853 }
2854
2855 static void sink_input_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sink_input *s) {
2856 pa_sample_spec fixed_ss;
2857 pa_usec_t sink_latency;
2858
2859 pa_assert(t);
2860 pa_sink_input_assert_ref(s);
2861
2862 fixup_sample_spec(c, &fixed_ss, &s->sample_spec);
2863
2864 pa_tagstruct_putu32(t, s->index);
2865 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(s->proplist, PA_PROP_MEDIA_NAME)));
2866 pa_tagstruct_putu32(t, s->module ? s->module->index : PA_INVALID_INDEX);
2867 pa_tagstruct_putu32(t, s->client ? s->client->index : PA_INVALID_INDEX);
2868 pa_tagstruct_putu32(t, s->sink->index);
2869 pa_tagstruct_put_sample_spec(t, &fixed_ss);
2870 pa_tagstruct_put_channel_map(t, &s->channel_map);
2871 pa_tagstruct_put_cvolume(t, pa_sink_input_get_volume(s));
2872 pa_tagstruct_put_usec(t, pa_sink_input_get_latency(s, &sink_latency));
2873 pa_tagstruct_put_usec(t, sink_latency);
2874 pa_tagstruct_puts(t, pa_resample_method_to_string(pa_sink_input_get_resample_method(s)));
2875 pa_tagstruct_puts(t, s->driver);
2876 if (c->version >= 11)
2877 pa_tagstruct_put_boolean(t, pa_sink_input_get_mute(s));
2878 if (c->version >= 13)
2879 pa_tagstruct_put_proplist(t, s->proplist);
2880 }
2881
2882 static void source_output_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source_output *s) {
2883 pa_sample_spec fixed_ss;
2884 pa_usec_t source_latency;
2885
2886 pa_assert(t);
2887 pa_source_output_assert_ref(s);
2888
2889 fixup_sample_spec(c, &fixed_ss, &s->sample_spec);
2890
2891 pa_tagstruct_putu32(t, s->index);
2892 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(s->proplist, PA_PROP_MEDIA_NAME)));
2893 pa_tagstruct_putu32(t, s->module ? s->module->index : PA_INVALID_INDEX);
2894 pa_tagstruct_putu32(t, s->client ? s->client->index : PA_INVALID_INDEX);
2895 pa_tagstruct_putu32(t, s->source->index);
2896 pa_tagstruct_put_sample_spec(t, &fixed_ss);
2897 pa_tagstruct_put_channel_map(t, &s->channel_map);
2898 pa_tagstruct_put_usec(t, pa_source_output_get_latency(s, &source_latency));
2899 pa_tagstruct_put_usec(t, source_latency);
2900 pa_tagstruct_puts(t, pa_resample_method_to_string(pa_source_output_get_resample_method(s)));
2901 pa_tagstruct_puts(t, s->driver);
2902
2903 if (c->version >= 13)
2904 pa_tagstruct_put_proplist(t, s->proplist);
2905 }
2906
2907 static void scache_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_scache_entry *e) {
2908 pa_sample_spec fixed_ss;
2909 pa_cvolume v;
2910
2911 pa_assert(t);
2912 pa_assert(e);
2913
2914 if (e->memchunk.memblock)
2915 fixup_sample_spec(c, &fixed_ss, &e->sample_spec);
2916 else
2917 memset(&fixed_ss, 0, sizeof(fixed_ss));
2918
2919 pa_tagstruct_putu32(t, e->index);
2920 pa_tagstruct_puts(t, e->name);
2921
2922 if (e->volume_is_set)
2923 v = e->volume;
2924 else
2925 pa_cvolume_init(&v);
2926
2927 pa_tagstruct_put_cvolume(t, &v);
2928 pa_tagstruct_put_usec(t, e->memchunk.memblock ? pa_bytes_to_usec(e->memchunk.length, &e->sample_spec) : 0);
2929 pa_tagstruct_put_sample_spec(t, &fixed_ss);
2930 pa_tagstruct_put_channel_map(t, &e->channel_map);
2931 pa_tagstruct_putu32(t, (uint32_t) e->memchunk.length);
2932 pa_tagstruct_put_boolean(t, e->lazy);
2933 pa_tagstruct_puts(t, e->filename);
2934
2935 if (c->version >= 13)
2936 pa_tagstruct_put_proplist(t, e->proplist);
2937 }
2938
2939 static void command_get_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2940 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2941 uint32_t idx;
2942 pa_sink *sink = NULL;
2943 pa_source *source = NULL;
2944 pa_client *client = NULL;
2945 pa_card *card = NULL;
2946 pa_module *module = NULL;
2947 pa_sink_input *si = NULL;
2948 pa_source_output *so = NULL;
2949 pa_scache_entry *sce = NULL;
2950 const char *name = NULL;
2951 pa_tagstruct *reply;
2952
2953 pa_native_connection_assert_ref(c);
2954 pa_assert(t);
2955
2956 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2957 (command != PA_COMMAND_GET_CLIENT_INFO &&
2958 command != PA_COMMAND_GET_MODULE_INFO &&
2959 command != PA_COMMAND_GET_SINK_INPUT_INFO &&
2960 command != PA_COMMAND_GET_SOURCE_OUTPUT_INFO &&
2961 pa_tagstruct_gets(t, &name) < 0) ||
2962 !pa_tagstruct_eof(t)) {
2963 protocol_error(c);
2964 return;
2965 }
2966
2967 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2968 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2969 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
2970 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
2971 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
2972
2973 if (command == PA_COMMAND_GET_SINK_INFO) {
2974 if (idx != PA_INVALID_INDEX)
2975 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
2976 else
2977 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
2978 } else if (command == PA_COMMAND_GET_SOURCE_INFO) {
2979 if (idx != PA_INVALID_INDEX)
2980 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
2981 else
2982 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
2983 } else if (command == PA_COMMAND_GET_CARD_INFO) {
2984 if (idx != PA_INVALID_INDEX)
2985 card = pa_idxset_get_by_index(c->protocol->core->cards, idx);
2986 else
2987 card = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_CARD);
2988 } else if (command == PA_COMMAND_GET_CLIENT_INFO)
2989 client = pa_idxset_get_by_index(c->protocol->core->clients, idx);
2990 else if (command == PA_COMMAND_GET_MODULE_INFO)
2991 module = pa_idxset_get_by_index(c->protocol->core->modules, idx);
2992 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO)
2993 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
2994 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO)
2995 so = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
2996 else {
2997 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO);
2998 if (idx != PA_INVALID_INDEX)
2999 sce = pa_idxset_get_by_index(c->protocol->core->scache, idx);
3000 else
3001 sce = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SAMPLE);
3002 }
3003
3004 if (!sink && !source && !client && !card && !module && !si && !so && !sce) {
3005 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
3006 return;
3007 }
3008
3009 reply = reply_new(tag);
3010 if (sink)
3011 sink_fill_tagstruct(c, reply, sink);
3012 else if (source)
3013 source_fill_tagstruct(c, reply, source);
3014 else if (client)
3015 client_fill_tagstruct(c, reply, client);
3016 else if (card)
3017 card_fill_tagstruct(c, reply, card);
3018 else if (module)
3019 module_fill_tagstruct(c, reply, module);
3020 else if (si)
3021 sink_input_fill_tagstruct(c, reply, si);
3022 else if (so)
3023 source_output_fill_tagstruct(c, reply, so);
3024 else
3025 scache_fill_tagstruct(c, reply, sce);
3026 pa_pstream_send_tagstruct(c->pstream, reply);
3027 }
3028
3029 static void command_get_info_list(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3030 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3031 pa_idxset *i;
3032 uint32_t idx;
3033 void *p;
3034 pa_tagstruct *reply;
3035
3036 pa_native_connection_assert_ref(c);
3037 pa_assert(t);
3038
3039 if (!pa_tagstruct_eof(t)) {
3040 protocol_error(c);
3041 return;
3042 }
3043
3044 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3045
3046 reply = reply_new(tag);
3047
3048 if (command == PA_COMMAND_GET_SINK_INFO_LIST)
3049 i = c->protocol->core->sinks;
3050 else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST)
3051 i = c->protocol->core->sources;
3052 else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
3053 i = c->protocol->core->clients;
3054 else if (command == PA_COMMAND_GET_CARD_INFO_LIST)
3055 i = c->protocol->core->cards;
3056 else if (command == PA_COMMAND_GET_MODULE_INFO_LIST)
3057 i = c->protocol->core->modules;
3058 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO_LIST)
3059 i = c->protocol->core->sink_inputs;
3060 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST)
3061 i = c->protocol->core->source_outputs;
3062 else {
3063 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO_LIST);
3064 i = c->protocol->core->scache;
3065 }
3066
3067 if (i) {
3068 for (p = pa_idxset_first(i, &idx); p; p = pa_idxset_next(i, &idx)) {
3069 if (command == PA_COMMAND_GET_SINK_INFO_LIST)
3070 sink_fill_tagstruct(c, reply, p);
3071 else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST)
3072 source_fill_tagstruct(c, reply, p);
3073 else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
3074 client_fill_tagstruct(c, reply, p);
3075 else if (command == PA_COMMAND_GET_CARD_INFO_LIST)
3076 card_fill_tagstruct(c, reply, p);
3077 else if (command == PA_COMMAND_GET_MODULE_INFO_LIST)
3078 module_fill_tagstruct(c, reply, p);
3079 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO_LIST)
3080 sink_input_fill_tagstruct(c, reply, p);
3081 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST)
3082 source_output_fill_tagstruct(c, reply, p);
3083 else {
3084 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO_LIST);
3085 scache_fill_tagstruct(c, reply, p);
3086 }
3087 }
3088 }
3089
3090 pa_pstream_send_tagstruct(c->pstream, reply);
3091 }
3092
3093 static void command_get_server_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3094 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3095 pa_tagstruct *reply;
3096 char txt[256];
3097 pa_sink *def_sink;
3098 pa_source *def_source;
3099 pa_sample_spec fixed_ss;
3100
3101 pa_native_connection_assert_ref(c);
3102 pa_assert(t);
3103
3104 if (!pa_tagstruct_eof(t)) {
3105 protocol_error(c);
3106 return;
3107 }
3108
3109 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3110
3111 reply = reply_new(tag);
3112 pa_tagstruct_puts(reply, PACKAGE_NAME);
3113 pa_tagstruct_puts(reply, PACKAGE_VERSION);
3114 pa_tagstruct_puts(reply, pa_get_user_name(txt, sizeof(txt)));
3115 pa_tagstruct_puts(reply, pa_get_host_name(txt, sizeof(txt)));
3116
3117 fixup_sample_spec(c, &fixed_ss, &c->protocol->core->default_sample_spec);
3118 pa_tagstruct_put_sample_spec(reply, &fixed_ss);
3119
3120 def_sink = pa_namereg_get_default_sink(c->protocol->core);
3121 pa_tagstruct_puts(reply, def_sink ? def_sink->name : NULL);
3122 def_source = pa_namereg_get_default_source(c->protocol->core);
3123 pa_tagstruct_puts(reply, def_source ? def_source->name : NULL);
3124
3125 pa_tagstruct_putu32(reply, c->protocol->core->cookie);
3126
3127 if (c->version >= 15)
3128 pa_tagstruct_put_channel_map(reply, &c->protocol->core->default_channel_map);
3129
3130 pa_pstream_send_tagstruct(c->pstream, reply);
3131 }
3132
3133 static void subscription_cb(pa_core *core, pa_subscription_event_type_t e, uint32_t idx, void *userdata) {
3134 pa_tagstruct *t;
3135 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3136
3137 pa_native_connection_assert_ref(c);
3138
3139 t = pa_tagstruct_new(NULL, 0);
3140 pa_tagstruct_putu32(t, PA_COMMAND_SUBSCRIBE_EVENT);
3141 pa_tagstruct_putu32(t, (uint32_t) -1);
3142 pa_tagstruct_putu32(t, e);
3143 pa_tagstruct_putu32(t, idx);
3144 pa_pstream_send_tagstruct(c->pstream, t);
3145 }
3146
3147 static void command_subscribe(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3148 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3149 pa_subscription_mask_t m;
3150
3151 pa_native_connection_assert_ref(c);
3152 pa_assert(t);
3153
3154 if (pa_tagstruct_getu32(t, &m) < 0 ||
3155 !pa_tagstruct_eof(t)) {
3156 protocol_error(c);
3157 return;
3158 }
3159
3160 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3161 CHECK_VALIDITY(c->pstream, (m & ~PA_SUBSCRIPTION_MASK_ALL) == 0, tag, PA_ERR_INVALID);
3162
3163 if (c->subscription)
3164 pa_subscription_free(c->subscription);
3165
3166 if (m != 0) {
3167 c->subscription = pa_subscription_new(c->protocol->core, m, subscription_cb, c);
3168 pa_assert(c->subscription);
3169 } else
3170 c->subscription = NULL;
3171
3172 pa_pstream_send_simple_ack(c->pstream, tag);
3173 }
3174
3175 static void command_set_volume(
3176 pa_pdispatch *pd,
3177 uint32_t command,
3178 uint32_t tag,
3179 pa_tagstruct *t,
3180 void *userdata) {
3181
3182 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3183 uint32_t idx;
3184 pa_cvolume volume;
3185 pa_sink *sink = NULL;
3186 pa_source *source = NULL;
3187 pa_sink_input *si = NULL;
3188 const char *name = NULL;
3189
3190 pa_native_connection_assert_ref(c);
3191 pa_assert(t);
3192
3193 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3194 (command == PA_COMMAND_SET_SINK_VOLUME && pa_tagstruct_gets(t, &name) < 0) ||
3195 (command == PA_COMMAND_SET_SOURCE_VOLUME && pa_tagstruct_gets(t, &name) < 0) ||
3196 pa_tagstruct_get_cvolume(t, &volume) ||
3197 !pa_tagstruct_eof(t)) {
3198 protocol_error(c);
3199 return;
3200 }
3201
3202 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3203 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
3204 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3205 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3206 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3207 CHECK_VALIDITY(c->pstream, pa_cvolume_valid(&volume), tag, PA_ERR_INVALID);
3208
3209 switch (command) {
3210
3211 case PA_COMMAND_SET_SINK_VOLUME:
3212 if (idx != PA_INVALID_INDEX)
3213 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
3214 else
3215 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
3216 break;
3217
3218 case PA_COMMAND_SET_SOURCE_VOLUME:
3219 if (idx != PA_INVALID_INDEX)
3220 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
3221 else
3222 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
3223 break;
3224
3225 case PA_COMMAND_SET_SINK_INPUT_VOLUME:
3226 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3227 break;
3228
3229 default:
3230 pa_assert_not_reached();
3231 }
3232
3233 CHECK_VALIDITY(c->pstream, si || sink || source, tag, PA_ERR_NOENTITY);
3234
3235 if (sink)
3236 pa_sink_set_volume(sink, &volume, TRUE, TRUE);
3237 else if (source)
3238 pa_source_set_volume(source, &volume);
3239 else if (si)
3240 pa_sink_input_set_volume(si, &volume, TRUE);
3241
3242 pa_pstream_send_simple_ack(c->pstream, tag);
3243 }
3244
3245 static void command_set_mute(
3246 pa_pdispatch *pd,
3247 uint32_t command,
3248 uint32_t tag,
3249 pa_tagstruct *t,
3250 void *userdata) {
3251
3252 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3253 uint32_t idx;
3254 pa_bool_t mute;
3255 pa_sink *sink = NULL;
3256 pa_source *source = NULL;
3257 pa_sink_input *si = NULL;
3258 const char *name = NULL;
3259
3260 pa_native_connection_assert_ref(c);
3261 pa_assert(t);
3262
3263 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3264 (command == PA_COMMAND_SET_SINK_MUTE && pa_tagstruct_gets(t, &name) < 0) ||
3265 (command == PA_COMMAND_SET_SOURCE_MUTE && pa_tagstruct_gets(t, &name) < 0) ||
3266 pa_tagstruct_get_boolean(t, &mute) ||
3267 !pa_tagstruct_eof(t)) {
3268 protocol_error(c);
3269 return;
3270 }
3271
3272 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3273 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
3274 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3275 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3276 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3277
3278 switch (command) {
3279
3280 case PA_COMMAND_SET_SINK_MUTE:
3281
3282 if (idx != PA_INVALID_INDEX)
3283 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
3284 else
3285 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
3286
3287 break;
3288
3289 case PA_COMMAND_SET_SOURCE_MUTE:
3290 if (idx != PA_INVALID_INDEX)
3291 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
3292 else
3293 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
3294
3295 break;
3296
3297 case PA_COMMAND_SET_SINK_INPUT_MUTE:
3298 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3299 break;
3300
3301 default:
3302 pa_assert_not_reached();
3303 }
3304
3305 CHECK_VALIDITY(c->pstream, si || sink || source, tag, PA_ERR_NOENTITY);
3306
3307 if (sink)
3308 pa_sink_set_mute(sink, mute);
3309 else if (source)
3310 pa_source_set_mute(source, mute);
3311 else if (si)
3312 pa_sink_input_set_mute(si, mute, TRUE);
3313
3314 pa_pstream_send_simple_ack(c->pstream, tag);
3315 }
3316
3317 static void command_cork_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3318 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3319 uint32_t idx;
3320 pa_bool_t b;
3321 playback_stream *s;
3322
3323 pa_native_connection_assert_ref(c);
3324 pa_assert(t);
3325
3326 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3327 pa_tagstruct_get_boolean(t, &b) < 0 ||
3328 !pa_tagstruct_eof(t)) {
3329 protocol_error(c);
3330 return;
3331 }
3332
3333 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3334 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3335 s = pa_idxset_get_by_index(c->output_streams, idx);
3336 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3337 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3338
3339 pa_sink_input_cork(s->sink_input, b);
3340
3341 if (b)
3342 s->is_underrun = TRUE;
3343
3344 pa_pstream_send_simple_ack(c->pstream, tag);
3345 }
3346
3347 static void command_trigger_or_flush_or_prebuf_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3348 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3349 uint32_t idx;
3350 playback_stream *s;
3351
3352 pa_native_connection_assert_ref(c);
3353 pa_assert(t);
3354
3355 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3356 !pa_tagstruct_eof(t)) {
3357 protocol_error(c);
3358 return;
3359 }
3360
3361 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3362 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3363 s = pa_idxset_get_by_index(c->output_streams, idx);
3364 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3365 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3366
3367 switch (command) {
3368 case PA_COMMAND_FLUSH_PLAYBACK_STREAM:
3369 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_FLUSH, NULL, 0, NULL);
3370 break;
3371
3372 case PA_COMMAND_PREBUF_PLAYBACK_STREAM:
3373 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_PREBUF_FORCE, NULL, 0, NULL);
3374 break;
3375
3376 case PA_COMMAND_TRIGGER_PLAYBACK_STREAM:
3377 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_TRIGGER, NULL, 0, NULL);
3378 break;
3379
3380 default:
3381 pa_assert_not_reached();
3382 }
3383
3384 pa_pstream_send_simple_ack(c->pstream, tag);
3385 }
3386
3387 static void command_cork_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3388 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3389 uint32_t idx;
3390 record_stream *s;
3391 pa_bool_t b;
3392
3393 pa_native_connection_assert_ref(c);
3394 pa_assert(t);
3395
3396 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3397 pa_tagstruct_get_boolean(t, &b) < 0 ||
3398 !pa_tagstruct_eof(t)) {
3399 protocol_error(c);
3400 return;
3401 }
3402
3403 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3404 s = pa_idxset_get_by_index(c->record_streams, idx);
3405 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3406
3407 pa_source_output_cork(s->source_output, b);
3408 pa_memblockq_prebuf_force(s->memblockq);
3409 pa_pstream_send_simple_ack(c->pstream, tag);
3410 }
3411
3412 static void command_flush_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3413 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3414 uint32_t idx;
3415 record_stream *s;
3416
3417 pa_native_connection_assert_ref(c);
3418 pa_assert(t);
3419
3420 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3421 !pa_tagstruct_eof(t)) {
3422 protocol_error(c);
3423 return;
3424 }
3425
3426 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3427 s = pa_idxset_get_by_index(c->record_streams, idx);
3428 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3429
3430 pa_memblockq_flush_read(s->memblockq);
3431 pa_pstream_send_simple_ack(c->pstream, tag);
3432 }
3433
3434 static void command_set_stream_buffer_attr(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3435 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3436 uint32_t idx;
3437 uint32_t maxlength, tlength, prebuf, minreq, fragsize;
3438 pa_tagstruct *reply;
3439
3440 pa_native_connection_assert_ref(c);
3441 pa_assert(t);
3442
3443 if (pa_tagstruct_getu32(t, &idx) < 0) {
3444 protocol_error(c);
3445 return;
3446 }
3447
3448 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3449
3450 if (command == PA_COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR) {
3451 playback_stream *s;
3452 pa_bool_t adjust_latency = FALSE, early_requests = FALSE;
3453
3454 s = pa_idxset_get_by_index(c->output_streams, idx);
3455 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3456 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3457
3458 if (pa_tagstruct_get(
3459 t,
3460 PA_TAG_U32, &maxlength,
3461 PA_TAG_U32, &tlength,
3462 PA_TAG_U32, &prebuf,
3463 PA_TAG_U32, &minreq,
3464 PA_TAG_INVALID) < 0 ||
3465 (c->version >= 13 && pa_tagstruct_get_boolean(t, &adjust_latency) < 0) ||
3466 (c->version >= 14 && pa_tagstruct_get_boolean(t, &early_requests) < 0) ||
3467 !pa_tagstruct_eof(t)) {
3468 protocol_error(c);
3469 return;
3470 }
3471
3472 fix_playback_buffer_attr_pre(s, adjust_latency, early_requests, &maxlength, &tlength, &prebuf, &minreq);
3473 pa_memblockq_set_maxlength(s->memblockq, maxlength);
3474 pa_memblockq_set_tlength(s->memblockq, tlength);
3475 pa_memblockq_set_prebuf(s->memblockq, prebuf);
3476 pa_memblockq_set_minreq(s->memblockq, minreq);
3477 fix_playback_buffer_attr_post(s, &maxlength, &tlength, &prebuf, &minreq);
3478
3479 reply = reply_new(tag);
3480 pa_tagstruct_putu32(reply, maxlength);
3481 pa_tagstruct_putu32(reply, tlength);
3482 pa_tagstruct_putu32(reply, prebuf);
3483 pa_tagstruct_putu32(reply, minreq);
3484
3485 if (c->version >= 13)
3486 pa_tagstruct_put_usec(reply, s->sink_latency);
3487
3488 } else {
3489 record_stream *s;
3490 pa_bool_t adjust_latency = FALSE, early_requests = FALSE;
3491 pa_assert(command == PA_COMMAND_SET_RECORD_STREAM_BUFFER_ATTR);
3492
3493 s = pa_idxset_get_by_index(c->record_streams, idx);
3494 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3495
3496 if (pa_tagstruct_get(
3497 t,
3498 PA_TAG_U32, &maxlength,
3499 PA_TAG_U32, &fragsize,
3500 PA_TAG_INVALID) < 0 ||
3501 (c->version >= 13 && pa_tagstruct_get_boolean(t, &adjust_latency) < 0) ||
3502 (c->version >= 14 && pa_tagstruct_get_boolean(t, &early_requests) < 0) ||
3503 !pa_tagstruct_eof(t)) {
3504 protocol_error(c);
3505 return;
3506 }
3507
3508 fix_record_buffer_attr_pre(s, adjust_latency, early_requests, &maxlength, &fragsize);
3509 pa_memblockq_set_maxlength(s->memblockq, maxlength);
3510 fix_record_buffer_attr_post(s, &maxlength, &fragsize);
3511
3512 reply = reply_new(tag);
3513 pa_tagstruct_putu32(reply, maxlength);
3514 pa_tagstruct_putu32(reply, fragsize);
3515
3516 if (c->version >= 13)
3517 pa_tagstruct_put_usec(reply, s->source_latency);
3518 }
3519
3520 pa_pstream_send_tagstruct(c->pstream, reply);
3521 }
3522
3523 static void command_update_stream_sample_rate(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3524 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3525 uint32_t idx;
3526 uint32_t rate;
3527
3528 pa_native_connection_assert_ref(c);
3529 pa_assert(t);
3530
3531 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3532 pa_tagstruct_getu32(t, &rate) < 0 ||
3533 !pa_tagstruct_eof(t)) {
3534 protocol_error(c);
3535 return;
3536 }
3537
3538 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3539 CHECK_VALIDITY(c->pstream, rate > 0 && rate <= PA_RATE_MAX, tag, PA_ERR_INVALID);
3540
3541 if (command == PA_COMMAND_UPDATE_PLAYBACK_STREAM_SAMPLE_RATE) {
3542 playback_stream *s;
3543
3544 s = pa_idxset_get_by_index(c->output_streams, idx);
3545 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3546 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3547
3548 pa_sink_input_set_rate(s->sink_input, rate);
3549
3550 } else {
3551 record_stream *s;
3552 pa_assert(command == PA_COMMAND_UPDATE_RECORD_STREAM_SAMPLE_RATE);
3553
3554 s = pa_idxset_get_by_index(c->record_streams, idx);
3555 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3556
3557 pa_source_output_set_rate(s->source_output, rate);
3558 }
3559
3560 pa_pstream_send_simple_ack(c->pstream, tag);
3561 }
3562
3563 static void command_update_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3564 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3565 uint32_t idx;
3566 uint32_t mode;
3567 pa_proplist *p;
3568
3569 pa_native_connection_assert_ref(c);
3570 pa_assert(t);
3571
3572 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3573
3574 p = pa_proplist_new();
3575
3576 if (command == PA_COMMAND_UPDATE_CLIENT_PROPLIST) {
3577
3578 if (pa_tagstruct_getu32(t, &mode) < 0 ||
3579 pa_tagstruct_get_proplist(t, p) < 0 ||
3580 !pa_tagstruct_eof(t)) {
3581 protocol_error(c);
3582 pa_proplist_free(p);
3583 return;
3584 }
3585
3586 } else {
3587
3588 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3589 pa_tagstruct_getu32(t, &mode) < 0 ||
3590 pa_tagstruct_get_proplist(t, p) < 0 ||
3591 !pa_tagstruct_eof(t)) {
3592 protocol_error(c);
3593 pa_proplist_free(p);
3594 return;
3595 }
3596 }
3597
3598 if (!(mode == PA_UPDATE_SET || mode == PA_UPDATE_MERGE || mode == PA_UPDATE_REPLACE)) {
3599 pa_proplist_free(p);
3600 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_INVALID);
3601 }
3602
3603 if (command == PA_COMMAND_UPDATE_PLAYBACK_STREAM_PROPLIST) {
3604 playback_stream *s;
3605
3606 s = pa_idxset_get_by_index(c->output_streams, idx);
3607 if (!s || !playback_stream_isinstance(s)) {
3608 pa_proplist_free(p);
3609 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_NOENTITY);
3610 }
3611 pa_sink_input_update_proplist(s->sink_input, mode, p);
3612
3613 } else if (command == PA_COMMAND_UPDATE_RECORD_STREAM_PROPLIST) {
3614 record_stream *s;
3615
3616 if (!(s = pa_idxset_get_by_index(c->record_streams, idx))) {
3617 pa_proplist_free(p);
3618 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_NOENTITY);
3619 }
3620 pa_source_output_update_proplist(s->source_output, mode, p);
3621
3622 } else {
3623 pa_assert(command == PA_COMMAND_UPDATE_CLIENT_PROPLIST);
3624
3625 pa_client_update_proplist(c->client, mode, p);
3626 }
3627
3628 pa_pstream_send_simple_ack(c->pstream, tag);
3629 pa_proplist_free(p);
3630 }
3631
3632 static void command_remove_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3633 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3634 uint32_t idx;
3635 unsigned changed = 0;
3636 pa_proplist *p;
3637 pa_strlist *l = NULL;
3638
3639 pa_native_connection_assert_ref(c);
3640 pa_assert(t);
3641
3642 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3643
3644 if (command != PA_COMMAND_REMOVE_CLIENT_PROPLIST) {
3645
3646 if (pa_tagstruct_getu32(t, &idx) < 0) {
3647 protocol_error(c);
3648 return;
3649 }
3650 }
3651
3652 if (command == PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST) {
3653 playback_stream *s;
3654
3655 s = pa_idxset_get_by_index(c->output_streams, idx);
3656 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3657 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3658
3659 p = s->sink_input->proplist;
3660
3661 } else if (command == PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST) {
3662 record_stream *s;
3663
3664 s = pa_idxset_get_by_index(c->record_streams, idx);
3665 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3666
3667 p = s->source_output->proplist;
3668 } else {
3669 pa_assert(command == PA_COMMAND_REMOVE_CLIENT_PROPLIST);
3670
3671 p = c->client->proplist;
3672 }
3673
3674 for (;;) {
3675 const char *k;
3676
3677 if (pa_tagstruct_gets(t, &k) < 0) {
3678 protocol_error(c);
3679 pa_strlist_free(l);
3680 return;
3681 }
3682
3683 if (!k)
3684 break;
3685
3686 l = pa_strlist_prepend(l, k);
3687 }
3688
3689 if (!pa_tagstruct_eof(t)) {
3690 protocol_error(c);
3691 pa_strlist_free(l);
3692 return;
3693 }
3694
3695 for (;;) {
3696 char *z;
3697
3698 l = pa_strlist_pop(l, &z);
3699
3700 if (!z)
3701 break;
3702
3703 changed += (unsigned) (pa_proplist_unset(p, z) >= 0);
3704 pa_xfree(z);
3705 }
3706
3707 pa_pstream_send_simple_ack(c->pstream, tag);
3708
3709 if (changed) {
3710 if (command == PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST) {
3711 playback_stream *s;
3712
3713 s = pa_idxset_get_by_index(c->output_streams, idx);
3714 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, s->sink_input->index);
3715
3716 } else if (command == PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST) {
3717 record_stream *s;
3718
3719 s = pa_idxset_get_by_index(c->record_streams, idx);
3720 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_CHANGE, s->source_output->index);
3721
3722 } else {
3723 pa_assert(command == PA_COMMAND_REMOVE_CLIENT_PROPLIST);
3724 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->client->index);
3725 }
3726 }
3727 }
3728
3729 static void command_set_default_sink_or_source(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3730 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3731 const char *s;
3732
3733 pa_native_connection_assert_ref(c);
3734 pa_assert(t);
3735
3736 if (pa_tagstruct_gets(t, &s) < 0 ||
3737 !pa_tagstruct_eof(t)) {
3738 protocol_error(c);
3739 return;
3740 }
3741
3742 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3743 CHECK_VALIDITY(c->pstream, !s || pa_namereg_is_valid_name(s), tag, PA_ERR_INVALID);
3744
3745 if (command == PA_COMMAND_SET_DEFAULT_SOURCE) {
3746 pa_source *source;
3747
3748 source = pa_namereg_get(c->protocol->core, s, PA_NAMEREG_SOURCE);
3749 CHECK_VALIDITY(c->pstream, source, tag, PA_ERR_NOENTITY);
3750
3751 pa_namereg_set_default_source(c->protocol->core, source);
3752 } else {
3753 pa_sink *sink;
3754 pa_assert(command == PA_COMMAND_SET_DEFAULT_SINK);
3755
3756 sink = pa_namereg_get(c->protocol->core, s, PA_NAMEREG_SINK);
3757 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
3758
3759 pa_namereg_set_default_sink(c->protocol->core, sink);
3760 }
3761
3762 pa_pstream_send_simple_ack(c->pstream, tag);
3763 }
3764
3765 static void command_set_stream_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3766 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3767 uint32_t idx;
3768 const char *name;
3769
3770 pa_native_connection_assert_ref(c);
3771 pa_assert(t);
3772
3773 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3774 pa_tagstruct_gets(t, &name) < 0 ||
3775 !pa_tagstruct_eof(t)) {
3776 protocol_error(c);
3777 return;
3778 }
3779
3780 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3781 CHECK_VALIDITY(c->pstream, name && pa_utf8_valid(name), tag, PA_ERR_INVALID);
3782
3783 if (command == PA_COMMAND_SET_PLAYBACK_STREAM_NAME) {
3784 playback_stream *s;
3785
3786 s = pa_idxset_get_by_index(c->output_streams, idx);
3787 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3788 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3789
3790 pa_sink_input_set_name(s->sink_input, name);
3791
3792 } else {
3793 record_stream *s;
3794 pa_assert(command == PA_COMMAND_SET_RECORD_STREAM_NAME);
3795
3796 s = pa_idxset_get_by_index(c->record_streams, idx);
3797 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3798
3799 pa_source_output_set_name(s->source_output, name);
3800 }
3801
3802 pa_pstream_send_simple_ack(c->pstream, tag);
3803 }
3804
3805 static void command_kill(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3806 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3807 uint32_t idx;
3808
3809 pa_native_connection_assert_ref(c);
3810 pa_assert(t);
3811
3812 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3813 !pa_tagstruct_eof(t)) {
3814 protocol_error(c);
3815 return;
3816 }
3817
3818 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3819
3820 if (command == PA_COMMAND_KILL_CLIENT) {
3821 pa_client *client;
3822
3823 client = pa_idxset_get_by_index(c->protocol->core->clients, idx);
3824 CHECK_VALIDITY(c->pstream, client, tag, PA_ERR_NOENTITY);
3825
3826 pa_native_connection_ref(c);
3827 pa_client_kill(client);
3828
3829 } else if (command == PA_COMMAND_KILL_SINK_INPUT) {
3830 pa_sink_input *s;
3831
3832 s = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3833 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3834
3835 pa_native_connection_ref(c);
3836 pa_sink_input_kill(s);
3837 } else {
3838 pa_source_output *s;
3839
3840 pa_assert(command == PA_COMMAND_KILL_SOURCE_OUTPUT);
3841
3842 s = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
3843 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3844
3845 pa_native_connection_ref(c);
3846 pa_source_output_kill(s);
3847 }
3848
3849 pa_pstream_send_simple_ack(c->pstream, tag);
3850 pa_native_connection_unref(c);
3851 }
3852
3853 static void command_load_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3854 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3855 pa_module *m;
3856 const char *name, *argument;
3857 pa_tagstruct *reply;
3858
3859 pa_native_connection_assert_ref(c);
3860 pa_assert(t);
3861
3862 if (pa_tagstruct_gets(t, &name) < 0 ||
3863 pa_tagstruct_gets(t, &argument) < 0 ||
3864 !pa_tagstruct_eof(t)) {
3865 protocol_error(c);
3866 return;
3867 }
3868
3869 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3870 CHECK_VALIDITY(c->pstream, name && *name && pa_utf8_valid(name) && !strchr(name, '/'), tag, PA_ERR_INVALID);
3871 CHECK_VALIDITY(c->pstream, !argument || pa_utf8_valid(argument), tag, PA_ERR_INVALID);
3872
3873 if (!(m = pa_module_load(c->protocol->core, name, argument))) {
3874 pa_pstream_send_error(c->pstream, tag, PA_ERR_MODINITFAILED);
3875 return;
3876 }
3877
3878 reply = reply_new(tag);
3879 pa_tagstruct_putu32(reply, m->index);
3880 pa_pstream_send_tagstruct(c->pstream, reply);
3881 }
3882
3883 static void command_unload_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3884 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3885 uint32_t idx;
3886 pa_module *m;
3887
3888 pa_native_connection_assert_ref(c);
3889 pa_assert(t);
3890
3891 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3892 !pa_tagstruct_eof(t)) {
3893 protocol_error(c);
3894 return;
3895 }
3896
3897 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3898 m = pa_idxset_get_by_index(c->protocol->core->modules, idx);
3899 CHECK_VALIDITY(c->pstream, m, tag, PA_ERR_NOENTITY);
3900
3901 pa_module_unload_request(m, FALSE);
3902 pa_pstream_send_simple_ack(c->pstream, tag);
3903 }
3904
3905 static void command_move_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3906 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3907 uint32_t idx = PA_INVALID_INDEX, idx_device = PA_INVALID_INDEX;
3908 const char *name_device = NULL;
3909
3910 pa_native_connection_assert_ref(c);
3911 pa_assert(t);
3912
3913 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3914 pa_tagstruct_getu32(t, &idx_device) < 0 ||
3915 pa_tagstruct_gets(t, &name_device) < 0 ||
3916 !pa_tagstruct_eof(t)) {
3917 protocol_error(c);
3918 return;
3919 }
3920
3921 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3922 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3923
3924 CHECK_VALIDITY(c->pstream, !name_device || pa_namereg_is_valid_name(name_device), tag, PA_ERR_INVALID);
3925 CHECK_VALIDITY(c->pstream, idx_device != PA_INVALID_INDEX || name_device, tag, PA_ERR_INVALID);
3926 CHECK_VALIDITY(c->pstream, idx_device == PA_INVALID_INDEX || !name_device, tag, PA_ERR_INVALID);
3927 CHECK_VALIDITY(c->pstream, !name_device || idx_device == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3928
3929 if (command == PA_COMMAND_MOVE_SINK_INPUT) {
3930 pa_sink_input *si = NULL;
3931 pa_sink *sink = NULL;
3932
3933 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3934
3935 if (idx_device != PA_INVALID_INDEX)
3936 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx_device);
3937 else
3938 sink = pa_namereg_get(c->protocol->core, name_device, PA_NAMEREG_SINK);
3939
3940 CHECK_VALIDITY(c->pstream, si && sink, tag, PA_ERR_NOENTITY);
3941
3942 if (pa_sink_input_move_to(si, sink, TRUE) < 0) {
3943 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
3944 return;
3945 }
3946 } else {
3947 pa_source_output *so = NULL;
3948 pa_source *source;
3949
3950 pa_assert(command == PA_COMMAND_MOVE_SOURCE_OUTPUT);
3951
3952 so = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
3953
3954 if (idx_device != PA_INVALID_INDEX)
3955 source = pa_idxset_get_by_index(c->protocol->core->sources, idx_device);
3956 else
3957 source = pa_namereg_get(c->protocol->core, name_device, PA_NAMEREG_SOURCE);
3958
3959 CHECK_VALIDITY(c->pstream, so && source, tag, PA_ERR_NOENTITY);
3960
3961 if (pa_source_output_move_to(so, source, TRUE) < 0) {
3962 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
3963 return;
3964 }
3965 }
3966
3967 pa_pstream_send_simple_ack(c->pstream, tag);
3968 }
3969
3970 static void command_suspend(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3971 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3972 uint32_t idx = PA_INVALID_INDEX;
3973 const char *name = NULL;
3974 pa_bool_t b;
3975
3976 pa_native_connection_assert_ref(c);
3977 pa_assert(t);
3978
3979 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3980 pa_tagstruct_gets(t, &name) < 0 ||
3981 pa_tagstruct_get_boolean(t, &b) < 0 ||
3982 !pa_tagstruct_eof(t)) {
3983 protocol_error(c);
3984 return;
3985 }
3986
3987 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3988 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name) || *name == 0, tag, PA_ERR_INVALID);
3989 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3990 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3991 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3992
3993 if (command == PA_COMMAND_SUSPEND_SINK) {
3994
3995 if (idx == PA_INVALID_INDEX && name && !*name) {
3996
3997 pa_log_debug("%s all sinks", b ? "Suspending" : "Resuming");
3998
3999 if (pa_sink_suspend_all(c->protocol->core, b) < 0) {
4000 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4001 return;
4002 }
4003 } else {
4004 pa_sink *sink = NULL;
4005
4006 if (idx != PA_INVALID_INDEX)
4007 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
4008 else
4009 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
4010
4011 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
4012
4013 if (pa_sink_suspend(sink, b) < 0) {
4014 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4015 return;
4016 }
4017 }
4018 } else {
4019
4020 pa_assert(command == PA_COMMAND_SUSPEND_SOURCE);
4021
4022 if (idx == PA_INVALID_INDEX && name && !*name) {
4023
4024 pa_log_debug("%s all sources", b ? "Suspending" : "Resuming");
4025
4026 if (pa_source_suspend_all(c->protocol->core, b) < 0) {
4027 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4028 return;
4029 }
4030
4031 } else {
4032 pa_source *source;
4033
4034 if (idx != PA_INVALID_INDEX)
4035 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
4036 else
4037 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
4038
4039 CHECK_VALIDITY(c->pstream, source, tag, PA_ERR_NOENTITY);
4040
4041 if (pa_source_suspend(source, b) < 0) {
4042 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4043 return;
4044 }
4045 }
4046 }
4047
4048 pa_pstream_send_simple_ack(c->pstream, tag);
4049 }
4050
4051 static void command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4052 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4053 uint32_t idx = PA_INVALID_INDEX;
4054 const char *name = NULL;
4055 pa_module *m;
4056 pa_native_protocol_ext_cb_t cb;
4057
4058 pa_native_connection_assert_ref(c);
4059 pa_assert(t);
4060
4061 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4062 pa_tagstruct_gets(t, &name) < 0) {
4063 protocol_error(c);
4064 return;
4065 }
4066
4067 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4068 CHECK_VALIDITY(c->pstream, !name || pa_utf8_valid(name), tag, PA_ERR_INVALID);
4069 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4070 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4071 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4072
4073 if (idx != PA_INVALID_INDEX)
4074 m = pa_idxset_get_by_index(c->protocol->core->modules, idx);
4075 else {
4076 for (m = pa_idxset_first(c->protocol->core->modules, &idx); m; m = pa_idxset_next(c->protocol->core->modules, &idx))
4077 if (strcmp(name, m->name) == 0)
4078 break;
4079 }
4080
4081 CHECK_VALIDITY(c->pstream, m, tag, PA_ERR_NOEXTENSION);
4082 CHECK_VALIDITY(c->pstream, m->load_once || idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4083
4084 cb = (pa_native_protocol_ext_cb_t) (unsigned long) pa_hashmap_get(c->protocol->extensions, m);
4085 CHECK_VALIDITY(c->pstream, cb, tag, PA_ERR_NOEXTENSION);
4086
4087 if (cb(c->protocol, m, c, tag, t) < 0)
4088 protocol_error(c);
4089 }
4090
4091 static void command_set_card_profile(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4092 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4093 uint32_t idx = PA_INVALID_INDEX;
4094 const char *name = NULL, *profile = NULL;
4095 pa_card *card = NULL;
4096
4097 pa_native_connection_assert_ref(c);
4098 pa_assert(t);
4099
4100 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4101 pa_tagstruct_gets(t, &name) < 0 ||
4102 pa_tagstruct_gets(t, &profile) < 0 ||
4103 !pa_tagstruct_eof(t)) {
4104 protocol_error(c);
4105 return;
4106 }
4107
4108 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4109 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
4110 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4111 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4112 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4113
4114 if (idx != PA_INVALID_INDEX)
4115 card = pa_idxset_get_by_index(c->protocol->core->cards, idx);
4116 else
4117 card = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_CARD);
4118
4119 CHECK_VALIDITY(c->pstream, card, tag, PA_ERR_NOENTITY);
4120
4121 if (pa_card_set_profile(card, profile) < 0) {
4122 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4123 return;
4124 }
4125
4126 pa_pstream_send_simple_ack(c->pstream, tag);
4127 }
4128
4129 /*** pstream callbacks ***/
4130
4131 static void pstream_packet_callback(pa_pstream *p, pa_packet *packet, const pa_creds *creds, void *userdata) {
4132 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4133
4134 pa_assert(p);
4135 pa_assert(packet);
4136 pa_native_connection_assert_ref(c);
4137
4138 if (pa_pdispatch_run(c->pdispatch, packet, creds, c) < 0) {
4139 pa_log("invalid packet.");
4140 native_connection_unlink(c);
4141 }
4142 }
4143
4144 static void pstream_memblock_callback(pa_pstream *p, uint32_t channel, int64_t offset, pa_seek_mode_t seek, const pa_memchunk *chunk, void *userdata) {
4145 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4146 output_stream *stream;
4147
4148 pa_assert(p);
4149 pa_assert(chunk);
4150 pa_native_connection_assert_ref(c);
4151
4152 if (!(stream = OUTPUT_STREAM(pa_idxset_get_by_index(c->output_streams, channel)))) {
4153 pa_log("client sent block for invalid stream.");
4154 /* Ignoring */
4155 return;
4156 }
4157
4158 /* pa_log("got %lu bytes", (unsigned long) chunk->length); */
4159
4160 if (playback_stream_isinstance(stream)) {
4161 playback_stream *ps = PLAYBACK_STREAM(stream);
4162
4163 if (chunk->memblock) {
4164 if (seek != PA_SEEK_RELATIVE || offset != 0)
4165 pa_asyncmsgq_post(ps->sink_input->sink->asyncmsgq, PA_MSGOBJECT(ps->sink_input), SINK_INPUT_MESSAGE_SEEK, PA_UINT_TO_PTR(seek), offset, NULL, NULL);
4166
4167 pa_asyncmsgq_post(ps->sink_input->sink->asyncmsgq, PA_MSGOBJECT(ps->sink_input), SINK_INPUT_MESSAGE_POST_DATA, NULL, 0, chunk, NULL);
4168 } else
4169 pa_asyncmsgq_post(ps->sink_input->sink->asyncmsgq, PA_MSGOBJECT(ps->sink_input), SINK_INPUT_MESSAGE_SEEK, PA_UINT_TO_PTR(seek), offset+chunk->length, NULL, NULL);
4170
4171 } else {
4172 upload_stream *u = UPLOAD_STREAM(stream);
4173 size_t l;
4174
4175 if (!u->memchunk.memblock) {
4176 if (u->length == chunk->length && chunk->memblock) {
4177 u->memchunk = *chunk;
4178 pa_memblock_ref(u->memchunk.memblock);
4179 u->length = 0;
4180 } else {
4181 u->memchunk.memblock = pa_memblock_new(c->protocol->core->mempool, u->length);
4182 u->memchunk.index = u->memchunk.length = 0;
4183 }
4184 }
4185
4186 pa_assert(u->memchunk.memblock);
4187
4188 l = u->length;
4189 if (l > chunk->length)
4190 l = chunk->length;
4191
4192 if (l > 0) {
4193 void *dst;
4194 dst = pa_memblock_acquire(u->memchunk.memblock);
4195
4196 if (chunk->memblock) {
4197 void *src;
4198 src = pa_memblock_acquire(chunk->memblock);
4199
4200 memcpy((uint8_t*) dst + u->memchunk.index + u->memchunk.length,
4201 (uint8_t*) src + chunk->index, l);
4202
4203 pa_memblock_release(chunk->memblock);
4204 } else
4205 pa_silence_memory((uint8_t*) dst + u->memchunk.index + u->memchunk.length, l, &u->sample_spec);
4206
4207 pa_memblock_release(u->memchunk.memblock);
4208
4209 u->memchunk.length += l;
4210 u->length -= l;
4211 }
4212 }
4213 }
4214
4215 static void pstream_die_callback(pa_pstream *p, void *userdata) {
4216 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4217
4218 pa_assert(p);
4219 pa_native_connection_assert_ref(c);
4220
4221 native_connection_unlink(c);
4222 pa_log_info("Connection died.");
4223 }
4224
4225 static void pstream_drain_callback(pa_pstream *p, void *userdata) {
4226 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4227
4228 pa_assert(p);
4229 pa_native_connection_assert_ref(c);
4230
4231 native_connection_send_memblock(c);
4232 }
4233
4234 static void pstream_revoke_callback(pa_pstream *p, uint32_t block_id, void *userdata) {
4235 pa_thread_mq *q;
4236
4237 if (!(q = pa_thread_mq_get()))
4238 pa_pstream_send_revoke(p, block_id);
4239 else
4240 pa_asyncmsgq_post(q->outq, PA_MSGOBJECT(userdata), CONNECTION_MESSAGE_REVOKE, PA_UINT_TO_PTR(block_id), 0, NULL, NULL);
4241 }
4242
4243 static void pstream_release_callback(pa_pstream *p, uint32_t block_id, void *userdata) {
4244 pa_thread_mq *q;
4245
4246 if (!(q = pa_thread_mq_get()))
4247 pa_pstream_send_release(p, block_id);
4248 else
4249 pa_asyncmsgq_post(q->outq, PA_MSGOBJECT(userdata), CONNECTION_MESSAGE_RELEASE, PA_UINT_TO_PTR(block_id), 0, NULL, NULL);
4250 }
4251
4252 /*** client callbacks ***/
4253
4254 static void client_kill_cb(pa_client *c) {
4255 pa_assert(c);
4256
4257 native_connection_unlink(PA_NATIVE_CONNECTION(c->userdata));
4258 pa_log_info("Connection killed.");
4259 }
4260
4261 static void client_send_event_cb(pa_client *client, const char*event, pa_proplist *pl) {
4262 pa_tagstruct *t;
4263 pa_native_connection *c;
4264
4265 pa_assert(client);
4266 c = PA_NATIVE_CONNECTION(client->userdata);
4267 pa_native_connection_assert_ref(c);
4268
4269 if (c->version < 15)
4270 return;
4271
4272 t = pa_tagstruct_new(NULL, 0);
4273 pa_tagstruct_putu32(t, PA_COMMAND_CLIENT_EVENT);
4274 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
4275 pa_tagstruct_puts(t, event);
4276 pa_tagstruct_put_proplist(t, pl);
4277 pa_pstream_send_tagstruct(c->pstream, t);
4278 }
4279
4280 /*** module entry points ***/
4281
4282 static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
4283 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4284
4285 pa_assert(m);
4286 pa_assert(tv);
4287 pa_native_connection_assert_ref(c);
4288 pa_assert(c->auth_timeout_event == e);
4289
4290 if (!c->authorized) {
4291 native_connection_unlink(c);
4292 pa_log_info("Connection terminated due to authentication timeout.");
4293 }
4294 }
4295
4296 void pa_native_protocol_connect(pa_native_protocol *p, pa_iochannel *io, pa_native_options *o) {
4297 pa_native_connection *c;
4298 char pname[128];
4299 pa_client *client;
4300 pa_client_new_data data;
4301
4302 pa_assert(p);
4303 pa_assert(io);
4304 pa_assert(o);
4305
4306 if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
4307 pa_log_warn("Warning! Too many connections (%u), dropping incoming connection.", MAX_CONNECTIONS);
4308 pa_iochannel_free(io);
4309 return;
4310 }
4311
4312 pa_client_new_data_init(&data);
4313 data.module = o->module;
4314 data.driver = __FILE__;
4315 pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
4316 pa_proplist_setf(data.proplist, PA_PROP_APPLICATION_NAME, "Native client (%s)", pname);
4317 pa_proplist_sets(data.proplist, "native-protocol.peer", pname);
4318 client = pa_client_new(p->core, &data);
4319 pa_client_new_data_done(&data);
4320
4321 if (!client)
4322 return;
4323
4324 c = pa_msgobject_new(pa_native_connection);
4325 c->parent.parent.free = native_connection_free;
4326 c->parent.process_msg = native_connection_process_msg;
4327 c->protocol = p;
4328 c->options = pa_native_options_ref(o);
4329 c->authorized = FALSE;
4330
4331 if (o->auth_anonymous) {
4332 pa_log_info("Client authenticated anonymously.");
4333 c->authorized = TRUE;
4334 }
4335
4336 if (!c->authorized &&
4337 o->auth_ip_acl &&
4338 pa_ip_acl_check(o->auth_ip_acl, pa_iochannel_get_recv_fd(io)) > 0) {
4339
4340 pa_log_info("Client authenticated by IP ACL.");
4341 c->authorized = TRUE;
4342 }
4343
4344 if (!c->authorized) {
4345 struct timeval tv;
4346 pa_gettimeofday(&tv);
4347 tv.tv_sec += AUTH_TIMEOUT;
4348 c->auth_timeout_event = p->core->mainloop->time_new(p->core->mainloop, &tv, auth_timeout, c);
4349 } else
4350 c->auth_timeout_event = NULL;
4351
4352 c->is_local = pa_iochannel_socket_is_local(io);
4353 c->version = 8;
4354
4355 c->client = client;
4356 c->client->kill = client_kill_cb;
4357 c->client->send_event = client_send_event_cb;
4358 c->client->userdata = c;
4359
4360 c->pstream = pa_pstream_new(p->core->mainloop, io, p->core->mempool);
4361 pa_pstream_set_recieve_packet_callback(c->pstream, pstream_packet_callback, c);
4362 pa_pstream_set_recieve_memblock_callback(c->pstream, pstream_memblock_callback, c);
4363 pa_pstream_set_die_callback(c->pstream, pstream_die_callback, c);
4364 pa_pstream_set_drain_callback(c->pstream, pstream_drain_callback, c);
4365 pa_pstream_set_revoke_callback(c->pstream, pstream_revoke_callback, c);
4366 pa_pstream_set_release_callback(c->pstream, pstream_release_callback, c);
4367
4368 c->pdispatch = pa_pdispatch_new(p->core->mainloop, command_table, PA_COMMAND_MAX);
4369
4370 c->record_streams = pa_idxset_new(NULL, NULL);
4371 c->output_streams = pa_idxset_new(NULL, NULL);
4372
4373 c->rrobin_index = PA_IDXSET_INVALID;
4374 c->subscription = NULL;
4375
4376 pa_idxset_put(p->connections, c, NULL);
4377
4378 #ifdef HAVE_CREDS
4379 if (pa_iochannel_creds_supported(io))
4380 pa_iochannel_creds_enable(io);
4381 #endif
4382
4383 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_CONNECTION_PUT], c);
4384 }
4385
4386 void pa_native_protocol_disconnect(pa_native_protocol *p, pa_module *m) {
4387 pa_native_connection *c;
4388 void *state = NULL;
4389
4390 pa_assert(p);
4391 pa_assert(m);
4392
4393 while ((c = pa_idxset_iterate(p->connections, &state, NULL)))
4394 if (c->options->module == m)
4395 native_connection_unlink(c);
4396 }
4397
4398 static pa_native_protocol* native_protocol_new(pa_core *c) {
4399 pa_native_protocol *p;
4400 pa_native_hook_t h;
4401
4402 pa_assert(c);
4403
4404 p = pa_xnew(pa_native_protocol, 1);
4405 PA_REFCNT_INIT(p);
4406 p->core = c;
4407 p->connections = pa_idxset_new(NULL, NULL);
4408
4409 p->servers = NULL;
4410
4411 p->extensions = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
4412
4413 for (h = 0; h < PA_NATIVE_HOOK_MAX; h++)
4414 pa_hook_init(&p->hooks[h], p);
4415
4416 pa_assert_se(pa_shared_set(c, "native-protocol", p) >= 0);
4417
4418 return p;
4419 }
4420
4421 pa_native_protocol* pa_native_protocol_get(pa_core *c) {
4422 pa_native_protocol *p;
4423
4424 if ((p = pa_shared_get(c, "native-protocol")))
4425 return pa_native_protocol_ref(p);
4426
4427 return native_protocol_new(c);
4428 }
4429
4430 pa_native_protocol* pa_native_protocol_ref(pa_native_protocol *p) {
4431 pa_assert(p);
4432 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4433
4434 PA_REFCNT_INC(p);
4435
4436 return p;
4437 }
4438
4439 void pa_native_protocol_unref(pa_native_protocol *p) {
4440 pa_native_connection *c;
4441 pa_native_hook_t h;
4442
4443 pa_assert(p);
4444 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4445
4446 if (PA_REFCNT_DEC(p) > 0)
4447 return;
4448
4449 while ((c = pa_idxset_first(p->connections, NULL)))
4450 native_connection_unlink(c);
4451
4452 pa_idxset_free(p->connections, NULL, NULL);
4453
4454 pa_strlist_free(p->servers);
4455
4456 for (h = 0; h < PA_NATIVE_HOOK_MAX; h++)
4457 pa_hook_done(&p->hooks[h]);
4458
4459 pa_hashmap_free(p->extensions, NULL, NULL);
4460
4461 pa_assert_se(pa_shared_remove(p->core, "native-protocol") >= 0);
4462
4463 pa_xfree(p);
4464 }
4465
4466 void pa_native_protocol_add_server_string(pa_native_protocol *p, const char *name) {
4467 pa_assert(p);
4468 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4469 pa_assert(name);
4470
4471 p->servers = pa_strlist_prepend(p->servers, name);
4472
4473 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_SERVERS_CHANGED], p->servers);
4474 }
4475
4476 void pa_native_protocol_remove_server_string(pa_native_protocol *p, const char *name) {
4477 pa_assert(p);
4478 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4479 pa_assert(name);
4480
4481 p->servers = pa_strlist_remove(p->servers, name);
4482
4483 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_SERVERS_CHANGED], p->servers);
4484 }
4485
4486 pa_hook *pa_native_protocol_hooks(pa_native_protocol *p) {
4487 pa_assert(p);
4488 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4489
4490 return p->hooks;
4491 }
4492
4493 pa_strlist *pa_native_protocol_servers(pa_native_protocol *p) {
4494 pa_assert(p);
4495 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4496
4497 return p->servers;
4498 }
4499
4500 int pa_native_protocol_install_ext(pa_native_protocol *p, pa_module *m, pa_native_protocol_ext_cb_t cb) {
4501 pa_assert(p);
4502 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4503 pa_assert(m);
4504 pa_assert(cb);
4505 pa_assert(!pa_hashmap_get(p->extensions, m));
4506
4507 pa_assert_se(pa_hashmap_put(p->extensions, m, (void*) (unsigned long) cb) == 0);
4508 return 0;
4509 }
4510
4511 void pa_native_protocol_remove_ext(pa_native_protocol *p, pa_module *m) {
4512 pa_assert(p);
4513 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4514 pa_assert(m);
4515
4516 pa_assert_se(pa_hashmap_remove(p->extensions, m));
4517 }
4518
4519 pa_native_options* pa_native_options_new(void) {
4520 pa_native_options *o;
4521
4522 o = pa_xnew0(pa_native_options, 1);
4523 PA_REFCNT_INIT(o);
4524
4525 return o;
4526 }
4527
4528 pa_native_options* pa_native_options_ref(pa_native_options *o) {
4529 pa_assert(o);
4530 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4531
4532 PA_REFCNT_INC(o);
4533
4534 return o;
4535 }
4536
4537 void pa_native_options_unref(pa_native_options *o) {
4538 pa_assert(o);
4539 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4540
4541 if (PA_REFCNT_DEC(o) > 0)
4542 return;
4543
4544 pa_xfree(o->auth_group);
4545
4546 if (o->auth_ip_acl)
4547 pa_ip_acl_free(o->auth_ip_acl);
4548
4549 if (o->auth_cookie)
4550 pa_auth_cookie_unref(o->auth_cookie);
4551
4552 pa_xfree(o);
4553 }
4554
4555 int pa_native_options_parse(pa_native_options *o, pa_core *c, pa_modargs *ma) {
4556 pa_bool_t enabled;
4557 const char *acl;
4558
4559 pa_assert(o);
4560 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4561 pa_assert(ma);
4562
4563 if (pa_modargs_get_value_boolean(ma, "auth-anonymous", &o->auth_anonymous) < 0) {
4564 pa_log("auth-anonymous= expects a boolean argument.");
4565 return -1;
4566 }
4567
4568 enabled = TRUE;
4569 if (pa_modargs_get_value_boolean(ma, "auth-group-enabled", &enabled) < 0) {
4570 pa_log("auth-group-enabled= expects a boolean argument.");
4571 return -1;
4572 }
4573
4574 pa_xfree(o->auth_group);
4575 o->auth_group = enabled ? pa_xstrdup(pa_modargs_get_value(ma, "auth-group", pa_in_system_mode() ? PA_ACCESS_GROUP : NULL)) : NULL;
4576
4577 #ifndef HAVE_CREDS
4578 if (o->auth_group)
4579 pa_log_warn("Authentication group configured, but not available on local system. Ignoring.");
4580 #endif
4581
4582 if ((acl = pa_modargs_get_value(ma, "auth-ip-acl", NULL))) {
4583 pa_ip_acl *ipa;
4584
4585 if (!(ipa = pa_ip_acl_new(acl))) {
4586 pa_log("Failed to parse IP ACL '%s'", acl);
4587 return -1;
4588 }
4589
4590 if (o->auth_ip_acl)
4591 pa_ip_acl_free(o->auth_ip_acl);
4592
4593 o->auth_ip_acl = ipa;
4594 }
4595
4596 enabled = TRUE;
4597 if (pa_modargs_get_value_boolean(ma, "auth-cookie-enabled", &enabled) < 0) {
4598 pa_log("auth-cookie-enabled= expects a boolean argument.");
4599 return -1;
4600 }
4601
4602 if (o->auth_cookie)
4603 pa_auth_cookie_unref(o->auth_cookie);
4604
4605 if (enabled) {
4606 const char *cn;
4607
4608 /* The new name for this is 'auth-cookie', for compat reasons
4609 * we check the old name too */
4610 if (!(cn = pa_modargs_get_value(ma, "auth-cookie", NULL)))
4611 if (!(cn = pa_modargs_get_value(ma, "cookie", NULL)))
4612 cn = PA_NATIVE_COOKIE_FILE;
4613
4614 if (!(o->auth_cookie = pa_auth_cookie_get(c, cn, PA_NATIVE_COOKIE_LENGTH)))
4615 return -1;
4616
4617 } else
4618 o->auth_cookie = NULL;
4619
4620 return 0;
4621 }
4622
4623 pa_pstream* pa_native_connection_get_pstream(pa_native_connection *c) {
4624 pa_native_connection_assert_ref(c);
4625
4626 return c->pstream;
4627 }