]> code.delx.au - pulseaudio/blob - src/modules/alsa/module-alsa-card.c
alsa: Fix crash when profile_set == NULL
[pulseaudio] / src / modules / alsa / module-alsa-card.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 published
8 by the Free Software Foundation; either version 2.1 of the License,
9 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 License
17 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 <pulse/xmalloc.h>
27
28 #include <pulsecore/core-util.h>
29 #include <pulsecore/i18n.h>
30 #include <pulsecore/modargs.h>
31 #include <pulsecore/queue.h>
32
33 #include <modules/reserve-wrap.h>
34
35 #ifdef HAVE_UDEV
36 #include <modules/udev-util.h>
37 #endif
38
39 #include "alsa-util.h"
40 #include "alsa-ucm.h"
41 #include "alsa-sink.h"
42 #include "alsa-source.h"
43 #include "module-alsa-card-symdef.h"
44
45 PA_MODULE_AUTHOR("Lennart Poettering");
46 PA_MODULE_DESCRIPTION("ALSA Card");
47 PA_MODULE_VERSION(PACKAGE_VERSION);
48 PA_MODULE_LOAD_ONCE(FALSE);
49 PA_MODULE_USAGE(
50 "name=<name for the card/sink/source, to be prefixed> "
51 "card_name=<name for the card> "
52 "card_properties=<properties for the card> "
53 "sink_name=<name for the sink> "
54 "sink_properties=<properties for the sink> "
55 "source_name=<name for the source> "
56 "source_properties=<properties for the source> "
57 "namereg_fail=<when false attempt to synthesise new names if they are already taken> "
58 "device_id=<ALSA card index> "
59 "format=<sample format> "
60 "rate=<sample rate> "
61 "fragments=<number of fragments> "
62 "fragment_size=<fragment size> "
63 "mmap=<enable memory mapping?> "
64 "tsched=<enable system timer based scheduling mode?> "
65 "tsched_buffer_size=<buffer size when using timer based scheduling> "
66 "tsched_buffer_watermark=<lower fill watermark> "
67 "profile=<profile name> "
68 "fixed_latency_range=<disable latency range changes on underrun?> "
69 "ignore_dB=<ignore dB information from the device?> "
70 "deferred_volume=<Synchronize software and hardware volume changes to avoid momentary jumps?> "
71 "profile_set=<profile set configuration file> "
72 "paths_dir=<directory containing the path configuration files> "
73 "use_ucm=<load use case manager> "
74 );
75
76 static const char* const valid_modargs[] = {
77 "name",
78 "card_name",
79 "card_properties",
80 "sink_name",
81 "sink_properties",
82 "source_name",
83 "source_properties",
84 "namereg_fail",
85 "device_id",
86 "format",
87 "rate",
88 "fragments",
89 "fragment_size",
90 "mmap",
91 "tsched",
92 "tsched_buffer_size",
93 "tsched_buffer_watermark",
94 "fixed_latency_range",
95 "profile",
96 "ignore_dB",
97 "deferred_volume",
98 "profile_set",
99 "paths_dir",
100 "use_ucm",
101 NULL
102 };
103
104 #define DEFAULT_DEVICE_ID "0"
105
106 struct userdata {
107 pa_core *core;
108 pa_module *module;
109
110 char *device_id;
111 int alsa_card_index;
112
113 snd_mixer_t *mixer_handle;
114 snd_hctl_t *hctl_handle;
115 pa_hashmap *jacks;
116 pa_alsa_fdlist *mixer_fdl;
117
118 pa_card *card;
119
120 pa_modargs *modargs;
121
122 pa_alsa_profile_set *profile_set;
123
124 /* ucm stuffs */
125 pa_bool_t use_ucm;
126 pa_alsa_ucm_config ucm;
127
128 /* hooks for modifier action */
129 pa_hook_slot
130 *sink_input_put_hook_slot,
131 *source_output_put_hook_slot,
132 *sink_input_unlink_hook_slot,
133 *source_output_unlink_hook_slot;
134 };
135
136 struct profile_data {
137 pa_alsa_profile *profile;
138 };
139
140 static void add_profiles(struct userdata *u, pa_hashmap *h, pa_hashmap *ports) {
141 pa_alsa_profile *ap;
142 void *state;
143
144 pa_assert(u);
145 pa_assert(h);
146
147 PA_HASHMAP_FOREACH(ap, u->profile_set->profiles, state) {
148 struct profile_data *d;
149 pa_card_profile *cp;
150 pa_alsa_mapping *m;
151 uint32_t idx;
152
153 cp = pa_card_profile_new(ap->name, ap->description, sizeof(struct profile_data));
154 cp->priority = ap->priority;
155
156 if (ap->output_mappings) {
157 cp->n_sinks = pa_idxset_size(ap->output_mappings);
158
159 PA_IDXSET_FOREACH(m, ap->output_mappings, idx) {
160 if (u->use_ucm)
161 pa_alsa_ucm_add_ports_combination(NULL, &m->ucm_context, TRUE, ports, cp, u->core);
162 else
163 pa_alsa_path_set_add_ports(m->output_path_set, cp, ports, NULL, u->core);
164 if (m->channel_map.channels > cp->max_sink_channels)
165 cp->max_sink_channels = m->channel_map.channels;
166 }
167 }
168
169 if (ap->input_mappings) {
170 cp->n_sources = pa_idxset_size(ap->input_mappings);
171
172 PA_IDXSET_FOREACH(m, ap->input_mappings, idx) {
173 if (u->use_ucm)
174 pa_alsa_ucm_add_ports_combination(NULL, &m->ucm_context, FALSE, ports, cp, u->core);
175 else
176 pa_alsa_path_set_add_ports(m->input_path_set, cp, ports, NULL, u->core);
177 if (m->channel_map.channels > cp->max_source_channels)
178 cp->max_source_channels = m->channel_map.channels;
179 }
180 }
181
182 d = PA_CARD_PROFILE_DATA(cp);
183 d->profile = ap;
184
185 pa_hashmap_put(h, cp->name, cp);
186 }
187 }
188
189 static void add_disabled_profile(pa_hashmap *profiles) {
190 pa_card_profile *p;
191 struct profile_data *d;
192
193 p = pa_card_profile_new("off", _("Off"), sizeof(struct profile_data));
194
195 d = PA_CARD_PROFILE_DATA(p);
196 d->profile = NULL;
197
198 pa_hashmap_put(profiles, p->name, p);
199 }
200
201 static int card_set_profile(pa_card *c, pa_card_profile *new_profile) {
202 struct userdata *u;
203 struct profile_data *nd, *od;
204 uint32_t idx;
205 pa_alsa_mapping *am;
206 pa_queue *sink_inputs = NULL, *source_outputs = NULL;
207
208 pa_assert(c);
209 pa_assert(new_profile);
210 pa_assert_se(u = c->userdata);
211
212 nd = PA_CARD_PROFILE_DATA(new_profile);
213 od = PA_CARD_PROFILE_DATA(c->active_profile);
214
215 if (od->profile && od->profile->output_mappings)
216 PA_IDXSET_FOREACH(am, od->profile->output_mappings, idx) {
217 if (!am->sink)
218 continue;
219
220 if (nd->profile &&
221 nd->profile->output_mappings &&
222 pa_idxset_get_by_data(nd->profile->output_mappings, am, NULL))
223 continue;
224
225 sink_inputs = pa_sink_move_all_start(am->sink, sink_inputs);
226 pa_alsa_sink_free(am->sink);
227 am->sink = NULL;
228 }
229
230 if (od->profile && od->profile->input_mappings)
231 PA_IDXSET_FOREACH(am, od->profile->input_mappings, idx) {
232 if (!am->source)
233 continue;
234
235 if (nd->profile &&
236 nd->profile->input_mappings &&
237 pa_idxset_get_by_data(nd->profile->input_mappings, am, NULL))
238 continue;
239
240 source_outputs = pa_source_move_all_start(am->source, source_outputs);
241 pa_alsa_source_free(am->source);
242 am->source = NULL;
243 }
244
245 /* if UCM is available for this card then update the verb */
246 if (u->use_ucm) {
247 if (pa_alsa_ucm_set_profile(&u->ucm, nd->profile ? nd->profile->name : NULL,
248 od->profile ? od->profile->name : NULL) < 0)
249 return -1;
250 }
251
252 if (nd->profile && nd->profile->output_mappings)
253 PA_IDXSET_FOREACH(am, nd->profile->output_mappings, idx) {
254
255 if (!am->sink)
256 am->sink = pa_alsa_sink_new(c->module, u->modargs, __FILE__, c, am);
257
258 if (sink_inputs && am->sink) {
259 pa_sink_move_all_finish(am->sink, sink_inputs, FALSE);
260 sink_inputs = NULL;
261 }
262 }
263
264 if (nd->profile && nd->profile->input_mappings)
265 PA_IDXSET_FOREACH(am, nd->profile->input_mappings, idx) {
266
267 if (!am->source)
268 am->source = pa_alsa_source_new(c->module, u->modargs, __FILE__, c, am);
269
270 if (source_outputs && am->source) {
271 pa_source_move_all_finish(am->source, source_outputs, FALSE);
272 source_outputs = NULL;
273 }
274 }
275
276 if (sink_inputs)
277 pa_sink_move_all_fail(sink_inputs);
278
279 if (source_outputs)
280 pa_source_move_all_fail(source_outputs);
281
282 return 0;
283 }
284
285 static void init_profile(struct userdata *u) {
286 uint32_t idx;
287 pa_alsa_mapping *am;
288 struct profile_data *d;
289 pa_alsa_ucm_config *ucm = &u->ucm;
290
291 pa_assert(u);
292
293 d = PA_CARD_PROFILE_DATA(u->card->active_profile);
294
295 if (d->profile && u->use_ucm) {
296 /* Set initial verb */
297 if (pa_alsa_ucm_set_profile(ucm, d->profile->name, NULL) < 0) {
298 pa_log("Failed to set ucm profile %s", d->profile->name);
299 return;
300 }
301 }
302
303 if (d->profile && d->profile->output_mappings)
304 PA_IDXSET_FOREACH(am, d->profile->output_mappings, idx)
305 am->sink = pa_alsa_sink_new(u->module, u->modargs, __FILE__, u->card, am);
306
307 if (d->profile && d->profile->input_mappings)
308 PA_IDXSET_FOREACH(am, d->profile->input_mappings, idx)
309 am->source = pa_alsa_source_new(u->module, u->modargs, __FILE__, u->card, am);
310 }
311
312 static void report_port_state(pa_device_port *p, struct userdata *u)
313 {
314 void *state;
315 pa_alsa_jack *jack;
316 pa_available_t pa = PA_AVAILABLE_UNKNOWN;
317 pa_device_port *port;
318
319 PA_HASHMAP_FOREACH(jack, u->jacks, state) {
320 pa_available_t cpa;
321
322 if (u->use_ucm)
323 port = pa_hashmap_get(u->card->ports, jack->name);
324 else {
325 if (jack->path)
326 port = jack->path->port;
327 else
328 continue;
329 }
330
331 if (p != port)
332 continue;
333
334 cpa = jack->plugged_in ? jack->state_plugged : jack->state_unplugged;
335
336 /* "Yes" and "no" trumphs "unknown" if we have more than one jack */
337 if (cpa == PA_AVAILABLE_UNKNOWN)
338 continue;
339
340 if ((cpa == PA_AVAILABLE_NO && pa == PA_AVAILABLE_YES) ||
341 (pa == PA_AVAILABLE_NO && cpa == PA_AVAILABLE_YES))
342 pa_log_warn("Availability of port '%s' is inconsistent!", p->name);
343 else
344 pa = cpa;
345 }
346
347 pa_device_port_set_available(p, pa);
348 }
349
350 static int report_jack_state(snd_hctl_elem_t *elem, unsigned int mask)
351 {
352 struct userdata *u = snd_hctl_elem_get_callback_private(elem);
353 snd_ctl_elem_value_t *elem_value;
354 pa_bool_t plugged_in;
355 void *state;
356 pa_alsa_jack *jack;
357 pa_device_port *port;
358
359 pa_assert(u);
360
361 if (mask == SND_CTL_EVENT_MASK_REMOVE)
362 return 0;
363
364 snd_ctl_elem_value_alloca(&elem_value);
365 if (snd_hctl_elem_read(elem, elem_value) < 0) {
366 pa_log_warn("Failed to read jack detection from '%s'", pa_strnull(snd_hctl_elem_get_name(elem)));
367 return 0;
368 }
369
370 plugged_in = !!snd_ctl_elem_value_get_boolean(elem_value, 0);
371
372 pa_log_debug("Jack '%s' is now %s", pa_strnull(snd_hctl_elem_get_name(elem)), plugged_in ? "plugged in" : "unplugged");
373
374 PA_HASHMAP_FOREACH(jack, u->jacks, state)
375 if (jack->hctl_elem == elem) {
376 jack->plugged_in = plugged_in;
377 if (u->use_ucm) {
378 pa_assert(u->card->ports);
379 port = pa_hashmap_get(u->card->ports, jack->name);
380 pa_assert(port);
381 }
382 else {
383 pa_assert(jack->path && jack->path->port);
384 port = jack->path->port;
385 }
386 report_port_state(port, u);
387 }
388 return 0;
389 }
390
391 static pa_device_port* find_port_with_eld_device(pa_hashmap *ports, int device) {
392 void *state;
393 pa_device_port *p;
394
395 PA_HASHMAP_FOREACH(p, ports, state) {
396 pa_alsa_port_data *data = PA_DEVICE_PORT_DATA(p);
397 pa_assert(data->path);
398 if (device == data->path->eld_device)
399 return p;
400 }
401 return NULL;
402 }
403
404 static int hdmi_eld_changed(snd_hctl_elem_t *elem, unsigned int mask) {
405 struct userdata *u = snd_hctl_elem_get_callback_private(elem);
406 int device = snd_hctl_elem_get_device(elem);
407 const char *old_monitor_name;
408 pa_device_port *p;
409 pa_hdmi_eld eld;
410 bool changed = false;
411
412 if (mask == SND_CTL_EVENT_MASK_REMOVE)
413 return 0;
414
415 p = find_port_with_eld_device(u->card->ports, device);
416 if (p == NULL) {
417 pa_log_error("Invalid device changed in ALSA: %d", device);
418 return 0;
419 }
420
421 if (pa_alsa_get_hdmi_eld(u->hctl_handle, device, &eld) < 0)
422 memset(&eld, 0, sizeof(eld));
423
424 old_monitor_name = pa_proplist_gets(p->proplist, PA_PROP_DEVICE_PRODUCT_NAME);
425 if (eld.monitor_name[0] == '\0') {
426 changed |= old_monitor_name != NULL;
427 pa_proplist_unset(p->proplist, PA_PROP_DEVICE_PRODUCT_NAME);
428 } else {
429 changed |= (old_monitor_name == NULL) || (strcmp(old_monitor_name, eld.monitor_name) != 0);
430 pa_proplist_sets(p->proplist, PA_PROP_DEVICE_PRODUCT_NAME, eld.monitor_name);
431 }
432
433 if (changed && mask != 0)
434 pa_subscription_post(u->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, u->card->index);
435
436 return 0;
437 }
438
439 static void init_eld_ctls(struct userdata *u) {
440 void *state;
441 pa_device_port *port;
442
443 if (!u->hctl_handle)
444 return;
445
446 PA_HASHMAP_FOREACH(port, u->card->ports, state) {
447 pa_alsa_port_data *data = PA_DEVICE_PORT_DATA(port);
448 snd_hctl_elem_t* hctl_elem;
449 int device;
450
451 pa_assert(data->path);
452 device = data->path->eld_device;
453 if (device < 0)
454 continue;
455
456 hctl_elem = pa_alsa_find_eld_ctl(u->hctl_handle, device);
457 if (!hctl_elem) {
458 pa_log_debug("No ELD device found for port %s.", port->name);
459 continue;
460 }
461
462 snd_hctl_elem_set_callback_private(hctl_elem, u);
463 snd_hctl_elem_set_callback(hctl_elem, hdmi_eld_changed);
464 hdmi_eld_changed(hctl_elem, 0);
465 }
466 }
467
468 static void init_jacks(struct userdata *u) {
469 void *state;
470 pa_alsa_path* path;
471 pa_alsa_jack* jack;
472
473 u->jacks = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
474
475 if (u->use_ucm) {
476 PA_LLIST_FOREACH(jack, u->ucm.jacks)
477 if (jack->has_control)
478 pa_hashmap_put(u->jacks, jack, jack);
479 } else {
480 /* See if we have any jacks */
481 if (u->profile_set->output_paths)
482 PA_HASHMAP_FOREACH(path, u->profile_set->output_paths, state)
483 PA_LLIST_FOREACH(jack, path->jacks)
484 if (jack->has_control)
485 pa_hashmap_put(u->jacks, jack, jack);
486
487 if (u->profile_set->input_paths)
488 PA_HASHMAP_FOREACH(path, u->profile_set->input_paths, state)
489 PA_LLIST_FOREACH(jack, path->jacks)
490 if (jack->has_control)
491 pa_hashmap_put(u->jacks, jack, jack);
492 }
493
494 pa_log_debug("Found %d jacks.", pa_hashmap_size(u->jacks));
495
496 if (pa_hashmap_size(u->jacks) == 0)
497 return;
498
499 u->mixer_fdl = pa_alsa_fdlist_new();
500
501 u->mixer_handle = pa_alsa_open_mixer(u->alsa_card_index, NULL, &u->hctl_handle);
502 if (u->mixer_handle && pa_alsa_fdlist_set_handle(u->mixer_fdl, NULL, u->hctl_handle, u->core->mainloop) >= 0) {
503 PA_HASHMAP_FOREACH(jack, u->jacks, state) {
504 jack->hctl_elem = pa_alsa_find_jack(u->hctl_handle, jack->alsa_name);
505 if (!jack->hctl_elem) {
506 pa_log_warn("Jack '%s' seems to have disappeared.", jack->alsa_name);
507 jack->has_control = FALSE;
508 continue;
509 }
510 snd_hctl_elem_set_callback_private(jack->hctl_elem, u);
511 snd_hctl_elem_set_callback(jack->hctl_elem, report_jack_state);
512 report_jack_state(jack->hctl_elem, 0);
513 }
514
515 } else
516 pa_log("Failed to open hctl/mixer for jack detection");
517
518 }
519
520 static void set_card_name(pa_card_new_data *data, pa_modargs *ma, const char *device_id) {
521 char *t;
522 const char *n;
523
524 pa_assert(data);
525 pa_assert(ma);
526 pa_assert(device_id);
527
528 if ((n = pa_modargs_get_value(ma, "card_name", NULL))) {
529 pa_card_new_data_set_name(data, n);
530 data->namereg_fail = TRUE;
531 return;
532 }
533
534 if ((n = pa_modargs_get_value(ma, "name", NULL)))
535 data->namereg_fail = TRUE;
536 else {
537 n = device_id;
538 data->namereg_fail = FALSE;
539 }
540
541 t = pa_sprintf_malloc("alsa_card.%s", n);
542 pa_card_new_data_set_name(data, t);
543 pa_xfree(t);
544 }
545
546 static pa_hook_result_t sink_input_put_hook_callback(pa_core *c, pa_sink_input *sink_input, struct userdata *u) {
547 const char *role;
548 pa_sink *sink = sink_input->sink;
549
550 pa_assert(sink);
551
552 role = pa_proplist_gets(sink_input->proplist, PA_PROP_MEDIA_ROLE);
553
554 /* new sink input linked to sink of this card */
555 if (role && sink->card == u->card)
556 pa_alsa_ucm_roled_stream_begin(&u->ucm, role, PA_DIRECTION_OUTPUT);
557
558 return PA_HOOK_OK;
559 }
560
561 static pa_hook_result_t source_output_put_hook_callback(pa_core *c, pa_source_output *source_output, struct userdata *u) {
562 const char *role;
563 pa_source *source = source_output->source;
564
565 pa_assert(source);
566
567 role = pa_proplist_gets(source_output->proplist, PA_PROP_MEDIA_ROLE);
568
569 /* new source output linked to source of this card */
570 if (role && source->card == u->card)
571 pa_alsa_ucm_roled_stream_begin(&u->ucm, role, PA_DIRECTION_INPUT);
572
573 return PA_HOOK_OK;
574 }
575
576 static pa_hook_result_t sink_input_unlink_hook_callback(pa_core *c, pa_sink_input *sink_input, struct userdata *u) {
577 const char *role;
578 pa_sink *sink = sink_input->sink;
579
580 pa_assert(sink);
581
582 role = pa_proplist_gets(sink_input->proplist, PA_PROP_MEDIA_ROLE);
583
584 /* new sink input unlinked from sink of this card */
585 if (role && sink->card == u->card)
586 pa_alsa_ucm_roled_stream_end(&u->ucm, role, PA_DIRECTION_OUTPUT);
587
588 return PA_HOOK_OK;
589 }
590
591 static pa_hook_result_t source_output_unlink_hook_callback(pa_core *c, pa_source_output *source_output, struct userdata *u) {
592 const char *role;
593 pa_source *source = source_output->source;
594
595 pa_assert(source);
596
597 role = pa_proplist_gets(source_output->proplist, PA_PROP_MEDIA_ROLE);
598
599 /* new source output unlinked from source of this card */
600 if (role && source->card == u->card)
601 pa_alsa_ucm_roled_stream_end(&u->ucm, role, PA_DIRECTION_INPUT);
602
603 return PA_HOOK_OK;
604 }
605
606 int pa__init(pa_module *m) {
607 pa_card_new_data data;
608 pa_modargs *ma;
609 pa_bool_t ignore_dB = FALSE;
610 struct userdata *u;
611 pa_reserve_wrapper *reserve = NULL;
612 const char *description;
613 const char *profile = NULL;
614 char *fn = NULL;
615 pa_bool_t namereg_fail = FALSE;
616
617 pa_alsa_refcnt_inc();
618
619 pa_assert(m);
620
621 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
622 pa_log("Failed to parse module arguments");
623 goto fail;
624 }
625
626 if (pa_modargs_get_value_boolean(ma, "ignore_dB", &ignore_dB) < 0) {
627 pa_log("Failed to parse ignore_dB argument.");
628 goto fail;
629 }
630
631 m->userdata = u = pa_xnew0(struct userdata, 1);
632 u->core = m->core;
633 u->module = m;
634 u->device_id = pa_xstrdup(pa_modargs_get_value(ma, "device_id", DEFAULT_DEVICE_ID));
635 u->modargs = ma;
636
637 u->use_ucm = TRUE;
638 u->ucm.core = m->core;
639
640 if ((u->alsa_card_index = snd_card_get_index(u->device_id)) < 0) {
641 pa_log("Card '%s' doesn't exist: %s", u->device_id, pa_alsa_strerror(u->alsa_card_index));
642 goto fail;
643 }
644
645 if (!pa_in_system_mode()) {
646 char *rname;
647
648 if ((rname = pa_alsa_get_reserve_name(u->device_id))) {
649 reserve = pa_reserve_wrapper_get(m->core, rname);
650 pa_xfree(rname);
651
652 if (!reserve)
653 goto fail;
654 }
655 }
656
657 pa_modargs_get_value_boolean(ma, "use_ucm", &u->use_ucm);
658 if (u->use_ucm && !pa_alsa_ucm_query_profiles(&u->ucm, u->alsa_card_index)) {
659 pa_log_info("Found UCM profiles");
660
661 u->profile_set = pa_alsa_ucm_add_profile_set(&u->ucm, &u->core->default_channel_map);
662
663 /* hook start of sink input/source output to enable modifiers */
664 /* A little bit later than module-role-cork */
665 u->sink_input_put_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_PUT], PA_HOOK_LATE+10,
666 (pa_hook_cb_t) sink_input_put_hook_callback, u);
667 u->source_output_put_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_PUT], PA_HOOK_LATE+10,
668 (pa_hook_cb_t) source_output_put_hook_callback, u);
669
670 /* hook end of sink input/source output to disable modifiers */
671 /* A little bit later than module-role-cork */
672 u->sink_input_unlink_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_UNLINK], PA_HOOK_LATE+10,
673 (pa_hook_cb_t) sink_input_unlink_hook_callback, u);
674 u->source_output_unlink_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK], PA_HOOK_LATE+10,
675 (pa_hook_cb_t) source_output_unlink_hook_callback, u);
676 }
677 else {
678 u->use_ucm = FALSE;
679 #ifdef HAVE_UDEV
680 fn = pa_udev_get_property(u->alsa_card_index, "PULSE_PROFILE_SET");
681 #endif
682
683 if (pa_modargs_get_value(ma, "profile_set", NULL)) {
684 pa_xfree(fn);
685 fn = pa_xstrdup(pa_modargs_get_value(ma, "profile_set", NULL));
686 }
687
688 u->profile_set = pa_alsa_profile_set_new(fn, &u->core->default_channel_map);
689 pa_xfree(fn);
690 }
691
692 if (!u->profile_set)
693 goto fail;
694
695 u->profile_set->ignore_dB = ignore_dB;
696
697 pa_alsa_profile_set_probe(u->profile_set, u->device_id, &m->core->default_sample_spec, m->core->default_n_fragments, m->core->default_fragment_size_msec);
698 pa_alsa_profile_set_dump(u->profile_set);
699
700 pa_card_new_data_init(&data);
701 data.driver = __FILE__;
702 data.module = m;
703
704 pa_alsa_init_proplist_card(m->core, data.proplist, u->alsa_card_index);
705
706 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->device_id);
707 pa_alsa_init_description(data.proplist);
708 set_card_name(&data, ma, u->device_id);
709
710 /* We need to give pa_modargs_get_value_boolean() a pointer to a local
711 * variable instead of using &data.namereg_fail directly, because
712 * data.namereg_fail is a bitfield and taking the address of a bitfield
713 * variable is impossible. */
714 namereg_fail = data.namereg_fail;
715 if (pa_modargs_get_value_boolean(ma, "namereg_fail", &namereg_fail) < 0) {
716 pa_log("Failed to parse namereg_fail argument.");
717 pa_card_new_data_done(&data);
718 goto fail;
719 }
720 data.namereg_fail = namereg_fail;
721
722 if (reserve)
723 if ((description = pa_proplist_gets(data.proplist, PA_PROP_DEVICE_DESCRIPTION)))
724 pa_reserve_wrapper_set_application_device_name(reserve, description);
725
726 add_profiles(u, data.profiles, data.ports);
727
728 if (pa_hashmap_isempty(data.profiles)) {
729 pa_log("Failed to find a working profile.");
730 pa_card_new_data_done(&data);
731 goto fail;
732 }
733
734 add_disabled_profile(data.profiles);
735
736 if (pa_modargs_get_proplist(ma, "card_properties", data.proplist, PA_UPDATE_REPLACE) < 0) {
737 pa_log("Invalid properties");
738 pa_card_new_data_done(&data);
739 goto fail;
740 }
741
742 if ((profile = pa_modargs_get_value(ma, "profile", NULL)))
743 pa_card_new_data_set_profile(&data, profile);
744
745 u->card = pa_card_new(m->core, &data);
746 pa_card_new_data_done(&data);
747
748 if (!u->card)
749 goto fail;
750
751 u->card->userdata = u;
752 u->card->set_profile = card_set_profile;
753
754 init_jacks(u);
755 init_profile(u);
756 init_eld_ctls(u);
757
758 if (reserve)
759 pa_reserve_wrapper_unref(reserve);
760
761 if (!pa_hashmap_isempty(u->profile_set->decibel_fixes))
762 pa_log_warn("Card %s uses decibel fixes (i.e. overrides the decibel information for some alsa volume elements). "
763 "Please note that this feature is meant just as a help for figuring out the correct decibel values. "
764 "PulseAudio is not the correct place to maintain the decibel mappings! The fixed decibel values "
765 "should be sent to ALSA developers so that they can fix the driver. If it turns out that this feature "
766 "is abused (i.e. fixes are not pushed to ALSA), the decibel fix feature may be removed in some future "
767 "PulseAudio version.", u->card->name);
768
769 return 0;
770
771 fail:
772 if (reserve)
773 pa_reserve_wrapper_unref(reserve);
774
775 pa__done(m);
776
777 return -1;
778 }
779
780 int pa__get_n_used(pa_module *m) {
781 struct userdata *u;
782 int n = 0;
783 uint32_t idx;
784 pa_sink *sink;
785 pa_source *source;
786
787 pa_assert(m);
788 pa_assert_se(u = m->userdata);
789 pa_assert(u->card);
790
791 PA_IDXSET_FOREACH(sink, u->card->sinks, idx)
792 n += pa_sink_linked_by(sink);
793
794 PA_IDXSET_FOREACH(source, u->card->sources, idx)
795 n += pa_source_linked_by(source);
796
797 return n;
798 }
799
800 void pa__done(pa_module*m) {
801 struct userdata *u;
802
803 pa_assert(m);
804
805 if (!(u = m->userdata))
806 goto finish;
807
808 if (u->sink_input_put_hook_slot)
809 pa_hook_slot_free(u->sink_input_put_hook_slot);
810
811 if (u->sink_input_unlink_hook_slot)
812 pa_hook_slot_free(u->sink_input_unlink_hook_slot);
813
814 if (u->source_output_put_hook_slot)
815 pa_hook_slot_free(u->source_output_put_hook_slot);
816
817 if (u->source_output_unlink_hook_slot)
818 pa_hook_slot_free(u->source_output_unlink_hook_slot);
819
820 if (u->mixer_fdl)
821 pa_alsa_fdlist_free(u->mixer_fdl);
822 if (u->mixer_handle)
823 snd_mixer_close(u->mixer_handle);
824 if (u->jacks)
825 pa_hashmap_free(u->jacks, NULL);
826
827 if (u->card && u->card->sinks)
828 pa_idxset_remove_all(u->card->sinks, (pa_free_cb_t) pa_alsa_sink_free);
829
830 if (u->card && u->card->sources)
831 pa_idxset_remove_all(u->card->sources, (pa_free_cb_t) pa_alsa_source_free);
832
833 if (u->card)
834 pa_card_free(u->card);
835
836 if (u->modargs)
837 pa_modargs_free(u->modargs);
838
839 if (u->profile_set)
840 pa_alsa_profile_set_free(u->profile_set);
841
842 pa_alsa_ucm_free(&u->ucm);
843
844 pa_xfree(u->device_id);
845 pa_xfree(u);
846
847 finish:
848 pa_alsa_refcnt_dec();
849 }