device: Change signature of connman_device_remove_network()
[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 #define BLUEZ_NETWORK_SERVER            BLUEZ_SERVICE ".NetworkServer"
48
49 #define LIST_ADAPTERS                   "ListAdapters"
50 #define ADAPTER_ADDED                   "AdapterAdded"
51 #define ADAPTER_REMOVED                 "AdapterRemoved"
52 #define DEVICE_REMOVED                  "DeviceRemoved"
53
54 #define PROPERTY_CHANGED                "PropertyChanged"
55 #define GET_PROPERTIES                  "GetProperties"
56 #define SET_PROPERTY                    "SetProperty"
57
58 #define CONNECT                         "Connect"
59 #define DISCONNECT                      "Disconnect"
60
61 #define REGISTER                        "Register"
62 #define UNREGISTER                      "Unregister"
63
64 #define UUID_NAP        "00001116-0000-1000-8000-00805f9b34fb"
65
66 #define TIMEOUT 5000
67
68 static DBusConnection *connection;
69
70 static GHashTable *bluetooth_devices = NULL;
71 static GHashTable *bluetooth_networks = NULL;
72
73 static int pan_probe(struct connman_network *network)
74 {
75         DBG("network %p", network);
76
77         return 0;
78 }
79
80 static void pan_remove(struct connman_network *network)
81 {
82         DBG("network %p", network);
83 }
84
85 static void connect_reply(DBusPendingCall *call, void *user_data)
86 {
87         struct connman_network *network = user_data;
88         DBusMessage *reply;
89         DBusError error;
90         const char *interface = NULL;
91         int index;
92
93         DBG("network %p", network);
94
95         reply = dbus_pending_call_steal_reply(call);
96
97         dbus_error_init(&error);
98
99         if (dbus_set_error_from_message(&error, reply) == TRUE) {
100                 connman_error("%s", error.message);
101                 dbus_error_free(&error);
102
103                 goto err;
104         }
105
106         if (dbus_message_get_args(reply, &error,
107                                         DBUS_TYPE_STRING, &interface,
108                                                 DBUS_TYPE_INVALID) == FALSE) {
109                 if (dbus_error_is_set(&error) == TRUE) {
110                         connman_error("%s", error.message);
111                         dbus_error_free(&error);
112                 } else
113                         connman_error("Wrong arguments for connect");
114                 goto err;
115         }
116
117         if (interface == NULL)
118                 goto err;
119
120         DBG("interface %s", interface);
121
122         index = connman_inet_ifindex(interface);
123
124         connman_network_set_index(network, index);
125
126         connman_network_set_connected(network, TRUE);
127
128         dbus_message_unref(reply);
129
130         dbus_pending_call_unref(call);
131
132         return;
133 err:
134
135         connman_network_set_connected(network, FALSE);
136
137         dbus_message_unref(reply);
138
139         dbus_pending_call_unref(call);
140 }
141
142 static int pan_connect(struct connman_network *network)
143 {
144         const char *path = connman_network_get_string(network, "Path");
145         const char *uuid = "nap";
146         DBusMessage *message;
147         DBusPendingCall *call;
148
149         DBG("network %p", network);
150
151         if (path == NULL)
152                 return -EINVAL;
153
154         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
155                                         BLUEZ_NETWORK_INTERFACE, CONNECT);
156         if (message == NULL)
157                 return -ENOMEM;
158
159         dbus_message_set_auto_start(message, FALSE);
160
161         dbus_message_append_args(message, DBUS_TYPE_STRING, &uuid,
162                                                         DBUS_TYPE_INVALID);
163
164         if (dbus_connection_send_with_reply(connection, message,
165                                         &call, TIMEOUT * 10) == FALSE) {
166                 connman_error("Failed to connect service");
167                 dbus_message_unref(message);
168                 return -EINVAL;
169         }
170
171         if (call == NULL) {
172                 connman_error("D-Bus connection not available");
173                 dbus_message_unref(message);
174                 return -EINVAL;
175         }
176
177         dbus_pending_call_set_notify(call, connect_reply, network, NULL);
178
179         dbus_message_unref(message);
180
181         return -EINPROGRESS;
182 }
183
184 static void disconnect_reply(DBusPendingCall *call, void *user_data)
185 {
186         struct connman_network *network = user_data;
187         DBusMessage *reply;
188         DBusError error;
189
190         DBG("network %p", network);
191
192         reply = dbus_pending_call_steal_reply(call);
193
194         dbus_error_init(&error);
195
196         if (dbus_set_error_from_message(&error, reply) == TRUE) {
197                 connman_error("%s", error.message);
198                 dbus_error_free(&error);
199                 goto done;
200         }
201
202         if (dbus_message_get_args(reply, &error, DBUS_TYPE_INVALID) == FALSE) {
203                 if (dbus_error_is_set(&error) == TRUE) {
204                         connman_error("%s", error.message);
205                         dbus_error_free(&error);
206                 } else
207                         connman_error("Wrong arguments for disconnect");
208                 goto done;
209         }
210
211         connman_network_set_connected(network, FALSE);
212
213 done:
214         dbus_message_unref(reply);
215
216         dbus_pending_call_unref(call);
217
218         connman_network_unref(network);
219 }
220
221 static int pan_disconnect(struct connman_network *network)
222 {
223         const char *path = connman_network_get_string(network, "Path");
224         DBusMessage *message;
225         DBusPendingCall *call;
226
227         DBG("network %p", network);
228
229         if (path == NULL)
230                 return -EINVAL;
231
232         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
233                                         BLUEZ_NETWORK_INTERFACE, DISCONNECT);
234         if (message == NULL)
235                 return -ENOMEM;
236
237         dbus_message_set_auto_start(message, FALSE);
238
239         dbus_message_append_args(message, DBUS_TYPE_INVALID);
240
241         if (dbus_connection_send_with_reply(connection, message,
242                                                 &call, TIMEOUT) == FALSE) {
243                 connman_error("Failed to disconnect service");
244                 dbus_message_unref(message);
245                 return -EINVAL;
246         }
247
248         if (call == NULL) {
249                 connman_error("D-Bus connection not available");
250                 dbus_message_unref(message);
251                 return -EINVAL;
252         }
253
254         connman_network_ref(network);
255
256         connman_network_set_associating(network, FALSE);
257
258         dbus_pending_call_set_notify(call, disconnect_reply, network, NULL);
259
260         dbus_message_unref(message);
261
262         return 0;
263 }
264
265 static struct connman_network_driver pan_driver = {
266         .name           = "bluetooth-pan",
267         .type           = CONNMAN_NETWORK_TYPE_BLUETOOTH_PAN,
268         .probe          = pan_probe,
269         .remove         = pan_remove,
270         .connect        = pan_connect,
271         .disconnect     = pan_disconnect,
272 };
273
274 static gboolean network_changed(DBusConnection *connection,
275                                 DBusMessage *message, void *user_data)
276 {
277         const char *path = dbus_message_get_path(message);
278         struct connman_network *network;
279         DBusMessageIter iter, value;
280         const char *key;
281
282         DBG("path %s", path);
283
284         network = g_hash_table_lookup(bluetooth_networks, path);
285         if (network == NULL)
286                 return TRUE;
287
288         if (dbus_message_iter_init(message, &iter) == FALSE)
289                 return TRUE;
290
291         dbus_message_iter_get_basic(&iter, &key);
292
293         dbus_message_iter_next(&iter);
294         dbus_message_iter_recurse(&iter, &value);
295
296         if (g_str_equal(key, "Connected") == TRUE) {
297                 dbus_bool_t connected;
298
299                 dbus_message_iter_get_basic(&value, &connected);
300
301                 if (connected == TRUE)
302                         return TRUE;
303
304                 connman_network_set_associating(network, FALSE);
305                 connman_network_set_connected(network, FALSE);
306         }
307
308         return TRUE;
309 }
310
311 static void extract_properties(DBusMessage *reply, const char **parent,
312                                                 const char **address,
313                                                 const char **name,
314                                                 const char **alias,
315                                                 dbus_bool_t *powered,
316                                                 dbus_bool_t *scanning,
317                                                 DBusMessageIter *uuids,
318                                                 DBusMessageIter *networks)
319 {
320         DBusMessageIter array, dict;
321
322         if (dbus_message_iter_init(reply, &array) == FALSE)
323                 return;
324
325         if (dbus_message_iter_get_arg_type(&array) != DBUS_TYPE_ARRAY)
326                 return;
327
328         dbus_message_iter_recurse(&array, &dict);
329
330         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
331                 DBusMessageIter entry, value;
332                 const char *key;
333
334                 dbus_message_iter_recurse(&dict, &entry);
335                 dbus_message_iter_get_basic(&entry, &key);
336
337                 dbus_message_iter_next(&entry);
338                 dbus_message_iter_recurse(&entry, &value);
339
340                 if (g_str_equal(key, "Adapter") == TRUE) {
341                         if (parent != NULL)
342                                 dbus_message_iter_get_basic(&value, parent);
343                 } else if (g_str_equal(key, "Address") == TRUE) {
344                         if (address != NULL)
345                                 dbus_message_iter_get_basic(&value, address);
346                 } else if (g_str_equal(key, "Name") == TRUE) {
347                         if (name != NULL)
348                                 dbus_message_iter_get_basic(&value, name);
349                 } else if (g_str_equal(key, "Alias") == TRUE) {
350                         if (alias != NULL)
351                                 dbus_message_iter_get_basic(&value, alias);
352                 } else if (g_str_equal(key, "Powered") == TRUE) {
353                         if (powered != NULL)
354                                 dbus_message_iter_get_basic(&value, powered);
355                 } else if (g_str_equal(key, "Discovering") == TRUE) {
356                         if (scanning != NULL)
357                                 dbus_message_iter_get_basic(&value, scanning);
358                 } else if (g_str_equal(key, "Devices") == TRUE) {
359                         if (networks != NULL)
360                                 memcpy(networks, &value, sizeof(value));
361                 } else if (g_str_equal(key, "UUIDs") == TRUE) {
362                         if (uuids != NULL)
363                                 memcpy(uuids, &value, sizeof(value));
364                 }
365
366                 dbus_message_iter_next(&dict);
367         }
368 }
369
370 static dbus_bool_t has_pan(DBusMessageIter *array)
371 {
372         DBusMessageIter value;
373
374         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
375                 return FALSE;
376
377         dbus_message_iter_recurse(array, &value);
378
379         while (dbus_message_iter_get_arg_type(&value) == DBUS_TYPE_STRING) {
380                 const char *uuid;
381
382                 dbus_message_iter_get_basic(&value, &uuid);
383
384                 if (g_strcmp0(uuid, UUID_NAP) == 0)
385                         return TRUE;
386
387                 dbus_message_iter_next(&value);
388         }
389
390         return FALSE;
391 }
392
393 static void network_properties_reply(DBusPendingCall *call, void *user_data)
394 {
395         char *path = user_data;
396         struct connman_device *device;
397         struct connman_network *network;
398         DBusMessage *reply;
399         DBusMessageIter uuids;
400         const char *parent = NULL, *address = NULL, *name = NULL;
401         struct ether_addr addr;
402         char ident[13];
403
404         reply = dbus_pending_call_steal_reply(call);
405
406         extract_properties(reply, &parent, &address, NULL, &name,
407                                                 NULL, NULL, &uuids, NULL);
408
409         if (parent == NULL)
410                 goto done;
411
412         device = g_hash_table_lookup(bluetooth_devices, parent);
413         if (device == NULL)
414                 goto done;
415
416         if (address == NULL)
417                 goto done;
418
419         ether_aton_r(address, &addr);
420
421         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
422                                                 addr.ether_addr_octet[0],
423                                                 addr.ether_addr_octet[1],
424                                                 addr.ether_addr_octet[2],
425                                                 addr.ether_addr_octet[3],
426                                                 addr.ether_addr_octet[4],
427                                                 addr.ether_addr_octet[5]);
428
429         if (has_pan(&uuids) == FALSE)
430                 goto done;
431
432         network = connman_device_get_network(device, ident);
433         if (network != NULL)
434                 goto done;
435
436         network = connman_network_create(ident,
437                                         CONNMAN_NETWORK_TYPE_BLUETOOTH_PAN);
438         if (network == NULL)
439                 goto done;
440
441         connman_network_set_string(network, "Path", path);
442
443         connman_network_set_name(network, name);
444
445         connman_device_add_network(device, network);
446
447         connman_network_set_group(network, ident);
448
449         g_hash_table_insert(bluetooth_networks, g_strdup(path), network);
450
451 done:
452         dbus_message_unref(reply);
453
454         dbus_pending_call_unref(call);
455 }
456
457 static void add_network(struct connman_device *device, const char *path)
458 {
459         DBusMessage *message;
460         DBusPendingCall *call;
461
462         DBG("path %s", path);
463
464         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
465                                 BLUEZ_DEVICE_INTERFACE, GET_PROPERTIES);
466         if (message == NULL)
467                 return;
468
469         dbus_message_set_auto_start(message, FALSE);
470
471         if (dbus_connection_send_with_reply(connection, message,
472                                                 &call, TIMEOUT) == FALSE) {
473                 connman_error("Failed to get network properties for %s", path);
474                 goto done;
475         }
476
477         if (call == NULL) {
478                 connman_error("D-Bus connection not available");
479                 goto done;
480         }
481
482         dbus_pending_call_set_notify(call, network_properties_reply,
483                                                 g_strdup(path), g_free);
484
485 done:
486         dbus_message_unref(message);
487 }
488
489 static void check_networks(struct connman_device *device,
490                                                 DBusMessageIter *array)
491 {
492         DBusMessageIter value;
493
494         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
495                 return;
496
497         dbus_message_iter_recurse(array, &value);
498
499         while (dbus_message_iter_get_arg_type(&value) == DBUS_TYPE_OBJECT_PATH) {
500                 const char *path;
501
502                 dbus_message_iter_get_basic(&value, &path);
503
504                 add_network(device, path);
505
506                 dbus_message_iter_next(&value);
507         }
508 }
509
510 static gboolean adapter_changed(DBusConnection *connection,
511                                 DBusMessage *message, void *user_data)
512 {
513         const char *path = dbus_message_get_path(message);
514         struct connman_device *device;
515         DBusMessageIter iter, value;
516         const char *key;
517
518         DBG("path %s", path);
519
520         device = g_hash_table_lookup(bluetooth_devices, path);
521         if (device == NULL)
522                 return TRUE;
523
524         if (dbus_message_iter_init(message, &iter) == FALSE)
525                 return TRUE;
526
527         dbus_message_iter_get_basic(&iter, &key);
528
529         dbus_message_iter_next(&iter);
530         dbus_message_iter_recurse(&iter, &value);
531
532         if (g_str_equal(key, "Powered") == TRUE) {
533                 dbus_bool_t val;
534
535                 dbus_message_iter_get_basic(&value, &val);
536                 connman_device_set_powered(device, val);
537         } else if (g_str_equal(key, "Discovering") == TRUE) {
538                 dbus_bool_t val;
539
540                 dbus_message_iter_get_basic(&value, &val);
541                 connman_device_set_scanning(device, val);
542         } else if (g_str_equal(key, "Devices") == TRUE) {
543                 check_networks(device, &value);
544         }
545
546         return TRUE;
547 }
548
549 static gboolean device_removed(DBusConnection *connection,
550                                 DBusMessage *message, void *user_data)
551 {
552         const char *network_path;
553         struct connman_network *network;
554         struct connman_device *device;
555         DBusMessageIter iter;
556
557         DBG("");
558
559         if (dbus_message_iter_init(message, &iter) == FALSE)
560                 return TRUE;
561
562         dbus_message_iter_get_basic(&iter, &network_path);
563
564         network = g_hash_table_lookup(bluetooth_networks, network_path);
565         if (network == NULL)
566                 return TRUE;
567
568         device = connman_network_get_device(network);
569         if (device == NULL)
570                 return TRUE;
571
572         g_hash_table_remove(bluetooth_networks, network_path);
573
574         connman_device_remove_network(device, network);
575
576         return TRUE;
577 }
578
579 static gboolean device_changed(DBusConnection *connection,
580                                 DBusMessage *message, void *user_data)
581 {
582         const char *path = dbus_message_get_path(message);
583         DBusMessageIter iter, value;
584         const char *key;
585
586         DBG("path %s", path);
587
588         if (dbus_message_iter_init(message, &iter) == FALSE)
589                 return TRUE;
590
591         dbus_message_iter_get_basic(&iter, &key);
592
593         dbus_message_iter_next(&iter);
594         dbus_message_iter_recurse(&iter, &value);
595
596         DBG("key %s", key);
597
598         if (g_str_equal(key, "UUIDs") == TRUE)
599                 add_network(NULL, path);
600
601         return TRUE;
602 }
603
604 static void adapter_properties_reply(DBusPendingCall *call, void *user_data)
605 {
606         char *path = user_data;
607         struct connman_device *device;
608         DBusMessage *reply;
609         DBusMessageIter networks;
610         const char *address = NULL, *name = NULL;
611         dbus_bool_t powered = FALSE, scanning = FALSE;
612         struct ether_addr addr;
613         char ident[13];
614
615         DBG("path %s", path);
616
617         reply = dbus_pending_call_steal_reply(call);
618
619         if (path == NULL)
620                 goto done;
621
622         extract_properties(reply, NULL, &address, &name, NULL,
623                                         &powered, &scanning, NULL, &networks);
624
625         if (address == NULL)
626                 goto done;
627
628         if (g_strcmp0(address, "00:00:00:00:00:00") == 0)
629                 goto done;
630
631         device = g_hash_table_lookup(bluetooth_devices, path);
632         if (device != NULL)
633                 goto update;
634
635         ether_aton_r(address, &addr);
636
637         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
638                                                 addr.ether_addr_octet[0],
639                                                 addr.ether_addr_octet[1],
640                                                 addr.ether_addr_octet[2],
641                                                 addr.ether_addr_octet[3],
642                                                 addr.ether_addr_octet[4],
643                                                 addr.ether_addr_octet[5]);
644
645         device = connman_device_create(ident, CONNMAN_DEVICE_TYPE_BLUETOOTH);
646         if (device == NULL)
647                 goto done;
648
649         connman_device_set_ident(device, ident);
650
651         connman_device_set_string(device, "Path", path);
652
653         if (connman_device_register(device) < 0) {
654                 connman_device_unref(device);
655                 goto done;
656         }
657
658         g_hash_table_insert(bluetooth_devices, g_strdup(path), device);
659
660 update:
661         connman_device_set_string(device, "Address", address);
662         connman_device_set_string(device, "Name", name);
663         connman_device_set_string(device, "Path", path);
664
665         connman_device_set_powered(device, powered);
666         connman_device_set_scanning(device, scanning);
667
668         if (powered == TRUE)
669                 check_networks(device, &networks);
670
671 done:
672         dbus_message_unref(reply);
673
674         dbus_pending_call_unref(call);
675 }
676
677 static void add_adapter(DBusConnection *connection, const char *path)
678 {
679         DBusMessage *message;
680         DBusPendingCall *call;
681
682         DBG("path %s", path);
683
684         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
685                                 BLUEZ_ADAPTER_INTERFACE, GET_PROPERTIES);
686         if (message == NULL)
687                 return;
688
689         dbus_message_set_auto_start(message, FALSE);
690
691         if (dbus_connection_send_with_reply(connection, message,
692                                                 &call, TIMEOUT) == FALSE) {
693                 connman_error("Failed to get adapter properties for %s", path);
694                 goto done;
695         }
696
697         if (call == NULL) {
698                 connman_error("D-Bus connection not available");
699                 goto done;
700         }
701
702         dbus_pending_call_set_notify(call, adapter_properties_reply,
703                                                 g_strdup(path), g_free);
704
705 done:
706         dbus_message_unref(message);
707 }
708
709 static gboolean adapter_added(DBusConnection *connection, DBusMessage *message,
710                                 void *user_data)
711 {
712         const char *path;
713
714         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
715                                 DBUS_TYPE_INVALID);
716         add_adapter(connection, path);
717         return TRUE;
718 }
719
720 static void remove_adapter(DBusConnection *connection, const char *path)
721 {
722         DBG("path %s", path);
723
724         g_hash_table_remove(bluetooth_devices, path);
725 }
726
727 static gboolean adapter_removed(DBusConnection *connection, DBusMessage *message,
728                                 void *user_data)
729 {
730         const char *path;
731
732         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
733                                 DBUS_TYPE_INVALID);
734         remove_adapter(connection, path);
735         return TRUE;
736 }
737
738 static void list_adapters_reply(DBusPendingCall *call, void *user_data)
739 {
740         DBusMessage *reply;
741         DBusError error;
742         char **adapters;
743         int i, num_adapters;
744
745         DBG("");
746
747         reply = dbus_pending_call_steal_reply(call);
748
749         dbus_error_init(&error);
750
751         if (dbus_set_error_from_message(&error, reply) == TRUE) {
752                 connman_error("%s", error.message);
753                 dbus_error_free(&error);
754                 goto done;
755         }
756
757         if (dbus_message_get_args(reply, &error,
758                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
759                                                 &adapters, &num_adapters,
760                                                 DBUS_TYPE_INVALID) == FALSE) {
761                 if (dbus_error_is_set(&error) == TRUE) {
762                         connman_error("%s", error.message);
763                         dbus_error_free(&error);
764                 } else
765                         connman_error("Wrong arguments for adapter list");
766                 goto done;
767         }
768
769         for (i = 0; i < num_adapters; i++)
770                 add_adapter(connection, adapters[i]);
771
772         g_strfreev(adapters);
773
774 done:
775         dbus_message_unref(reply);
776
777         dbus_pending_call_unref(call);
778 }
779
780 static void unregister_device(gpointer data)
781 {
782         struct connman_device *device = data;
783
784         DBG("");
785
786         connman_device_unregister(device);
787         connman_device_unref(device);
788 }
789
790 static void bluetooth_connect(DBusConnection *connection, void *user_data)
791 {
792         DBusMessage *message;
793         DBusPendingCall *call;
794
795         DBG("connection %p", connection);
796
797         bluetooth_devices = g_hash_table_new_full(g_str_hash, g_str_equal,
798                                                 g_free, unregister_device);
799
800         bluetooth_networks = g_hash_table_new_full(g_str_hash, g_str_equal,
801                                                 g_free, NULL);
802
803         message = dbus_message_new_method_call(BLUEZ_SERVICE, "/",
804                                 BLUEZ_MANAGER_INTERFACE, LIST_ADAPTERS);
805         if (message == NULL)
806                 return;
807
808         dbus_message_set_auto_start(message, FALSE);
809
810         if (dbus_connection_send_with_reply(connection, message,
811                                                 &call, TIMEOUT) == FALSE) {
812                 connman_error("Failed to get Bluetooth adapters");
813                 goto done;
814         }
815
816         if (call == NULL) {
817                 connman_error("D-Bus connection not available");
818                 goto done;
819         }
820
821         dbus_pending_call_set_notify(call, list_adapters_reply, NULL, NULL);
822
823 done:
824         dbus_message_unref(message);
825 }
826
827 static void bluetooth_disconnect(DBusConnection *connection, void *user_data)
828 {
829         DBG("connection %p", connection);
830
831         if (bluetooth_devices == NULL)
832                 return;
833
834         g_hash_table_destroy(bluetooth_networks);
835         g_hash_table_destroy(bluetooth_devices);
836         bluetooth_devices = NULL;
837 }
838
839 static int bluetooth_probe(struct connman_device *device)
840 {
841         DBG("device %p", device);
842
843         return 0;
844 }
845
846 static void bluetooth_remove(struct connman_device *device)
847 {
848         DBG("device %p", device);
849 }
850
851 static void powered_reply(DBusPendingCall *call, void *user_data)
852 {
853         DBusError error;
854         DBusMessage *reply;
855
856         DBG("");
857
858         reply = dbus_pending_call_steal_reply(call);
859
860         dbus_error_init(&error);
861
862         if (dbus_set_error_from_message(&error, reply) == TRUE) {
863                 connman_error("%s", error.message);
864                 dbus_error_free(&error);
865                 dbus_message_unref(reply);
866                 dbus_pending_call_unref(call);
867                 return;
868         }
869
870         dbus_message_unref(reply);
871         dbus_pending_call_unref(call);
872
873         add_adapter(connection, user_data);
874 }
875
876 static int change_powered(DBusConnection *connection, const char *path,
877                                                         dbus_bool_t powered)
878 {
879         DBusMessage *message;
880         DBusMessageIter iter;
881         DBusPendingCall *call;
882
883         DBG("");
884
885         if (path == NULL)
886                 return -EINVAL;
887
888         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
889                                         BLUEZ_ADAPTER_INTERFACE, SET_PROPERTY);
890         if (message == NULL)
891                 return -ENOMEM;
892
893         dbus_message_set_auto_start(message, FALSE);
894
895         dbus_message_iter_init_append(message, &iter);
896         connman_dbus_property_append_basic(&iter, "Powered",
897                                                 DBUS_TYPE_BOOLEAN, &powered);
898
899         if (dbus_connection_send_with_reply(connection, message,
900                                                 &call, TIMEOUT) == FALSE) {
901                 connman_error("Failed to change Powered property");
902                 dbus_message_unref(message);
903                 return -EINVAL;
904         }
905
906         if (call == NULL) {
907                 connman_error("D-Bus connection not available");
908                 dbus_message_unref(message);
909                 return -EINVAL;
910         }
911
912         dbus_pending_call_set_notify(call, powered_reply,
913                                         g_strdup(path), g_free);
914
915         dbus_message_unref(message);
916
917         return -EINPROGRESS;
918 }
919
920 static int bluetooth_enable(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, TRUE);
927 }
928
929 static int bluetooth_disable(struct connman_device *device)
930 {
931         const char *path = connman_device_get_string(device, "Path");
932
933         DBG("device %p", device);
934
935         return change_powered(connection, path, FALSE);
936 }
937
938 static struct connman_device_driver bluetooth_driver = {
939         .name           = "bluetooth",
940         .type           = CONNMAN_DEVICE_TYPE_BLUETOOTH,
941         .probe          = bluetooth_probe,
942         .remove         = bluetooth_remove,
943         .enable         = bluetooth_enable,
944         .disable        = bluetooth_disable,
945 };
946
947 static int tech_probe(struct connman_technology *technology)
948 {
949         return 0;
950 }
951
952 static void tech_remove(struct connman_technology *technology)
953 {
954 }
955
956 static void server_register_reply(DBusPendingCall *call, void *user_data)
957 {
958         struct connman_technology *technology = user_data;
959         DBusError error;
960         DBusMessage *reply;
961
962         DBG("");
963
964         reply = dbus_pending_call_steal_reply(call);
965
966         dbus_error_init(&error);
967
968         if (dbus_set_error_from_message(&error, reply) == TRUE) {
969                 connman_error("%s", error.message);
970                 dbus_error_free(&error);
971                 dbus_message_unref(reply);
972                 dbus_pending_call_unref(call);
973                 return;
974         }
975
976         dbus_message_unref(reply);
977         dbus_pending_call_unref(call);
978
979         connman_technology_tethering_notify(technology, TRUE);
980 }
981
982 static void server_unregister_reply(DBusPendingCall *call, void *user_data)
983 {
984         struct connman_technology *technology = user_data;
985         DBusError error;
986         DBusMessage *reply;
987
988         DBG("");
989
990         reply = dbus_pending_call_steal_reply(call);
991
992         dbus_error_init(&error);
993
994         if (dbus_set_error_from_message(&error, reply) == TRUE) {
995                 connman_error("%s", error.message);
996                 dbus_error_free(&error);
997                 dbus_message_unref(reply);
998                 dbus_pending_call_unref(call);
999                 return;
1000         }
1001
1002         dbus_message_unref(reply);
1003         dbus_pending_call_unref(call);
1004
1005         connman_technology_tethering_notify(technology, FALSE);
1006 }
1007
1008
1009 static void server_register(const char *path, const char *uuid,
1010                                 struct connman_technology *technology,
1011                                 const char *bridge, connman_bool_t enabled)
1012 {
1013         DBusMessage *message;
1014         DBusPendingCall *call;
1015         char *command;
1016
1017         DBG("path %s enabled %d", path, enabled);
1018
1019         command = enabled ? REGISTER : UNREGISTER;
1020
1021         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
1022                                         BLUEZ_NETWORK_SERVER, command);
1023         if (message == NULL)
1024                 return;
1025
1026         dbus_message_set_auto_start(message, FALSE);
1027
1028         dbus_message_append_args(message, DBUS_TYPE_STRING, &uuid,
1029                                                         DBUS_TYPE_INVALID);
1030
1031         if (enabled == TRUE)
1032                 dbus_message_append_args(message, DBUS_TYPE_STRING, &bridge,
1033                                                         DBUS_TYPE_INVALID);
1034
1035         if (dbus_connection_send_with_reply(connection, message,
1036                                                 &call, TIMEOUT) == FALSE) {
1037                 connman_error("Failed to enable PAN server");
1038                 dbus_message_unref(message);
1039                 return;
1040         }
1041
1042         if (call == NULL) {
1043                 connman_error("D-Bus connection not available");
1044                 dbus_message_unref(message);
1045                 return;
1046         }
1047
1048         if (enabled == TRUE)
1049                 dbus_pending_call_set_notify(call, server_register_reply,
1050                                                 technology, NULL);
1051         else
1052                 dbus_pending_call_set_notify(call, server_unregister_reply,
1053                                                 technology, NULL);
1054
1055         dbus_message_unref(message);
1056 }
1057
1058 struct tethering_info {
1059         struct connman_technology *technology;
1060         const char *bridge;
1061 };
1062
1063 static void enable_nap(gpointer key, gpointer value, gpointer user_data)
1064 {
1065         struct tethering_info *info = user_data;
1066         struct connman_device *device = value;
1067         const char *path;
1068
1069         DBG("");
1070
1071         path = connman_device_get_string(device, "Path");
1072
1073         server_register(path, "nap", info->technology, info->bridge, TRUE);
1074 }
1075
1076 static void disable_nap(gpointer key, gpointer value, gpointer user_data)
1077 {
1078         struct tethering_info *info = user_data;
1079         struct connman_device *device = value;
1080         const char *path;
1081
1082         DBG("");
1083
1084         path = connman_device_get_string(device, "Path");
1085
1086         server_register(path, "nap", info->technology, info->bridge, FALSE);
1087 }
1088
1089 static int tech_set_tethering(struct connman_technology *technology,
1090                                 const char *identifier, const char *passphrase,
1091                                 const char *bridge, connman_bool_t enabled)
1092 {
1093         struct tethering_info info = {
1094                 .technology     = technology,
1095                 .bridge         = bridge,
1096         };
1097
1098         DBG("bridge %s", bridge);
1099
1100         if (enabled)
1101                 g_hash_table_foreach(bluetooth_devices, enable_nap, &info);
1102         else
1103                 g_hash_table_foreach(bluetooth_devices, disable_nap, &info);
1104
1105         return 0;
1106 }
1107
1108 static struct connman_technology_driver tech_driver = {
1109         .name           = "bluetooth",
1110         .type           = CONNMAN_SERVICE_TYPE_BLUETOOTH,
1111         .probe          = tech_probe,
1112         .remove         = tech_remove,
1113         .set_tethering  = tech_set_tethering,
1114 };
1115
1116 static guint watch;
1117 static guint added_watch;
1118 static guint removed_watch;
1119 static guint adapter_watch;
1120 static guint device_watch;
1121 static guint device_removed_watch;
1122 static guint network_watch;
1123
1124 static int bluetooth_init(void)
1125 {
1126         int err;
1127
1128         connection = connman_dbus_get_connection();
1129         if (connection == NULL)
1130                 return -EIO;
1131
1132         watch = g_dbus_add_service_watch(connection, BLUEZ_SERVICE,
1133                         bluetooth_connect, bluetooth_disconnect, NULL, NULL);
1134
1135         added_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1136                                                 BLUEZ_MANAGER_INTERFACE,
1137                                                 ADAPTER_ADDED, adapter_added,
1138                                                 NULL, NULL);
1139
1140         removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1141                                                 BLUEZ_MANAGER_INTERFACE,
1142                                                 ADAPTER_REMOVED, adapter_removed,
1143                                                 NULL, NULL);
1144
1145         adapter_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1146                                                 BLUEZ_ADAPTER_INTERFACE,
1147                                                 PROPERTY_CHANGED, adapter_changed,
1148                                                 NULL, NULL);
1149
1150         device_removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1151                                                 BLUEZ_ADAPTER_INTERFACE,
1152                                                 DEVICE_REMOVED, device_removed,
1153                                                 NULL, NULL);
1154
1155         device_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1156                                                 BLUEZ_DEVICE_INTERFACE,
1157                                                 PROPERTY_CHANGED, device_changed,
1158                                                 NULL, NULL);
1159
1160         network_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1161                                                 BLUEZ_NETWORK_INTERFACE,
1162                                                 PROPERTY_CHANGED, network_changed,
1163                                                 NULL, NULL);
1164
1165         if (watch == 0 || added_watch == 0 || removed_watch == 0
1166                         || adapter_watch == 0 || network_watch == 0
1167                                 || device_watch == 0
1168                                         || device_removed_watch == 0) {
1169                 err = -EIO;
1170                 goto remove;
1171         }
1172
1173         err = connman_network_driver_register(&pan_driver);
1174         if (err < 0)
1175                 goto remove;
1176
1177         err = connman_device_driver_register(&bluetooth_driver);
1178         if (err < 0) {
1179                 connman_network_driver_unregister(&pan_driver);
1180                 goto remove;
1181         }
1182
1183         err = connman_technology_driver_register(&tech_driver);
1184         if (err < 0) {
1185                 connman_device_driver_unregister(&bluetooth_driver);
1186                 connman_network_driver_unregister(&pan_driver);
1187                 return err;
1188         }
1189
1190         return 0;
1191
1192 remove:
1193         g_dbus_remove_watch(connection, watch);
1194         g_dbus_remove_watch(connection, added_watch);
1195         g_dbus_remove_watch(connection, removed_watch);
1196         g_dbus_remove_watch(connection, adapter_watch);
1197         g_dbus_remove_watch(connection, device_removed_watch);
1198         g_dbus_remove_watch(connection, device_watch);
1199         g_dbus_remove_watch(connection, network_watch);
1200
1201         dbus_connection_unref(connection);
1202
1203         return err;
1204 }
1205
1206 static void bluetooth_exit(void)
1207 {
1208         g_dbus_remove_watch(connection, watch);
1209         g_dbus_remove_watch(connection, added_watch);
1210         g_dbus_remove_watch(connection, removed_watch);
1211         g_dbus_remove_watch(connection, adapter_watch);
1212         g_dbus_remove_watch(connection, device_removed_watch);
1213         g_dbus_remove_watch(connection, device_watch);
1214         g_dbus_remove_watch(connection, network_watch);
1215
1216         bluetooth_disconnect(connection, NULL);
1217
1218         connman_technology_driver_unregister(&tech_driver);
1219
1220         connman_device_driver_unregister(&bluetooth_driver);
1221         connman_network_driver_unregister(&pan_driver);
1222
1223         dbus_connection_unref(connection);
1224 }
1225
1226 CONNMAN_PLUGIN_DEFINE(bluetooth, "Bluetooth technology plugin", VERSION,
1227                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, bluetooth_init, bluetooth_exit)