2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
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.1 of the License,
10 or (at your option) any later version.
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.
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
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>
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>
61 #include "protocol-native.h"
63 /* Kick a client if it doesn't authenticate within this time */
64 #define AUTH_TIMEOUT 60
66 /* Don't accept more connection than this */
67 #define MAX_CONNECTIONS 64
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
74 struct pa_native_protocol;
76 typedef struct record_stream {
79 pa_native_connection *connection;
82 pa_source_output *source_output;
83 pa_memblockq *memblockq;
85 pa_bool_t adjust_latency:1;
86 pa_bool_t early_requests:1;
88 pa_buffer_attr buffer_attr;
90 pa_atomic_t on_the_fly;
91 pa_usec_t configured_source_latency;
94 /* Only updated after SOURCE_OUTPUT_MESSAGE_UPDATE_LATENCY */
95 size_t on_the_fly_snapshot;
96 pa_usec_t current_monitor_latency;
97 pa_usec_t current_source_latency;
100 PA_DECLARE_CLASS(record_stream);
101 #define RECORD_STREAM(o) (record_stream_cast(o))
102 static PA_DEFINE_CHECK_TYPE(record_stream, pa_msgobject);
104 typedef struct output_stream {
108 PA_DECLARE_CLASS(output_stream);
109 #define OUTPUT_STREAM(o) (output_stream_cast(o))
110 static PA_DEFINE_CHECK_TYPE(output_stream, pa_msgobject);
112 typedef struct playback_stream {
113 output_stream parent;
115 pa_native_connection *connection;
118 pa_sink_input *sink_input;
119 pa_memblockq *memblockq;
121 pa_bool_t adjust_latency:1;
122 pa_bool_t early_requests:1;
124 pa_bool_t is_underrun:1;
125 pa_bool_t drain_request:1;
130 pa_usec_t configured_sink_latency;
131 pa_buffer_attr buffer_attr;
133 /* Only updated after SINK_INPUT_MESSAGE_UPDATE_LATENCY */
134 int64_t read_index, write_index;
135 size_t render_memblockq_length;
136 pa_usec_t current_sink_latency;
137 uint64_t playing_for, underrun_for;
140 PA_DECLARE_CLASS(playback_stream);
141 #define PLAYBACK_STREAM(o) (playback_stream_cast(o))
142 static PA_DEFINE_CHECK_TYPE(playback_stream, output_stream);
144 typedef struct upload_stream {
145 output_stream parent;
147 pa_native_connection *connection;
150 pa_memchunk memchunk;
153 pa_sample_spec sample_spec;
154 pa_channel_map channel_map;
155 pa_proplist *proplist;
158 PA_DECLARE_CLASS(upload_stream);
159 #define UPLOAD_STREAM(o) (upload_stream_cast(o))
160 static PA_DEFINE_CHECK_TYPE(upload_stream, output_stream);
162 struct pa_native_connection {
164 pa_native_protocol *protocol;
165 pa_native_options *options;
166 pa_bool_t authorized:1;
167 pa_bool_t is_local:1;
171 pa_pdispatch *pdispatch;
172 pa_idxset *record_streams, *output_streams;
173 uint32_t rrobin_index;
174 pa_subscription *subscription;
175 pa_time_event *auth_timeout_event;
178 PA_DECLARE_CLASS(pa_native_connection);
179 #define PA_NATIVE_CONNECTION(o) (pa_native_connection_cast(o))
180 static PA_DEFINE_CHECK_TYPE(pa_native_connection, pa_msgobject);
182 struct pa_native_protocol {
186 pa_idxset *connections;
189 pa_hook hooks[PA_NATIVE_HOOK_MAX];
191 pa_hashmap *extensions;
195 SOURCE_OUTPUT_MESSAGE_UPDATE_LATENCY = PA_SOURCE_OUTPUT_MESSAGE_MAX
199 SINK_INPUT_MESSAGE_POST_DATA = PA_SINK_INPUT_MESSAGE_MAX, /* data from main loop to sink input */
200 SINK_INPUT_MESSAGE_DRAIN, /* disabled prebuf, get playback started. */
201 SINK_INPUT_MESSAGE_FLUSH,
202 SINK_INPUT_MESSAGE_TRIGGER,
203 SINK_INPUT_MESSAGE_SEEK,
204 SINK_INPUT_MESSAGE_PREBUF_FORCE,
205 SINK_INPUT_MESSAGE_UPDATE_LATENCY,
206 SINK_INPUT_MESSAGE_UPDATE_BUFFER_ATTR
210 PLAYBACK_STREAM_MESSAGE_REQUEST_DATA, /* data requested from sink input from the main loop */
211 PLAYBACK_STREAM_MESSAGE_UNDERFLOW,
212 PLAYBACK_STREAM_MESSAGE_OVERFLOW,
213 PLAYBACK_STREAM_MESSAGE_DRAIN_ACK,
214 PLAYBACK_STREAM_MESSAGE_STARTED,
215 PLAYBACK_STREAM_MESSAGE_UPDATE_TLENGTH
219 RECORD_STREAM_MESSAGE_POST_DATA /* data from source output to main loop */
223 CONNECTION_MESSAGE_RELEASE,
224 CONNECTION_MESSAGE_REVOKE
227 static int sink_input_pop_cb(pa_sink_input *i, size_t length, pa_memchunk *chunk);
228 static void sink_input_kill_cb(pa_sink_input *i);
229 static void sink_input_suspend_cb(pa_sink_input *i, pa_bool_t suspend);
230 static void sink_input_moving_cb(pa_sink_input *i, pa_sink *dest);
231 static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes);
232 static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes);
233 static void sink_input_update_max_request_cb(pa_sink_input *i, size_t nbytes);
234 static void sink_input_send_event_cb(pa_sink_input *i, const char *event, pa_proplist *pl);
236 static void native_connection_send_memblock(pa_native_connection *c);
237 static void playback_stream_request_bytes(struct playback_stream*s);
239 static void source_output_kill_cb(pa_source_output *o);
240 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk);
241 static void source_output_suspend_cb(pa_source_output *o, pa_bool_t suspend);
242 static void source_output_moving_cb(pa_source_output *o, pa_source *dest);
243 static pa_usec_t source_output_get_latency_cb(pa_source_output *o);
244 static void source_output_send_event_cb(pa_source_output *o, const char *event, pa_proplist *pl);
246 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk);
247 static int source_output_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk);
249 static void command_exit(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
250 static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
251 static void command_drain_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
252 static void command_create_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
253 static void command_delete_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
254 static void command_auth(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
255 static void command_set_client_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
256 static void command_lookup(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
257 static void command_stat(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
258 static void command_get_playback_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
259 static void command_get_record_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
260 static void command_create_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
261 static void command_finish_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
262 static void command_play_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
263 static void command_remove_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
264 static void command_get_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
265 static void command_get_info_list(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
266 static void command_get_server_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
267 static void command_subscribe(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
268 static void command_set_volume(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
269 static void command_set_mute(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
270 static void command_cork_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
271 static void command_trigger_or_flush_or_prebuf_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
272 static void command_set_default_sink_or_source(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
273 static void command_set_stream_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
274 static void command_kill(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
275 static void command_load_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
276 static void command_unload_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
277 static void command_cork_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
278 static void command_flush_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
279 static void command_move_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
280 static void command_suspend(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
281 static void command_set_stream_buffer_attr(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
282 static void command_update_stream_sample_rate(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
283 static void command_update_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
284 static void command_remove_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
285 static void command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
286 static void command_set_card_profile(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
287 static void command_set_sink_or_source_port(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata);
289 static const pa_pdispatch_cb_t command_table[PA_COMMAND_MAX] = {
290 [PA_COMMAND_ERROR] = NULL,
291 [PA_COMMAND_TIMEOUT] = NULL,
292 [PA_COMMAND_REPLY] = NULL,
293 [PA_COMMAND_CREATE_PLAYBACK_STREAM] = command_create_playback_stream,
294 [PA_COMMAND_DELETE_PLAYBACK_STREAM] = command_delete_stream,
295 [PA_COMMAND_DRAIN_PLAYBACK_STREAM] = command_drain_playback_stream,
296 [PA_COMMAND_CREATE_RECORD_STREAM] = command_create_record_stream,
297 [PA_COMMAND_DELETE_RECORD_STREAM] = command_delete_stream,
298 [PA_COMMAND_AUTH] = command_auth,
299 [PA_COMMAND_REQUEST] = NULL,
300 [PA_COMMAND_EXIT] = command_exit,
301 [PA_COMMAND_SET_CLIENT_NAME] = command_set_client_name,
302 [PA_COMMAND_LOOKUP_SINK] = command_lookup,
303 [PA_COMMAND_LOOKUP_SOURCE] = command_lookup,
304 [PA_COMMAND_STAT] = command_stat,
305 [PA_COMMAND_GET_PLAYBACK_LATENCY] = command_get_playback_latency,
306 [PA_COMMAND_GET_RECORD_LATENCY] = command_get_record_latency,
307 [PA_COMMAND_CREATE_UPLOAD_STREAM] = command_create_upload_stream,
308 [PA_COMMAND_DELETE_UPLOAD_STREAM] = command_delete_stream,
309 [PA_COMMAND_FINISH_UPLOAD_STREAM] = command_finish_upload_stream,
310 [PA_COMMAND_PLAY_SAMPLE] = command_play_sample,
311 [PA_COMMAND_REMOVE_SAMPLE] = command_remove_sample,
312 [PA_COMMAND_GET_SINK_INFO] = command_get_info,
313 [PA_COMMAND_GET_SOURCE_INFO] = command_get_info,
314 [PA_COMMAND_GET_CLIENT_INFO] = command_get_info,
315 [PA_COMMAND_GET_CARD_INFO] = command_get_info,
316 [PA_COMMAND_GET_MODULE_INFO] = command_get_info,
317 [PA_COMMAND_GET_SINK_INPUT_INFO] = command_get_info,
318 [PA_COMMAND_GET_SOURCE_OUTPUT_INFO] = command_get_info,
319 [PA_COMMAND_GET_SAMPLE_INFO] = command_get_info,
320 [PA_COMMAND_GET_SINK_INFO_LIST] = command_get_info_list,
321 [PA_COMMAND_GET_SOURCE_INFO_LIST] = command_get_info_list,
322 [PA_COMMAND_GET_MODULE_INFO_LIST] = command_get_info_list,
323 [PA_COMMAND_GET_CLIENT_INFO_LIST] = command_get_info_list,
324 [PA_COMMAND_GET_CARD_INFO_LIST] = command_get_info_list,
325 [PA_COMMAND_GET_SINK_INPUT_INFO_LIST] = command_get_info_list,
326 [PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST] = command_get_info_list,
327 [PA_COMMAND_GET_SAMPLE_INFO_LIST] = command_get_info_list,
328 [PA_COMMAND_GET_SERVER_INFO] = command_get_server_info,
329 [PA_COMMAND_SUBSCRIBE] = command_subscribe,
331 [PA_COMMAND_SET_SINK_VOLUME] = command_set_volume,
332 [PA_COMMAND_SET_SINK_INPUT_VOLUME] = command_set_volume,
333 [PA_COMMAND_SET_SOURCE_VOLUME] = command_set_volume,
335 [PA_COMMAND_SET_SINK_MUTE] = command_set_mute,
336 [PA_COMMAND_SET_SINK_INPUT_MUTE] = command_set_mute,
337 [PA_COMMAND_SET_SOURCE_MUTE] = command_set_mute,
339 [PA_COMMAND_SUSPEND_SINK] = command_suspend,
340 [PA_COMMAND_SUSPEND_SOURCE] = command_suspend,
342 [PA_COMMAND_CORK_PLAYBACK_STREAM] = command_cork_playback_stream,
343 [PA_COMMAND_FLUSH_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
344 [PA_COMMAND_TRIGGER_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
345 [PA_COMMAND_PREBUF_PLAYBACK_STREAM] = command_trigger_or_flush_or_prebuf_playback_stream,
347 [PA_COMMAND_CORK_RECORD_STREAM] = command_cork_record_stream,
348 [PA_COMMAND_FLUSH_RECORD_STREAM] = command_flush_record_stream,
350 [PA_COMMAND_SET_DEFAULT_SINK] = command_set_default_sink_or_source,
351 [PA_COMMAND_SET_DEFAULT_SOURCE] = command_set_default_sink_or_source,
352 [PA_COMMAND_SET_PLAYBACK_STREAM_NAME] = command_set_stream_name,
353 [PA_COMMAND_SET_RECORD_STREAM_NAME] = command_set_stream_name,
354 [PA_COMMAND_KILL_CLIENT] = command_kill,
355 [PA_COMMAND_KILL_SINK_INPUT] = command_kill,
356 [PA_COMMAND_KILL_SOURCE_OUTPUT] = command_kill,
357 [PA_COMMAND_LOAD_MODULE] = command_load_module,
358 [PA_COMMAND_UNLOAD_MODULE] = command_unload_module,
360 [PA_COMMAND_GET_AUTOLOAD_INFO___OBSOLETE] = NULL,
361 [PA_COMMAND_GET_AUTOLOAD_INFO_LIST___OBSOLETE] = NULL,
362 [PA_COMMAND_ADD_AUTOLOAD___OBSOLETE] = NULL,
363 [PA_COMMAND_REMOVE_AUTOLOAD___OBSOLETE] = NULL,
365 [PA_COMMAND_MOVE_SINK_INPUT] = command_move_stream,
366 [PA_COMMAND_MOVE_SOURCE_OUTPUT] = command_move_stream,
368 [PA_COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR] = command_set_stream_buffer_attr,
369 [PA_COMMAND_SET_RECORD_STREAM_BUFFER_ATTR] = command_set_stream_buffer_attr,
371 [PA_COMMAND_UPDATE_PLAYBACK_STREAM_SAMPLE_RATE] = command_update_stream_sample_rate,
372 [PA_COMMAND_UPDATE_RECORD_STREAM_SAMPLE_RATE] = command_update_stream_sample_rate,
374 [PA_COMMAND_UPDATE_RECORD_STREAM_PROPLIST] = command_update_proplist,
375 [PA_COMMAND_UPDATE_PLAYBACK_STREAM_PROPLIST] = command_update_proplist,
376 [PA_COMMAND_UPDATE_CLIENT_PROPLIST] = command_update_proplist,
378 [PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST] = command_remove_proplist,
379 [PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST] = command_remove_proplist,
380 [PA_COMMAND_REMOVE_CLIENT_PROPLIST] = command_remove_proplist,
382 [PA_COMMAND_SET_CARD_PROFILE] = command_set_card_profile,
384 [PA_COMMAND_SET_SINK_PORT] = command_set_sink_or_source_port,
385 [PA_COMMAND_SET_SOURCE_PORT] = command_set_sink_or_source_port,
387 [PA_COMMAND_EXTENSION] = command_extension
390 /* structure management */
392 /* Called from main context */
393 static void upload_stream_unlink(upload_stream *s) {
399 pa_assert_se(pa_idxset_remove_by_data(s->connection->output_streams, s, NULL) == s);
400 s->connection = NULL;
401 upload_stream_unref(s);
404 /* Called from main context */
405 static void upload_stream_free(pa_object *o) {
406 upload_stream *s = UPLOAD_STREAM(o);
409 upload_stream_unlink(s);
414 pa_proplist_free(s->proplist);
416 if (s->memchunk.memblock)
417 pa_memblock_unref(s->memchunk.memblock);
422 /* Called from main context */
423 static upload_stream* upload_stream_new(
424 pa_native_connection *c,
425 const pa_sample_spec *ss,
426 const pa_channel_map *map,
436 pa_assert(length > 0);
439 s = pa_msgobject_new(upload_stream);
440 s->parent.parent.parent.free = upload_stream_free;
442 s->sample_spec = *ss;
443 s->channel_map = *map;
444 s->name = pa_xstrdup(name);
445 pa_memchunk_reset(&s->memchunk);
447 s->proplist = pa_proplist_copy(p);
448 pa_proplist_update(s->proplist, PA_UPDATE_MERGE, c->client->proplist);
450 pa_idxset_put(c->output_streams, s, &s->index);
455 /* Called from main context */
456 static void record_stream_unlink(record_stream *s) {
462 if (s->source_output) {
463 pa_source_output_unlink(s->source_output);
464 pa_source_output_unref(s->source_output);
465 s->source_output = NULL;
468 pa_assert_se(pa_idxset_remove_by_data(s->connection->record_streams, s, NULL) == s);
469 s->connection = NULL;
470 record_stream_unref(s);
473 /* Called from main context */
474 static void record_stream_free(pa_object *o) {
475 record_stream *s = RECORD_STREAM(o);
478 record_stream_unlink(s);
480 pa_memblockq_free(s->memblockq);
484 /* Called from main context */
485 static int record_stream_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
486 record_stream *s = RECORD_STREAM(o);
487 record_stream_assert_ref(s);
494 case RECORD_STREAM_MESSAGE_POST_DATA:
496 /* We try to keep up to date with how many bytes are
497 * currently on the fly */
498 pa_atomic_sub(&s->on_the_fly, chunk->length);
500 if (pa_memblockq_push_align(s->memblockq, chunk) < 0) {
501 /* pa_log_warn("Failed to push data into output queue."); */
505 if (!pa_pstream_is_pending(s->connection->pstream))
506 native_connection_send_memblock(s->connection);
514 /* Called from main context */
515 static void fix_record_buffer_attr_pre(record_stream *s) {
518 pa_usec_t orig_fragsize_usec, fragsize_usec, source_usec;
522 /* This function will be called from the main thread, before as
523 * well as after the source output has been activated using
524 * pa_source_output_put()! That means it may not touch any
525 * ->thread_info data! */
527 frame_size = pa_frame_size(&s->source_output->sample_spec);
529 if (s->buffer_attr.maxlength == (uint32_t) -1 || s->buffer_attr.maxlength > MAX_MEMBLOCKQ_LENGTH)
530 s->buffer_attr.maxlength = MAX_MEMBLOCKQ_LENGTH;
531 if (s->buffer_attr.maxlength <= 0)
532 s->buffer_attr.maxlength = (uint32_t) frame_size;
534 if (s->buffer_attr.fragsize == (uint32_t) -1)
535 s->buffer_attr.fragsize = (uint32_t) pa_usec_to_bytes(DEFAULT_FRAGSIZE_MSEC*PA_USEC_PER_MSEC, &s->source_output->sample_spec);
536 if (s->buffer_attr.fragsize <= 0)
537 s->buffer_attr.fragsize = (uint32_t) frame_size;
539 orig_fragsize_usec = fragsize_usec = pa_bytes_to_usec(s->buffer_attr.fragsize, &s->source_output->sample_spec);
541 if (s->early_requests) {
543 /* In early request mode we need to emulate the classic
544 * fragment-based playback model. We do this setting the source
545 * latency to the fragment size. */
547 source_usec = fragsize_usec;
549 } else if (s->adjust_latency) {
551 /* So, the user asked us to adjust the latency according to
552 * what the source can provide. Half the latency will be
553 * spent on the hw buffer, half of it in the async buffer
554 * queue we maintain for each client. */
556 source_usec = fragsize_usec/2;
560 /* Ok, the user didn't ask us to adjust the latency, hence we
563 source_usec = (pa_usec_t) -1;
566 if (source_usec != (pa_usec_t) -1)
567 s->configured_source_latency = pa_source_output_set_requested_latency(s->source_output, source_usec);
569 s->configured_source_latency = 0;
571 if (s->early_requests) {
573 /* Ok, we didn't necessarily get what we were asking for, so
574 * let's tell the user */
576 fragsize_usec = s->configured_source_latency;
578 } else if (s->adjust_latency) {
580 /* Now subtract what we actually got */
582 if (fragsize_usec >= s->configured_source_latency*2)
583 fragsize_usec -= s->configured_source_latency;
585 fragsize_usec = s->configured_source_latency;
588 if (pa_usec_to_bytes(orig_fragsize_usec, &s->source_output->sample_spec) !=
589 pa_usec_to_bytes(fragsize_usec, &s->source_output->sample_spec))
591 s->buffer_attr.fragsize = (uint32_t) pa_usec_to_bytes(fragsize_usec, &s->source_output->sample_spec);
593 if (s->buffer_attr.fragsize <= 0)
594 s->buffer_attr.fragsize = (uint32_t) frame_size;
597 /* Called from main context */
598 static void fix_record_buffer_attr_post(record_stream *s) {
603 /* This function will be called from the main thread, before as
604 * well as after the source output has been activated using
605 * pa_source_output_put()! That means it may not touch and
606 * ->thread_info data! */
608 base = pa_frame_size(&s->source_output->sample_spec);
610 s->buffer_attr.fragsize = (s->buffer_attr.fragsize/base)*base;
611 if (s->buffer_attr.fragsize <= 0)
612 s->buffer_attr.fragsize = base;
614 if (s->buffer_attr.fragsize > s->buffer_attr.maxlength)
615 s->buffer_attr.fragsize = s->buffer_attr.maxlength;
618 /* Called from main context */
619 static record_stream* record_stream_new(
620 pa_native_connection *c,
624 pa_bool_t peak_detect,
625 pa_buffer_attr *attr,
626 pa_source_output_flags_t flags,
628 pa_bool_t adjust_latency,
629 pa_sink_input *direct_on_input,
630 pa_bool_t early_requests,
634 pa_source_output *source_output = NULL;
636 pa_source_output_new_data data;
643 pa_source_output_new_data_init(&data);
645 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
646 data.driver = __FILE__;
647 data.module = c->options->module;
648 data.client = c->client;
649 data.source = source;
650 data.direct_on_input = direct_on_input;
651 pa_source_output_new_data_set_sample_spec(&data, ss);
652 pa_source_output_new_data_set_channel_map(&data, map);
654 data.resample_method = PA_RESAMPLER_PEAKS;
656 *ret = -pa_source_output_new(&source_output, c->protocol->core, &data, flags);
658 pa_source_output_new_data_done(&data);
663 s = pa_msgobject_new(record_stream);
664 s->parent.parent.free = record_stream_free;
665 s->parent.process_msg = record_stream_process_msg;
667 s->source_output = source_output;
668 s->buffer_attr = *attr;
669 s->adjust_latency = adjust_latency;
670 s->early_requests = early_requests;
671 pa_atomic_store(&s->on_the_fly, 0);
673 s->source_output->parent.process_msg = source_output_process_msg;
674 s->source_output->push = source_output_push_cb;
675 s->source_output->kill = source_output_kill_cb;
676 s->source_output->get_latency = source_output_get_latency_cb;
677 s->source_output->moving = source_output_moving_cb;
678 s->source_output->suspend = source_output_suspend_cb;
679 s->source_output->send_event = source_output_send_event_cb;
680 s->source_output->userdata = s;
682 fix_record_buffer_attr_pre(s);
684 s->memblockq = pa_memblockq_new(
686 s->buffer_attr.maxlength,
688 base = pa_frame_size(&source_output->sample_spec),
694 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
695 fix_record_buffer_attr_post(s);
697 *ss = s->source_output->sample_spec;
698 *map = s->source_output->channel_map;
700 pa_idxset_put(c->record_streams, s, &s->index);
702 pa_log_info("Final latency %0.2f ms = %0.2f ms + %0.2f ms",
703 ((double) pa_bytes_to_usec(s->buffer_attr.fragsize, &source_output->sample_spec) + (double) s->configured_source_latency) / PA_USEC_PER_MSEC,
704 (double) pa_bytes_to_usec(s->buffer_attr.fragsize, &source_output->sample_spec) / PA_USEC_PER_MSEC,
705 (double) s->configured_source_latency / PA_USEC_PER_MSEC);
707 pa_source_output_put(s->source_output);
711 /* Called from main context */
712 static void record_stream_send_killed(record_stream *r) {
714 record_stream_assert_ref(r);
716 t = pa_tagstruct_new(NULL, 0);
717 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_KILLED);
718 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
719 pa_tagstruct_putu32(t, r->index);
720 pa_pstream_send_tagstruct(r->connection->pstream, t);
723 /* Called from main context */
724 static void playback_stream_unlink(playback_stream *s) {
731 pa_sink_input_unlink(s->sink_input);
732 pa_sink_input_unref(s->sink_input);
733 s->sink_input = NULL;
736 if (s->drain_request)
737 pa_pstream_send_error(s->connection->pstream, s->drain_tag, PA_ERR_NOENTITY);
739 pa_assert_se(pa_idxset_remove_by_data(s->connection->output_streams, s, NULL) == s);
740 s->connection = NULL;
741 playback_stream_unref(s);
744 /* Called from main context */
745 static void playback_stream_free(pa_object* o) {
746 playback_stream *s = PLAYBACK_STREAM(o);
749 playback_stream_unlink(s);
751 pa_memblockq_free(s->memblockq);
755 /* Called from main context */
756 static int playback_stream_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
757 playback_stream *s = PLAYBACK_STREAM(o);
758 playback_stream_assert_ref(s);
764 case PLAYBACK_STREAM_MESSAGE_REQUEST_DATA: {
769 if ((l = pa_atomic_load(&s->missing)) <= 0)
772 if (pa_atomic_cmpxchg(&s->missing, l, 0))
776 t = pa_tagstruct_new(NULL, 0);
777 pa_tagstruct_putu32(t, PA_COMMAND_REQUEST);
778 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
779 pa_tagstruct_putu32(t, s->index);
780 pa_tagstruct_putu32(t, (uint32_t) l);
781 pa_pstream_send_tagstruct(s->connection->pstream, t);
783 /* pa_log("Requesting %lu bytes", (unsigned long) l); */
787 case PLAYBACK_STREAM_MESSAGE_UNDERFLOW: {
790 /* pa_log("signalling underflow"); */
792 /* Report that we're empty */
793 t = pa_tagstruct_new(NULL, 0);
794 pa_tagstruct_putu32(t, PA_COMMAND_UNDERFLOW);
795 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
796 pa_tagstruct_putu32(t, s->index);
797 pa_pstream_send_tagstruct(s->connection->pstream, t);
801 case PLAYBACK_STREAM_MESSAGE_OVERFLOW: {
804 /* Notify the user we're overflowed*/
805 t = pa_tagstruct_new(NULL, 0);
806 pa_tagstruct_putu32(t, PA_COMMAND_OVERFLOW);
807 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
808 pa_tagstruct_putu32(t, s->index);
809 pa_pstream_send_tagstruct(s->connection->pstream, t);
813 case PLAYBACK_STREAM_MESSAGE_STARTED:
815 if (s->connection->version >= 13) {
818 /* Notify the user we started playback */
819 t = pa_tagstruct_new(NULL, 0);
820 pa_tagstruct_putu32(t, PA_COMMAND_STARTED);
821 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
822 pa_tagstruct_putu32(t, s->index);
823 pa_pstream_send_tagstruct(s->connection->pstream, t);
828 case PLAYBACK_STREAM_MESSAGE_DRAIN_ACK:
829 pa_pstream_send_simple_ack(s->connection->pstream, PA_PTR_TO_UINT(userdata));
832 case PLAYBACK_STREAM_MESSAGE_UPDATE_TLENGTH: {
835 s->buffer_attr.tlength = (uint32_t) offset;
837 t = pa_tagstruct_new(NULL, 0);
838 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_BUFFER_ATTR_CHANGED);
839 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
840 pa_tagstruct_putu32(t, s->index);
841 pa_tagstruct_putu32(t, s->buffer_attr.maxlength);
842 pa_tagstruct_putu32(t, s->buffer_attr.tlength);
843 pa_tagstruct_putu32(t, s->buffer_attr.prebuf);
844 pa_tagstruct_putu32(t, s->buffer_attr.minreq);
845 pa_tagstruct_put_usec(t, s->configured_sink_latency);
846 pa_pstream_send_tagstruct(s->connection->pstream, t);
855 /* Called from main context */
856 static void fix_playback_buffer_attr(playback_stream *s) {
857 size_t frame_size, max_prebuf;
858 pa_usec_t orig_tlength_usec, tlength_usec, orig_minreq_usec, minreq_usec, sink_usec;
862 /* This function will be called from the main thread, before as
863 * well as after the sink input has been activated using
864 * pa_sink_input_put()! That means it may not touch any
865 * ->thread_info data, such as the memblockq! */
867 frame_size = pa_frame_size(&s->sink_input->sample_spec);
869 if (s->buffer_attr.maxlength == (uint32_t) -1 || s->buffer_attr.maxlength > MAX_MEMBLOCKQ_LENGTH)
870 s->buffer_attr.maxlength = MAX_MEMBLOCKQ_LENGTH;
871 if (s->buffer_attr.maxlength <= 0)
872 s->buffer_attr.maxlength = (uint32_t) frame_size;
874 if (s->buffer_attr.tlength == (uint32_t) -1)
875 s->buffer_attr.tlength = (uint32_t) pa_usec_to_bytes_round_up(DEFAULT_TLENGTH_MSEC*PA_USEC_PER_MSEC, &s->sink_input->sample_spec);
876 if (s->buffer_attr.tlength <= 0)
877 s->buffer_attr.tlength = (uint32_t) frame_size;
879 if (s->buffer_attr.minreq == (uint32_t) -1)
880 s->buffer_attr.minreq = (uint32_t) pa_usec_to_bytes_round_up(DEFAULT_PROCESS_MSEC*PA_USEC_PER_MSEC, &s->sink_input->sample_spec);
881 if (s->buffer_attr.minreq <= 0)
882 s->buffer_attr.minreq = (uint32_t) frame_size;
884 if (s->buffer_attr.tlength < s->buffer_attr.minreq+frame_size)
885 s->buffer_attr.tlength = s->buffer_attr.minreq+(uint32_t) frame_size;
887 orig_tlength_usec = tlength_usec = pa_bytes_to_usec(s->buffer_attr.tlength, &s->sink_input->sample_spec);
888 orig_minreq_usec = minreq_usec = pa_bytes_to_usec(s->buffer_attr.minreq, &s->sink_input->sample_spec);
890 pa_log_info("Requested tlength=%0.2f ms, minreq=%0.2f ms",
891 (double) tlength_usec / PA_USEC_PER_MSEC,
892 (double) minreq_usec / PA_USEC_PER_MSEC);
894 if (s->early_requests) {
896 /* In early request mode we need to emulate the classic
897 * fragment-based playback model. We do this setting the sink
898 * latency to the fragment size. */
900 sink_usec = minreq_usec;
901 pa_log_debug("Early requests mode enabled, configuring sink latency to minreq.");
903 } else if (s->adjust_latency) {
905 /* So, the user asked us to adjust the latency of the stream
906 * buffer according to the what the sink can provide. The
907 * tlength passed in shall be the overall latency. Roughly
908 * half the latency will be spent on the hw buffer, the other
909 * half of it in the async buffer queue we maintain for each
910 * client. In between we'll have a safety space of size
911 * 2*minreq. Why the 2*minreq? When the hw buffer is completey
912 * empty and needs to be filled, then our buffer must have
913 * enough data to fulfill this request immediatly and thus
914 * have at least the same tlength as the size of the hw
915 * buffer. It additionally needs space for 2 times minreq
916 * because if the buffer ran empty and a partial fillup
917 * happens immediately on the next iteration we need to be
918 * able to fulfill it and give the application also minreq
919 * time to fill it up again for the next request Makes 2 times
920 * minreq in plus.. */
922 if (tlength_usec > minreq_usec*2)
923 sink_usec = (tlength_usec - minreq_usec*2)/2;
927 pa_log_debug("Adjust latency mode enabled, configuring sink latency to half of overall latency.");
931 /* Ok, the user didn't ask us to adjust the latency, but we
932 * still need to make sure that the parameters from the user
935 if (tlength_usec > minreq_usec*2)
936 sink_usec = (tlength_usec - minreq_usec*2);
940 pa_log_debug("Traditional mode enabled, modifying sink usec only for compat with minreq.");
943 s->configured_sink_latency = pa_sink_input_set_requested_latency(s->sink_input, sink_usec);
945 if (s->early_requests) {
947 /* Ok, we didn't necessarily get what we were asking for, so
948 * let's tell the user */
950 minreq_usec = s->configured_sink_latency;
952 } else if (s->adjust_latency) {
954 /* Ok, we didn't necessarily get what we were asking for, so
955 * let's subtract from what we asked for for the remaining
958 if (tlength_usec >= s->configured_sink_latency)
959 tlength_usec -= s->configured_sink_latency;
962 /* FIXME: This is actually larger than necessary, since not all of
963 * the sink latency is actually rewritable. */
964 if (tlength_usec < s->configured_sink_latency + 2*minreq_usec)
965 tlength_usec = s->configured_sink_latency + 2*minreq_usec;
967 if (pa_usec_to_bytes_round_up(orig_tlength_usec, &s->sink_input->sample_spec) !=
968 pa_usec_to_bytes_round_up(tlength_usec, &s->sink_input->sample_spec))
969 s->buffer_attr.tlength = (uint32_t) pa_usec_to_bytes_round_up(tlength_usec, &s->sink_input->sample_spec);
971 if (pa_usec_to_bytes(orig_minreq_usec, &s->sink_input->sample_spec) !=
972 pa_usec_to_bytes(minreq_usec, &s->sink_input->sample_spec))
973 s->buffer_attr.minreq = (uint32_t) pa_usec_to_bytes(minreq_usec, &s->sink_input->sample_spec);
975 if (s->buffer_attr.minreq <= 0) {
976 s->buffer_attr.minreq = (uint32_t) frame_size;
977 s->buffer_attr.tlength += (uint32_t) frame_size*2;
980 if (s->buffer_attr.tlength <= s->buffer_attr.minreq)
981 s->buffer_attr.tlength = s->buffer_attr.minreq*2 + (uint32_t) frame_size;
983 max_prebuf = s->buffer_attr.tlength + (uint32_t)frame_size - s->buffer_attr.minreq;
985 if (s->buffer_attr.prebuf == (uint32_t) -1 ||
986 s->buffer_attr.prebuf > max_prebuf)
987 s->buffer_attr.prebuf = max_prebuf;
990 /* Called from main context */
991 static playback_stream* playback_stream_new(
992 pa_native_connection *c,
1002 pa_sink_input_flags_t flags,
1004 pa_bool_t adjust_latency,
1005 pa_bool_t early_requests,
1008 playback_stream *s, *ssync;
1009 pa_sink_input *sink_input = NULL;
1010 pa_memchunk silence;
1012 int64_t start_index;
1013 pa_sink_input_new_data data;
1021 /* Find syncid group */
1022 for (ssync = pa_idxset_first(c->output_streams, &idx); ssync; ssync = pa_idxset_next(c->output_streams, &idx)) {
1024 if (!playback_stream_isinstance(ssync))
1027 if (ssync->syncid == syncid)
1031 /* Synced streams must connect to the same sink */
1035 sink = ssync->sink_input->sink;
1036 else if (sink != ssync->sink_input->sink) {
1037 *ret = PA_ERR_INVALID;
1042 pa_sink_input_new_data_init(&data);
1044 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
1045 data.driver = __FILE__;
1046 data.module = c->options->module;
1047 data.client = c->client;
1049 pa_sink_input_new_data_set_sample_spec(&data, ss);
1050 pa_sink_input_new_data_set_channel_map(&data, map);
1052 pa_sink_input_new_data_set_volume(&data, volume);
1054 pa_sink_input_new_data_set_muted(&data, muted);
1055 data.sync_base = ssync ? ssync->sink_input : NULL;
1057 *ret = -pa_sink_input_new(&sink_input, c->protocol->core, &data, flags);
1059 pa_sink_input_new_data_done(&data);
1064 s = pa_msgobject_new(playback_stream);
1065 s->parent.parent.parent.free = playback_stream_free;
1066 s->parent.parent.process_msg = playback_stream_process_msg;
1069 s->sink_input = sink_input;
1070 s->is_underrun = TRUE;
1071 s->drain_request = FALSE;
1072 pa_atomic_store(&s->missing, 0);
1073 s->buffer_attr = *a;
1074 s->adjust_latency = adjust_latency;
1075 s->early_requests = early_requests;
1077 s->sink_input->parent.process_msg = sink_input_process_msg;
1078 s->sink_input->pop = sink_input_pop_cb;
1079 s->sink_input->process_rewind = sink_input_process_rewind_cb;
1080 s->sink_input->update_max_rewind = sink_input_update_max_rewind_cb;
1081 s->sink_input->update_max_request = sink_input_update_max_request_cb;
1082 s->sink_input->kill = sink_input_kill_cb;
1083 s->sink_input->moving = sink_input_moving_cb;
1084 s->sink_input->suspend = sink_input_suspend_cb;
1085 s->sink_input->send_event = sink_input_send_event_cb;
1086 s->sink_input->userdata = s;
1088 start_index = ssync ? pa_memblockq_get_read_index(ssync->memblockq) : 0;
1090 fix_playback_buffer_attr(s);
1092 pa_sink_input_get_silence(sink_input, &silence);
1093 s->memblockq = pa_memblockq_new(
1095 s->buffer_attr.maxlength,
1096 s->buffer_attr.tlength,
1097 pa_frame_size(&sink_input->sample_spec),
1098 s->buffer_attr.prebuf,
1099 s->buffer_attr.minreq,
1102 pa_memblock_unref(silence.memblock);
1104 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
1106 *missing = (uint32_t) pa_memblockq_pop_missing(s->memblockq);
1108 *ss = s->sink_input->sample_spec;
1109 *map = s->sink_input->channel_map;
1111 pa_idxset_put(c->output_streams, s, &s->index);
1113 pa_log_info("Final latency %0.2f ms = %0.2f ms + 2*%0.2f ms + %0.2f ms",
1114 ((double) pa_bytes_to_usec(s->buffer_attr.tlength, &sink_input->sample_spec) + (double) s->configured_sink_latency) / PA_USEC_PER_MSEC,
1115 (double) pa_bytes_to_usec(s->buffer_attr.tlength-s->buffer_attr.minreq*2, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
1116 (double) pa_bytes_to_usec(s->buffer_attr.minreq, &sink_input->sample_spec) / PA_USEC_PER_MSEC,
1117 (double) s->configured_sink_latency / PA_USEC_PER_MSEC);
1119 pa_sink_input_put(s->sink_input);
1123 /* Called from IO context */
1124 static void playback_stream_request_bytes(playback_stream *s) {
1126 int previous_missing;
1128 playback_stream_assert_ref(s);
1130 m = pa_memblockq_pop_missing(s->memblockq);
1135 /* pa_log("request_bytes(%lu)", (unsigned long) m); */
1137 previous_missing = pa_atomic_add(&s->missing, (int) m);
1138 minreq = pa_memblockq_get_minreq(s->memblockq);
1140 if (pa_memblockq_prebuf_active(s->memblockq) ||
1141 (previous_missing < (int) minreq && previous_missing + (int) m >= (int) minreq))
1142 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_REQUEST_DATA, NULL, 0, NULL, NULL);
1146 /* Called from main context */
1147 static void playback_stream_send_killed(playback_stream *p) {
1149 playback_stream_assert_ref(p);
1151 t = pa_tagstruct_new(NULL, 0);
1152 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_KILLED);
1153 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1154 pa_tagstruct_putu32(t, p->index);
1155 pa_pstream_send_tagstruct(p->connection->pstream, t);
1158 /* Called from main context */
1159 static int native_connection_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
1160 pa_native_connection *c = PA_NATIVE_CONNECTION(o);
1161 pa_native_connection_assert_ref(c);
1168 case CONNECTION_MESSAGE_REVOKE:
1169 pa_pstream_send_revoke(c->pstream, PA_PTR_TO_UINT(userdata));
1172 case CONNECTION_MESSAGE_RELEASE:
1173 pa_pstream_send_release(c->pstream, PA_PTR_TO_UINT(userdata));
1180 /* Called from main context */
1181 static void native_connection_unlink(pa_native_connection *c) {
1190 pa_hook_fire(&c->protocol->hooks[PA_NATIVE_HOOK_CONNECTION_UNLINK], c);
1193 pa_native_options_unref(c->options);
1195 while ((r = pa_idxset_first(c->record_streams, NULL)))
1196 record_stream_unlink(r);
1198 while ((o = pa_idxset_first(c->output_streams, NULL)))
1199 if (playback_stream_isinstance(o))
1200 playback_stream_unlink(PLAYBACK_STREAM(o));
1202 upload_stream_unlink(UPLOAD_STREAM(o));
1204 if (c->subscription)
1205 pa_subscription_free(c->subscription);
1208 pa_pstream_unlink(c->pstream);
1210 if (c->auth_timeout_event) {
1211 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
1212 c->auth_timeout_event = NULL;
1215 pa_assert_se(pa_idxset_remove_by_data(c->protocol->connections, c, NULL) == c);
1217 pa_native_connection_unref(c);
1220 /* Called from main context */
1221 static void native_connection_free(pa_object *o) {
1222 pa_native_connection *c = PA_NATIVE_CONNECTION(o);
1226 native_connection_unlink(c);
1228 pa_idxset_free(c->record_streams, NULL, NULL);
1229 pa_idxset_free(c->output_streams, NULL, NULL);
1231 pa_pdispatch_unref(c->pdispatch);
1232 pa_pstream_unref(c->pstream);
1233 pa_client_free(c->client);
1238 /* Called from main context */
1239 static void native_connection_send_memblock(pa_native_connection *c) {
1243 start = PA_IDXSET_INVALID;
1247 if (!(r = RECORD_STREAM(pa_idxset_rrobin(c->record_streams, &c->rrobin_index))))
1250 if (start == PA_IDXSET_INVALID)
1251 start = c->rrobin_index;
1252 else if (start == c->rrobin_index)
1255 if (pa_memblockq_peek(r->memblockq, &chunk) >= 0) {
1256 pa_memchunk schunk = chunk;
1258 if (schunk.length > r->buffer_attr.fragsize)
1259 schunk.length = r->buffer_attr.fragsize;
1261 pa_pstream_send_memblock(c->pstream, r->index, 0, PA_SEEK_RELATIVE, &schunk);
1263 pa_memblockq_drop(r->memblockq, schunk.length);
1264 pa_memblock_unref(schunk.memblock);
1271 /*** sink input callbacks ***/
1273 /* Called from thread context */
1274 static void handle_seek(playback_stream *s, int64_t indexw) {
1275 playback_stream_assert_ref(s);
1277 /* pa_log("handle_seek: %llu -- %i", (unsigned long long) s->sink_input->thread_info.underrun_for, pa_memblockq_is_readable(s->memblockq)); */
1279 if (s->sink_input->thread_info.underrun_for > 0) {
1281 /* pa_log("%lu vs. %lu", (unsigned long) pa_memblockq_get_length(s->memblockq), (unsigned long) pa_memblockq_get_prebuf(s->memblockq)); */
1283 if (pa_memblockq_is_readable(s->memblockq)) {
1285 /* We just ended an underrun, let's ask the sink
1286 * for a complete rewind rewrite */
1288 pa_log_debug("Requesting rewind due to end of underrun.");
1289 pa_sink_input_request_rewind(s->sink_input,
1290 (size_t) (s->sink_input->thread_info.underrun_for == (size_t) -1 ? 0 : s->sink_input->thread_info.underrun_for),
1291 FALSE, TRUE, FALSE);
1297 indexr = pa_memblockq_get_read_index(s->memblockq);
1299 if (indexw < indexr) {
1300 /* OK, the sink already asked for this data, so
1301 * let's have it usk us again */
1303 pa_log_debug("Requesting rewind due to rewrite.");
1304 pa_sink_input_request_rewind(s->sink_input, (size_t) (indexr - indexw), TRUE, FALSE, FALSE);
1308 playback_stream_request_bytes(s);
1311 /* Called from thread context */
1312 static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
1313 pa_sink_input *i = PA_SINK_INPUT(o);
1316 pa_sink_input_assert_ref(i);
1317 s = PLAYBACK_STREAM(i->userdata);
1318 playback_stream_assert_ref(s);
1322 case SINK_INPUT_MESSAGE_SEEK: {
1325 windex = pa_memblockq_get_write_index(s->memblockq);
1327 /* The client side is incapable of accounting correctly
1328 * for seeks of a type != PA_SEEK_RELATIVE. We need to be
1329 * able to deal with that. */
1331 pa_memblockq_seek(s->memblockq, offset, PA_PTR_TO_UINT(userdata), PA_PTR_TO_UINT(userdata) == PA_SEEK_RELATIVE);
1333 handle_seek(s, windex);
1337 case SINK_INPUT_MESSAGE_POST_DATA: {
1342 windex = pa_memblockq_get_write_index(s->memblockq);
1344 /* pa_log("sink input post: %lu %lli", (unsigned long) chunk->length, (long long) windex); */
1346 if (pa_memblockq_push_align(s->memblockq, chunk) < 0) {
1347 pa_log_warn("Failed to push data into queue");
1348 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_OVERFLOW, NULL, 0, NULL, NULL);
1349 pa_memblockq_seek(s->memblockq, (int64_t) chunk->length, PA_SEEK_RELATIVE, TRUE);
1352 handle_seek(s, windex);
1354 /* pa_log("sink input post2: %lu", (unsigned long) pa_memblockq_get_length(s->memblockq)); */
1359 case SINK_INPUT_MESSAGE_DRAIN:
1360 case SINK_INPUT_MESSAGE_FLUSH:
1361 case SINK_INPUT_MESSAGE_PREBUF_FORCE:
1362 case SINK_INPUT_MESSAGE_TRIGGER: {
1365 pa_sink_input *isync;
1366 void (*func)(pa_memblockq *bq);
1369 case SINK_INPUT_MESSAGE_FLUSH:
1370 func = pa_memblockq_flush_write;
1373 case SINK_INPUT_MESSAGE_PREBUF_FORCE:
1374 func = pa_memblockq_prebuf_force;
1377 case SINK_INPUT_MESSAGE_DRAIN:
1378 case SINK_INPUT_MESSAGE_TRIGGER:
1379 func = pa_memblockq_prebuf_disable;
1383 pa_assert_not_reached();
1386 windex = pa_memblockq_get_write_index(s->memblockq);
1388 handle_seek(s, windex);
1390 /* Do the same for all other members in the sync group */
1391 for (isync = i->sync_prev; isync; isync = isync->sync_prev) {
1392 playback_stream *ssync = PLAYBACK_STREAM(isync->userdata);
1393 windex = pa_memblockq_get_write_index(ssync->memblockq);
1394 func(ssync->memblockq);
1395 handle_seek(ssync, windex);
1398 for (isync = i->sync_next; isync; isync = isync->sync_next) {
1399 playback_stream *ssync = PLAYBACK_STREAM(isync->userdata);
1400 windex = pa_memblockq_get_write_index(ssync->memblockq);
1401 func(ssync->memblockq);
1402 handle_seek(ssync, windex);
1405 if (code == SINK_INPUT_MESSAGE_DRAIN) {
1406 if (!pa_memblockq_is_readable(s->memblockq))
1407 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_DRAIN_ACK, userdata, 0, NULL, NULL);
1409 s->drain_tag = PA_PTR_TO_UINT(userdata);
1410 s->drain_request = TRUE;
1417 case SINK_INPUT_MESSAGE_UPDATE_LATENCY:
1418 /* Atomically get a snapshot of all timing parameters... */
1419 s->read_index = pa_memblockq_get_read_index(s->memblockq);
1420 s->write_index = pa_memblockq_get_write_index(s->memblockq);
1421 s->render_memblockq_length = pa_memblockq_get_length(s->sink_input->thread_info.render_memblockq);
1422 s->current_sink_latency = pa_sink_get_latency_within_thread(s->sink_input->sink);
1423 s->underrun_for = s->sink_input->thread_info.underrun_for;
1424 s->playing_for = s->sink_input->thread_info.playing_for;
1428 case PA_SINK_INPUT_MESSAGE_SET_STATE: {
1431 windex = pa_memblockq_get_write_index(s->memblockq);
1433 pa_memblockq_prebuf_force(s->memblockq);
1435 handle_seek(s, windex);
1437 /* Fall through to the default handler */
1441 case PA_SINK_INPUT_MESSAGE_GET_LATENCY: {
1442 pa_usec_t *r = userdata;
1444 *r = pa_bytes_to_usec(pa_memblockq_get_length(s->memblockq), &i->sample_spec);
1446 /* Fall through, the default handler will add in the extra
1447 * latency added by the resampler */
1451 case SINK_INPUT_MESSAGE_UPDATE_BUFFER_ATTR: {
1452 pa_memblockq_apply_attr(s->memblockq, &s->buffer_attr);
1453 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
1458 return pa_sink_input_process_msg(o, code, userdata, offset, chunk);
1461 /* Called from thread context */
1462 static int sink_input_pop_cb(pa_sink_input *i, size_t nbytes, pa_memchunk *chunk) {
1465 pa_sink_input_assert_ref(i);
1466 s = PLAYBACK_STREAM(i->userdata);
1467 playback_stream_assert_ref(s);
1470 /* pa_log("%s, pop(): %lu", pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME), (unsigned long) pa_memblockq_get_length(s->memblockq)); */
1472 if (pa_memblockq_is_readable(s->memblockq))
1473 s->is_underrun = FALSE;
1475 if (!s->is_underrun)
1476 pa_log_debug("Underrun on '%s', %lu bytes in queue.", pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME)), (unsigned long) pa_memblockq_get_length(s->memblockq));
1478 if (s->drain_request && pa_sink_input_safe_to_remove(i)) {
1479 s->drain_request = FALSE;
1480 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);
1481 } else if (!s->is_underrun)
1482 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_UNDERFLOW, NULL, 0, NULL, NULL);
1484 s->is_underrun = TRUE;
1486 playback_stream_request_bytes(s);
1489 /* This call will not fail with prebuf=0, hence we check for
1490 underrun explicitly above */
1491 if (pa_memblockq_peek(s->memblockq, chunk) < 0)
1494 chunk->length = PA_MIN(nbytes, chunk->length);
1496 if (i->thread_info.underrun_for > 0)
1497 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_STARTED, NULL, 0, NULL, NULL);
1499 pa_memblockq_drop(s->memblockq, chunk->length);
1500 playback_stream_request_bytes(s);
1505 /* Called from thread context */
1506 static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes) {
1509 pa_sink_input_assert_ref(i);
1510 s = PLAYBACK_STREAM(i->userdata);
1511 playback_stream_assert_ref(s);
1513 /* If we are in an underrun, then we don't rewind */
1514 if (i->thread_info.underrun_for > 0)
1517 pa_memblockq_rewind(s->memblockq, nbytes);
1520 /* Called from thread context */
1521 static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes) {
1524 pa_sink_input_assert_ref(i);
1525 s = PLAYBACK_STREAM(i->userdata);
1526 playback_stream_assert_ref(s);
1528 pa_memblockq_set_maxrewind(s->memblockq, nbytes);
1531 /* Called from thread context */
1532 static void sink_input_update_max_request_cb(pa_sink_input *i, size_t nbytes) {
1534 size_t new_tlength, old_tlength;
1536 pa_sink_input_assert_ref(i);
1537 s = PLAYBACK_STREAM(i->userdata);
1538 playback_stream_assert_ref(s);
1540 old_tlength = pa_memblockq_get_tlength(s->memblockq);
1541 new_tlength = nbytes+2*pa_memblockq_get_minreq(s->memblockq);
1543 if (old_tlength < new_tlength) {
1544 pa_log_debug("max_request changed, trying to update from %zu to %zu.", old_tlength, new_tlength);
1545 pa_memblockq_set_tlength(s->memblockq, new_tlength);
1546 new_tlength = pa_memblockq_get_tlength(s->memblockq);
1548 if (new_tlength == old_tlength)
1549 pa_log_debug("Failed to increase tlength");
1551 pa_log_debug("Notifying client about increased tlength");
1552 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PLAYBACK_STREAM_MESSAGE_UPDATE_TLENGTH, NULL, pa_memblockq_get_tlength(s->memblockq), NULL, NULL);
1557 /* Called from main context */
1558 static void sink_input_kill_cb(pa_sink_input *i) {
1561 pa_sink_input_assert_ref(i);
1562 s = PLAYBACK_STREAM(i->userdata);
1563 playback_stream_assert_ref(s);
1565 playback_stream_send_killed(s);
1566 playback_stream_unlink(s);
1569 /* Called from main context */
1570 static void sink_input_send_event_cb(pa_sink_input *i, const char *event, pa_proplist *pl) {
1574 pa_sink_input_assert_ref(i);
1575 s = PLAYBACK_STREAM(i->userdata);
1576 playback_stream_assert_ref(s);
1578 if (s->connection->version < 15)
1581 t = pa_tagstruct_new(NULL, 0);
1582 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_EVENT);
1583 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1584 pa_tagstruct_putu32(t, s->index);
1585 pa_tagstruct_puts(t, event);
1586 pa_tagstruct_put_proplist(t, pl);
1587 pa_pstream_send_tagstruct(s->connection->pstream, t);
1590 /* Called from main context */
1591 static void sink_input_suspend_cb(pa_sink_input *i, pa_bool_t suspend) {
1595 pa_sink_input_assert_ref(i);
1596 s = PLAYBACK_STREAM(i->userdata);
1597 playback_stream_assert_ref(s);
1599 if (s->connection->version < 12)
1602 t = pa_tagstruct_new(NULL, 0);
1603 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_SUSPENDED);
1604 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1605 pa_tagstruct_putu32(t, s->index);
1606 pa_tagstruct_put_boolean(t, suspend);
1607 pa_pstream_send_tagstruct(s->connection->pstream, t);
1610 /* Called from main context */
1611 static void sink_input_moving_cb(pa_sink_input *i, pa_sink *dest) {
1615 pa_sink_input_assert_ref(i);
1616 s = PLAYBACK_STREAM(i->userdata);
1617 playback_stream_assert_ref(s);
1619 fix_playback_buffer_attr(s);
1620 pa_memblockq_apply_attr(s->memblockq, &s->buffer_attr);
1621 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
1623 if (s->connection->version < 12)
1626 t = pa_tagstruct_new(NULL, 0);
1627 pa_tagstruct_putu32(t, PA_COMMAND_PLAYBACK_STREAM_MOVED);
1628 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1629 pa_tagstruct_putu32(t, s->index);
1630 pa_tagstruct_putu32(t, dest->index);
1631 pa_tagstruct_puts(t, dest->name);
1632 pa_tagstruct_put_boolean(t, pa_sink_get_state(dest) == PA_SINK_SUSPENDED);
1634 if (s->connection->version >= 13) {
1635 pa_tagstruct_putu32(t, s->buffer_attr.maxlength);
1636 pa_tagstruct_putu32(t, s->buffer_attr.tlength);
1637 pa_tagstruct_putu32(t, s->buffer_attr.prebuf);
1638 pa_tagstruct_putu32(t, s->buffer_attr.minreq);
1639 pa_tagstruct_put_usec(t, s->configured_sink_latency);
1642 pa_pstream_send_tagstruct(s->connection->pstream, t);
1645 /*** source_output callbacks ***/
1647 /* Called from thread context */
1648 static int source_output_process_msg(pa_msgobject *_o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
1649 pa_source_output *o = PA_SOURCE_OUTPUT(_o);
1652 pa_source_output_assert_ref(o);
1653 s = RECORD_STREAM(o->userdata);
1654 record_stream_assert_ref(s);
1657 case SOURCE_OUTPUT_MESSAGE_UPDATE_LATENCY:
1658 /* Atomically get a snapshot of all timing parameters... */
1659 s->current_monitor_latency = o->source->monitor_of ? pa_sink_get_latency_within_thread(o->source->monitor_of) : 0;
1660 s->current_source_latency = pa_source_get_latency_within_thread(o->source);
1661 s->on_the_fly_snapshot = pa_atomic_load(&s->on_the_fly);
1665 return pa_source_output_process_msg(_o, code, userdata, offset, chunk);
1668 /* Called from thread context */
1669 static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) {
1672 pa_source_output_assert_ref(o);
1673 s = RECORD_STREAM(o->userdata);
1674 record_stream_assert_ref(s);
1677 pa_atomic_add(&s->on_the_fly, chunk->length);
1678 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), RECORD_STREAM_MESSAGE_POST_DATA, NULL, 0, chunk, NULL);
1681 static void source_output_kill_cb(pa_source_output *o) {
1684 pa_source_output_assert_ref(o);
1685 s = RECORD_STREAM(o->userdata);
1686 record_stream_assert_ref(s);
1688 record_stream_send_killed(s);
1689 record_stream_unlink(s);
1692 static pa_usec_t source_output_get_latency_cb(pa_source_output *o) {
1695 pa_source_output_assert_ref(o);
1696 s = RECORD_STREAM(o->userdata);
1697 record_stream_assert_ref(s);
1699 /*pa_log("get_latency: %u", pa_memblockq_get_length(s->memblockq));*/
1701 return pa_bytes_to_usec(pa_memblockq_get_length(s->memblockq), &o->sample_spec);
1704 /* Called from main context */
1705 static void source_output_send_event_cb(pa_source_output *o, const char *event, pa_proplist *pl) {
1709 pa_source_output_assert_ref(o);
1710 s = RECORD_STREAM(o->userdata);
1711 record_stream_assert_ref(s);
1713 if (s->connection->version < 15)
1716 t = pa_tagstruct_new(NULL, 0);
1717 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_EVENT);
1718 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1719 pa_tagstruct_putu32(t, s->index);
1720 pa_tagstruct_puts(t, event);
1721 pa_tagstruct_put_proplist(t, pl);
1722 pa_pstream_send_tagstruct(s->connection->pstream, t);
1725 /* Called from main context */
1726 static void source_output_suspend_cb(pa_source_output *o, pa_bool_t suspend) {
1730 pa_source_output_assert_ref(o);
1731 s = RECORD_STREAM(o->userdata);
1732 record_stream_assert_ref(s);
1734 if (s->connection->version < 12)
1737 t = pa_tagstruct_new(NULL, 0);
1738 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_SUSPENDED);
1739 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1740 pa_tagstruct_putu32(t, s->index);
1741 pa_tagstruct_put_boolean(t, suspend);
1742 pa_pstream_send_tagstruct(s->connection->pstream, t);
1745 /* Called from main context */
1746 static void source_output_moving_cb(pa_source_output *o, pa_source *dest) {
1750 pa_source_output_assert_ref(o);
1751 s = RECORD_STREAM(o->userdata);
1752 record_stream_assert_ref(s);
1754 fix_record_buffer_attr_pre(s);
1755 pa_memblockq_set_maxlength(s->memblockq, s->buffer_attr.maxlength);
1756 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
1757 fix_record_buffer_attr_post(s);
1759 if (s->connection->version < 12)
1762 t = pa_tagstruct_new(NULL, 0);
1763 pa_tagstruct_putu32(t, PA_COMMAND_RECORD_STREAM_MOVED);
1764 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
1765 pa_tagstruct_putu32(t, s->index);
1766 pa_tagstruct_putu32(t, dest->index);
1767 pa_tagstruct_puts(t, dest->name);
1768 pa_tagstruct_put_boolean(t, pa_source_get_state(dest) == PA_SOURCE_SUSPENDED);
1770 if (s->connection->version >= 13) {
1771 pa_tagstruct_putu32(t, s->buffer_attr.maxlength);
1772 pa_tagstruct_putu32(t, s->buffer_attr.fragsize);
1773 pa_tagstruct_put_usec(t, s->configured_source_latency);
1776 pa_pstream_send_tagstruct(s->connection->pstream, t);
1779 /*** pdispatch callbacks ***/
1781 static void protocol_error(pa_native_connection *c) {
1782 pa_log("protocol error, kicking client");
1783 native_connection_unlink(c);
1786 #define CHECK_VALIDITY(pstream, expression, tag, error) do { \
1787 if (!(expression)) { \
1788 pa_pstream_send_error((pstream), (tag), (error)); \
1793 static pa_tagstruct *reply_new(uint32_t tag) {
1794 pa_tagstruct *reply;
1796 reply = pa_tagstruct_new(NULL, 0);
1797 pa_tagstruct_putu32(reply, PA_COMMAND_REPLY);
1798 pa_tagstruct_putu32(reply, tag);
1802 static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
1803 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
1805 uint32_t sink_index, syncid, missing;
1806 pa_buffer_attr attr;
1807 const char *name = NULL, *sink_name;
1810 pa_tagstruct *reply;
1811 pa_sink *sink = NULL;
1819 fix_channels = FALSE,
1821 variable_rate = FALSE,
1823 adjust_latency = FALSE,
1824 early_requests = FALSE,
1825 dont_inhibit_auto_suspend = FALSE,
1827 fail_on_suspend = FALSE;
1828 pa_sink_input_flags_t flags = 0;
1830 pa_bool_t volume_set = TRUE;
1831 int ret = PA_ERR_INVALID;
1833 pa_native_connection_assert_ref(c);
1835 memset(&attr, 0, sizeof(attr));
1837 if ((c->version < 13 && (pa_tagstruct_gets(t, &name) < 0 || !name)) ||
1840 PA_TAG_SAMPLE_SPEC, &ss,
1841 PA_TAG_CHANNEL_MAP, &map,
1842 PA_TAG_U32, &sink_index,
1843 PA_TAG_STRING, &sink_name,
1844 PA_TAG_U32, &attr.maxlength,
1845 PA_TAG_BOOLEAN, &corked,
1846 PA_TAG_U32, &attr.tlength,
1847 PA_TAG_U32, &attr.prebuf,
1848 PA_TAG_U32, &attr.minreq,
1849 PA_TAG_U32, &syncid,
1850 PA_TAG_CVOLUME, &volume,
1851 PA_TAG_INVALID) < 0) {
1857 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
1858 CHECK_VALIDITY(c->pstream, !sink_name || pa_namereg_is_valid_name(sink_name), tag, PA_ERR_INVALID);
1859 CHECK_VALIDITY(c->pstream, sink_index == PA_INVALID_INDEX || !sink_name, tag, PA_ERR_INVALID);
1860 CHECK_VALIDITY(c->pstream, !sink_name || sink_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
1861 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
1862 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
1863 CHECK_VALIDITY(c->pstream, pa_cvolume_valid(&volume), tag, PA_ERR_INVALID);
1864 CHECK_VALIDITY(c->pstream, map.channels == ss.channels && volume.channels == ss.channels, tag, PA_ERR_INVALID);
1866 p = pa_proplist_new();
1869 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
1871 if (c->version >= 12) {
1872 /* Since 0.9.8 the user can ask for a couple of additional flags */
1874 if (pa_tagstruct_get_boolean(t, &no_remap) < 0 ||
1875 pa_tagstruct_get_boolean(t, &no_remix) < 0 ||
1876 pa_tagstruct_get_boolean(t, &fix_format) < 0 ||
1877 pa_tagstruct_get_boolean(t, &fix_rate) < 0 ||
1878 pa_tagstruct_get_boolean(t, &fix_channels) < 0 ||
1879 pa_tagstruct_get_boolean(t, &no_move) < 0 ||
1880 pa_tagstruct_get_boolean(t, &variable_rate) < 0) {
1883 pa_proplist_free(p);
1888 if (c->version >= 13) {
1890 if (pa_tagstruct_get_boolean(t, &muted) < 0 ||
1891 pa_tagstruct_get_boolean(t, &adjust_latency) < 0 ||
1892 pa_tagstruct_get_proplist(t, p) < 0) {
1894 pa_proplist_free(p);
1899 if (c->version >= 14) {
1901 if (pa_tagstruct_get_boolean(t, &volume_set) < 0 ||
1902 pa_tagstruct_get_boolean(t, &early_requests) < 0) {
1904 pa_proplist_free(p);
1909 if (c->version >= 15) {
1911 if (pa_tagstruct_get_boolean(t, &muted_set) < 0 ||
1912 pa_tagstruct_get_boolean(t, &dont_inhibit_auto_suspend) < 0 ||
1913 pa_tagstruct_get_boolean(t, &fail_on_suspend) < 0) {
1915 pa_proplist_free(p);
1920 if (!pa_tagstruct_eof(t)) {
1922 pa_proplist_free(p);
1926 if (sink_index != PA_INVALID_INDEX) {
1928 if (!(sink = pa_idxset_get_by_index(c->protocol->core->sinks, sink_index))) {
1929 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
1930 pa_proplist_free(p);
1934 } else if (sink_name) {
1936 if (!(sink = pa_namereg_get(c->protocol->core, sink_name, PA_NAMEREG_SINK))) {
1937 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
1938 pa_proplist_free(p);
1944 (corked ? PA_SINK_INPUT_START_CORKED : 0) |
1945 (no_remap ? PA_SINK_INPUT_NO_REMAP : 0) |
1946 (no_remix ? PA_SINK_INPUT_NO_REMIX : 0) |
1947 (fix_format ? PA_SINK_INPUT_FIX_FORMAT : 0) |
1948 (fix_rate ? PA_SINK_INPUT_FIX_RATE : 0) |
1949 (fix_channels ? PA_SINK_INPUT_FIX_CHANNELS : 0) |
1950 (no_move ? PA_SINK_INPUT_DONT_MOVE : 0) |
1951 (variable_rate ? PA_SINK_INPUT_VARIABLE_RATE : 0) |
1952 (dont_inhibit_auto_suspend ? PA_SINK_INPUT_DONT_INHIBIT_AUTO_SUSPEND : 0) |
1953 (fail_on_suspend ? PA_SINK_INPUT_FAIL_ON_SUSPEND : 0);
1955 /* Only since protocol version 15 there's a seperate muted_set
1956 * flag. For older versions we synthesize it here */
1957 muted_set = muted_set || muted;
1959 s = playback_stream_new(c, sink, &ss, &map, &attr, volume_set ? &volume : NULL, muted, muted_set, syncid, &missing, flags, p, adjust_latency, early_requests, &ret);
1960 pa_proplist_free(p);
1962 CHECK_VALIDITY(c->pstream, s, tag, ret);
1964 reply = reply_new(tag);
1965 pa_tagstruct_putu32(reply, s->index);
1966 pa_assert(s->sink_input);
1967 pa_tagstruct_putu32(reply, s->sink_input->index);
1968 pa_tagstruct_putu32(reply, missing);
1970 /* pa_log("initial request is %u", missing); */
1972 if (c->version >= 9) {
1973 /* Since 0.9.0 we support sending the buffer metrics back to the client */
1975 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.maxlength);
1976 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.tlength);
1977 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.prebuf);
1978 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.minreq);
1981 if (c->version >= 12) {
1982 /* Since 0.9.8 we support sending the chosen sample
1983 * spec/channel map/device/suspend status back to the
1986 pa_tagstruct_put_sample_spec(reply, &ss);
1987 pa_tagstruct_put_channel_map(reply, &map);
1989 pa_tagstruct_putu32(reply, s->sink_input->sink->index);
1990 pa_tagstruct_puts(reply, s->sink_input->sink->name);
1992 pa_tagstruct_put_boolean(reply, pa_sink_get_state(s->sink_input->sink) == PA_SINK_SUSPENDED);
1995 if (c->version >= 13)
1996 pa_tagstruct_put_usec(reply, s->configured_sink_latency);
1998 pa_pstream_send_tagstruct(c->pstream, reply);
2001 static void command_delete_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2002 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2005 pa_native_connection_assert_ref(c);
2008 if (pa_tagstruct_getu32(t, &channel) < 0 ||
2009 !pa_tagstruct_eof(t)) {
2014 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2018 case PA_COMMAND_DELETE_PLAYBACK_STREAM: {
2020 if (!(s = pa_idxset_get_by_index(c->output_streams, channel)) || !playback_stream_isinstance(s)) {
2021 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
2025 playback_stream_unlink(s);
2029 case PA_COMMAND_DELETE_RECORD_STREAM: {
2031 if (!(s = pa_idxset_get_by_index(c->record_streams, channel))) {
2032 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
2036 record_stream_unlink(s);
2040 case PA_COMMAND_DELETE_UPLOAD_STREAM: {
2043 if (!(s = pa_idxset_get_by_index(c->output_streams, channel)) || !upload_stream_isinstance(s)) {
2044 pa_pstream_send_error(c->pstream, tag, PA_ERR_EXIST);
2048 upload_stream_unlink(s);
2053 pa_assert_not_reached();
2056 pa_pstream_send_simple_ack(c->pstream, tag);
2059 static void command_create_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2060 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2062 pa_buffer_attr attr;
2063 uint32_t source_index;
2064 const char *name = NULL, *source_name;
2067 pa_tagstruct *reply;
2068 pa_source *source = NULL;
2075 fix_channels = FALSE,
2077 variable_rate = FALSE,
2078 adjust_latency = FALSE,
2079 peak_detect = FALSE,
2080 early_requests = FALSE,
2081 dont_inhibit_auto_suspend = FALSE,
2082 fail_on_suspend = FALSE;
2083 pa_source_output_flags_t flags = 0;
2085 uint32_t direct_on_input_idx = PA_INVALID_INDEX;
2086 pa_sink_input *direct_on_input = NULL;
2087 int ret = PA_ERR_INVALID;
2089 pa_native_connection_assert_ref(c);
2092 memset(&attr, 0, sizeof(attr));
2094 if ((c->version < 13 && (pa_tagstruct_gets(t, &name) < 0 || !name)) ||
2095 pa_tagstruct_get_sample_spec(t, &ss) < 0 ||
2096 pa_tagstruct_get_channel_map(t, &map) < 0 ||
2097 pa_tagstruct_getu32(t, &source_index) < 0 ||
2098 pa_tagstruct_gets(t, &source_name) < 0 ||
2099 pa_tagstruct_getu32(t, &attr.maxlength) < 0 ||
2100 pa_tagstruct_get_boolean(t, &corked) < 0 ||
2101 pa_tagstruct_getu32(t, &attr.fragsize) < 0) {
2106 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2107 CHECK_VALIDITY(c->pstream, !source_name || pa_namereg_is_valid_name(source_name), tag, PA_ERR_INVALID);
2108 CHECK_VALIDITY(c->pstream, source_index == PA_INVALID_INDEX || !source_name, tag, PA_ERR_INVALID);
2109 CHECK_VALIDITY(c->pstream, !source_name || source_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
2110 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
2111 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
2112 CHECK_VALIDITY(c->pstream, map.channels == ss.channels, tag, PA_ERR_INVALID);
2114 p = pa_proplist_new();
2117 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
2119 if (c->version >= 12) {
2120 /* Since 0.9.8 the user can ask for a couple of additional flags */
2122 if (pa_tagstruct_get_boolean(t, &no_remap) < 0 ||
2123 pa_tagstruct_get_boolean(t, &no_remix) < 0 ||
2124 pa_tagstruct_get_boolean(t, &fix_format) < 0 ||
2125 pa_tagstruct_get_boolean(t, &fix_rate) < 0 ||
2126 pa_tagstruct_get_boolean(t, &fix_channels) < 0 ||
2127 pa_tagstruct_get_boolean(t, &no_move) < 0 ||
2128 pa_tagstruct_get_boolean(t, &variable_rate) < 0) {
2131 pa_proplist_free(p);
2136 if (c->version >= 13) {
2138 if (pa_tagstruct_get_boolean(t, &peak_detect) < 0 ||
2139 pa_tagstruct_get_boolean(t, &adjust_latency) < 0 ||
2140 pa_tagstruct_get_proplist(t, p) < 0 ||
2141 pa_tagstruct_getu32(t, &direct_on_input_idx) < 0) {
2143 pa_proplist_free(p);
2148 if (c->version >= 14) {
2150 if (pa_tagstruct_get_boolean(t, &early_requests) < 0) {
2152 pa_proplist_free(p);
2157 if (c->version >= 15) {
2159 if (pa_tagstruct_get_boolean(t, &dont_inhibit_auto_suspend) < 0 ||
2160 pa_tagstruct_get_boolean(t, &fail_on_suspend) < 0) {
2162 pa_proplist_free(p);
2167 if (!pa_tagstruct_eof(t)) {
2169 pa_proplist_free(p);
2173 if (source_index != PA_INVALID_INDEX) {
2175 if (!(source = pa_idxset_get_by_index(c->protocol->core->sources, source_index))) {
2176 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2177 pa_proplist_free(p);
2181 } else if (source_name) {
2183 if (!(source = pa_namereg_get(c->protocol->core, source_name, PA_NAMEREG_SOURCE))) {
2184 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2185 pa_proplist_free(p);
2190 if (direct_on_input_idx != PA_INVALID_INDEX) {
2192 if (!(direct_on_input = pa_idxset_get_by_index(c->protocol->core->sink_inputs, direct_on_input_idx))) {
2193 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2194 pa_proplist_free(p);
2200 (corked ? PA_SOURCE_OUTPUT_START_CORKED : 0) |
2201 (no_remap ? PA_SOURCE_OUTPUT_NO_REMAP : 0) |
2202 (no_remix ? PA_SOURCE_OUTPUT_NO_REMIX : 0) |
2203 (fix_format ? PA_SOURCE_OUTPUT_FIX_FORMAT : 0) |
2204 (fix_rate ? PA_SOURCE_OUTPUT_FIX_RATE : 0) |
2205 (fix_channels ? PA_SOURCE_OUTPUT_FIX_CHANNELS : 0) |
2206 (no_move ? PA_SOURCE_OUTPUT_DONT_MOVE : 0) |
2207 (variable_rate ? PA_SOURCE_OUTPUT_VARIABLE_RATE : 0) |
2208 (dont_inhibit_auto_suspend ? PA_SOURCE_OUTPUT_DONT_INHIBIT_AUTO_SUSPEND : 0) |
2209 (fail_on_suspend ? PA_SOURCE_OUTPUT_FAIL_ON_SUSPEND : 0);
2211 s = record_stream_new(c, source, &ss, &map, peak_detect, &attr, flags, p, adjust_latency, direct_on_input, early_requests, &ret);
2212 pa_proplist_free(p);
2214 CHECK_VALIDITY(c->pstream, s, tag, ret);
2216 reply = reply_new(tag);
2217 pa_tagstruct_putu32(reply, s->index);
2218 pa_assert(s->source_output);
2219 pa_tagstruct_putu32(reply, s->source_output->index);
2221 if (c->version >= 9) {
2222 /* Since 0.9 we support sending the buffer metrics back to the client */
2224 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.maxlength);
2225 pa_tagstruct_putu32(reply, (uint32_t) s->buffer_attr.fragsize);
2228 if (c->version >= 12) {
2229 /* Since 0.9.8 we support sending the chosen sample
2230 * spec/channel map/device/suspend status back to the
2233 pa_tagstruct_put_sample_spec(reply, &ss);
2234 pa_tagstruct_put_channel_map(reply, &map);
2236 pa_tagstruct_putu32(reply, s->source_output->source->index);
2237 pa_tagstruct_puts(reply, s->source_output->source->name);
2239 pa_tagstruct_put_boolean(reply, pa_source_get_state(s->source_output->source) == PA_SOURCE_SUSPENDED);
2242 if (c->version >= 13)
2243 pa_tagstruct_put_usec(reply, s->configured_source_latency);
2245 pa_pstream_send_tagstruct(c->pstream, reply);
2248 static void command_exit(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2249 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2252 pa_native_connection_assert_ref(c);
2255 if (!pa_tagstruct_eof(t)) {
2260 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2261 ret = pa_core_exit(c->protocol->core, FALSE, 0);
2262 CHECK_VALIDITY(c->pstream, ret >= 0, tag, PA_ERR_ACCESS);
2264 pa_pstream_send_simple_ack(c->pstream, tag); /* nonsense */
2267 static void command_auth(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2268 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2270 pa_tagstruct *reply;
2271 pa_bool_t shm_on_remote = FALSE, do_shm;
2273 pa_native_connection_assert_ref(c);
2276 if (pa_tagstruct_getu32(t, &c->version) < 0 ||
2277 pa_tagstruct_get_arbitrary(t, &cookie, PA_NATIVE_COOKIE_LENGTH) < 0 ||
2278 !pa_tagstruct_eof(t)) {
2283 /* Minimum supported version */
2284 if (c->version < 8) {
2285 pa_pstream_send_error(c->pstream, tag, PA_ERR_VERSION);
2289 /* Starting with protocol version 13 the MSB of the version tag
2290 reflects if shm is available for this pa_native_connection or
2292 if (c->version >= 13) {
2293 shm_on_remote = !!(c->version & 0x80000000U);
2294 c->version &= 0x7FFFFFFFU;
2297 pa_log_debug("Protocol version: remote %u, local %u", c->version, PA_PROTOCOL_VERSION);
2299 pa_proplist_setf(c->client->proplist, "native-protocol.version", "%u", c->version);
2301 if (!c->authorized) {
2302 pa_bool_t success = FALSE;
2305 const pa_creds *creds;
2307 if ((creds = pa_pdispatch_creds(pd))) {
2308 if (creds->uid == getuid())
2310 else if (c->options->auth_group) {
2314 if ((gid = pa_get_gid_of_group(c->options->auth_group)) == (gid_t) -1)
2315 pa_log_warn("Failed to get GID of group '%s'", c->options->auth_group);
2316 else if (gid == creds->gid)
2320 if ((r = pa_uid_in_group(creds->uid, c->options->auth_group)) < 0)
2321 pa_log_warn("Failed to check group membership.");
2327 pa_log_info("Got credentials: uid=%lu gid=%lu success=%i",
2328 (unsigned long) creds->uid,
2329 (unsigned long) creds->gid,
2334 if (!success && c->options->auth_cookie) {
2337 if ((ac = pa_auth_cookie_read(c->options->auth_cookie, PA_NATIVE_COOKIE_LENGTH)))
2338 if (memcmp(ac, cookie, PA_NATIVE_COOKIE_LENGTH) == 0)
2343 pa_log_warn("Denied access to client with invalid authorization data.");
2344 pa_pstream_send_error(c->pstream, tag, PA_ERR_ACCESS);
2348 c->authorized = TRUE;
2349 if (c->auth_timeout_event) {
2350 c->protocol->core->mainloop->time_free(c->auth_timeout_event);
2351 c->auth_timeout_event = NULL;
2355 /* Enable shared memory support if possible */
2357 pa_mempool_is_shared(c->protocol->core->mempool) &&
2360 pa_log_debug("SHM possible: %s", pa_yes_no(do_shm));
2363 if (c->version < 10 || (c->version >= 13 && !shm_on_remote))
2368 /* Only enable SHM if both sides are owned by the same
2369 * user. This is a security measure because otherwise data
2370 * private to the user might leak. */
2372 const pa_creds *creds;
2373 if (!(creds = pa_pdispatch_creds(pd)) || getuid() != creds->uid)
2378 pa_log_debug("Negotiated SHM: %s", pa_yes_no(do_shm));
2379 pa_pstream_enable_shm(c->pstream, do_shm);
2381 reply = reply_new(tag);
2382 pa_tagstruct_putu32(reply, PA_PROTOCOL_VERSION | (do_shm ? 0x80000000 : 0));
2386 /* SHM support is only enabled after both sides made sure they are the same user. */
2390 ucred.uid = getuid();
2391 ucred.gid = getgid();
2393 pa_pstream_send_tagstruct_with_creds(c->pstream, reply, &ucred);
2396 pa_pstream_send_tagstruct(c->pstream, reply);
2400 static void command_set_client_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2401 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2402 const char *name = NULL;
2404 pa_tagstruct *reply;
2406 pa_native_connection_assert_ref(c);
2409 p = pa_proplist_new();
2411 if ((c->version < 13 && pa_tagstruct_gets(t, &name) < 0) ||
2412 (c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2413 !pa_tagstruct_eof(t)) {
2416 pa_proplist_free(p);
2421 if (pa_proplist_sets(p, PA_PROP_APPLICATION_NAME, name) < 0) {
2422 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
2423 pa_proplist_free(p);
2427 pa_client_update_proplist(c->client, PA_UPDATE_REPLACE, p);
2428 pa_proplist_free(p);
2430 reply = reply_new(tag);
2432 if (c->version >= 13)
2433 pa_tagstruct_putu32(reply, c->client->index);
2435 pa_pstream_send_tagstruct(c->pstream, reply);
2438 static void command_lookup(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2439 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2441 uint32_t idx = PA_IDXSET_INVALID;
2443 pa_native_connection_assert_ref(c);
2446 if (pa_tagstruct_gets(t, &name) < 0 ||
2447 !pa_tagstruct_eof(t)) {
2452 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2453 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2455 if (command == PA_COMMAND_LOOKUP_SINK) {
2457 if ((sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK)))
2461 pa_assert(command == PA_COMMAND_LOOKUP_SOURCE);
2462 if ((source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE)))
2463 idx = source->index;
2466 if (idx == PA_IDXSET_INVALID)
2467 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2469 pa_tagstruct *reply;
2470 reply = reply_new(tag);
2471 pa_tagstruct_putu32(reply, idx);
2472 pa_pstream_send_tagstruct(c->pstream, reply);
2476 static void command_drain_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2477 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2481 pa_native_connection_assert_ref(c);
2484 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2485 !pa_tagstruct_eof(t)) {
2490 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2491 s = pa_idxset_get_by_index(c->output_streams, idx);
2492 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2493 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2495 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);
2498 static void command_stat(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2499 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2500 pa_tagstruct *reply;
2501 const pa_mempool_stat *stat;
2503 pa_native_connection_assert_ref(c);
2506 if (!pa_tagstruct_eof(t)) {
2511 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2513 stat = pa_mempool_get_stat(c->protocol->core->mempool);
2515 reply = reply_new(tag);
2516 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->n_allocated));
2517 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->allocated_size));
2518 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->n_accumulated));
2519 pa_tagstruct_putu32(reply, (uint32_t) pa_atomic_load(&stat->accumulated_size));
2520 pa_tagstruct_putu32(reply, (uint32_t) pa_scache_total_size(c->protocol->core));
2521 pa_pstream_send_tagstruct(c->pstream, reply);
2524 static void command_get_playback_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2525 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2526 pa_tagstruct *reply;
2528 struct timeval tv, now;
2531 pa_native_connection_assert_ref(c);
2534 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2535 pa_tagstruct_get_timeval(t, &tv) < 0 ||
2536 !pa_tagstruct_eof(t)) {
2541 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2542 s = pa_idxset_get_by_index(c->output_streams, idx);
2543 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2544 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2546 /* Get an atomic snapshot of all timing parameters */
2547 pa_assert_se(pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_UPDATE_LATENCY, s, 0, NULL) == 0);
2549 reply = reply_new(tag);
2550 pa_tagstruct_put_usec(reply,
2551 s->current_sink_latency +
2552 pa_bytes_to_usec(s->render_memblockq_length, &s->sink_input->sample_spec));
2553 pa_tagstruct_put_usec(reply, 0);
2554 pa_tagstruct_put_boolean(reply,
2555 s->playing_for > 0 &&
2556 pa_sink_get_state(s->sink_input->sink) == PA_SINK_RUNNING &&
2557 pa_sink_input_get_state(s->sink_input) == PA_SINK_INPUT_RUNNING);
2558 pa_tagstruct_put_timeval(reply, &tv);
2559 pa_tagstruct_put_timeval(reply, pa_gettimeofday(&now));
2560 pa_tagstruct_puts64(reply, s->write_index);
2561 pa_tagstruct_puts64(reply, s->read_index);
2563 if (c->version >= 13) {
2564 pa_tagstruct_putu64(reply, s->underrun_for);
2565 pa_tagstruct_putu64(reply, s->playing_for);
2568 pa_pstream_send_tagstruct(c->pstream, reply);
2571 static void command_get_record_latency(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2572 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2573 pa_tagstruct *reply;
2575 struct timeval tv, now;
2578 pa_native_connection_assert_ref(c);
2581 if (pa_tagstruct_getu32(t, &idx) < 0 ||
2582 pa_tagstruct_get_timeval(t, &tv) < 0 ||
2583 !pa_tagstruct_eof(t)) {
2588 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2589 s = pa_idxset_get_by_index(c->record_streams, idx);
2590 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2592 /* Get an atomic snapshot of all timing parameters */
2593 pa_assert_se(pa_asyncmsgq_send(s->source_output->source->asyncmsgq, PA_MSGOBJECT(s->source_output), SOURCE_OUTPUT_MESSAGE_UPDATE_LATENCY, s, 0, NULL) == 0);
2595 reply = reply_new(tag);
2596 pa_tagstruct_put_usec(reply, s->current_monitor_latency);
2597 pa_tagstruct_put_usec(reply,
2598 s->current_source_latency +
2599 pa_bytes_to_usec(s->on_the_fly_snapshot, &s->source_output->sample_spec));
2600 pa_tagstruct_put_boolean(reply,
2601 pa_source_get_state(s->source_output->source) == PA_SOURCE_RUNNING &&
2602 pa_source_output_get_state(s->source_output) == PA_SOURCE_OUTPUT_RUNNING);
2603 pa_tagstruct_put_timeval(reply, &tv);
2604 pa_tagstruct_put_timeval(reply, pa_gettimeofday(&now));
2605 pa_tagstruct_puts64(reply, pa_memblockq_get_write_index(s->memblockq));
2606 pa_tagstruct_puts64(reply, pa_memblockq_get_read_index(s->memblockq));
2607 pa_pstream_send_tagstruct(c->pstream, reply);
2610 static void command_create_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2611 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2614 const char *name = NULL;
2617 pa_tagstruct *reply;
2620 pa_native_connection_assert_ref(c);
2623 if (pa_tagstruct_gets(t, &name) < 0 ||
2624 pa_tagstruct_get_sample_spec(t, &ss) < 0 ||
2625 pa_tagstruct_get_channel_map(t, &map) < 0 ||
2626 pa_tagstruct_getu32(t, &length) < 0) {
2631 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2632 CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
2633 CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
2634 CHECK_VALIDITY(c->pstream, map.channels == ss.channels, tag, PA_ERR_INVALID);
2635 CHECK_VALIDITY(c->pstream, (length % pa_frame_size(&ss)) == 0 && length > 0, tag, PA_ERR_INVALID);
2636 CHECK_VALIDITY(c->pstream, length <= PA_SCACHE_ENTRY_SIZE_MAX, tag, PA_ERR_TOOLARGE);
2638 p = pa_proplist_new();
2640 if ((c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2641 !pa_tagstruct_eof(t)) {
2644 pa_proplist_free(p);
2648 if (c->version < 13)
2649 pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
2651 if (!(name = pa_proplist_gets(p, PA_PROP_EVENT_ID)))
2652 name = pa_proplist_gets(p, PA_PROP_MEDIA_NAME);
2654 if (!name || !pa_namereg_is_valid_name(name)) {
2655 pa_proplist_free(p);
2656 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_INVALID);
2659 s = upload_stream_new(c, &ss, &map, name, length, p);
2660 pa_proplist_free(p);
2662 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_INVALID);
2664 reply = reply_new(tag);
2665 pa_tagstruct_putu32(reply, s->index);
2666 pa_tagstruct_putu32(reply, length);
2667 pa_pstream_send_tagstruct(c->pstream, reply);
2670 static void command_finish_upload_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2671 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2676 pa_native_connection_assert_ref(c);
2679 if (pa_tagstruct_getu32(t, &channel) < 0 ||
2680 !pa_tagstruct_eof(t)) {
2685 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2687 s = pa_idxset_get_by_index(c->output_streams, channel);
2688 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
2689 CHECK_VALIDITY(c->pstream, upload_stream_isinstance(s), tag, PA_ERR_NOENTITY);
2691 if (pa_scache_add_item(c->protocol->core, s->name, &s->sample_spec, &s->channel_map, &s->memchunk, s->proplist, &idx) < 0)
2692 pa_pstream_send_error(c->pstream, tag, PA_ERR_INTERNAL);
2694 pa_pstream_send_simple_ack(c->pstream, tag);
2696 upload_stream_unlink(s);
2699 static void command_play_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2700 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2701 uint32_t sink_index;
2704 const char *name, *sink_name;
2707 pa_tagstruct *reply;
2709 pa_native_connection_assert_ref(c);
2712 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2714 if (pa_tagstruct_getu32(t, &sink_index) < 0 ||
2715 pa_tagstruct_gets(t, &sink_name) < 0 ||
2716 pa_tagstruct_getu32(t, &volume) < 0 ||
2717 pa_tagstruct_gets(t, &name) < 0) {
2722 CHECK_VALIDITY(c->pstream, !sink_name || pa_namereg_is_valid_name(sink_name), tag, PA_ERR_INVALID);
2723 CHECK_VALIDITY(c->pstream, sink_index == PA_INVALID_INDEX || !sink_name, tag, PA_ERR_INVALID);
2724 CHECK_VALIDITY(c->pstream, !sink_name || sink_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
2725 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2727 if (sink_index != PA_INVALID_INDEX)
2728 sink = pa_idxset_get_by_index(c->protocol->core->sinks, sink_index);
2730 sink = pa_namereg_get(c->protocol->core, sink_name, PA_NAMEREG_SINK);
2732 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
2734 p = pa_proplist_new();
2736 if ((c->version >= 13 && pa_tagstruct_get_proplist(t, p) < 0) ||
2737 !pa_tagstruct_eof(t)) {
2739 pa_proplist_free(p);
2743 pa_proplist_update(p, PA_UPDATE_MERGE, c->client->proplist);
2745 if (pa_scache_play_item(c->protocol->core, name, sink, volume, p, &idx) < 0) {
2746 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2747 pa_proplist_free(p);
2751 pa_proplist_free(p);
2753 reply = reply_new(tag);
2755 if (c->version >= 13)
2756 pa_tagstruct_putu32(reply, idx);
2758 pa_pstream_send_tagstruct(c->pstream, reply);
2761 static void command_remove_sample(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
2762 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
2765 pa_native_connection_assert_ref(c);
2768 if (pa_tagstruct_gets(t, &name) < 0 ||
2769 !pa_tagstruct_eof(t)) {
2774 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
2775 CHECK_VALIDITY(c->pstream, name && pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
2777 if (pa_scache_remove_item(c->protocol->core, name) < 0) {
2778 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
2782 pa_pstream_send_simple_ack(c->pstream, tag);
2785 static void fixup_sample_spec(pa_native_connection *c, pa_sample_spec *fixed, const pa_sample_spec *original) {
2788 pa_assert(original);
2792 if (c->version < 12) {
2793 /* Before protocol version 12 we didn't support S32 samples,
2794 * so we need to lie about this to the client */
2796 if (fixed->format == PA_SAMPLE_S32LE)
2797 fixed->format = PA_SAMPLE_FLOAT32LE;
2798 if (fixed->format == PA_SAMPLE_S32BE)
2799 fixed->format = PA_SAMPLE_FLOAT32BE;
2802 if (c->version < 15) {
2803 if (fixed->format == PA_SAMPLE_S24LE || fixed->format == PA_SAMPLE_S24_32LE)
2804 fixed->format = PA_SAMPLE_FLOAT32LE;
2805 if (fixed->format == PA_SAMPLE_S24BE || fixed->format == PA_SAMPLE_S24_32BE)
2806 fixed->format = PA_SAMPLE_FLOAT32BE;
2810 static void sink_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sink *sink) {
2811 pa_sample_spec fixed_ss;
2814 pa_sink_assert_ref(sink);
2816 fixup_sample_spec(c, &fixed_ss, &sink->sample_spec);
2820 PA_TAG_U32, sink->index,
2821 PA_TAG_STRING, sink->name,
2822 PA_TAG_STRING, pa_strnull(pa_proplist_gets(sink->proplist, PA_PROP_DEVICE_DESCRIPTION)),
2823 PA_TAG_SAMPLE_SPEC, &fixed_ss,
2824 PA_TAG_CHANNEL_MAP, &sink->channel_map,
2825 PA_TAG_U32, sink->module ? sink->module->index : PA_INVALID_INDEX,
2826 PA_TAG_CVOLUME, pa_sink_get_volume(sink, FALSE, FALSE),
2827 PA_TAG_BOOLEAN, pa_sink_get_mute(sink, FALSE),
2828 PA_TAG_U32, sink->monitor_source ? sink->monitor_source->index : PA_INVALID_INDEX,
2829 PA_TAG_STRING, sink->monitor_source ? sink->monitor_source->name : NULL,
2830 PA_TAG_USEC, pa_sink_get_latency(sink),
2831 PA_TAG_STRING, sink->driver,
2832 PA_TAG_U32, sink->flags,
2835 if (c->version >= 13) {
2836 pa_tagstruct_put_proplist(t, sink->proplist);
2837 pa_tagstruct_put_usec(t, pa_sink_get_requested_latency(sink));
2840 if (c->version >= 15) {
2841 pa_tagstruct_put_volume(t, sink->base_volume);
2842 if (PA_UNLIKELY(pa_sink_get_state(sink) == PA_SINK_INVALID_STATE))
2843 pa_log_error("Internal sink state is invalid.");
2844 pa_tagstruct_putu32(t, pa_sink_get_state(sink));
2845 pa_tagstruct_putu32(t, sink->n_volume_steps);
2846 pa_tagstruct_putu32(t, sink->card ? sink->card->index : PA_INVALID_INDEX);
2850 static void source_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source *source) {
2851 pa_sample_spec fixed_ss;
2854 pa_source_assert_ref(source);
2856 fixup_sample_spec(c, &fixed_ss, &source->sample_spec);
2860 PA_TAG_U32, source->index,
2861 PA_TAG_STRING, source->name,
2862 PA_TAG_STRING, pa_strnull(pa_proplist_gets(source->proplist, PA_PROP_DEVICE_DESCRIPTION)),
2863 PA_TAG_SAMPLE_SPEC, &fixed_ss,
2864 PA_TAG_CHANNEL_MAP, &source->channel_map,
2865 PA_TAG_U32, source->module ? source->module->index : PA_INVALID_INDEX,
2866 PA_TAG_CVOLUME, pa_source_get_volume(source, FALSE),
2867 PA_TAG_BOOLEAN, pa_source_get_mute(source, FALSE),
2868 PA_TAG_U32, source->monitor_of ? source->monitor_of->index : PA_INVALID_INDEX,
2869 PA_TAG_STRING, source->monitor_of ? source->monitor_of->name : NULL,
2870 PA_TAG_USEC, pa_source_get_latency(source),
2871 PA_TAG_STRING, source->driver,
2872 PA_TAG_U32, source->flags,
2875 if (c->version >= 13) {
2876 pa_tagstruct_put_proplist(t, source->proplist);
2877 pa_tagstruct_put_usec(t, pa_source_get_requested_latency(source));
2880 if (c->version >= 15) {
2881 pa_tagstruct_put_volume(t, source->base_volume);
2882 if (PA_UNLIKELY(pa_source_get_state(source) == PA_SOURCE_INVALID_STATE))
2883 pa_log_error("Internal source state is invalid.");
2884 pa_tagstruct_putu32(t, pa_source_get_state(source));
2885 pa_tagstruct_putu32(t, source->n_volume_steps);
2886 pa_tagstruct_putu32(t, source->card ? source->card->index : PA_INVALID_INDEX);
2890 static void client_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_client *client) {
2894 pa_tagstruct_putu32(t, client->index);
2895 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(client->proplist, PA_PROP_APPLICATION_NAME)));
2896 pa_tagstruct_putu32(t, client->module ? client->module->index : PA_INVALID_INDEX);
2897 pa_tagstruct_puts(t, client->driver);
2899 if (c->version >= 13)
2900 pa_tagstruct_put_proplist(t, client->proplist);
2903 static void card_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_card *card) {
2910 pa_tagstruct_putu32(t, card->index);
2911 pa_tagstruct_puts(t, card->name);
2912 pa_tagstruct_putu32(t, card->module ? card->module->index : PA_INVALID_INDEX);
2913 pa_tagstruct_puts(t, card->driver);
2915 pa_tagstruct_putu32(t, card->profiles ? pa_hashmap_size(card->profiles) : 0);
2917 if (card->profiles) {
2918 while ((p = pa_hashmap_iterate(card->profiles, &state, NULL))) {
2919 pa_tagstruct_puts(t, p->name);
2920 pa_tagstruct_puts(t, p->description);
2921 pa_tagstruct_putu32(t, p->n_sinks);
2922 pa_tagstruct_putu32(t, p->n_sources);
2923 pa_tagstruct_putu32(t, p->priority);
2927 pa_tagstruct_puts(t, card->active_profile ? card->active_profile->name : NULL);
2928 pa_tagstruct_put_proplist(t, card->proplist);
2931 static void module_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_module *module) {
2935 pa_tagstruct_putu32(t, module->index);
2936 pa_tagstruct_puts(t, module->name);
2937 pa_tagstruct_puts(t, module->argument);
2938 pa_tagstruct_putu32(t, (uint32_t) pa_module_get_n_used(module));
2940 if (c->version < 15)
2941 pa_tagstruct_put_boolean(t, FALSE); /* autoload is obsolete */
2943 if (c->version >= 15)
2944 pa_tagstruct_put_proplist(t, module->proplist);
2947 static void sink_input_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sink_input *s) {
2948 pa_sample_spec fixed_ss;
2949 pa_usec_t sink_latency;
2953 pa_sink_input_assert_ref(s);
2955 fixup_sample_spec(c, &fixed_ss, &s->sample_spec);
2957 pa_tagstruct_putu32(t, s->index);
2958 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(s->proplist, PA_PROP_MEDIA_NAME)));
2959 pa_tagstruct_putu32(t, s->module ? s->module->index : PA_INVALID_INDEX);
2960 pa_tagstruct_putu32(t, s->client ? s->client->index : PA_INVALID_INDEX);
2961 pa_tagstruct_putu32(t, s->sink->index);
2962 pa_tagstruct_put_sample_spec(t, &fixed_ss);
2963 pa_tagstruct_put_channel_map(t, &s->channel_map);
2964 pa_tagstruct_put_cvolume(t, pa_sink_input_get_volume(s, &v, TRUE));
2965 pa_tagstruct_put_usec(t, pa_sink_input_get_latency(s, &sink_latency));
2966 pa_tagstruct_put_usec(t, sink_latency);
2967 pa_tagstruct_puts(t, pa_resample_method_to_string(pa_sink_input_get_resample_method(s)));
2968 pa_tagstruct_puts(t, s->driver);
2969 if (c->version >= 11)
2970 pa_tagstruct_put_boolean(t, pa_sink_input_get_mute(s));
2971 if (c->version >= 13)
2972 pa_tagstruct_put_proplist(t, s->proplist);
2975 static void source_output_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source_output *s) {
2976 pa_sample_spec fixed_ss;
2977 pa_usec_t source_latency;
2980 pa_source_output_assert_ref(s);
2982 fixup_sample_spec(c, &fixed_ss, &s->sample_spec);
2984 pa_tagstruct_putu32(t, s->index);
2985 pa_tagstruct_puts(t, pa_strnull(pa_proplist_gets(s->proplist, PA_PROP_MEDIA_NAME)));
2986 pa_tagstruct_putu32(t, s->module ? s->module->index : PA_INVALID_INDEX);
2987 pa_tagstruct_putu32(t, s->client ? s->client->index : PA_INVALID_INDEX);
2988 pa_tagstruct_putu32(t, s->source->index);
2989 pa_tagstruct_put_sample_spec(t, &fixed_ss);
2990 pa_tagstruct_put_channel_map(t, &s->channel_map);
2991 pa_tagstruct_put_usec(t, pa_source_output_get_latency(s, &source_latency));
2992 pa_tagstruct_put_usec(t, source_latency);
2993 pa_tagstruct_puts(t, pa_resample_method_to_string(pa_source_output_get_resample_method(s)));
2994 pa_tagstruct_puts(t, s->driver);
2996 if (c->version >= 13)
2997 pa_tagstruct_put_proplist(t, s->proplist);
3000 static void scache_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_scache_entry *e) {
3001 pa_sample_spec fixed_ss;
3007 if (e->memchunk.memblock)
3008 fixup_sample_spec(c, &fixed_ss, &e->sample_spec);
3010 memset(&fixed_ss, 0, sizeof(fixed_ss));
3012 pa_tagstruct_putu32(t, e->index);
3013 pa_tagstruct_puts(t, e->name);
3015 if (e->volume_is_set)
3018 pa_cvolume_init(&v);
3020 pa_tagstruct_put_cvolume(t, &v);
3021 pa_tagstruct_put_usec(t, e->memchunk.memblock ? pa_bytes_to_usec(e->memchunk.length, &e->sample_spec) : 0);
3022 pa_tagstruct_put_sample_spec(t, &fixed_ss);
3023 pa_tagstruct_put_channel_map(t, &e->channel_map);
3024 pa_tagstruct_putu32(t, (uint32_t) e->memchunk.length);
3025 pa_tagstruct_put_boolean(t, e->lazy);
3026 pa_tagstruct_puts(t, e->filename);
3028 if (c->version >= 13)
3029 pa_tagstruct_put_proplist(t, e->proplist);
3032 static void command_get_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3033 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3035 pa_sink *sink = NULL;
3036 pa_source *source = NULL;
3037 pa_client *client = NULL;
3038 pa_card *card = NULL;
3039 pa_module *module = NULL;
3040 pa_sink_input *si = NULL;
3041 pa_source_output *so = NULL;
3042 pa_scache_entry *sce = NULL;
3043 const char *name = NULL;
3044 pa_tagstruct *reply;
3046 pa_native_connection_assert_ref(c);
3049 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3050 (command != PA_COMMAND_GET_CLIENT_INFO &&
3051 command != PA_COMMAND_GET_MODULE_INFO &&
3052 command != PA_COMMAND_GET_SINK_INPUT_INFO &&
3053 command != PA_COMMAND_GET_SOURCE_OUTPUT_INFO &&
3054 pa_tagstruct_gets(t, &name) < 0) ||
3055 !pa_tagstruct_eof(t)) {
3060 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3061 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
3062 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3063 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3064 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3066 if (command == PA_COMMAND_GET_SINK_INFO) {
3067 if (idx != PA_INVALID_INDEX)
3068 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
3070 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
3071 } else if (command == PA_COMMAND_GET_SOURCE_INFO) {
3072 if (idx != PA_INVALID_INDEX)
3073 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
3075 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
3076 } else if (command == PA_COMMAND_GET_CARD_INFO) {
3077 if (idx != PA_INVALID_INDEX)
3078 card = pa_idxset_get_by_index(c->protocol->core->cards, idx);
3080 card = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_CARD);
3081 } else if (command == PA_COMMAND_GET_CLIENT_INFO)
3082 client = pa_idxset_get_by_index(c->protocol->core->clients, idx);
3083 else if (command == PA_COMMAND_GET_MODULE_INFO)
3084 module = pa_idxset_get_by_index(c->protocol->core->modules, idx);
3085 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO)
3086 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3087 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO)
3088 so = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
3090 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO);
3091 if (idx != PA_INVALID_INDEX)
3092 sce = pa_idxset_get_by_index(c->protocol->core->scache, idx);
3094 sce = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SAMPLE);
3097 if (!sink && !source && !client && !card && !module && !si && !so && !sce) {
3098 pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
3102 reply = reply_new(tag);
3104 sink_fill_tagstruct(c, reply, sink);
3106 source_fill_tagstruct(c, reply, source);
3108 client_fill_tagstruct(c, reply, client);
3110 card_fill_tagstruct(c, reply, card);
3112 module_fill_tagstruct(c, reply, module);
3114 sink_input_fill_tagstruct(c, reply, si);
3116 source_output_fill_tagstruct(c, reply, so);
3118 scache_fill_tagstruct(c, reply, sce);
3119 pa_pstream_send_tagstruct(c->pstream, reply);
3122 static void command_get_info_list(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3123 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3127 pa_tagstruct *reply;
3129 pa_native_connection_assert_ref(c);
3132 if (!pa_tagstruct_eof(t)) {
3137 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3139 reply = reply_new(tag);
3141 if (command == PA_COMMAND_GET_SINK_INFO_LIST)
3142 i = c->protocol->core->sinks;
3143 else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST)
3144 i = c->protocol->core->sources;
3145 else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
3146 i = c->protocol->core->clients;
3147 else if (command == PA_COMMAND_GET_CARD_INFO_LIST)
3148 i = c->protocol->core->cards;
3149 else if (command == PA_COMMAND_GET_MODULE_INFO_LIST)
3150 i = c->protocol->core->modules;
3151 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO_LIST)
3152 i = c->protocol->core->sink_inputs;
3153 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST)
3154 i = c->protocol->core->source_outputs;
3156 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO_LIST);
3157 i = c->protocol->core->scache;
3161 for (p = pa_idxset_first(i, &idx); p; p = pa_idxset_next(i, &idx)) {
3162 if (command == PA_COMMAND_GET_SINK_INFO_LIST)
3163 sink_fill_tagstruct(c, reply, p);
3164 else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST)
3165 source_fill_tagstruct(c, reply, p);
3166 else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
3167 client_fill_tagstruct(c, reply, p);
3168 else if (command == PA_COMMAND_GET_CARD_INFO_LIST)
3169 card_fill_tagstruct(c, reply, p);
3170 else if (command == PA_COMMAND_GET_MODULE_INFO_LIST)
3171 module_fill_tagstruct(c, reply, p);
3172 else if (command == PA_COMMAND_GET_SINK_INPUT_INFO_LIST)
3173 sink_input_fill_tagstruct(c, reply, p);
3174 else if (command == PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST)
3175 source_output_fill_tagstruct(c, reply, p);
3177 pa_assert(command == PA_COMMAND_GET_SAMPLE_INFO_LIST);
3178 scache_fill_tagstruct(c, reply, p);
3183 pa_pstream_send_tagstruct(c->pstream, reply);
3186 static void command_get_server_info(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3187 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3188 pa_tagstruct *reply;
3190 pa_source *def_source;
3191 pa_sample_spec fixed_ss;
3194 pa_native_connection_assert_ref(c);
3197 if (!pa_tagstruct_eof(t)) {
3202 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3204 reply = reply_new(tag);
3205 pa_tagstruct_puts(reply, PACKAGE_NAME);
3206 pa_tagstruct_puts(reply, PACKAGE_VERSION);
3208 u = pa_get_user_name_malloc();
3209 pa_tagstruct_puts(reply, u);
3212 h = pa_get_host_name_malloc();
3213 pa_tagstruct_puts(reply, h);
3216 fixup_sample_spec(c, &fixed_ss, &c->protocol->core->default_sample_spec);
3217 pa_tagstruct_put_sample_spec(reply, &fixed_ss);
3219 def_sink = pa_namereg_get_default_sink(c->protocol->core);
3220 pa_tagstruct_puts(reply, def_sink ? def_sink->name : NULL);
3221 def_source = pa_namereg_get_default_source(c->protocol->core);
3222 pa_tagstruct_puts(reply, def_source ? def_source->name : NULL);
3224 pa_tagstruct_putu32(reply, c->protocol->core->cookie);
3226 if (c->version >= 15)
3227 pa_tagstruct_put_channel_map(reply, &c->protocol->core->default_channel_map);
3229 pa_pstream_send_tagstruct(c->pstream, reply);
3232 static void subscription_cb(pa_core *core, pa_subscription_event_type_t e, uint32_t idx, void *userdata) {
3234 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3236 pa_native_connection_assert_ref(c);
3238 t = pa_tagstruct_new(NULL, 0);
3239 pa_tagstruct_putu32(t, PA_COMMAND_SUBSCRIBE_EVENT);
3240 pa_tagstruct_putu32(t, (uint32_t) -1);
3241 pa_tagstruct_putu32(t, e);
3242 pa_tagstruct_putu32(t, idx);
3243 pa_pstream_send_tagstruct(c->pstream, t);
3246 static void command_subscribe(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3247 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3248 pa_subscription_mask_t m;
3250 pa_native_connection_assert_ref(c);
3253 if (pa_tagstruct_getu32(t, &m) < 0 ||
3254 !pa_tagstruct_eof(t)) {
3259 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3260 CHECK_VALIDITY(c->pstream, (m & ~PA_SUBSCRIPTION_MASK_ALL) == 0, tag, PA_ERR_INVALID);
3262 if (c->subscription)
3263 pa_subscription_free(c->subscription);
3266 c->subscription = pa_subscription_new(c->protocol->core, m, subscription_cb, c);
3267 pa_assert(c->subscription);
3269 c->subscription = NULL;
3271 pa_pstream_send_simple_ack(c->pstream, tag);
3274 static void command_set_volume(
3281 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3284 pa_sink *sink = NULL;
3285 pa_source *source = NULL;
3286 pa_sink_input *si = NULL;
3287 const char *name = NULL;
3289 pa_native_connection_assert_ref(c);
3292 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3293 (command == PA_COMMAND_SET_SINK_VOLUME && pa_tagstruct_gets(t, &name) < 0) ||
3294 (command == PA_COMMAND_SET_SOURCE_VOLUME && pa_tagstruct_gets(t, &name) < 0) ||
3295 pa_tagstruct_get_cvolume(t, &volume) ||
3296 !pa_tagstruct_eof(t)) {
3301 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3302 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
3303 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3304 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3305 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3306 CHECK_VALIDITY(c->pstream, pa_cvolume_valid(&volume), tag, PA_ERR_INVALID);
3310 case PA_COMMAND_SET_SINK_VOLUME:
3311 if (idx != PA_INVALID_INDEX)
3312 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
3314 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
3317 case PA_COMMAND_SET_SOURCE_VOLUME:
3318 if (idx != PA_INVALID_INDEX)
3319 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
3321 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
3324 case PA_COMMAND_SET_SINK_INPUT_VOLUME:
3325 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3329 pa_assert_not_reached();
3332 CHECK_VALIDITY(c->pstream, si || sink || source, tag, PA_ERR_NOENTITY);
3335 pa_sink_set_volume(sink, &volume, TRUE, TRUE, TRUE, TRUE);
3337 pa_source_set_volume(source, &volume, TRUE);
3339 pa_sink_input_set_volume(si, &volume, TRUE, TRUE);
3341 pa_pstream_send_simple_ack(c->pstream, tag);
3344 static void command_set_mute(
3351 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3354 pa_sink *sink = NULL;
3355 pa_source *source = NULL;
3356 pa_sink_input *si = NULL;
3357 const char *name = NULL;
3359 pa_native_connection_assert_ref(c);
3362 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3363 (command == PA_COMMAND_SET_SINK_MUTE && pa_tagstruct_gets(t, &name) < 0) ||
3364 (command == PA_COMMAND_SET_SOURCE_MUTE && pa_tagstruct_gets(t, &name) < 0) ||
3365 pa_tagstruct_get_boolean(t, &mute) ||
3366 !pa_tagstruct_eof(t)) {
3371 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3372 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
3373 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
3374 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
3375 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3379 case PA_COMMAND_SET_SINK_MUTE:
3381 if (idx != PA_INVALID_INDEX)
3382 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
3384 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
3388 case PA_COMMAND_SET_SOURCE_MUTE:
3389 if (idx != PA_INVALID_INDEX)
3390 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
3392 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
3396 case PA_COMMAND_SET_SINK_INPUT_MUTE:
3397 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3401 pa_assert_not_reached();
3404 CHECK_VALIDITY(c->pstream, si || sink || source, tag, PA_ERR_NOENTITY);
3407 pa_sink_set_mute(sink, mute, TRUE);
3409 pa_source_set_mute(source, mute, TRUE);
3411 pa_sink_input_set_mute(si, mute, TRUE);
3413 pa_pstream_send_simple_ack(c->pstream, tag);
3416 static void command_cork_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3417 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3422 pa_native_connection_assert_ref(c);
3425 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3426 pa_tagstruct_get_boolean(t, &b) < 0 ||
3427 !pa_tagstruct_eof(t)) {
3432 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3433 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3434 s = pa_idxset_get_by_index(c->output_streams, idx);
3435 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3436 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3438 pa_sink_input_cork(s->sink_input, b);
3441 s->is_underrun = TRUE;
3443 pa_pstream_send_simple_ack(c->pstream, tag);
3446 static void command_trigger_or_flush_or_prebuf_playback_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3447 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3451 pa_native_connection_assert_ref(c);
3454 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3455 !pa_tagstruct_eof(t)) {
3460 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3461 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
3462 s = pa_idxset_get_by_index(c->output_streams, idx);
3463 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3464 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3467 case PA_COMMAND_FLUSH_PLAYBACK_STREAM:
3468 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_FLUSH, NULL, 0, NULL);
3471 case PA_COMMAND_PREBUF_PLAYBACK_STREAM:
3472 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_PREBUF_FORCE, NULL, 0, NULL);
3475 case PA_COMMAND_TRIGGER_PLAYBACK_STREAM:
3476 pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_TRIGGER, NULL, 0, NULL);
3480 pa_assert_not_reached();
3483 pa_pstream_send_simple_ack(c->pstream, tag);
3486 static void command_cork_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3487 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3492 pa_native_connection_assert_ref(c);
3495 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3496 pa_tagstruct_get_boolean(t, &b) < 0 ||
3497 !pa_tagstruct_eof(t)) {
3502 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3503 s = pa_idxset_get_by_index(c->record_streams, idx);
3504 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3506 pa_source_output_cork(s->source_output, b);
3507 pa_memblockq_prebuf_force(s->memblockq);
3508 pa_pstream_send_simple_ack(c->pstream, tag);
3511 static void command_flush_record_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3512 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3516 pa_native_connection_assert_ref(c);
3519 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3520 !pa_tagstruct_eof(t)) {
3525 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3526 s = pa_idxset_get_by_index(c->record_streams, idx);
3527 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3529 pa_memblockq_flush_read(s->memblockq);
3530 pa_pstream_send_simple_ack(c->pstream, tag);
3533 static void command_set_stream_buffer_attr(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3534 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3537 pa_tagstruct *reply;
3539 pa_native_connection_assert_ref(c);
3542 memset(&a, 0, sizeof(a));
3544 if (pa_tagstruct_getu32(t, &idx) < 0) {
3549 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3551 if (command == PA_COMMAND_SET_PLAYBACK_STREAM_BUFFER_ATTR) {
3553 pa_bool_t adjust_latency = FALSE, early_requests = FALSE;
3555 s = pa_idxset_get_by_index(c->output_streams, idx);
3556 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3557 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3559 if (pa_tagstruct_get(
3561 PA_TAG_U32, &a.maxlength,
3562 PA_TAG_U32, &a.tlength,
3563 PA_TAG_U32, &a.prebuf,
3564 PA_TAG_U32, &a.minreq,
3565 PA_TAG_INVALID) < 0 ||
3566 (c->version >= 13 && pa_tagstruct_get_boolean(t, &adjust_latency) < 0) ||
3567 (c->version >= 14 && pa_tagstruct_get_boolean(t, &early_requests) < 0) ||
3568 !pa_tagstruct_eof(t)) {
3573 s->adjust_latency = adjust_latency;
3574 s->early_requests = early_requests;
3577 fix_playback_buffer_attr(s);
3578 pa_assert_se(pa_asyncmsgq_send(s->sink_input->sink->asyncmsgq, PA_MSGOBJECT(s->sink_input), SINK_INPUT_MESSAGE_UPDATE_BUFFER_ATTR, NULL, 0, NULL) == 0);
3580 reply = reply_new(tag);
3581 pa_tagstruct_putu32(reply, s->buffer_attr.maxlength);
3582 pa_tagstruct_putu32(reply, s->buffer_attr.tlength);
3583 pa_tagstruct_putu32(reply, s->buffer_attr.prebuf);
3584 pa_tagstruct_putu32(reply, s->buffer_attr.minreq);
3586 if (c->version >= 13)
3587 pa_tagstruct_put_usec(reply, s->configured_sink_latency);
3591 pa_bool_t adjust_latency = FALSE, early_requests = FALSE;
3592 pa_assert(command == PA_COMMAND_SET_RECORD_STREAM_BUFFER_ATTR);
3594 s = pa_idxset_get_by_index(c->record_streams, idx);
3595 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3597 if (pa_tagstruct_get(
3599 PA_TAG_U32, &a.maxlength,
3600 PA_TAG_U32, &a.fragsize,
3601 PA_TAG_INVALID) < 0 ||
3602 (c->version >= 13 && pa_tagstruct_get_boolean(t, &adjust_latency) < 0) ||
3603 (c->version >= 14 && pa_tagstruct_get_boolean(t, &early_requests) < 0) ||
3604 !pa_tagstruct_eof(t)) {
3609 s->adjust_latency = adjust_latency;
3610 s->early_requests = early_requests;
3613 fix_record_buffer_attr_pre(s);
3614 pa_memblockq_set_maxlength(s->memblockq, s->buffer_attr.maxlength);
3615 pa_memblockq_get_attr(s->memblockq, &s->buffer_attr);
3616 fix_record_buffer_attr_post(s);
3618 reply = reply_new(tag);
3619 pa_tagstruct_putu32(reply, s->buffer_attr.maxlength);
3620 pa_tagstruct_putu32(reply, s->buffer_attr.fragsize);
3622 if (c->version >= 13)
3623 pa_tagstruct_put_usec(reply, s->configured_source_latency);
3626 pa_pstream_send_tagstruct(c->pstream, reply);
3629 static void command_update_stream_sample_rate(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3630 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3634 pa_native_connection_assert_ref(c);
3637 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3638 pa_tagstruct_getu32(t, &rate) < 0 ||
3639 !pa_tagstruct_eof(t)) {
3644 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3645 CHECK_VALIDITY(c->pstream, rate > 0 && rate <= PA_RATE_MAX, tag, PA_ERR_INVALID);
3647 if (command == PA_COMMAND_UPDATE_PLAYBACK_STREAM_SAMPLE_RATE) {
3650 s = pa_idxset_get_by_index(c->output_streams, idx);
3651 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3652 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3654 pa_sink_input_set_rate(s->sink_input, rate);
3658 pa_assert(command == PA_COMMAND_UPDATE_RECORD_STREAM_SAMPLE_RATE);
3660 s = pa_idxset_get_by_index(c->record_streams, idx);
3661 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3663 pa_source_output_set_rate(s->source_output, rate);
3666 pa_pstream_send_simple_ack(c->pstream, tag);
3669 static void command_update_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3670 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3675 pa_native_connection_assert_ref(c);
3678 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3680 p = pa_proplist_new();
3682 if (command == PA_COMMAND_UPDATE_CLIENT_PROPLIST) {
3684 if (pa_tagstruct_getu32(t, &mode) < 0 ||
3685 pa_tagstruct_get_proplist(t, p) < 0 ||
3686 !pa_tagstruct_eof(t)) {
3688 pa_proplist_free(p);
3694 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3695 pa_tagstruct_getu32(t, &mode) < 0 ||
3696 pa_tagstruct_get_proplist(t, p) < 0 ||
3697 !pa_tagstruct_eof(t)) {
3699 pa_proplist_free(p);
3704 if (!(mode == PA_UPDATE_SET || mode == PA_UPDATE_MERGE || mode == PA_UPDATE_REPLACE)) {
3705 pa_proplist_free(p);
3706 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_INVALID);
3709 if (command == PA_COMMAND_UPDATE_PLAYBACK_STREAM_PROPLIST) {
3712 s = pa_idxset_get_by_index(c->output_streams, idx);
3713 if (!s || !playback_stream_isinstance(s)) {
3714 pa_proplist_free(p);
3715 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_NOENTITY);
3717 pa_sink_input_update_proplist(s->sink_input, mode, p);
3719 } else if (command == PA_COMMAND_UPDATE_RECORD_STREAM_PROPLIST) {
3722 if (!(s = pa_idxset_get_by_index(c->record_streams, idx))) {
3723 pa_proplist_free(p);
3724 CHECK_VALIDITY(c->pstream, FALSE, tag, PA_ERR_NOENTITY);
3726 pa_source_output_update_proplist(s->source_output, mode, p);
3729 pa_assert(command == PA_COMMAND_UPDATE_CLIENT_PROPLIST);
3731 pa_client_update_proplist(c->client, mode, p);
3734 pa_pstream_send_simple_ack(c->pstream, tag);
3735 pa_proplist_free(p);
3738 static void command_remove_proplist(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3739 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3741 unsigned changed = 0;
3743 pa_strlist *l = NULL;
3745 pa_native_connection_assert_ref(c);
3748 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3750 if (command != PA_COMMAND_REMOVE_CLIENT_PROPLIST) {
3752 if (pa_tagstruct_getu32(t, &idx) < 0) {
3758 if (command == PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST) {
3761 s = pa_idxset_get_by_index(c->output_streams, idx);
3762 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3763 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3765 p = s->sink_input->proplist;
3767 } else if (command == PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST) {
3770 s = pa_idxset_get_by_index(c->record_streams, idx);
3771 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3773 p = s->source_output->proplist;
3775 pa_assert(command == PA_COMMAND_REMOVE_CLIENT_PROPLIST);
3777 p = c->client->proplist;
3783 if (pa_tagstruct_gets(t, &k) < 0) {
3792 l = pa_strlist_prepend(l, k);
3795 if (!pa_tagstruct_eof(t)) {
3804 l = pa_strlist_pop(l, &z);
3809 changed += (unsigned) (pa_proplist_unset(p, z) >= 0);
3813 pa_pstream_send_simple_ack(c->pstream, tag);
3816 if (command == PA_COMMAND_REMOVE_PLAYBACK_STREAM_PROPLIST) {
3819 s = pa_idxset_get_by_index(c->output_streams, idx);
3820 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, s->sink_input->index);
3822 } else if (command == PA_COMMAND_REMOVE_RECORD_STREAM_PROPLIST) {
3825 s = pa_idxset_get_by_index(c->record_streams, idx);
3826 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_CHANGE, s->source_output->index);
3829 pa_assert(command == PA_COMMAND_REMOVE_CLIENT_PROPLIST);
3830 pa_subscription_post(c->protocol->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->client->index);
3835 static void command_set_default_sink_or_source(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3836 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3839 pa_native_connection_assert_ref(c);
3842 if (pa_tagstruct_gets(t, &s) < 0 ||
3843 !pa_tagstruct_eof(t)) {
3848 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3849 CHECK_VALIDITY(c->pstream, !s || pa_namereg_is_valid_name(s), tag, PA_ERR_INVALID);
3851 if (command == PA_COMMAND_SET_DEFAULT_SOURCE) {
3854 source = pa_namereg_get(c->protocol->core, s, PA_NAMEREG_SOURCE);
3855 CHECK_VALIDITY(c->pstream, source, tag, PA_ERR_NOENTITY);
3857 pa_namereg_set_default_source(c->protocol->core, source);
3860 pa_assert(command == PA_COMMAND_SET_DEFAULT_SINK);
3862 sink = pa_namereg_get(c->protocol->core, s, PA_NAMEREG_SINK);
3863 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
3865 pa_namereg_set_default_sink(c->protocol->core, sink);
3868 pa_pstream_send_simple_ack(c->pstream, tag);
3871 static void command_set_stream_name(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3872 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3876 pa_native_connection_assert_ref(c);
3879 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3880 pa_tagstruct_gets(t, &name) < 0 ||
3881 !pa_tagstruct_eof(t)) {
3886 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3887 CHECK_VALIDITY(c->pstream, name && pa_utf8_valid(name), tag, PA_ERR_INVALID);
3889 if (command == PA_COMMAND_SET_PLAYBACK_STREAM_NAME) {
3892 s = pa_idxset_get_by_index(c->output_streams, idx);
3893 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3894 CHECK_VALIDITY(c->pstream, playback_stream_isinstance(s), tag, PA_ERR_NOENTITY);
3896 pa_sink_input_set_name(s->sink_input, name);
3900 pa_assert(command == PA_COMMAND_SET_RECORD_STREAM_NAME);
3902 s = pa_idxset_get_by_index(c->record_streams, idx);
3903 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3905 pa_source_output_set_name(s->source_output, name);
3908 pa_pstream_send_simple_ack(c->pstream, tag);
3911 static void command_kill(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3912 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3915 pa_native_connection_assert_ref(c);
3918 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3919 !pa_tagstruct_eof(t)) {
3924 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3926 if (command == PA_COMMAND_KILL_CLIENT) {
3929 client = pa_idxset_get_by_index(c->protocol->core->clients, idx);
3930 CHECK_VALIDITY(c->pstream, client, tag, PA_ERR_NOENTITY);
3932 pa_native_connection_ref(c);
3933 pa_client_kill(client);
3935 } else if (command == PA_COMMAND_KILL_SINK_INPUT) {
3938 s = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
3939 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3941 pa_native_connection_ref(c);
3942 pa_sink_input_kill(s);
3944 pa_source_output *s;
3946 pa_assert(command == PA_COMMAND_KILL_SOURCE_OUTPUT);
3948 s = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
3949 CHECK_VALIDITY(c->pstream, s, tag, PA_ERR_NOENTITY);
3951 pa_native_connection_ref(c);
3952 pa_source_output_kill(s);
3955 pa_pstream_send_simple_ack(c->pstream, tag);
3956 pa_native_connection_unref(c);
3959 static void command_load_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3960 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3962 const char *name, *argument;
3963 pa_tagstruct *reply;
3965 pa_native_connection_assert_ref(c);
3968 if (pa_tagstruct_gets(t, &name) < 0 ||
3969 pa_tagstruct_gets(t, &argument) < 0 ||
3970 !pa_tagstruct_eof(t)) {
3975 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
3976 CHECK_VALIDITY(c->pstream, name && *name && pa_utf8_valid(name) && !strchr(name, '/'), tag, PA_ERR_INVALID);
3977 CHECK_VALIDITY(c->pstream, !argument || pa_utf8_valid(argument), tag, PA_ERR_INVALID);
3979 if (!(m = pa_module_load(c->protocol->core, name, argument))) {
3980 pa_pstream_send_error(c->pstream, tag, PA_ERR_MODINITFAILED);
3984 reply = reply_new(tag);
3985 pa_tagstruct_putu32(reply, m->index);
3986 pa_pstream_send_tagstruct(c->pstream, reply);
3989 static void command_unload_module(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
3990 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
3994 pa_native_connection_assert_ref(c);
3997 if (pa_tagstruct_getu32(t, &idx) < 0 ||
3998 !pa_tagstruct_eof(t)) {
4003 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4004 m = pa_idxset_get_by_index(c->protocol->core->modules, idx);
4005 CHECK_VALIDITY(c->pstream, m, tag, PA_ERR_NOENTITY);
4007 pa_module_unload_request(m, FALSE);
4008 pa_pstream_send_simple_ack(c->pstream, tag);
4011 static void command_move_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4012 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4013 uint32_t idx = PA_INVALID_INDEX, idx_device = PA_INVALID_INDEX;
4014 const char *name_device = NULL;
4016 pa_native_connection_assert_ref(c);
4019 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4020 pa_tagstruct_getu32(t, &idx_device) < 0 ||
4021 pa_tagstruct_gets(t, &name_device) < 0 ||
4022 !pa_tagstruct_eof(t)) {
4027 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4028 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4030 CHECK_VALIDITY(c->pstream, !name_device || pa_namereg_is_valid_name(name_device), tag, PA_ERR_INVALID);
4031 CHECK_VALIDITY(c->pstream, idx_device != PA_INVALID_INDEX || name_device, tag, PA_ERR_INVALID);
4032 CHECK_VALIDITY(c->pstream, idx_device == PA_INVALID_INDEX || !name_device, tag, PA_ERR_INVALID);
4033 CHECK_VALIDITY(c->pstream, !name_device || idx_device == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4035 if (command == PA_COMMAND_MOVE_SINK_INPUT) {
4036 pa_sink_input *si = NULL;
4037 pa_sink *sink = NULL;
4039 si = pa_idxset_get_by_index(c->protocol->core->sink_inputs, idx);
4041 if (idx_device != PA_INVALID_INDEX)
4042 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx_device);
4044 sink = pa_namereg_get(c->protocol->core, name_device, PA_NAMEREG_SINK);
4046 CHECK_VALIDITY(c->pstream, si && sink, tag, PA_ERR_NOENTITY);
4048 if (pa_sink_input_move_to(si, sink, TRUE) < 0) {
4049 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4053 pa_source_output *so = NULL;
4056 pa_assert(command == PA_COMMAND_MOVE_SOURCE_OUTPUT);
4058 so = pa_idxset_get_by_index(c->protocol->core->source_outputs, idx);
4060 if (idx_device != PA_INVALID_INDEX)
4061 source = pa_idxset_get_by_index(c->protocol->core->sources, idx_device);
4063 source = pa_namereg_get(c->protocol->core, name_device, PA_NAMEREG_SOURCE);
4065 CHECK_VALIDITY(c->pstream, so && source, tag, PA_ERR_NOENTITY);
4067 if (pa_source_output_move_to(so, source, TRUE) < 0) {
4068 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4073 pa_pstream_send_simple_ack(c->pstream, tag);
4076 static void command_suspend(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4077 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4078 uint32_t idx = PA_INVALID_INDEX;
4079 const char *name = NULL;
4082 pa_native_connection_assert_ref(c);
4085 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4086 pa_tagstruct_gets(t, &name) < 0 ||
4087 pa_tagstruct_get_boolean(t, &b) < 0 ||
4088 !pa_tagstruct_eof(t)) {
4093 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4094 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name) || *name == 0, tag, PA_ERR_INVALID);
4095 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4096 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4097 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4099 if (command == PA_COMMAND_SUSPEND_SINK) {
4101 if (idx == PA_INVALID_INDEX && name && !*name) {
4103 pa_log_debug("%s all sinks", b ? "Suspending" : "Resuming");
4105 if (pa_sink_suspend_all(c->protocol->core, b, PA_SUSPEND_USER) < 0) {
4106 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4110 pa_sink *sink = NULL;
4112 if (idx != PA_INVALID_INDEX)
4113 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
4115 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
4117 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
4119 if (pa_sink_suspend(sink, b, PA_SUSPEND_USER) < 0) {
4120 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4126 pa_assert(command == PA_COMMAND_SUSPEND_SOURCE);
4128 if (idx == PA_INVALID_INDEX && name && !*name) {
4130 pa_log_debug("%s all sources", b ? "Suspending" : "Resuming");
4132 if (pa_source_suspend_all(c->protocol->core, b, PA_SUSPEND_USER) < 0) {
4133 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4140 if (idx != PA_INVALID_INDEX)
4141 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
4143 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
4145 CHECK_VALIDITY(c->pstream, source, tag, PA_ERR_NOENTITY);
4147 if (pa_source_suspend(source, b, PA_SUSPEND_USER) < 0) {
4148 pa_pstream_send_error(c->pstream, tag, PA_ERR_INVALID);
4154 pa_pstream_send_simple_ack(c->pstream, tag);
4157 static void command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4158 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4159 uint32_t idx = PA_INVALID_INDEX;
4160 const char *name = NULL;
4162 pa_native_protocol_ext_cb_t cb;
4164 pa_native_connection_assert_ref(c);
4167 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4168 pa_tagstruct_gets(t, &name) < 0) {
4173 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4174 CHECK_VALIDITY(c->pstream, !name || pa_utf8_valid(name), tag, PA_ERR_INVALID);
4175 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4176 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4177 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4179 if (idx != PA_INVALID_INDEX)
4180 m = pa_idxset_get_by_index(c->protocol->core->modules, idx);
4182 for (m = pa_idxset_first(c->protocol->core->modules, &idx); m; m = pa_idxset_next(c->protocol->core->modules, &idx))
4183 if (strcmp(name, m->name) == 0)
4187 CHECK_VALIDITY(c->pstream, m, tag, PA_ERR_NOEXTENSION);
4188 CHECK_VALIDITY(c->pstream, m->load_once || idx != PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4190 cb = (pa_native_protocol_ext_cb_t) (unsigned long) pa_hashmap_get(c->protocol->extensions, m);
4191 CHECK_VALIDITY(c->pstream, cb, tag, PA_ERR_NOEXTENSION);
4193 if (cb(c->protocol, m, c, tag, t) < 0)
4197 static void command_set_card_profile(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4198 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4199 uint32_t idx = PA_INVALID_INDEX;
4200 const char *name = NULL, *profile = NULL;
4201 pa_card *card = NULL;
4204 pa_native_connection_assert_ref(c);
4207 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4208 pa_tagstruct_gets(t, &name) < 0 ||
4209 pa_tagstruct_gets(t, &profile) < 0 ||
4210 !pa_tagstruct_eof(t)) {
4215 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4216 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
4217 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4218 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4219 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4221 if (idx != PA_INVALID_INDEX)
4222 card = pa_idxset_get_by_index(c->protocol->core->cards, idx);
4224 card = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_CARD);
4226 CHECK_VALIDITY(c->pstream, card, tag, PA_ERR_NOENTITY);
4228 if ((ret = pa_card_set_profile(card, profile, TRUE)) < 0) {
4229 pa_pstream_send_error(c->pstream, tag, -ret);
4233 pa_pstream_send_simple_ack(c->pstream, tag);
4236 static void command_set_sink_or_source_port(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
4237 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4238 uint32_t idx = PA_INVALID_INDEX;
4239 const char *name = NULL, *port = NULL;
4242 pa_native_connection_assert_ref(c);
4245 if (pa_tagstruct_getu32(t, &idx) < 0 ||
4246 pa_tagstruct_gets(t, &name) < 0 ||
4247 pa_tagstruct_gets(t, &port) < 0 ||
4248 !pa_tagstruct_eof(t)) {
4253 CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
4254 CHECK_VALIDITY(c->pstream, !name || pa_namereg_is_valid_name(name), tag, PA_ERR_INVALID);
4255 CHECK_VALIDITY(c->pstream, idx != PA_INVALID_INDEX || name, tag, PA_ERR_INVALID);
4256 CHECK_VALIDITY(c->pstream, idx == PA_INVALID_INDEX || !name, tag, PA_ERR_INVALID);
4257 CHECK_VALIDITY(c->pstream, !name || idx == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
4259 if (command == PA_COMMAND_SET_SINK_PORT) {
4262 if (idx != PA_INVALID_INDEX)
4263 sink = pa_idxset_get_by_index(c->protocol->core->sinks, idx);
4265 sink = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SINK);
4267 CHECK_VALIDITY(c->pstream, sink, tag, PA_ERR_NOENTITY);
4269 if ((ret = pa_sink_set_port(sink, port, TRUE)) < 0) {
4270 pa_pstream_send_error(c->pstream, tag, -ret);
4276 pa_assert(command = PA_COMMAND_SET_SOURCE_PORT);
4278 if (idx != PA_INVALID_INDEX)
4279 source = pa_idxset_get_by_index(c->protocol->core->sources, idx);
4281 source = pa_namereg_get(c->protocol->core, name, PA_NAMEREG_SOURCE);
4283 CHECK_VALIDITY(c->pstream, source, tag, PA_ERR_NOENTITY);
4285 if ((ret = pa_source_set_port(source, port, TRUE)) < 0) {
4286 pa_pstream_send_error(c->pstream, tag, -ret);
4291 pa_pstream_send_simple_ack(c->pstream, tag);
4294 /*** pstream callbacks ***/
4296 static void pstream_packet_callback(pa_pstream *p, pa_packet *packet, const pa_creds *creds, void *userdata) {
4297 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4301 pa_native_connection_assert_ref(c);
4303 if (pa_pdispatch_run(c->pdispatch, packet, creds, c) < 0) {
4304 pa_log("invalid packet.");
4305 native_connection_unlink(c);
4309 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) {
4310 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4311 output_stream *stream;
4315 pa_native_connection_assert_ref(c);
4317 if (!(stream = OUTPUT_STREAM(pa_idxset_get_by_index(c->output_streams, channel)))) {
4318 pa_log_debug("Client sent block for invalid stream.");
4323 /* pa_log("got %lu bytes", (unsigned long) chunk->length); */
4325 if (playback_stream_isinstance(stream)) {
4326 playback_stream *ps = PLAYBACK_STREAM(stream);
4328 if (chunk->memblock) {
4329 if (seek != PA_SEEK_RELATIVE || offset != 0)
4330 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);
4332 pa_asyncmsgq_post(ps->sink_input->sink->asyncmsgq, PA_MSGOBJECT(ps->sink_input), SINK_INPUT_MESSAGE_POST_DATA, NULL, 0, chunk, NULL);
4334 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);
4337 upload_stream *u = UPLOAD_STREAM(stream);
4340 if (!u->memchunk.memblock) {
4341 if (u->length == chunk->length && chunk->memblock) {
4342 u->memchunk = *chunk;
4343 pa_memblock_ref(u->memchunk.memblock);
4346 u->memchunk.memblock = pa_memblock_new(c->protocol->core->mempool, u->length);
4347 u->memchunk.index = u->memchunk.length = 0;
4351 pa_assert(u->memchunk.memblock);
4354 if (l > chunk->length)
4359 dst = pa_memblock_acquire(u->memchunk.memblock);
4361 if (chunk->memblock) {
4363 src = pa_memblock_acquire(chunk->memblock);
4365 memcpy((uint8_t*) dst + u->memchunk.index + u->memchunk.length,
4366 (uint8_t*) src + chunk->index, l);
4368 pa_memblock_release(chunk->memblock);
4370 pa_silence_memory((uint8_t*) dst + u->memchunk.index + u->memchunk.length, l, &u->sample_spec);
4372 pa_memblock_release(u->memchunk.memblock);
4374 u->memchunk.length += l;
4380 static void pstream_die_callback(pa_pstream *p, void *userdata) {
4381 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4384 pa_native_connection_assert_ref(c);
4386 native_connection_unlink(c);
4387 pa_log_info("Connection died.");
4390 static void pstream_drain_callback(pa_pstream *p, void *userdata) {
4391 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4394 pa_native_connection_assert_ref(c);
4396 native_connection_send_memblock(c);
4399 static void pstream_revoke_callback(pa_pstream *p, uint32_t block_id, void *userdata) {
4402 if (!(q = pa_thread_mq_get()))
4403 pa_pstream_send_revoke(p, block_id);
4405 pa_asyncmsgq_post(q->outq, PA_MSGOBJECT(userdata), CONNECTION_MESSAGE_REVOKE, PA_UINT_TO_PTR(block_id), 0, NULL, NULL);
4408 static void pstream_release_callback(pa_pstream *p, uint32_t block_id, void *userdata) {
4411 if (!(q = pa_thread_mq_get()))
4412 pa_pstream_send_release(p, block_id);
4414 pa_asyncmsgq_post(q->outq, PA_MSGOBJECT(userdata), CONNECTION_MESSAGE_RELEASE, PA_UINT_TO_PTR(block_id), 0, NULL, NULL);
4417 /*** client callbacks ***/
4419 static void client_kill_cb(pa_client *c) {
4422 native_connection_unlink(PA_NATIVE_CONNECTION(c->userdata));
4423 pa_log_info("Connection killed.");
4426 static void client_send_event_cb(pa_client *client, const char*event, pa_proplist *pl) {
4428 pa_native_connection *c;
4431 c = PA_NATIVE_CONNECTION(client->userdata);
4432 pa_native_connection_assert_ref(c);
4434 if (c->version < 15)
4437 t = pa_tagstruct_new(NULL, 0);
4438 pa_tagstruct_putu32(t, PA_COMMAND_CLIENT_EVENT);
4439 pa_tagstruct_putu32(t, (uint32_t) -1); /* tag */
4440 pa_tagstruct_puts(t, event);
4441 pa_tagstruct_put_proplist(t, pl);
4442 pa_pstream_send_tagstruct(c->pstream, t);
4445 /*** module entry points ***/
4447 static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
4448 pa_native_connection *c = PA_NATIVE_CONNECTION(userdata);
4452 pa_native_connection_assert_ref(c);
4453 pa_assert(c->auth_timeout_event == e);
4455 if (!c->authorized) {
4456 native_connection_unlink(c);
4457 pa_log_info("Connection terminated due to authentication timeout.");
4461 void pa_native_protocol_connect(pa_native_protocol *p, pa_iochannel *io, pa_native_options *o) {
4462 pa_native_connection *c;
4465 pa_client_new_data data;
4471 if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
4472 pa_log_warn("Warning! Too many connections (%u), dropping incoming connection.", MAX_CONNECTIONS);
4473 pa_iochannel_free(io);
4477 pa_client_new_data_init(&data);
4478 data.module = o->module;
4479 data.driver = __FILE__;
4480 pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
4481 pa_proplist_setf(data.proplist, PA_PROP_APPLICATION_NAME, "Native client (%s)", pname);
4482 pa_proplist_sets(data.proplist, "native-protocol.peer", pname);
4483 client = pa_client_new(p->core, &data);
4484 pa_client_new_data_done(&data);
4489 c = pa_msgobject_new(pa_native_connection);
4490 c->parent.parent.free = native_connection_free;
4491 c->parent.process_msg = native_connection_process_msg;
4493 c->options = pa_native_options_ref(o);
4494 c->authorized = FALSE;
4496 if (o->auth_anonymous) {
4497 pa_log_info("Client authenticated anonymously.");
4498 c->authorized = TRUE;
4501 if (!c->authorized &&
4503 pa_ip_acl_check(o->auth_ip_acl, pa_iochannel_get_recv_fd(io)) > 0) {
4505 pa_log_info("Client authenticated by IP ACL.");
4506 c->authorized = TRUE;
4509 if (!c->authorized) {
4511 pa_gettimeofday(&tv);
4512 tv.tv_sec += AUTH_TIMEOUT;
4513 c->auth_timeout_event = p->core->mainloop->time_new(p->core->mainloop, &tv, auth_timeout, c);
4515 c->auth_timeout_event = NULL;
4517 c->is_local = pa_iochannel_socket_is_local(io);
4521 c->client->kill = client_kill_cb;
4522 c->client->send_event = client_send_event_cb;
4523 c->client->userdata = c;
4525 c->pstream = pa_pstream_new(p->core->mainloop, io, p->core->mempool);
4526 pa_pstream_set_recieve_packet_callback(c->pstream, pstream_packet_callback, c);
4527 pa_pstream_set_recieve_memblock_callback(c->pstream, pstream_memblock_callback, c);
4528 pa_pstream_set_die_callback(c->pstream, pstream_die_callback, c);
4529 pa_pstream_set_drain_callback(c->pstream, pstream_drain_callback, c);
4530 pa_pstream_set_revoke_callback(c->pstream, pstream_revoke_callback, c);
4531 pa_pstream_set_release_callback(c->pstream, pstream_release_callback, c);
4533 c->pdispatch = pa_pdispatch_new(p->core->mainloop, command_table, PA_COMMAND_MAX);
4535 c->record_streams = pa_idxset_new(NULL, NULL);
4536 c->output_streams = pa_idxset_new(NULL, NULL);
4538 c->rrobin_index = PA_IDXSET_INVALID;
4539 c->subscription = NULL;
4541 pa_idxset_put(p->connections, c, NULL);
4544 if (pa_iochannel_creds_supported(io))
4545 pa_iochannel_creds_enable(io);
4548 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_CONNECTION_PUT], c);
4551 void pa_native_protocol_disconnect(pa_native_protocol *p, pa_module *m) {
4552 pa_native_connection *c;
4558 while ((c = pa_idxset_iterate(p->connections, &state, NULL)))
4559 if (c->options->module == m)
4560 native_connection_unlink(c);
4563 static pa_native_protocol* native_protocol_new(pa_core *c) {
4564 pa_native_protocol *p;
4569 p = pa_xnew(pa_native_protocol, 1);
4572 p->connections = pa_idxset_new(NULL, NULL);
4576 p->extensions = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
4578 for (h = 0; h < PA_NATIVE_HOOK_MAX; h++)
4579 pa_hook_init(&p->hooks[h], p);
4581 pa_assert_se(pa_shared_set(c, "native-protocol", p) >= 0);
4586 pa_native_protocol* pa_native_protocol_get(pa_core *c) {
4587 pa_native_protocol *p;
4589 if ((p = pa_shared_get(c, "native-protocol")))
4590 return pa_native_protocol_ref(p);
4592 return native_protocol_new(c);
4595 pa_native_protocol* pa_native_protocol_ref(pa_native_protocol *p) {
4597 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4604 void pa_native_protocol_unref(pa_native_protocol *p) {
4605 pa_native_connection *c;
4609 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4611 if (PA_REFCNT_DEC(p) > 0)
4614 while ((c = pa_idxset_first(p->connections, NULL)))
4615 native_connection_unlink(c);
4617 pa_idxset_free(p->connections, NULL, NULL);
4619 pa_strlist_free(p->servers);
4621 for (h = 0; h < PA_NATIVE_HOOK_MAX; h++)
4622 pa_hook_done(&p->hooks[h]);
4624 pa_hashmap_free(p->extensions, NULL, NULL);
4626 pa_assert_se(pa_shared_remove(p->core, "native-protocol") >= 0);
4631 void pa_native_protocol_add_server_string(pa_native_protocol *p, const char *name) {
4633 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4636 p->servers = pa_strlist_prepend(p->servers, name);
4638 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_SERVERS_CHANGED], p->servers);
4641 void pa_native_protocol_remove_server_string(pa_native_protocol *p, const char *name) {
4643 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4646 p->servers = pa_strlist_remove(p->servers, name);
4648 pa_hook_fire(&p->hooks[PA_NATIVE_HOOK_SERVERS_CHANGED], p->servers);
4651 pa_hook *pa_native_protocol_hooks(pa_native_protocol *p) {
4653 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4658 pa_strlist *pa_native_protocol_servers(pa_native_protocol *p) {
4660 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4665 int pa_native_protocol_install_ext(pa_native_protocol *p, pa_module *m, pa_native_protocol_ext_cb_t cb) {
4667 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4670 pa_assert(!pa_hashmap_get(p->extensions, m));
4672 pa_assert_se(pa_hashmap_put(p->extensions, m, (void*) (unsigned long) cb) == 0);
4676 void pa_native_protocol_remove_ext(pa_native_protocol *p, pa_module *m) {
4678 pa_assert(PA_REFCNT_VALUE(p) >= 1);
4681 pa_assert_se(pa_hashmap_remove(p->extensions, m));
4684 pa_native_options* pa_native_options_new(void) {
4685 pa_native_options *o;
4687 o = pa_xnew0(pa_native_options, 1);
4693 pa_native_options* pa_native_options_ref(pa_native_options *o) {
4695 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4702 void pa_native_options_unref(pa_native_options *o) {
4704 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4706 if (PA_REFCNT_DEC(o) > 0)
4709 pa_xfree(o->auth_group);
4712 pa_ip_acl_free(o->auth_ip_acl);
4715 pa_auth_cookie_unref(o->auth_cookie);
4720 int pa_native_options_parse(pa_native_options *o, pa_core *c, pa_modargs *ma) {
4725 pa_assert(PA_REFCNT_VALUE(o) >= 1);
4728 if (pa_modargs_get_value_boolean(ma, "auth-anonymous", &o->auth_anonymous) < 0) {
4729 pa_log("auth-anonymous= expects a boolean argument.");
4734 if (pa_modargs_get_value_boolean(ma, "auth-group-enabled", &enabled) < 0) {
4735 pa_log("auth-group-enabled= expects a boolean argument.");
4739 pa_xfree(o->auth_group);
4740 o->auth_group = enabled ? pa_xstrdup(pa_modargs_get_value(ma, "auth-group", pa_in_system_mode() ? PA_ACCESS_GROUP : NULL)) : NULL;
4744 pa_log_warn("Authentication group configured, but not available on local system. Ignoring.");
4747 if ((acl = pa_modargs_get_value(ma, "auth-ip-acl", NULL))) {
4750 if (!(ipa = pa_ip_acl_new(acl))) {
4751 pa_log("Failed to parse IP ACL '%s'", acl);
4756 pa_ip_acl_free(o->auth_ip_acl);
4758 o->auth_ip_acl = ipa;
4762 if (pa_modargs_get_value_boolean(ma, "auth-cookie-enabled", &enabled) < 0) {
4763 pa_log("auth-cookie-enabled= expects a boolean argument.");
4768 pa_auth_cookie_unref(o->auth_cookie);
4773 /* The new name for this is 'auth-cookie', for compat reasons
4774 * we check the old name too */
4775 if (!(cn = pa_modargs_get_value(ma, "auth-cookie", NULL)))
4776 if (!(cn = pa_modargs_get_value(ma, "cookie", NULL)))
4777 cn = PA_NATIVE_COOKIE_FILE;
4779 if (!(o->auth_cookie = pa_auth_cookie_get(c, cn, PA_NATIVE_COOKIE_LENGTH)))
4783 o->auth_cookie = NULL;
4788 pa_pstream* pa_native_connection_get_pstream(pa_native_connection *c) {
4789 pa_native_connection_assert_ref(c);