37f0a6ca6335b54ec0f36c70a71d3691642cc8d7
[framework/connectivity/connman.git] / plugins / bluetooth.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <errno.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <netinet/ether.h>
31
32 #include <gdbus.h>
33
34 #define CONNMAN_API_SUBJECT_TO_CHANGE
35 #include <connman/plugin.h>
36 #include <connman/technology.h>
37 #include <connman/device.h>
38 #include <connman/inet.h>
39 #include <connman/dbus.h>
40 #include <connman/log.h>
41
42 #define BLUEZ_SERVICE                   "org.bluez"
43 #define BLUEZ_MANAGER_INTERFACE         BLUEZ_SERVICE ".Manager"
44 #define BLUEZ_ADAPTER_INTERFACE         BLUEZ_SERVICE ".Adapter"
45 #define BLUEZ_DEVICE_INTERFACE          BLUEZ_SERVICE ".Device"
46 #define BLUEZ_NETWORK_INTERFACE         BLUEZ_SERVICE ".Network"
47
48 #define LIST_ADAPTERS                   "ListAdapters"
49 #define ADAPTER_ADDED                   "AdapterAdded"
50 #define ADAPTER_REMOVED                 "AdapterRemoved"
51 #define DEVICE_REMOVED                  "DeviceRemoved"
52
53 #define PROPERTY_CHANGED                "PropertyChanged"
54 #define GET_PROPERTIES                  "GetProperties"
55 #define SET_PROPERTY                    "SetProperty"
56
57 #define CONNECT                         "Connect"
58 #define DISCONNECT                      "Disconnect"
59
60 #define UUID_NAP        "00001116-0000-1000-8000-00805f9b34fb"
61
62 #define TIMEOUT 5000
63
64 static DBusConnection *connection;
65
66 static GHashTable *bluetooth_devices = NULL;
67 static GHashTable *bluetooth_networks = NULL;
68
69 static int pan_probe(struct connman_network *network)
70 {
71         DBG("network %p", network);
72
73         return 0;
74 }
75
76 static void pan_remove(struct connman_network *network)
77 {
78         DBG("network %p", network);
79 }
80
81 static void connect_reply(DBusPendingCall *call, void *user_data)
82 {
83         struct connman_network *network = user_data;
84         DBusMessage *reply;
85         DBusError error;
86         const char *interface = NULL;
87         int index;
88
89         DBG("network %p", network);
90
91         reply = dbus_pending_call_steal_reply(call);
92
93         dbus_error_init(&error);
94
95         if (dbus_set_error_from_message(&error, reply) == TRUE) {
96                 connman_error("%s", error.message);
97                 dbus_error_free(&error);
98                 goto done;
99         }
100
101         if (dbus_message_get_args(reply, &error,
102                                         DBUS_TYPE_STRING, &interface,
103                                                 DBUS_TYPE_INVALID) == FALSE) {
104                 if (dbus_error_is_set(&error) == TRUE) {
105                         connman_error("%s", error.message);
106                         dbus_error_free(&error);
107                 } else
108                         connman_error("Wrong arguments for connect");
109                 goto done;
110         }
111
112         if (interface == NULL)
113                 goto done;
114
115         DBG("interface %s", interface);
116
117         index = connman_inet_ifindex(interface);
118
119         connman_network_set_index(network, index);
120
121         connman_network_set_connected(network, TRUE);
122
123 done:
124         dbus_message_unref(reply);
125
126         dbus_pending_call_unref(call);
127 }
128
129 static int pan_connect(struct connman_network *network)
130 {
131         const char *path = connman_network_get_string(network, "Path");
132         const char *uuid = "nap";
133         DBusMessage *message;
134         DBusPendingCall *call;
135
136         DBG("network %p", network);
137
138         if (path == NULL)
139                 return -EINVAL;
140
141         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
142                                         BLUEZ_NETWORK_INTERFACE, CONNECT);
143         if (message == NULL)
144                 return -ENOMEM;
145
146         dbus_message_set_auto_start(message, FALSE);
147
148         dbus_message_append_args(message, DBUS_TYPE_STRING, &uuid,
149                                                         DBUS_TYPE_INVALID);
150
151         if (dbus_connection_send_with_reply(connection, message,
152                                         &call, TIMEOUT * 10) == FALSE) {
153                 connman_error("Failed to connect service");
154                 dbus_message_unref(message);
155                 return -EINVAL;
156         }
157
158         if (call == NULL) {
159                 connman_error("D-Bus connection not available");
160                 dbus_message_unref(message);
161                 return -EINVAL;
162         }
163
164         dbus_pending_call_set_notify(call, connect_reply, network, NULL);
165
166         dbus_message_unref(message);
167
168         return -EINPROGRESS;
169 }
170
171 static void disconnect_reply(DBusPendingCall *call, void *user_data)
172 {
173         struct connman_network *network = user_data;
174         DBusMessage *reply;
175         DBusError error;
176
177         DBG("network %p", network);
178
179         reply = dbus_pending_call_steal_reply(call);
180
181         dbus_error_init(&error);
182
183         if (dbus_set_error_from_message(&error, reply) == TRUE) {
184                 connman_error("%s", error.message);
185                 dbus_error_free(&error);
186                 goto done;
187         }
188
189         if (dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) == FALSE) {
190                 if (dbus_error_is_set(&error) == TRUE) {
191                         connman_error("%s", error.message);
192                         dbus_error_free(&error);
193                 } else
194                         connman_error("Wrong arguments for disconnect");
195                 goto done;
196         }
197
198         connman_network_set_connected(network, FALSE);
199
200 done:
201         dbus_message_unref(reply);
202
203         dbus_pending_call_unref(call);
204
205         connman_network_unref(network);
206 }
207
208 static int pan_disconnect(struct connman_network *network)
209 {
210         const char *path = connman_network_get_string(network, "Path");
211         DBusMessage *message;
212         DBusPendingCall *call;
213
214         DBG("network %p", network);
215
216         if (path == NULL)
217                 return -EINVAL;
218
219         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
220                                         BLUEZ_NETWORK_INTERFACE, DISCONNECT);
221         if (message == NULL)
222                 return -ENOMEM;
223
224         dbus_message_set_auto_start(message, FALSE);
225
226         dbus_message_append_args(message, DBUS_TYPE_INVALID);
227
228         if (dbus_connection_send_with_reply(connection, message,
229                                                 &call, TIMEOUT) == FALSE) {
230                 connman_error("Failed to disconnect service");
231                 dbus_message_unref(message);
232                 return -EINVAL;
233         }
234
235         if (call == NULL) {
236                 connman_error("D-Bus connection not available");
237                 dbus_message_unref(message);
238                 return -EINVAL;
239         }
240
241         connman_network_ref(network);
242
243         connman_network_set_associating(network, FALSE);
244
245         dbus_pending_call_set_notify(call, disconnect_reply, network, NULL);
246
247         dbus_message_unref(message);
248
249         return 0;
250 }
251
252 static struct connman_network_driver pan_driver = {
253         .name           = "bluetooth-pan",
254         .type           = CONNMAN_NETWORK_TYPE_BLUETOOTH_PAN,
255         .probe          = pan_probe,
256         .remove         = pan_remove,
257         .connect        = pan_connect,
258         .disconnect     = pan_disconnect,
259 };
260
261 static gboolean network_changed(DBusConnection *connection,
262                                 DBusMessage *message, void *user_data)
263 {
264         const char *path = dbus_message_get_path(message);
265         struct connman_network *network;
266         DBusMessageIter iter, value;
267         const char *key;
268
269         DBG("path %s", path);
270
271         network = g_hash_table_lookup(bluetooth_networks, path);
272         if (network == NULL)
273                 return TRUE;
274
275         if (dbus_message_iter_init(message, &iter) == FALSE)
276                 return TRUE;
277
278         dbus_message_iter_get_basic(&iter, &key);
279
280         dbus_message_iter_next(&iter);
281         dbus_message_iter_recurse(&iter, &value);
282
283         if (g_str_equal(key, "Connected") == TRUE) {
284                 dbus_bool_t connected;
285
286                 dbus_message_iter_get_basic(&value, &connected);
287
288                 if (connected == TRUE)
289                         return TRUE;
290
291                 connman_network_set_associating(network, FALSE);
292                 connman_network_set_connected(network, FALSE);
293         }
294
295         return TRUE;
296 }
297
298 static void extract_properties(DBusMessage *reply, const char **parent,
299                                                 const char **address,
300                                                 const char **name,
301                                                 const char **alias,
302                                                 dbus_bool_t *powered,
303                                                 dbus_bool_t *scanning,
304                                                 DBusMessageIter *uuids,
305                                                 DBusMessageIter *networks)
306 {
307         DBusMessageIter array, dict;
308
309         if (dbus_message_iter_init(reply, &array) == FALSE)
310                 return;
311
312         if (dbus_message_iter_get_arg_type(&array) != DBUS_TYPE_ARRAY)
313                 return;
314
315         dbus_message_iter_recurse(&array, &dict);
316
317         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
318                 DBusMessageIter entry, value;
319                 const char *key;
320
321                 dbus_message_iter_recurse(&dict, &entry);
322                 dbus_message_iter_get_basic(&entry, &key);
323
324                 dbus_message_iter_next(&entry);
325                 dbus_message_iter_recurse(&entry, &value);
326
327                 if (g_str_equal(key, "Adapter") == TRUE) {
328                         if (parent != NULL)
329                                 dbus_message_iter_get_basic(&value, parent);
330                 } else if (g_str_equal(key, "Address") == TRUE) {
331                         if (address != NULL)
332                                 dbus_message_iter_get_basic(&value, address);
333                 } else if (g_str_equal(key, "Name") == TRUE) {
334                         if (name != NULL)
335                                 dbus_message_iter_get_basic(&value, name);
336                 } else if (g_str_equal(key, "Alias") == TRUE) {
337                         if (alias != NULL)
338                                 dbus_message_iter_get_basic(&value, alias);
339                 } else if (g_str_equal(key, "Powered") == TRUE) {
340                         if (powered != NULL)
341                                 dbus_message_iter_get_basic(&value, powered);
342                 } else if (g_str_equal(key, "Discovering") == TRUE) {
343                         if (scanning != NULL)
344                                 dbus_message_iter_get_basic(&value, scanning);
345                 } else if (g_str_equal(key, "Devices") == TRUE) {
346                         if (networks != NULL)
347                                 memcpy(networks, &value, sizeof(value));
348                 } else if (g_str_equal(key, "UUIDs") == TRUE) {
349                         if (uuids != NULL)
350                                 memcpy(uuids, &value, sizeof(value));
351                 }
352
353                 dbus_message_iter_next(&dict);
354         }
355 }
356
357 static dbus_bool_t has_pan(DBusMessageIter *array)
358 {
359         DBusMessageIter value;
360
361         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
362                 return FALSE;
363
364         dbus_message_iter_recurse(array, &value);
365
366         while (dbus_message_iter_get_arg_type(&value) == DBUS_TYPE_STRING) {
367                 const char *uuid;
368
369                 dbus_message_iter_get_basic(&value, &uuid);
370
371                 if (g_strcmp0(uuid, UUID_NAP) == 0)
372                         return TRUE;
373
374                 dbus_message_iter_next(&value);
375         }
376
377         return FALSE;
378 }
379
380 static void network_properties_reply(DBusPendingCall *call, void *user_data)
381 {
382         char *path = user_data;
383         struct connman_device *device;
384         struct connman_network *network;
385         DBusMessage *reply;
386         DBusMessageIter uuids;
387         const char *parent = NULL, *address = NULL, *name = NULL;
388         struct ether_addr addr;
389         char ident[13];
390
391         reply = dbus_pending_call_steal_reply(call);
392
393         extract_properties(reply, &parent, &address, NULL, &name,
394                                                 NULL, NULL, &uuids, NULL);
395
396         if (parent == NULL)
397                 goto done;
398
399         device = g_hash_table_lookup(bluetooth_devices, parent);
400         if (device == NULL)
401                 goto done;
402
403         if (address == NULL)
404                 goto done;
405
406         ether_aton_r(address, &addr);
407
408         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
409                                                 addr.ether_addr_octet[0],
410                                                 addr.ether_addr_octet[1],
411                                                 addr.ether_addr_octet[2],
412                                                 addr.ether_addr_octet[3],
413                                                 addr.ether_addr_octet[4],
414                                                 addr.ether_addr_octet[5]);
415
416         if (has_pan(&uuids) == FALSE)
417                 goto done;
418
419         network = connman_device_get_network(device, ident);
420         if (network != NULL)
421                 goto done;
422
423         network = connman_network_create(ident,
424                                         CONNMAN_NETWORK_TYPE_BLUETOOTH_PAN);
425         if (network == NULL)
426                 goto done;
427
428         connman_network_set_string(network, "Path", path);
429
430         connman_network_set_protocol(network, CONNMAN_NETWORK_PROTOCOL_IP);
431
432         connman_network_set_name(network, name);
433
434         connman_device_add_network(device, network);
435
436         connman_network_set_group(network, ident);
437
438         g_hash_table_insert(bluetooth_networks, g_strdup(path), network);
439
440 done:
441         dbus_message_unref(reply);
442
443         dbus_pending_call_unref(call);
444 }
445
446 static void add_network(struct connman_device *device, const char *path)
447 {
448         DBusMessage *message;
449         DBusPendingCall *call;
450
451         DBG("path %s", path);
452
453         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
454                                 BLUEZ_DEVICE_INTERFACE, GET_PROPERTIES);
455         if (message == NULL)
456                 return;
457
458         dbus_message_set_auto_start(message, FALSE);
459
460         if (dbus_connection_send_with_reply(connection, message,
461                                                 &call, TIMEOUT) == FALSE) {
462                 connman_error("Failed to get network properties for %s", path);
463                 goto done;
464         }
465
466         if (call == NULL) {
467                 connman_error("D-Bus connection not available");
468                 goto done;
469         }
470
471         dbus_pending_call_set_notify(call, network_properties_reply,
472                                                 g_strdup(path), g_free);
473
474 done:
475         dbus_message_unref(message);
476 }
477
478 static void check_networks(struct connman_device *device,
479                                                 DBusMessageIter *array)
480 {
481         DBusMessageIter value;
482
483         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
484                 return;
485
486         dbus_message_iter_recurse(array, &value);
487
488         while (dbus_message_iter_get_arg_type(&value) == DBUS_TYPE_OBJECT_PATH) {
489                 const char *path;
490
491                 dbus_message_iter_get_basic(&value, &path);
492
493                 add_network(device, path);
494
495                 dbus_message_iter_next(&value);
496         }
497 }
498
499 static gboolean adapter_changed(DBusConnection *connection,
500                                 DBusMessage *message, void *user_data)
501 {
502         const char *path = dbus_message_get_path(message);
503         struct connman_device *device;
504         DBusMessageIter iter, value;
505         const char *key;
506
507         DBG("path %s", path);
508
509         device = g_hash_table_lookup(bluetooth_devices, path);
510         if (device == NULL)
511                 return TRUE;
512
513         if (dbus_message_iter_init(message, &iter) == FALSE)
514                 return TRUE;
515
516         dbus_message_iter_get_basic(&iter, &key);
517
518         dbus_message_iter_next(&iter);
519         dbus_message_iter_recurse(&iter, &value);
520
521         if (g_str_equal(key, "Powered") == TRUE) {
522                 dbus_bool_t val;
523
524                 dbus_message_iter_get_basic(&value, &val);
525                 connman_device_set_powered(device, val);
526         } else if (g_str_equal(key, "Discovering") == TRUE) {
527                 dbus_bool_t val;
528
529                 dbus_message_iter_get_basic(&value, &val);
530                 connman_device_set_scanning(device, val);
531         } else if (g_str_equal(key, "Devices") == TRUE) {
532                 check_networks(device, &value);
533         }
534
535         return TRUE;
536 }
537
538 static gboolean device_removed(DBusConnection *connection,
539                                 DBusMessage *message, void *user_data)
540 {
541         const char *network_path, *identifier;
542         struct connman_network *network;
543         struct connman_device *device;
544         DBusMessageIter iter;
545
546         DBG("");
547
548         if (dbus_message_iter_init(message, &iter) == FALSE)
549                 return TRUE;
550
551         dbus_message_iter_get_basic(&iter, &network_path);
552
553         network = g_hash_table_lookup(bluetooth_networks, network_path);
554         if (network == NULL)
555                 return TRUE;
556
557         device = connman_network_get_device(network);
558         if (device == NULL)
559                 return TRUE;
560
561         identifier = connman_network_get_identifier(network);
562
563         g_hash_table_remove(bluetooth_networks, network_path);
564
565         connman_device_remove_network(device, identifier);
566
567         return TRUE;
568 }
569
570 static gboolean device_changed(DBusConnection *connection,
571                                 DBusMessage *message, void *user_data)
572 {
573         const char *path = dbus_message_get_path(message);
574         DBusMessageIter iter, value;
575         const char *key;
576
577         DBG("path %s", path);
578
579         if (dbus_message_iter_init(message, &iter) == FALSE)
580                 return TRUE;
581
582         dbus_message_iter_get_basic(&iter, &key);
583
584         dbus_message_iter_next(&iter);
585         dbus_message_iter_recurse(&iter, &value);
586
587         DBG("key %s", key);
588
589         if (g_str_equal(key, "UUIDs") == TRUE)
590                 add_network(NULL, path);
591
592         return TRUE;
593 }
594
595 static void adapter_properties_reply(DBusPendingCall *call, void *user_data)
596 {
597         char *path = user_data;
598         struct connman_device *device;
599         DBusMessage *reply;
600         DBusMessageIter networks;
601         const char *address = NULL, *name = NULL;
602         dbus_bool_t powered = FALSE, scanning = FALSE;
603         struct ether_addr addr;
604         char ident[13];
605
606         DBG("path %s", path);
607
608         reply = dbus_pending_call_steal_reply(call);
609
610         if (path == NULL)
611                 goto done;
612
613         extract_properties(reply, NULL, &address, &name, NULL,
614                                         &powered, &scanning, NULL, &networks);
615
616         if (address == NULL)
617                 goto done;
618
619         if (g_strcmp0(address, "00:00:00:00:00:00") == 0)
620                 goto done;
621
622         device = g_hash_table_lookup(bluetooth_devices, path);
623         if (device != NULL)
624                 goto update;
625
626         ether_aton_r(address, &addr);
627
628         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
629                                                 addr.ether_addr_octet[0],
630                                                 addr.ether_addr_octet[1],
631                                                 addr.ether_addr_octet[2],
632                                                 addr.ether_addr_octet[3],
633                                                 addr.ether_addr_octet[4],
634                                                 addr.ether_addr_octet[5]);
635
636         device = connman_device_create(ident, CONNMAN_DEVICE_TYPE_BLUETOOTH);
637         if (device == NULL)
638                 goto done;
639
640         connman_device_set_ident(device, ident);
641
642         connman_device_set_string(device, "Path", path);
643
644         if (connman_device_register(device) < 0) {
645                 connman_device_unref(device);
646                 goto done;
647         }
648
649         g_hash_table_insert(bluetooth_devices, g_strdup(path), device);
650
651 update:
652         connman_device_set_string(device, "Address", address);
653         connman_device_set_string(device, "Name", name);
654         connman_device_set_string(device, "Path", path);
655
656         connman_device_set_powered(device, powered);
657         connman_device_set_scanning(device, scanning);
658
659         if (powered == TRUE)
660                 check_networks(device, &networks);
661
662 done:
663         dbus_message_unref(reply);
664
665         dbus_pending_call_unref(call);
666 }
667
668 static void add_adapter(DBusConnection *connection, const char *path)
669 {
670         DBusMessage *message;
671         DBusPendingCall *call;
672
673         DBG("path %s", path);
674
675         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
676                                 BLUEZ_ADAPTER_INTERFACE, GET_PROPERTIES);
677         if (message == NULL)
678                 return;
679
680         dbus_message_set_auto_start(message, FALSE);
681
682         if (dbus_connection_send_with_reply(connection, message,
683                                                 &call, TIMEOUT) == FALSE) {
684                 connman_error("Failed to get adapter properties for %s", path);
685                 goto done;
686         }
687
688         if (call == NULL) {
689                 connman_error("D-Bus connection not available");
690                 goto done;
691         }
692
693         dbus_pending_call_set_notify(call, adapter_properties_reply,
694                                                 g_strdup(path), g_free);
695
696 done:
697         dbus_message_unref(message);
698 }
699
700 static gboolean adapter_added(DBusConnection *connection, DBusMessage *message,
701                                 void *user_data)
702 {
703         const char *path;
704
705         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
706                                 DBUS_TYPE_INVALID);
707         add_adapter(connection, path);
708         return TRUE;
709 }
710
711 static void remove_adapter(DBusConnection *connection, const char *path)
712 {
713         DBG("path %s", path);
714
715         g_hash_table_remove(bluetooth_devices, path);
716 }
717
718 static gboolean adapter_removed(DBusConnection *connection, DBusMessage *message,
719                                 void *user_data)
720 {
721         const char *path;
722
723         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
724                                 DBUS_TYPE_INVALID);
725         remove_adapter(connection, path);
726         return TRUE;
727 }
728
729 static void list_adapters_reply(DBusPendingCall *call, void *user_data)
730 {
731         DBusMessage *reply;
732         DBusError error;
733         char **adapters;
734         int i, num_adapters;
735
736         DBG("");
737
738         reply = dbus_pending_call_steal_reply(call);
739
740         dbus_error_init(&error);
741
742         if (dbus_set_error_from_message(&error, reply) == TRUE) {
743                 connman_error("%s", error.message);
744                 dbus_error_free(&error);
745                 goto done;
746         }
747
748         if (dbus_message_get_args(reply, &error,
749                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
750                                                 &adapters, &num_adapters,
751                                                 DBUS_TYPE_INVALID) == FALSE) {
752                 if (dbus_error_is_set(&error) == TRUE) {
753                         connman_error("%s", error.message);
754                         dbus_error_free(&error);
755                 } else
756                         connman_error("Wrong arguments for adapter list");
757                 goto done;
758         }
759
760         for (i = 0; i < num_adapters; i++)
761                 add_adapter(connection, adapters[i]);
762
763         g_strfreev(adapters);
764
765 done:
766         dbus_message_unref(reply);
767
768         dbus_pending_call_unref(call);
769 }
770
771 static void unregister_device(gpointer data)
772 {
773         struct connman_device *device = data;
774
775         DBG("");
776
777         connman_device_unregister(device);
778         connman_device_unref(device);
779 }
780
781 static void bluetooth_connect(DBusConnection *connection, void *user_data)
782 {
783         DBusMessage *message;
784         DBusPendingCall *call;
785
786         DBG("connection %p", connection);
787
788         bluetooth_devices = g_hash_table_new_full(g_str_hash, g_str_equal,
789                                                 g_free, unregister_device);
790
791         bluetooth_networks = g_hash_table_new_full(g_str_hash, g_str_equal,
792                                                 g_free, NULL);
793
794         message = dbus_message_new_method_call(BLUEZ_SERVICE, "/",
795                                 BLUEZ_MANAGER_INTERFACE, LIST_ADAPTERS);
796         if (message == NULL)
797                 return;
798
799         dbus_message_set_auto_start(message, FALSE);
800
801         if (dbus_connection_send_with_reply(connection, message,
802                                                 &call, TIMEOUT) == FALSE) {
803                 connman_error("Failed to get Bluetooth adapters");
804                 goto done;
805         }
806
807         if (call == NULL) {
808                 connman_error("D-Bus connection not available");
809                 goto done;
810         }
811
812         dbus_pending_call_set_notify(call, list_adapters_reply, NULL, NULL);
813
814 done:
815         dbus_message_unref(message);
816 }
817
818 static void bluetooth_disconnect(DBusConnection *connection, void *user_data)
819 {
820         DBG("connection %p", connection);
821
822         if (bluetooth_devices == NULL)
823                 return;
824
825         g_hash_table_destroy(bluetooth_networks);
826         g_hash_table_destroy(bluetooth_devices);
827         bluetooth_devices = NULL;
828 }
829
830 static int bluetooth_probe(struct connman_device *device)
831 {
832         DBG("device %p", device);
833
834         return 0;
835 }
836
837 static void bluetooth_remove(struct connman_device *device)
838 {
839         DBG("device %p", device);
840 }
841
842 static void powered_reply(DBusPendingCall *call, void *user_data)
843 {
844         DBusError error;
845         DBusMessage *reply;
846
847         DBG("");
848
849         reply = dbus_pending_call_steal_reply(call);
850
851         dbus_error_init(&error);
852
853         if (dbus_set_error_from_message(&error, reply) == TRUE) {
854                 connman_error("%s", error.message);
855                 dbus_error_free(&error);
856                 dbus_message_unref(reply);
857                 dbus_pending_call_unref(call);
858                 return;
859         }
860
861         dbus_message_unref(reply);
862         dbus_pending_call_unref(call);
863
864         add_adapter(connection, user_data);
865 }
866
867 static int change_powered(DBusConnection *connection, const char *path,
868                                                         dbus_bool_t powered)
869 {
870         DBusMessage *message;
871         DBusMessageIter iter;
872         DBusPendingCall *call;
873
874         DBG("");
875
876         if (path == NULL)
877                 return -EINVAL;
878
879         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
880                                         BLUEZ_ADAPTER_INTERFACE, SET_PROPERTY);
881         if (message == NULL)
882                 return -ENOMEM;
883
884         dbus_message_set_auto_start(message, FALSE);
885
886         dbus_message_iter_init_append(message, &iter);
887         connman_dbus_property_append_basic(&iter, "Powered",
888                                                 DBUS_TYPE_BOOLEAN, &powered);
889
890         if (dbus_connection_send_with_reply(connection, message,
891                                                 &call, TIMEOUT) == FALSE) {
892                 connman_error("Failed to change Powered property");
893                 dbus_message_unref(message);
894                 return -EINVAL;
895         }
896
897         if (call == NULL) {
898                 connman_error("D-Bus connection not available");
899                 dbus_message_unref(message);
900                 return -EINVAL;
901         }
902
903         dbus_pending_call_set_notify(call, powered_reply,
904                                         g_strdup(path), g_free);
905
906         dbus_message_unref(message);
907
908         return -EINPROGRESS;
909 }
910
911 static int bluetooth_enable(struct connman_device *device)
912 {
913         const char *path = connman_device_get_string(device, "Path");
914
915         DBG("device %p", device);
916
917         return change_powered(connection, path, TRUE);
918 }
919
920 static int bluetooth_disable(struct connman_device *device)
921 {
922         const char *path = connman_device_get_string(device, "Path");
923
924         DBG("device %p", device);
925
926         return change_powered(connection, path, FALSE);
927 }
928
929 static struct connman_device_driver bluetooth_driver = {
930         .name           = "bluetooth",
931         .type           = CONNMAN_DEVICE_TYPE_BLUETOOTH,
932         .probe          = bluetooth_probe,
933         .remove         = bluetooth_remove,
934         .enable         = bluetooth_enable,
935         .disable        = bluetooth_disable,
936 };
937
938 static int tech_probe(struct connman_technology *technology)
939 {
940         return 0;
941 }
942
943 static void tech_remove(struct connman_technology *technology)
944 {
945 }
946
947 static int tech_set_tethering(struct connman_technology *technology,
948                                                 connman_bool_t enabled)
949 {
950         return 0;
951 }
952
953 static struct connman_technology_driver tech_driver = {
954         .name           = "bluetooth",
955         .type           = CONNMAN_SERVICE_TYPE_BLUETOOTH,
956         .probe          = tech_probe,
957         .remove         = tech_remove,
958         .set_tethering  = tech_set_tethering,
959 };
960
961 static guint watch;
962 static guint added_watch;
963 static guint removed_watch;
964 static guint adapter_watch;
965 static guint device_watch;
966 static guint device_removed_watch;
967 static guint network_watch;
968
969 static int bluetooth_init(void)
970 {
971         int err;
972
973         connection = connman_dbus_get_connection();
974         if (connection == NULL)
975                 return -EIO;
976
977         watch = g_dbus_add_service_watch(connection, BLUEZ_SERVICE,
978                         bluetooth_connect, bluetooth_disconnect, NULL, NULL);
979
980         added_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
981                                                 BLUEZ_MANAGER_INTERFACE,
982                                                 ADAPTER_ADDED, adapter_added,
983                                                 NULL, NULL);
984
985         removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
986                                                 BLUEZ_MANAGER_INTERFACE,
987                                                 ADAPTER_REMOVED, adapter_removed,
988                                                 NULL, NULL);
989
990         adapter_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
991                                                 BLUEZ_ADAPTER_INTERFACE,
992                                                 PROPERTY_CHANGED, adapter_changed,
993                                                 NULL, NULL);
994
995         device_removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
996                                                 BLUEZ_ADAPTER_INTERFACE,
997                                                 DEVICE_REMOVED, device_removed,
998                                                 NULL, NULL);
999
1000         device_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1001                                                 BLUEZ_DEVICE_INTERFACE,
1002                                                 PROPERTY_CHANGED, device_changed,
1003                                                 NULL, NULL);
1004
1005         network_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1006                                                 BLUEZ_NETWORK_INTERFACE,
1007                                                 PROPERTY_CHANGED, network_changed,
1008                                                 NULL, NULL);
1009
1010         if (watch == 0 || added_watch == 0 || removed_watch == 0
1011                         || adapter_watch == 0 || network_watch == 0
1012                                 || device_watch == 0
1013                                         || device_removed_watch == 0) {
1014                 err = -EIO;
1015                 goto remove;
1016         }
1017
1018         err = connman_network_driver_register(&pan_driver);
1019         if (err < 0)
1020                 goto remove;
1021
1022         err = connman_device_driver_register(&bluetooth_driver);
1023         if (err < 0) {
1024                 connman_network_driver_unregister(&pan_driver);
1025                 goto remove;
1026         }
1027
1028         err = connman_technology_driver_register(&tech_driver);
1029         if (err < 0) {
1030                 connman_device_driver_unregister(&bluetooth_driver);
1031                 connman_network_driver_unregister(&pan_driver);
1032                 return err;
1033         }
1034
1035         return 0;
1036
1037 remove:
1038         g_dbus_remove_watch(connection, watch);
1039         g_dbus_remove_watch(connection, added_watch);
1040         g_dbus_remove_watch(connection, removed_watch);
1041         g_dbus_remove_watch(connection, adapter_watch);
1042         g_dbus_remove_watch(connection, device_removed_watch);
1043         g_dbus_remove_watch(connection, device_watch);
1044         g_dbus_remove_watch(connection, network_watch);
1045
1046         dbus_connection_unref(connection);
1047
1048         return err;
1049 }
1050
1051 static void bluetooth_exit(void)
1052 {
1053         g_dbus_remove_watch(connection, watch);
1054         g_dbus_remove_watch(connection, added_watch);
1055         g_dbus_remove_watch(connection, removed_watch);
1056         g_dbus_remove_watch(connection, adapter_watch);
1057         g_dbus_remove_watch(connection, device_removed_watch);
1058         g_dbus_remove_watch(connection, device_watch);
1059         g_dbus_remove_watch(connection, network_watch);
1060
1061         bluetooth_disconnect(connection, NULL);
1062
1063         connman_technology_driver_unregister(&tech_driver);
1064
1065         connman_device_driver_unregister(&bluetooth_driver);
1066         connman_network_driver_unregister(&pan_driver);
1067
1068         dbus_connection_unref(connection);
1069 }
1070
1071 CONNMAN_PLUGIN_DEFINE(bluetooth, "Bluetooth technology plugin", VERSION,
1072                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, bluetooth_init, bluetooth_exit)