]> code.delx.au - pulseaudio/blob - src/modules/module-zeroconf-publish.c
zeroconf: copy more sink/source properties into DNS-SD TXT data
[pulseaudio] / src / modules / module-zeroconf-publish.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <unistd.h>
30
31 #include <avahi-client/client.h>
32 #include <avahi-client/publish.h>
33 #include <avahi-common/alternative.h>
34 #include <avahi-common/error.h>
35 #include <avahi-common/domain.h>
36
37 #include <pulse/xmalloc.h>
38 #include <pulse/util.h>
39
40 #include <pulsecore/parseaddr.h>
41 #include <pulsecore/sink.h>
42 #include <pulsecore/source.h>
43 #include <pulsecore/native-common.h>
44 #include <pulsecore/core-util.h>
45 #include <pulsecore/log.h>
46 #include <pulsecore/core-subscribe.h>
47 #include <pulsecore/dynarray.h>
48 #include <pulsecore/modargs.h>
49 #include <pulsecore/avahi-wrap.h>
50 #include <pulsecore/endianmacros.h>
51 #include <pulsecore/protocol-native.h>
52
53 #include "module-zeroconf-publish-symdef.h"
54
55 PA_MODULE_AUTHOR("Lennart Poettering");
56 PA_MODULE_DESCRIPTION("mDNS/DNS-SD Service Publisher");
57 PA_MODULE_VERSION(PACKAGE_VERSION);
58 PA_MODULE_LOAD_ONCE(TRUE);
59
60 #define SERVICE_TYPE_SINK "_pulse-sink._tcp"
61 #define SERVICE_TYPE_SOURCE "_pulse-source._tcp"
62 #define SERVICE_TYPE_SERVER "_pulse-server._tcp"
63 #define SERVICE_SUBTYPE_SINK_HARDWARE "_hardware._sub."SERVICE_TYPE_SINK
64 #define SERVICE_SUBTYPE_SINK_VIRTUAL "_virtual._sub."SERVICE_TYPE_SINK
65 #define SERVICE_SUBTYPE_SOURCE_HARDWARE "_hardware._sub."SERVICE_TYPE_SOURCE
66 #define SERVICE_SUBTYPE_SOURCE_VIRTUAL "_virtual._sub."SERVICE_TYPE_SOURCE
67 #define SERVICE_SUBTYPE_SOURCE_MONITOR "_monitor._sub."SERVICE_TYPE_SOURCE
68 #define SERVICE_SUBTYPE_SOURCE_NON_MONITOR "_non-monitor._sub."SERVICE_TYPE_SOURCE
69
70 static const char* const valid_modargs[] = {
71 NULL
72 };
73
74 enum service_subtype {
75 SUBTYPE_HARDWARE,
76 SUBTYPE_VIRTUAL,
77 SUBTYPE_MONITOR
78 };
79
80 struct service {
81 struct userdata *userdata;
82 AvahiEntryGroup *entry_group;
83 char *service_name;
84 pa_object *device;
85 enum service_subtype subtype;
86 };
87
88 struct userdata {
89 pa_core *core;
90 pa_module *module;
91
92 AvahiPoll *avahi_poll;
93 AvahiClient *client;
94
95 pa_hashmap *services;
96 char *service_name;
97
98 AvahiEntryGroup *main_entry_group;
99
100 pa_hook_slot *sink_new_slot, *source_new_slot, *sink_unlink_slot, *source_unlink_slot, *sink_changed_slot, *source_changed_slot;
101
102 pa_native_protocol *native;
103 };
104
105 static void get_service_data(struct service *s, pa_sample_spec *ret_ss, pa_channel_map *ret_map, const char **ret_name, pa_proplist **ret_proplist, enum service_subtype *ret_subtype) {
106 pa_assert(s);
107 pa_assert(ret_ss);
108 pa_assert(ret_proplist);
109 pa_assert(ret_subtype);
110
111 if (pa_sink_isinstance(s->device)) {
112 pa_sink *sink = PA_SINK(s->device);
113
114 *ret_ss = sink->sample_spec;
115 *ret_map = sink->channel_map;
116 *ret_name = sink->name;
117 *ret_proplist = sink->proplist;
118 *ret_subtype = sink->flags & PA_SINK_HARDWARE ? SUBTYPE_HARDWARE : SUBTYPE_VIRTUAL;
119
120 } else if (pa_source_isinstance(s->device)) {
121 pa_source *source = PA_SOURCE(s->device);
122
123 *ret_ss = source->sample_spec;
124 *ret_map = source->channel_map;
125 *ret_name = source->name;
126 *ret_proplist = source->proplist;
127 *ret_subtype = source->monitor_of ? SUBTYPE_MONITOR : (source->flags & PA_SOURCE_HARDWARE ? SUBTYPE_HARDWARE : SUBTYPE_VIRTUAL);
128
129 } else
130 pa_assert_not_reached();
131 }
132
133 static AvahiStringList* txt_record_server_data(pa_core *c, AvahiStringList *l) {
134 char s[128];
135 char *t;
136
137 pa_assert(c);
138
139 l = avahi_string_list_add_pair(l, "server-version", PACKAGE_NAME" "PACKAGE_VERSION);
140
141 t = pa_get_user_name_malloc();
142 l = avahi_string_list_add_pair(l, "user-name", t);
143 pa_xfree(t);
144
145 t = pa_machine_id();
146 l = avahi_string_list_add_pair(l, "machine-id", t);
147 pa_xfree(t);
148
149 t = pa_uname_string();
150 l = avahi_string_list_add_pair(l, "uname", t);
151 pa_xfree(t);
152
153 l = avahi_string_list_add_pair(l, "fqdn", pa_get_fqdn(s, sizeof(s)));
154 l = avahi_string_list_add_printf(l, "cookie=0x%08x", c->cookie);
155
156 return l;
157 }
158
159 static int publish_service(struct service *s);
160
161 static void service_entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, void *userdata) {
162 struct service *s = userdata;
163
164 pa_assert(s);
165
166 switch (state) {
167
168 case AVAHI_ENTRY_GROUP_ESTABLISHED:
169 pa_log_info("Successfully established service %s.", s->service_name);
170 break;
171
172 case AVAHI_ENTRY_GROUP_COLLISION: {
173 char *t;
174
175 t = avahi_alternative_service_name(s->service_name);
176 pa_log_info("Name collision, renaming %s to %s.", s->service_name, t);
177 pa_xfree(s->service_name);
178 s->service_name = t;
179
180 publish_service(s);
181 break;
182 }
183
184 case AVAHI_ENTRY_GROUP_FAILURE: {
185 pa_log("Failed to register service: %s", avahi_strerror(avahi_client_errno(avahi_entry_group_get_client(g))));
186
187 avahi_entry_group_free(g);
188 s->entry_group = NULL;
189
190 break;
191 }
192
193 case AVAHI_ENTRY_GROUP_UNCOMMITED:
194 case AVAHI_ENTRY_GROUP_REGISTERING:
195 ;
196 }
197 }
198
199 static void service_free(struct service *s);
200
201 static uint16_t compute_port(struct userdata *u) {
202 pa_strlist *i;
203
204 pa_assert(u);
205
206 for (i = pa_native_protocol_servers(u->native); i; i = pa_strlist_next(i)) {
207 pa_parsed_address a;
208
209 if (pa_parse_address(pa_strlist_data(i), &a) >= 0 &&
210 (a.type == PA_PARSED_ADDRESS_TCP4 ||
211 a.type == PA_PARSED_ADDRESS_TCP6 ||
212 a.type == PA_PARSED_ADDRESS_TCP_AUTO) &&
213 a.port > 0) {
214
215 pa_xfree(a.path_or_host);
216 return a.port;
217 }
218
219 pa_xfree(a.path_or_host);
220 }
221
222 return PA_NATIVE_DEFAULT_PORT;
223 }
224
225 static int publish_service(struct service *s) {
226 int r = -1;
227 AvahiStringList *txt = NULL;
228 const char *name = NULL, *t;
229 pa_proplist *proplist = NULL;
230 pa_sample_spec ss;
231 pa_channel_map map;
232 char cm[PA_CHANNEL_MAP_SNPRINT_MAX];
233 enum service_subtype subtype;
234
235 const char * const subtype_text[] = {
236 [SUBTYPE_HARDWARE] = "hardware",
237 [SUBTYPE_VIRTUAL] = "virtual",
238 [SUBTYPE_MONITOR] = "monitor"
239 };
240
241 pa_assert(s);
242
243 if (!s->userdata->client || avahi_client_get_state(s->userdata->client) != AVAHI_CLIENT_S_RUNNING)
244 return 0;
245
246 if (!s->entry_group) {
247 if (!(s->entry_group = avahi_entry_group_new(s->userdata->client, service_entry_group_callback, s))) {
248 pa_log("avahi_entry_group_new(): %s", avahi_strerror(avahi_client_errno(s->userdata->client)));
249 goto finish;
250 }
251 } else
252 avahi_entry_group_reset(s->entry_group);
253
254 txt = txt_record_server_data(s->userdata->core, txt);
255
256 get_service_data(s, &ss, &map, &name, &proplist, &subtype);
257 txt = avahi_string_list_add_pair(txt, "device", name);
258 txt = avahi_string_list_add_printf(txt, "rate=%u", ss.rate);
259 txt = avahi_string_list_add_printf(txt, "channels=%u", ss.channels);
260 txt = avahi_string_list_add_pair(txt, "format", pa_sample_format_to_string(ss.format));
261 txt = avahi_string_list_add_pair(txt, "channel_map", pa_channel_map_snprint(cm, sizeof(cm), &map));
262 txt = avahi_string_list_add_pair(txt, "subtype", subtype_text[subtype]);
263
264 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_DESCRIPTION)))
265 txt = avahi_string_list_add_pair(txt, "description", t);
266 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_ICON_NAME)))
267 txt = avahi_string_list_add_pair(txt, "icon-name", t);
268 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_VENDOR_NAME)))
269 txt = avahi_string_list_add_pair(txt, "vendor-name", t);
270 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_PRODUCT_NAME)))
271 txt = avahi_string_list_add_pair(txt, "product-name", t);
272 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_CLASS)))
273 txt = avahi_string_list_add_pair(txt, "class", t);
274 if ((t = pa_proplist_gets(proplist, PA_PROP_DEVICE_FORM_FACTOR)))
275 txt = avahi_string_list_add_pair(txt, "form-factor", t);
276
277 if (avahi_entry_group_add_service_strlst(
278 s->entry_group,
279 AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC,
280 0,
281 s->service_name,
282 pa_sink_isinstance(s->device) ? SERVICE_TYPE_SINK : SERVICE_TYPE_SOURCE,
283 NULL,
284 NULL,
285 compute_port(s->userdata),
286 txt) < 0) {
287
288 pa_log("avahi_entry_group_add_service_strlst(): %s", avahi_strerror(avahi_client_errno(s->userdata->client)));
289 goto finish;
290 }
291
292 if (avahi_entry_group_add_service_subtype(
293 s->entry_group,
294 AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC,
295 0,
296 s->service_name,
297 pa_sink_isinstance(s->device) ? SERVICE_TYPE_SINK : SERVICE_TYPE_SOURCE,
298 NULL,
299 pa_sink_isinstance(s->device) ? (subtype == SUBTYPE_HARDWARE ? SERVICE_SUBTYPE_SINK_HARDWARE : SERVICE_SUBTYPE_SINK_VIRTUAL) :
300 (subtype == SUBTYPE_HARDWARE ? SERVICE_SUBTYPE_SOURCE_HARDWARE : (subtype == SUBTYPE_VIRTUAL ? SERVICE_SUBTYPE_SOURCE_VIRTUAL : SERVICE_SUBTYPE_SOURCE_MONITOR))) < 0) {
301
302 pa_log("avahi_entry_group_add_service_subtype(): %s", avahi_strerror(avahi_client_errno(s->userdata->client)));
303 goto finish;
304 }
305
306 if (pa_source_isinstance(s->device) && subtype != SUBTYPE_MONITOR) {
307 if (avahi_entry_group_add_service_subtype(
308 s->entry_group,
309 AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC,
310 0,
311 s->service_name,
312 SERVICE_TYPE_SOURCE,
313 NULL,
314 SERVICE_SUBTYPE_SOURCE_NON_MONITOR) < 0) {
315
316 pa_log("avahi_entry_group_add_service_subtype(): %s", avahi_strerror(avahi_client_errno(s->userdata->client)));
317 goto finish;
318 }
319 }
320
321 if (avahi_entry_group_commit(s->entry_group) < 0) {
322 pa_log("avahi_entry_group_commit(): %s", avahi_strerror(avahi_client_errno(s->userdata->client)));
323 goto finish;
324 }
325
326 r = 0;
327 pa_log_debug("Successfully created entry group for %s.", s->service_name);
328
329 finish:
330
331 /* Remove this service */
332 if (r < 0)
333 service_free(s);
334
335 avahi_string_list_free(txt);
336
337 return r;
338 }
339
340 static struct service *get_service(struct userdata *u, pa_object *device) {
341 struct service *s;
342 char hn[64], un[64];
343 const char *n;
344
345 pa_assert(u);
346 pa_object_assert_ref(device);
347
348 if ((s = pa_hashmap_get(u->services, device)))
349 return s;
350
351 s = pa_xnew(struct service, 1);
352 s->userdata = u;
353 s->entry_group = NULL;
354 s->device = device;
355
356 if (pa_sink_isinstance(device)) {
357 if (!(n = pa_proplist_gets(PA_SINK(device)->proplist, PA_PROP_DEVICE_DESCRIPTION)))
358 n = PA_SINK(device)->name;
359 } else {
360 if (!(n = pa_proplist_gets(PA_SOURCE(device)->proplist, PA_PROP_DEVICE_DESCRIPTION)))
361 n = PA_SOURCE(device)->name;
362 }
363
364 s->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s: %s",
365 pa_get_user_name(un, sizeof(un)),
366 pa_get_host_name(hn, sizeof(hn)),
367 n),
368 AVAHI_LABEL_MAX-1);
369
370 pa_hashmap_put(u->services, s->device, s);
371
372 return s;
373 }
374
375 static void service_free(struct service *s) {
376 pa_assert(s);
377
378 pa_hashmap_remove(s->userdata->services, s->device);
379
380 if (s->entry_group) {
381 pa_log_debug("Removing entry group for %s.", s->service_name);
382 avahi_entry_group_free(s->entry_group);
383 }
384
385 pa_xfree(s->service_name);
386 pa_xfree(s);
387 }
388
389 static pa_bool_t shall_ignore(pa_object *o) {
390 pa_object_assert_ref(o);
391
392 if (pa_sink_isinstance(o))
393 return !!(PA_SINK(o)->flags & PA_SINK_NETWORK);
394
395 if (pa_source_isinstance(o))
396 return PA_SOURCE(o)->monitor_of || (PA_SOURCE(o)->flags & PA_SOURCE_NETWORK);
397
398 pa_assert_not_reached();
399 }
400
401 static pa_hook_result_t device_new_or_changed_cb(pa_core *c, pa_object *o, struct userdata *u) {
402 pa_assert(c);
403 pa_object_assert_ref(o);
404
405 if (!shall_ignore(o))
406 publish_service(get_service(u, o));
407
408 return PA_HOOK_OK;
409 }
410
411 static pa_hook_result_t device_unlink_cb(pa_core *c, pa_object *o, struct userdata *u) {
412 struct service *s;
413
414 pa_assert(c);
415 pa_object_assert_ref(o);
416
417 if ((s = pa_hashmap_get(u->services, o)))
418 service_free(s);
419
420 return PA_HOOK_OK;
421 }
422
423 static int publish_main_service(struct userdata *u);
424
425 static void main_entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, void *userdata) {
426 struct userdata *u = userdata;
427 pa_assert(u);
428
429 switch (state) {
430
431 case AVAHI_ENTRY_GROUP_ESTABLISHED:
432 pa_log_info("Successfully established main service.");
433 break;
434
435 case AVAHI_ENTRY_GROUP_COLLISION: {
436 char *t;
437
438 t = avahi_alternative_service_name(u->service_name);
439 pa_log_info("Name collision: renaming main service %s to %s.", u->service_name, t);
440 pa_xfree(u->service_name);
441 u->service_name = t;
442
443 publish_main_service(u);
444 break;
445 }
446
447 case AVAHI_ENTRY_GROUP_FAILURE: {
448 pa_log("Failed to register main service: %s", avahi_strerror(avahi_client_errno(avahi_entry_group_get_client(g))));
449
450 avahi_entry_group_free(g);
451 u->main_entry_group = NULL;
452 break;
453 }
454
455 case AVAHI_ENTRY_GROUP_UNCOMMITED:
456 case AVAHI_ENTRY_GROUP_REGISTERING:
457 break;
458 }
459 }
460
461 static int publish_main_service(struct userdata *u) {
462 AvahiStringList *txt = NULL;
463 int r = -1;
464
465 pa_assert(u);
466
467 if (!u->main_entry_group) {
468 if (!(u->main_entry_group = avahi_entry_group_new(u->client, main_entry_group_callback, u))) {
469 pa_log("avahi_entry_group_new() failed: %s", avahi_strerror(avahi_client_errno(u->client)));
470 goto fail;
471 }
472 } else
473 avahi_entry_group_reset(u->main_entry_group);
474
475 txt = txt_record_server_data(u->core, txt);
476
477 if (avahi_entry_group_add_service_strlst(
478 u->main_entry_group,
479 AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC,
480 0,
481 u->service_name,
482 SERVICE_TYPE_SERVER,
483 NULL,
484 NULL,
485 compute_port(u),
486 txt) < 0) {
487
488 pa_log("avahi_entry_group_add_service_strlst() failed: %s", avahi_strerror(avahi_client_errno(u->client)));
489 goto fail;
490 }
491
492 if (avahi_entry_group_commit(u->main_entry_group) < 0) {
493 pa_log("avahi_entry_group_commit() failed: %s", avahi_strerror(avahi_client_errno(u->client)));
494 goto fail;
495 }
496
497 r = 0;
498
499 fail:
500 avahi_string_list_free(txt);
501
502 return r;
503 }
504
505 static int publish_all_services(struct userdata *u) {
506 pa_sink *sink;
507 pa_source *source;
508 int r = -1;
509 uint32_t idx;
510
511 pa_assert(u);
512
513 pa_log_debug("Publishing services in Zeroconf");
514
515 for (sink = PA_SINK(pa_idxset_first(u->core->sinks, &idx)); sink; sink = PA_SINK(pa_idxset_next(u->core->sinks, &idx)))
516 if (!shall_ignore(PA_OBJECT(sink)))
517 publish_service(get_service(u, PA_OBJECT(sink)));
518
519 for (source = PA_SOURCE(pa_idxset_first(u->core->sources, &idx)); source; source = PA_SOURCE(pa_idxset_next(u->core->sources, &idx)))
520 if (!shall_ignore(PA_OBJECT(source)))
521 publish_service(get_service(u, PA_OBJECT(source)));
522
523 if (publish_main_service(u) < 0)
524 goto fail;
525
526 r = 0;
527
528 fail:
529 return r;
530 }
531
532 static void unpublish_all_services(struct userdata *u, pa_bool_t rem) {
533 void *state = NULL;
534 struct service *s;
535
536 pa_assert(u);
537
538 pa_log_debug("Unpublishing services in Zeroconf");
539
540 while ((s = pa_hashmap_iterate(u->services, &state, NULL))) {
541 if (s->entry_group) {
542 if (rem) {
543 pa_log_debug("Removing entry group for %s.", s->service_name);
544 avahi_entry_group_free(s->entry_group);
545 s->entry_group = NULL;
546 } else {
547 avahi_entry_group_reset(s->entry_group);
548 pa_log_debug("Resetting entry group for %s.", s->service_name);
549 }
550 }
551 }
552
553 if (u->main_entry_group) {
554 if (rem) {
555 pa_log_debug("Removing main entry group.");
556 avahi_entry_group_free(u->main_entry_group);
557 u->main_entry_group = NULL;
558 } else {
559 avahi_entry_group_reset(u->main_entry_group);
560 pa_log_debug("Resetting main entry group.");
561 }
562 }
563 }
564
565 static void client_callback(AvahiClient *c, AvahiClientState state, void *userdata) {
566 struct userdata *u = userdata;
567
568 pa_assert(c);
569 pa_assert(u);
570
571 u->client = c;
572
573 switch (state) {
574 case AVAHI_CLIENT_S_RUNNING:
575 publish_all_services(u);
576 break;
577
578 case AVAHI_CLIENT_S_COLLISION:
579 pa_log_debug("Host name collision");
580 unpublish_all_services(u, FALSE);
581 break;
582
583 case AVAHI_CLIENT_FAILURE:
584 if (avahi_client_errno(c) == AVAHI_ERR_DISCONNECTED) {
585 int error;
586
587 pa_log_debug("Avahi daemon disconnected.");
588
589 unpublish_all_services(u, TRUE);
590 avahi_client_free(u->client);
591
592 if (!(u->client = avahi_client_new(u->avahi_poll, AVAHI_CLIENT_NO_FAIL, client_callback, u, &error))) {
593 pa_log("avahi_client_new() failed: %s", avahi_strerror(error));
594 pa_module_unload_request(u->module, TRUE);
595 }
596 }
597
598 break;
599
600 default: ;
601 }
602 }
603
604 int pa__init(pa_module*m) {
605
606 struct userdata *u;
607 pa_modargs *ma = NULL;
608 char hn[256], un[256];
609 int error;
610
611 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
612 pa_log("Failed to parse module arguments.");
613 goto fail;
614 }
615
616 m->userdata = u = pa_xnew(struct userdata, 1);
617 u->core = m->core;
618 u->module = m;
619 u->native = pa_native_protocol_get(u->core);
620
621 u->avahi_poll = pa_avahi_poll_new(m->core->mainloop);
622
623 u->services = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
624
625 u->sink_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_LATE, (pa_hook_cb_t) device_new_or_changed_cb, u);
626 u->sink_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], PA_HOOK_LATE, (pa_hook_cb_t) device_new_or_changed_cb, u);
627 u->sink_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_UNLINK], PA_HOOK_LATE, (pa_hook_cb_t) device_unlink_cb, u);
628 u->source_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_LATE, (pa_hook_cb_t) device_new_or_changed_cb, u);
629 u->source_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PROPLIST_CHANGED], PA_HOOK_LATE, (pa_hook_cb_t) device_new_or_changed_cb, u);
630 u->source_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_UNLINK], PA_HOOK_LATE, (pa_hook_cb_t) device_unlink_cb, u);
631
632 u->main_entry_group = NULL;
633
634 u->service_name = pa_truncate_utf8(pa_sprintf_malloc("%s@%s", pa_get_user_name(un, sizeof(un)), pa_get_host_name(hn, sizeof(hn))), AVAHI_LABEL_MAX);
635
636 if (!(u->client = avahi_client_new(u->avahi_poll, AVAHI_CLIENT_NO_FAIL, client_callback, u, &error))) {
637 pa_log("avahi_client_new() failed: %s", avahi_strerror(error));
638 goto fail;
639 }
640
641 pa_modargs_free(ma);
642
643 return 0;
644
645 fail:
646 pa__done(m);
647
648 if (ma)
649 pa_modargs_free(ma);
650
651 return -1;
652 }
653
654 void pa__done(pa_module*m) {
655 struct userdata*u;
656 pa_assert(m);
657
658 if (!(u = m->userdata))
659 return;
660
661 if (u->services) {
662 struct service *s;
663
664 while ((s = pa_hashmap_first(u->services)))
665 service_free(s);
666
667 pa_hashmap_free(u->services, NULL, NULL);
668 }
669
670 if (u->sink_new_slot)
671 pa_hook_slot_free(u->sink_new_slot);
672 if (u->source_new_slot)
673 pa_hook_slot_free(u->source_new_slot);
674 if (u->sink_changed_slot)
675 pa_hook_slot_free(u->sink_changed_slot);
676 if (u->source_changed_slot)
677 pa_hook_slot_free(u->source_changed_slot);
678 if (u->sink_unlink_slot)
679 pa_hook_slot_free(u->sink_unlink_slot);
680 if (u->source_unlink_slot)
681 pa_hook_slot_free(u->source_unlink_slot);
682
683 if (u->main_entry_group)
684 avahi_entry_group_free(u->main_entry_group);
685
686 if (u->client)
687 avahi_client_free(u->client);
688
689 if (u->avahi_poll)
690 pa_avahi_poll_free(u->avahi_poll);
691
692 pa_xfree(u->service_name);
693 pa_xfree(u);
694 }