Remove leftover defines
[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         device = g_hash_table_lookup(bluetooth_devices, path);
620         if (device != NULL)
621                 goto update;
622
623         ether_aton_r(address, &addr);
624
625         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
626                                                 addr.ether_addr_octet[0],
627                                                 addr.ether_addr_octet[1],
628                                                 addr.ether_addr_octet[2],
629                                                 addr.ether_addr_octet[3],
630                                                 addr.ether_addr_octet[4],
631                                                 addr.ether_addr_octet[5]);
632
633         device = connman_device_create(ident, CONNMAN_DEVICE_TYPE_BLUETOOTH);
634         if (device == NULL)
635                 goto done;
636
637         connman_device_set_ident(device, ident);
638
639         connman_device_set_mode(device, CONNMAN_DEVICE_MODE_NETWORK_MULTIPLE);
640
641         connman_device_set_string(device, "Path", path);
642
643         if (connman_device_register(device) < 0) {
644                 connman_device_unref(device);
645                 goto done;
646         }
647
648         g_hash_table_insert(bluetooth_devices, g_strdup(path), device);
649
650 update:
651         connman_device_set_string(device, "Address", address);
652         connman_device_set_string(device, "Name", name);
653         connman_device_set_string(device, "Path", path);
654
655         connman_device_set_powered(device, powered);
656         connman_device_set_scanning(device, scanning);
657
658         if (powered == TRUE)
659                 check_networks(device, &networks);
660
661 done:
662         dbus_message_unref(reply);
663
664         dbus_pending_call_unref(call);
665 }
666
667 static void add_adapter(DBusConnection *connection, const char *path)
668 {
669         DBusMessage *message;
670         DBusPendingCall *call;
671
672         DBG("path %s", path);
673
674         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
675                                 BLUEZ_ADAPTER_INTERFACE, GET_PROPERTIES);
676         if (message == NULL)
677                 return;
678
679         dbus_message_set_auto_start(message, FALSE);
680
681         if (dbus_connection_send_with_reply(connection, message,
682                                                 &call, TIMEOUT) == FALSE) {
683                 connman_error("Failed to get adapter properties for %s", path);
684                 goto done;
685         }
686
687         if (call == NULL) {
688                 connman_error("D-Bus connection not available");
689                 goto done;
690         }
691
692         dbus_pending_call_set_notify(call, adapter_properties_reply,
693                                                 g_strdup(path), g_free);
694
695 done:
696         dbus_message_unref(message);
697 }
698
699 static gboolean adapter_added(DBusConnection *connection, DBusMessage *message,
700                                 void *user_data)
701 {
702         const char *path;
703
704         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
705                                 DBUS_TYPE_INVALID);
706         add_adapter(connection, path);
707         return TRUE;
708 }
709
710 static void remove_adapter(DBusConnection *connection, const char *path)
711 {
712         DBG("path %s", path);
713
714         g_hash_table_remove(bluetooth_devices, path);
715 }
716
717 static gboolean adapter_removed(DBusConnection *connection, DBusMessage *message,
718                                 void *user_data)
719 {
720         const char *path;
721
722         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
723                                 DBUS_TYPE_INVALID);
724         remove_adapter(connection, path);
725         return TRUE;
726 }
727
728 static void list_adapters_reply(DBusPendingCall *call, void *user_data)
729 {
730         DBusMessage *reply;
731         DBusError error;
732         char **adapters;
733         int i, num_adapters;
734
735         DBG("");
736
737         reply = dbus_pending_call_steal_reply(call);
738
739         dbus_error_init(&error);
740
741         if (dbus_set_error_from_message(&error, reply) == TRUE) {
742                 connman_error("%s", error.message);
743                 dbus_error_free(&error);
744                 goto done;
745         }
746
747         if (dbus_message_get_args(reply, &error,
748                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
749                                                 &adapters, &num_adapters,
750                                                 DBUS_TYPE_INVALID) == FALSE) {
751                 if (dbus_error_is_set(&error) == TRUE) {
752                         connman_error("%s", error.message);
753                         dbus_error_free(&error);
754                 } else
755                         connman_error("Wrong arguments for adapter list");
756                 goto done;
757         }
758
759         for (i = 0; i < num_adapters; i++)
760                 add_adapter(connection, adapters[i]);
761
762         g_strfreev(adapters);
763
764 done:
765         dbus_message_unref(reply);
766
767         dbus_pending_call_unref(call);
768 }
769
770 static void unregister_device(gpointer data)
771 {
772         struct connman_device *device = data;
773
774         DBG("");
775
776         connman_device_unregister(device);
777         connman_device_unref(device);
778 }
779
780 static void bluetooth_connect(DBusConnection *connection, void *user_data)
781 {
782         DBusMessage *message;
783         DBusPendingCall *call;
784
785         DBG("connection %p", connection);
786
787         bluetooth_devices = g_hash_table_new_full(g_str_hash, g_str_equal,
788                                                 g_free, unregister_device);
789
790         bluetooth_networks = g_hash_table_new_full(g_str_hash, g_str_equal,
791                                                 g_free, NULL);
792
793         message = dbus_message_new_method_call(BLUEZ_SERVICE, "/",
794                                 BLUEZ_MANAGER_INTERFACE, LIST_ADAPTERS);
795         if (message == NULL)
796                 return;
797
798         dbus_message_set_auto_start(message, FALSE);
799
800         if (dbus_connection_send_with_reply(connection, message,
801                                                 &call, TIMEOUT) == FALSE) {
802                 connman_error("Failed to get Bluetooth adapters");
803                 goto done;
804         }
805
806         if (call == NULL) {
807                 connman_error("D-Bus connection not available");
808                 goto done;
809         }
810
811         dbus_pending_call_set_notify(call, list_adapters_reply, NULL, NULL);
812
813 done:
814         dbus_message_unref(message);
815 }
816
817 static void bluetooth_disconnect(DBusConnection *connection, void *user_data)
818 {
819         DBG("connection %p", connection);
820
821         if (bluetooth_devices == NULL)
822                 return;
823
824         g_hash_table_destroy(bluetooth_networks);
825         g_hash_table_destroy(bluetooth_devices);
826         bluetooth_devices = NULL;
827 }
828
829 static int bluetooth_probe(struct connman_device *device)
830 {
831         DBG("device %p", device);
832
833         return 0;
834 }
835
836 static void bluetooth_remove(struct connman_device *device)
837 {
838         DBG("device %p", device);
839 }
840
841 static void powered_reply(DBusPendingCall *call, void *user_data)
842 {
843         DBusError error;
844         DBusMessage *reply;
845
846         DBG("");
847
848         reply = dbus_pending_call_steal_reply(call);
849
850         dbus_error_init(&error);
851
852         if (dbus_set_error_from_message(&error, reply) == TRUE) {
853                 connman_error("%s", error.message);
854                 dbus_error_free(&error);
855                 dbus_message_unref(reply);
856                 dbus_pending_call_unref(call);
857                 return;
858         }
859
860         dbus_message_unref(reply);
861         dbus_pending_call_unref(call);
862
863         add_adapter(connection, user_data);
864 }
865
866 static int change_powered(DBusConnection *connection, const char *path,
867                                                         dbus_bool_t powered)
868 {
869         DBusMessage *message;
870         DBusMessageIter iter;
871         DBusPendingCall *call;
872
873         DBG("");
874
875         if (path == NULL)
876                 return -EINVAL;
877
878         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
879                                         BLUEZ_ADAPTER_INTERFACE, SET_PROPERTY);
880         if (message == NULL)
881                 return -ENOMEM;
882
883         dbus_message_set_auto_start(message, FALSE);
884
885         dbus_message_iter_init_append(message, &iter);
886         connman_dbus_property_append_basic(&iter, "Powered",
887                                                 DBUS_TYPE_BOOLEAN, &powered);
888
889         if (dbus_connection_send_with_reply(connection, message,
890                                                 &call, TIMEOUT) == FALSE) {
891                 connman_error("Failed to change Powered property");
892                 dbus_message_unref(message);
893                 return -EINVAL;
894         }
895
896         if (call == NULL) {
897                 connman_error("D-Bus connection not available");
898                 dbus_message_unref(message);
899                 return -EINVAL;
900         }
901
902         dbus_pending_call_set_notify(call, powered_reply,
903                                         g_strdup(path), g_free);
904
905         dbus_message_unref(message);
906
907         return -EINPROGRESS;
908 }
909
910 static int bluetooth_enable(struct connman_device *device)
911 {
912         const char *path = connman_device_get_string(device, "Path");
913
914         DBG("device %p", device);
915
916         return change_powered(connection, path, TRUE);
917 }
918
919 static int bluetooth_disable(struct connman_device *device)
920 {
921         const char *path = connman_device_get_string(device, "Path");
922
923         DBG("device %p", device);
924
925         return change_powered(connection, path, FALSE);
926 }
927
928 static struct connman_device_driver bluetooth_driver = {
929         .name           = "bluetooth",
930         .type           = CONNMAN_DEVICE_TYPE_BLUETOOTH,
931         .probe          = bluetooth_probe,
932         .remove         = bluetooth_remove,
933         .enable         = bluetooth_enable,
934         .disable        = bluetooth_disable,
935 };
936
937 static int tech_probe(struct connman_technology *technology)
938 {
939         return 0;
940 }
941
942 static void tech_remove(struct connman_technology *technology)
943 {
944 }
945
946 static int tech_set_tethering(struct connman_technology *technology,
947                                                 connman_bool_t enabled)
948 {
949         return 0;
950 }
951
952 static struct connman_technology_driver tech_driver = {
953         .name           = "bluetooth",
954         .type           = CONNMAN_SERVICE_TYPE_BLUETOOTH,
955         .probe          = tech_probe,
956         .remove         = tech_remove,
957         .set_tethering  = tech_set_tethering,
958 };
959
960 static guint watch;
961 static guint added_watch;
962 static guint removed_watch;
963 static guint adapter_watch;
964 static guint device_watch;
965 static guint device_removed_watch;
966 static guint network_watch;
967
968 static int bluetooth_init(void)
969 {
970         int err;
971
972         connection = connman_dbus_get_connection();
973         if (connection == NULL)
974                 return -EIO;
975
976         watch = g_dbus_add_service_watch(connection, BLUEZ_SERVICE,
977                         bluetooth_connect, bluetooth_disconnect, NULL, NULL);
978
979         added_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
980                                                 BLUEZ_MANAGER_INTERFACE,
981                                                 ADAPTER_ADDED, adapter_added,
982                                                 NULL, NULL);
983
984         removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
985                                                 BLUEZ_MANAGER_INTERFACE,
986                                                 ADAPTER_REMOVED, adapter_removed,
987                                                 NULL, NULL);
988
989         adapter_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
990                                                 BLUEZ_ADAPTER_INTERFACE,
991                                                 PROPERTY_CHANGED, adapter_changed,
992                                                 NULL, NULL);
993
994         device_removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
995                                                 BLUEZ_ADAPTER_INTERFACE,
996                                                 DEVICE_REMOVED, device_removed,
997                                                 NULL, NULL);
998
999         device_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1000                                                 BLUEZ_DEVICE_INTERFACE,
1001                                                 PROPERTY_CHANGED, device_changed,
1002                                                 NULL, NULL);
1003
1004         network_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1005                                                 BLUEZ_NETWORK_INTERFACE,
1006                                                 PROPERTY_CHANGED, network_changed,
1007                                                 NULL, NULL);
1008
1009         if (watch == 0 || added_watch == 0 || removed_watch == 0
1010                         || adapter_watch == 0 || network_watch == 0
1011                                 || device_watch == 0
1012                                         || device_removed_watch == 0) {
1013                 err = -EIO;
1014                 goto remove;
1015         }
1016
1017         err = connman_network_driver_register(&pan_driver);
1018         if (err < 0)
1019                 goto remove;
1020
1021         err = connman_device_driver_register(&bluetooth_driver);
1022         if (err < 0) {
1023                 connman_network_driver_unregister(&pan_driver);
1024                 goto remove;
1025         }
1026
1027         err = connman_technology_driver_register(&tech_driver);
1028         if (err < 0) {
1029                 connman_device_driver_unregister(&bluetooth_driver);
1030                 connman_network_driver_unregister(&pan_driver);
1031                 return err;
1032         }
1033
1034         return 0;
1035
1036 remove:
1037         g_dbus_remove_watch(connection, watch);
1038         g_dbus_remove_watch(connection, added_watch);
1039         g_dbus_remove_watch(connection, removed_watch);
1040         g_dbus_remove_watch(connection, adapter_watch);
1041         g_dbus_remove_watch(connection, device_removed_watch);
1042         g_dbus_remove_watch(connection, device_watch);
1043         g_dbus_remove_watch(connection, network_watch);
1044
1045         dbus_connection_unref(connection);
1046
1047         return err;
1048 }
1049
1050 static void bluetooth_exit(void)
1051 {
1052         g_dbus_remove_watch(connection, watch);
1053         g_dbus_remove_watch(connection, added_watch);
1054         g_dbus_remove_watch(connection, removed_watch);
1055         g_dbus_remove_watch(connection, adapter_watch);
1056         g_dbus_remove_watch(connection, device_removed_watch);
1057         g_dbus_remove_watch(connection, device_watch);
1058         g_dbus_remove_watch(connection, network_watch);
1059
1060         bluetooth_disconnect(connection, NULL);
1061
1062         connman_technology_driver_unregister(&tech_driver);
1063
1064         connman_device_driver_unregister(&bluetooth_driver);
1065         connman_network_driver_unregister(&pan_driver);
1066
1067         dbus_connection_unref(connection);
1068 }
1069
1070 CONNMAN_PLUGIN_DEFINE(bluetooth, "Bluetooth technology plugin", VERSION,
1071                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, bluetooth_init, bluetooth_exit)