]> code.delx.au - pulseaudio/commitdiff
bluetooth: Set to off if transport removed
authorMikel Astiz <mikel.astiz@bmw-carit.de>
Fri, 19 Oct 2012 08:11:26 +0000 (10:11 +0200)
committerTanu Kaskinen <tanuk@iki.fi>
Fri, 19 Oct 2012 15:31:01 +0000 (18:31 +0300)
The recently added hook can be used to detect that the transport being
used has been removed. In this case, the profile needs to be set to off.

Additionally, the change fixes a significant problem: without this
transition, the transport could be destroyed while the hook slots (i.e.
nrec_changed_slot) were still set. This led to a double free of these
objects in stop_thread().

src/modules/bluetooth/module-bluetooth-device.c

index b56cb77bcde448528aa2d225ab199c02439b89dd..8b14c6169882aa807b09806aacfa8c796f01c089 100644 (file)
@@ -143,6 +143,7 @@ struct userdata {
     char *path;
     char *transport;
     char *accesstype;
+    pa_hook_slot *transport_removed_slot;
 
     pa_bluetooth_discovery *discovery;
     pa_bool_t auto_connect;
@@ -1974,6 +1975,16 @@ static void bt_transport_config(struct userdata *u) {
         bt_transport_config_a2dp(u);
 }
 
+/* Run from main thread */
+static pa_hook_result_t transport_removed_cb(pa_bluetooth_transport *t, void *call_data, struct userdata *u) {
+    pa_assert(t);
+    pa_assert(u);
+
+    pa_assert_se(pa_card_set_profile(u->card, "off", false) >= 0);
+
+    return PA_HOOK_OK;
+}
+
 /* Run from main thread */
 static int setup_transport(struct userdata *u) {
     const pa_bluetooth_device *d;
@@ -1995,6 +2006,9 @@ static int setup_transport(struct userdata *u) {
 
     u->transport = pa_xstrdup(t->path);
 
+    u->transport_removed_slot = pa_hook_connect(&t->hooks[PA_BLUETOOTH_TRANSPORT_HOOK_REMOVED], PA_HOOK_NORMAL,
+                                                (pa_hook_cb_t) transport_removed_cb, u);
+
     bt_transport_acquire(u, FALSE);
 
     bt_transport_config(u);
@@ -2064,6 +2078,11 @@ static void stop_thread(struct userdata *u) {
         u->hsp.nrec_changed_slot = NULL;
     }
 
+    if (u->transport_removed_slot) {
+        pa_hook_slot_free(u->transport_removed_slot);
+        u->transport_removed_slot = NULL;
+    }
+
     if (u->transport) {
         bt_transport_release(u);
         pa_xfree(u->transport);