]> code.delx.au - pulseaudio/blob - src/modules/module-udev-detect.c
775094daf39172298aeb5b00e07cc145168a498e
[pulseaudio] / src / modules / module-udev-detect.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2009 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 <errno.h>
27 #include <limits.h>
28 #include <dirent.h>
29 #include <sys/inotify.h>
30 #include <libudev.h>
31
32 #include <pulse/timeval.h>
33
34 #include <pulsecore/modargs.h>
35 #include <pulsecore/core-error.h>
36 #include <pulsecore/core-util.h>
37 #include <pulsecore/namereg.h>
38 #include <pulsecore/ratelimit.h>
39
40 #include "module-udev-detect-symdef.h"
41
42 PA_MODULE_AUTHOR("Lennart Poettering");
43 PA_MODULE_DESCRIPTION("Detect available audio hardware and load matching drivers");
44 PA_MODULE_VERSION(PACKAGE_VERSION);
45 PA_MODULE_LOAD_ONCE(TRUE);
46 PA_MODULE_USAGE(
47 "tsched=<enable system timer based scheduling mode?> "
48 "ignore_dB=<ignore dB information from the device?> "
49 "sync_volume=<syncronize sw and hw voluchanges in IO-thread?>");
50
51 struct device {
52 char *path;
53 pa_bool_t need_verify;
54 char *card_name;
55 char *args;
56 uint32_t module;
57 pa_ratelimit ratelimit;
58 };
59
60 struct userdata {
61 pa_core *core;
62 pa_hashmap *devices;
63
64 pa_bool_t use_tsched:1;
65 pa_bool_t ignore_dB:1;
66 pa_bool_t sync_volume:1;
67
68 struct udev* udev;
69 struct udev_monitor *monitor;
70 pa_io_event *udev_io;
71
72 int inotify_fd;
73 pa_io_event *inotify_io;
74 };
75
76 static const char* const valid_modargs[] = {
77 "tsched",
78 "ignore_dB",
79 "sync_volume",
80 NULL
81 };
82
83 static int setup_inotify(struct userdata *u);
84
85 static void device_free(struct device *d) {
86 pa_assert(d);
87
88 pa_xfree(d->path);
89 pa_xfree(d->card_name);
90 pa_xfree(d->args);
91 pa_xfree(d);
92 }
93
94 static const char *path_get_card_id(const char *path) {
95 const char *e;
96
97 if (!path)
98 return NULL;
99
100 if (!(e = strrchr(path, '/')))
101 return NULL;
102
103 if (!pa_startswith(e, "/card"))
104 return NULL;
105
106 return e + 5;
107 }
108
109 static char *card_get_sysattr(const char *card_idx, const char *name) {
110 struct udev *udev;
111 struct udev_device *card = NULL;
112 char *t, *r = NULL;
113 const char *v;
114
115 pa_assert(card_idx);
116 pa_assert(name);
117
118 if (!(udev = udev_new())) {
119 pa_log_error("Failed to allocate udev context.");
120 goto finish;
121 }
122
123 t = pa_sprintf_malloc("%s/class/sound/card%s", udev_get_sys_path(udev), card_idx);
124 card = udev_device_new_from_syspath(udev, t);
125 pa_xfree(t);
126
127 if (!card) {
128 pa_log_error("Failed to get card object.");
129 goto finish;
130 }
131
132 if ((v = udev_device_get_sysattr_value(card, name)) && *v)
133 r = pa_xstrdup(v);
134
135 finish:
136
137 if (card)
138 udev_device_unref(card);
139
140 if (udev)
141 udev_unref(udev);
142
143 return r;
144 }
145
146 static pa_bool_t pcm_is_modem(const char *card_idx, const char *pcm) {
147 char *sysfs_path, *pcm_class;
148 pa_bool_t is_modem;
149
150 pa_assert(card_idx);
151 pa_assert(pcm);
152
153 /* Check /sys/class/sound/card.../pcmC...../pcm_class. An HDA
154 * modem can be used simultaneously with generic
155 * playback/record. */
156
157 sysfs_path = pa_sprintf_malloc("pcmC%sD%s/pcm_class", card_idx, pcm);
158 pcm_class = card_get_sysattr(card_idx, sysfs_path);
159 is_modem = pcm_class && pa_streq(pcm_class, "modem");
160 pa_xfree(pcm_class);
161 pa_xfree(sysfs_path);
162
163 return is_modem;
164 }
165
166 static pa_bool_t is_card_busy(const char *id) {
167 char *card_path = NULL, *pcm_path = NULL, *sub_status = NULL;
168 DIR *card_dir = NULL, *pcm_dir = NULL;
169 FILE *status_file = NULL;
170 size_t len;
171 struct dirent *space = NULL, *de;
172 pa_bool_t busy = FALSE;
173 int r;
174
175 pa_assert(id);
176
177 /* This simply uses /proc/asound/card.../pcm.../sub.../status to
178 * check whether there is still a process using this audio device. */
179
180 card_path = pa_sprintf_malloc("/proc/asound/card%s", id);
181
182 if (!(card_dir = opendir(card_path))) {
183 pa_log_warn("Failed to open %s: %s", card_path, pa_cstrerror(errno));
184 goto fail;
185 }
186
187 len = offsetof(struct dirent, d_name) + fpathconf(dirfd(card_dir), _PC_NAME_MAX) + 1;
188 space = pa_xmalloc(len);
189
190 for (;;) {
191 de = NULL;
192
193 if ((r = readdir_r(card_dir, space, &de)) != 0) {
194 pa_log_warn("readdir_r() failed: %s", pa_cstrerror(r));
195 goto fail;
196 }
197
198 if (!de)
199 break;
200
201 if (!pa_startswith(de->d_name, "pcm"))
202 continue;
203
204 if (pcm_is_modem(id, de->d_name + 3))
205 continue;
206
207 pa_xfree(pcm_path);
208 pcm_path = pa_sprintf_malloc("%s/%s", card_path, de->d_name);
209
210 if (pcm_dir)
211 closedir(pcm_dir);
212
213 if (!(pcm_dir = opendir(pcm_path))) {
214 pa_log_warn("Failed to open %s: %s", pcm_path, pa_cstrerror(errno));
215 continue;
216 }
217
218 for (;;) {
219 char line[32];
220
221 if ((r = readdir_r(pcm_dir, space, &de)) != 0) {
222 pa_log_warn("readdir_r() failed: %s", pa_cstrerror(r));
223 goto fail;
224 }
225
226 if (!de)
227 break;
228
229 if (!pa_startswith(de->d_name, "sub"))
230 continue;
231
232 pa_xfree(sub_status);
233 sub_status = pa_sprintf_malloc("%s/%s/status", pcm_path, de->d_name);
234
235 if (status_file)
236 fclose(status_file);
237
238 if (!(status_file = pa_fopen_cloexec(sub_status, "r"))) {
239 pa_log_warn("Failed to open %s: %s", sub_status, pa_cstrerror(errno));
240 continue;
241 }
242
243 if (!(fgets(line, sizeof(line)-1, status_file))) {
244 pa_log_warn("Failed to read from %s: %s", sub_status, pa_cstrerror(errno));
245 continue;
246 }
247
248 if (!pa_streq(line, "closed\n")) {
249 busy = TRUE;
250 break;
251 }
252 }
253 }
254
255 fail:
256
257 pa_xfree(card_path);
258 pa_xfree(pcm_path);
259 pa_xfree(sub_status);
260 pa_xfree(space);
261
262 if (card_dir)
263 closedir(card_dir);
264
265 if (pcm_dir)
266 closedir(pcm_dir);
267
268 if (status_file)
269 fclose(status_file);
270
271 return busy;
272 }
273
274 static void verify_access(struct userdata *u, struct device *d) {
275 char *cd;
276 pa_card *card;
277 pa_bool_t accessible;
278
279 pa_assert(u);
280 pa_assert(d);
281
282 cd = pa_sprintf_malloc("%s/snd/controlC%s", udev_get_dev_path(u->udev), path_get_card_id(d->path));
283 accessible = access(cd, R_OK|W_OK) >= 0;
284 pa_log_debug("%s is accessible: %s", cd, pa_yes_no(accessible));
285
286 pa_xfree(cd);
287
288 if (d->module == PA_INVALID_INDEX) {
289
290 /* If we are not loaded, try to load */
291
292 if (accessible) {
293 pa_module *m;
294 pa_bool_t busy;
295
296 /* Check if any of the PCM devices that belong to this
297 * card are currently busy. If they are, don't try to load
298 * right now, to make sure the probing phase can
299 * successfully complete. When the current user of the
300 * device closes it we will get another notification via
301 * inotify and can then recheck. */
302
303 busy = is_card_busy(path_get_card_id(d->path));
304 pa_log_debug("%s is busy: %s", d->path, pa_yes_no(busy));
305
306 if (!busy) {
307
308 /* So, why do we rate limit here? It's certainly ugly,
309 * but there seems to be no other way. Problem is
310 * this: if we are unable to configure/probe an audio
311 * device after opening it we will close it again and
312 * the module initialization will fail. This will then
313 * cause an inotify event on the device node which
314 * will be forwarded to us. We then try to reopen the
315 * audio device again, practically entering a busy
316 * loop.
317 *
318 * A clean fix would be if we would be able to ignore
319 * our own inotify close events. However, inotify
320 * lacks such functionality. Also, during probing of
321 * the device we cannot really distuingish between
322 * other processes causing EBUSY or ourselves, which
323 * means we have no way to figure out if the probing
324 * during opening was canceled by a "try again"
325 * failure or a "fatal" failure. */
326
327 if (pa_ratelimit_test(&d->ratelimit)) {
328 pa_log_debug("Loading module-alsa-card with arguments '%s'", d->args);
329 m = pa_module_load(u->core, "module-alsa-card", d->args);
330
331 if (m) {
332 d->module = m->index;
333 pa_log_info("Card %s (%s) module loaded.", d->path, d->card_name);
334 } else
335 pa_log_info("Card %s (%s) failed to load module.", d->path, d->card_name);
336 } else
337 pa_log_warn("Tried to configure %s (%s) more often than %u times in %llus",
338 d->path,
339 d->card_name,
340 d->ratelimit.burst,
341 (long long unsigned) (d->ratelimit.interval / PA_USEC_PER_SEC));
342 }
343 }
344
345 } else {
346
347 /* If we are already loaded update suspend status with
348 * accessible boolean */
349
350 if ((card = pa_namereg_get(u->core, d->card_name, PA_NAMEREG_CARD)))
351 pa_card_suspend(card, !accessible, PA_SUSPEND_SESSION);
352 }
353 }
354
355 static void card_changed(struct userdata *u, struct udev_device *dev) {
356 struct device *d;
357 const char *path;
358 const char *t;
359 char *n;
360
361 pa_assert(u);
362 pa_assert(dev);
363
364 /* Maybe /dev/snd is now available? */
365 setup_inotify(u);
366
367 path = udev_device_get_devpath(dev);
368
369 if ((d = pa_hashmap_get(u->devices, path))) {
370 verify_access(u, d);
371 return;
372 }
373
374 d = pa_xnew0(struct device, 1);
375 d->path = pa_xstrdup(path);
376 d->module = PA_INVALID_INDEX;
377 PA_INIT_RATELIMIT(d->ratelimit, 10*PA_USEC_PER_SEC, 5);
378
379 if (!(t = udev_device_get_property_value(dev, "PULSE_NAME")))
380 if (!(t = udev_device_get_property_value(dev, "ID_ID")))
381 if (!(t = udev_device_get_property_value(dev, "ID_PATH")))
382 t = path_get_card_id(path);
383
384 n = pa_namereg_make_valid_name(t);
385 d->card_name = pa_sprintf_malloc("alsa_card.%s", n);
386 d->args = pa_sprintf_malloc("device_id=\"%s\" "
387 "name=\"%s\" "
388 "card_name=\"%s\" "
389 "namereg_fail=false "
390 "tsched=%s "
391 "ignore_dB=%s "
392 "sync_volume=%s "
393 "card_properties=\"module-udev-detect.discovered=1\"",
394 path_get_card_id(path),
395 n,
396 d->card_name,
397 pa_yes_no(u->use_tsched),
398 pa_yes_no(u->ignore_dB),
399 pa_yes_no(u->sync_volume));
400 pa_xfree(n);
401
402 pa_hashmap_put(u->devices, d->path, d);
403
404 verify_access(u, d);
405 }
406
407 static void remove_card(struct userdata *u, struct udev_device *dev) {
408 struct device *d;
409
410 pa_assert(u);
411 pa_assert(dev);
412
413 if (!(d = pa_hashmap_remove(u->devices, udev_device_get_devpath(dev))))
414 return;
415
416 pa_log_info("Card %s removed.", d->path);
417
418 if (d->module != PA_INVALID_INDEX)
419 pa_module_unload_request_by_index(u->core, d->module, TRUE);
420
421 device_free(d);
422 }
423
424 static void process_device(struct userdata *u, struct udev_device *dev) {
425 const char *action, *ff;
426
427 pa_assert(u);
428 pa_assert(dev);
429
430 if (udev_device_get_property_value(dev, "PULSE_IGNORE")) {
431 pa_log_debug("Ignoring %s, because marked so.", udev_device_get_devpath(dev));
432 return;
433 }
434
435 if ((ff = udev_device_get_property_value(dev, "SOUND_CLASS")) &&
436 pa_streq(ff, "modem")) {
437 pa_log_debug("Ignoring %s, because it is a modem.", udev_device_get_devpath(dev));
438 return;
439 }
440
441 action = udev_device_get_action(dev);
442
443 if (action && pa_streq(action, "remove"))
444 remove_card(u, dev);
445 else if ((!action || pa_streq(action, "change")) &&
446 udev_device_get_property_value(dev, "SOUND_INITIALIZED"))
447 card_changed(u, dev);
448
449 /* For an explanation why we don't look for 'add' events here
450 * have a look into /lib/udev/rules.d/78-sound-card.rules! */
451 }
452
453 static void process_path(struct userdata *u, const char *path) {
454 struct udev_device *dev;
455
456 if (!path_get_card_id(path))
457 return;
458
459 if (!(dev = udev_device_new_from_syspath(u->udev, path))) {
460 pa_log("Failed to get udev device object from udev.");
461 return;
462 }
463
464 process_device(u, dev);
465 udev_device_unref(dev);
466 }
467
468 static void monitor_cb(
469 pa_mainloop_api*a,
470 pa_io_event* e,
471 int fd,
472 pa_io_event_flags_t events,
473 void *userdata) {
474
475 struct userdata *u = userdata;
476 struct udev_device *dev;
477
478 pa_assert(a);
479
480 if (!(dev = udev_monitor_receive_device(u->monitor))) {
481 pa_log("Failed to get udev device object from monitor.");
482 goto fail;
483 }
484
485 if (!path_get_card_id(udev_device_get_devpath(dev))) {
486 udev_device_unref(dev);
487 return;
488 }
489
490 process_device(u, dev);
491 udev_device_unref(dev);
492 return;
493
494 fail:
495 a->io_free(u->udev_io);
496 u->udev_io = NULL;
497 }
498
499 static pa_bool_t pcm_node_belongs_to_device(
500 struct device *d,
501 const char *node) {
502
503 char *cd;
504 pa_bool_t b;
505
506 cd = pa_sprintf_malloc("pcmC%sD", path_get_card_id(d->path));
507 b = pa_startswith(node, cd);
508 pa_xfree(cd);
509
510 return b;
511 }
512
513 static pa_bool_t control_node_belongs_to_device(
514 struct device *d,
515 const char *node) {
516
517 char *cd;
518 pa_bool_t b;
519
520 cd = pa_sprintf_malloc("controlC%s", path_get_card_id(d->path));
521 b = pa_streq(node, cd);
522 pa_xfree(cd);
523
524 return b;
525 }
526
527 static void inotify_cb(
528 pa_mainloop_api*a,
529 pa_io_event* e,
530 int fd,
531 pa_io_event_flags_t events,
532 void *userdata) {
533
534 struct {
535 struct inotify_event e;
536 char name[NAME_MAX];
537 } buf;
538 struct userdata *u = userdata;
539 static int type = 0;
540 pa_bool_t deleted = FALSE;
541 struct device *d;
542 void *state;
543
544 for (;;) {
545 ssize_t r;
546 struct inotify_event *event;
547
548 pa_zero(buf);
549 if ((r = pa_read(fd, &buf, sizeof(buf), &type)) <= 0) {
550
551 if (r < 0 && errno == EAGAIN)
552 break;
553
554 pa_log("read() from inotify failed: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
555 goto fail;
556 }
557
558 event = &buf.e;
559 while (r > 0) {
560 size_t len;
561
562 if ((size_t) r < sizeof(struct inotify_event)) {
563 pa_log("read() too short.");
564 goto fail;
565 }
566
567 len = sizeof(struct inotify_event) + event->len;
568
569 if ((size_t) r < len) {
570 pa_log("Payload missing.");
571 goto fail;
572 }
573
574 /* From udev we get the guarantee that the control
575 * device's ACL is changed last. To avoid races when ACLs
576 * are changed we hence watch only the control device */
577 if (((event->mask & IN_ATTRIB) && pa_startswith(event->name, "controlC")))
578 PA_HASHMAP_FOREACH(d, u->devices, state)
579 if (control_node_belongs_to_device(d, event->name))
580 d->need_verify = TRUE;
581
582 /* ALSA doesn't really give us any guarantee on the closing
583 * order, so let's simply hope */
584 if (((event->mask & IN_CLOSE_WRITE) && pa_startswith(event->name, "pcmC")))
585 PA_HASHMAP_FOREACH(d, u->devices, state)
586 if (pcm_node_belongs_to_device(d, event->name))
587 d->need_verify = TRUE;
588
589 /* /dev/snd/ might have been removed */
590 if ((event->mask & (IN_DELETE_SELF|IN_MOVE_SELF)))
591 deleted = TRUE;
592
593 event = (struct inotify_event*) ((uint8_t*) event + len);
594 r -= len;
595 }
596 }
597
598 PA_HASHMAP_FOREACH(d, u->devices, state)
599 if (d->need_verify) {
600 d->need_verify = FALSE;
601 verify_access(u, d);
602 }
603
604 if (!deleted)
605 return;
606
607 fail:
608 if (u->inotify_io) {
609 a->io_free(u->inotify_io);
610 u->inotify_io = NULL;
611 }
612
613 if (u->inotify_fd >= 0) {
614 pa_close(u->inotify_fd);
615 u->inotify_fd = -1;
616 }
617 }
618
619 static int setup_inotify(struct userdata *u) {
620 char *dev_snd;
621 int r;
622
623 if (u->inotify_fd >= 0)
624 return 0;
625
626 if ((u->inotify_fd = inotify_init1(IN_CLOEXEC|IN_NONBLOCK)) < 0) {
627 pa_log("inotify_init1() failed: %s", pa_cstrerror(errno));
628 return -1;
629 }
630
631 dev_snd = pa_sprintf_malloc("%s/snd", udev_get_dev_path(u->udev));
632 r = inotify_add_watch(u->inotify_fd, dev_snd, IN_ATTRIB|IN_CLOSE_WRITE|IN_DELETE_SELF|IN_MOVE_SELF);
633 pa_xfree(dev_snd);
634
635 if (r < 0) {
636 int saved_errno = errno;
637
638 pa_close(u->inotify_fd);
639 u->inotify_fd = -1;
640
641 if (saved_errno == ENOENT) {
642 pa_log_debug("/dev/snd/ is apparently not existing yet, retrying to create inotify watch later.");
643 return 0;
644 }
645
646 if (saved_errno == ENOSPC) {
647 pa_log("You apparently ran out of inotify watches, probably because Tracker/Beagle took them all away. "
648 "I wished people would do their homework first and fix inotify before using it for watching whole "
649 "directory trees which is something the current inotify is certainly not useful for. "
650 "Please make sure to drop the Tracker/Beagle guys a line complaining about their broken use of inotify.");
651 return 0;
652 }
653
654 pa_log("inotify_add_watch() failed: %s", pa_cstrerror(saved_errno));
655 return -1;
656 }
657
658 pa_assert_se(u->inotify_io = u->core->mainloop->io_new(u->core->mainloop, u->inotify_fd, PA_IO_EVENT_INPUT, inotify_cb, u));
659
660 return 0;
661 }
662
663 int pa__init(pa_module *m) {
664 struct userdata *u = NULL;
665 pa_modargs *ma;
666 struct udev_enumerate *enumerate = NULL;
667 struct udev_list_entry *item = NULL, *first = NULL;
668 int fd;
669 pa_bool_t use_tsched = TRUE, ignore_dB = FALSE, sync_volume = FALSE;
670
671
672 pa_assert(m);
673
674 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
675 pa_log("Failed to parse module arguments");
676 goto fail;
677 }
678
679 m->userdata = u = pa_xnew0(struct userdata, 1);
680 u->core = m->core;
681 u->devices = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
682 u->inotify_fd = -1;
683
684 if (pa_modargs_get_value_boolean(ma, "tsched", &use_tsched) < 0) {
685 pa_log("Failed to parse tsched= argument.");
686 goto fail;
687 }
688 u->use_tsched = use_tsched;
689
690 if (pa_modargs_get_value_boolean(ma, "ignore_dB", &ignore_dB) < 0) {
691 pa_log("Failed to parse ignore_dB= argument.");
692 goto fail;
693 }
694 u->ignore_dB = ignore_dB;
695
696 if (pa_modargs_get_value_boolean(ma, "sync_volume", &sync_volume) < 0) {
697 pa_log("Failed to parse sync_volume= argument.");
698 goto fail;
699 }
700 u->sync_volume = sync_volume;
701
702 if (!(u->udev = udev_new())) {
703 pa_log("Failed to initialize udev library.");
704 goto fail;
705 }
706
707 if (setup_inotify(u) < 0)
708 goto fail;
709
710 if (!(u->monitor = udev_monitor_new_from_netlink(u->udev, "udev"))) {
711 pa_log("Failed to initialize monitor.");
712 goto fail;
713 }
714
715 if (udev_monitor_filter_add_match_subsystem_devtype(u->monitor, "sound", NULL) < 0) {
716 pa_log("Failed to subscribe to sound devices.");
717 goto fail;
718 }
719
720 errno = 0;
721 if (udev_monitor_enable_receiving(u->monitor) < 0) {
722 pa_log("Failed to enable monitor: %s", pa_cstrerror(errno));
723 if (errno == EPERM)
724 pa_log_info("Most likely your kernel is simply too old and "
725 "allows only priviliged processes to listen to device events. "
726 "Please upgrade your kernel to at least 2.6.30.");
727 goto fail;
728 }
729
730 if ((fd = udev_monitor_get_fd(u->monitor)) < 0) {
731 pa_log("Failed to get udev monitor fd.");
732 goto fail;
733 }
734
735 pa_assert_se(u->udev_io = u->core->mainloop->io_new(u->core->mainloop, fd, PA_IO_EVENT_INPUT, monitor_cb, u));
736
737 if (!(enumerate = udev_enumerate_new(u->udev))) {
738 pa_log("Failed to initialize udev enumerator.");
739 goto fail;
740 }
741
742 if (udev_enumerate_add_match_subsystem(enumerate, "sound") < 0) {
743 pa_log("Failed to match to subsystem.");
744 goto fail;
745 }
746
747 if (udev_enumerate_scan_devices(enumerate) < 0) {
748 pa_log("Failed to scan for devices.");
749 goto fail;
750 }
751
752 first = udev_enumerate_get_list_entry(enumerate);
753 udev_list_entry_foreach(item, first)
754 process_path(u, udev_list_entry_get_name(item));
755
756 udev_enumerate_unref(enumerate);
757
758 pa_log_info("Found %u cards.", pa_hashmap_size(u->devices));
759
760 pa_modargs_free(ma);
761
762 return 0;
763
764 fail:
765
766 if (enumerate)
767 udev_enumerate_unref(enumerate);
768
769 if (ma)
770 pa_modargs_free(ma);
771
772 pa__done(m);
773
774 return -1;
775 }
776
777 void pa__done(pa_module *m) {
778 struct userdata *u;
779
780 pa_assert(m);
781
782 if (!(u = m->userdata))
783 return;
784
785 if (u->udev_io)
786 m->core->mainloop->io_free(u->udev_io);
787
788 if (u->monitor)
789 udev_monitor_unref(u->monitor);
790
791 if (u->udev)
792 udev_unref(u->udev);
793
794 if (u->inotify_io)
795 m->core->mainloop->io_free(u->inotify_io);
796
797 if (u->inotify_fd >= 0)
798 pa_close(u->inotify_fd);
799
800 if (u->devices) {
801 struct device *d;
802
803 while ((d = pa_hashmap_steal_first(u->devices)))
804 device_free(d);
805
806 pa_hashmap_free(u->devices, NULL, NULL);
807 }
808
809 pa_xfree(u);
810 }