device: Include Reason in Disconnect Skip Warning
[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, *identifier;
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         identifier = connman_network_get_identifier(network);
573
574         g_hash_table_remove(bluetooth_networks, network_path);
575
576         connman_device_remove_network(device, identifier);
577
578         return TRUE;
579 }
580
581 static gboolean device_changed(DBusConnection *connection,
582                                 DBusMessage *message, void *user_data)
583 {
584         const char *path = dbus_message_get_path(message);
585         DBusMessageIter iter, value;
586         const char *key;
587
588         DBG("path %s", path);
589
590         if (dbus_message_iter_init(message, &iter) == FALSE)
591                 return TRUE;
592
593         dbus_message_iter_get_basic(&iter, &key);
594
595         dbus_message_iter_next(&iter);
596         dbus_message_iter_recurse(&iter, &value);
597
598         DBG("key %s", key);
599
600         if (g_str_equal(key, "UUIDs") == TRUE)
601                 add_network(NULL, path);
602
603         return TRUE;
604 }
605
606 static void adapter_properties_reply(DBusPendingCall *call, void *user_data)
607 {
608         char *path = user_data;
609         struct connman_device *device;
610         DBusMessage *reply;
611         DBusMessageIter networks;
612         const char *address = NULL, *name = NULL;
613         dbus_bool_t powered = FALSE, scanning = FALSE;
614         struct ether_addr addr;
615         char ident[13];
616
617         DBG("path %s", path);
618
619         reply = dbus_pending_call_steal_reply(call);
620
621         if (path == NULL)
622                 goto done;
623
624         extract_properties(reply, NULL, &address, &name, NULL,
625                                         &powered, &scanning, NULL, &networks);
626
627         if (address == NULL)
628                 goto done;
629
630         if (g_strcmp0(address, "00:00:00:00:00:00") == 0)
631                 goto done;
632
633         device = g_hash_table_lookup(bluetooth_devices, path);
634         if (device != NULL)
635                 goto update;
636
637         ether_aton_r(address, &addr);
638
639         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
640                                                 addr.ether_addr_octet[0],
641                                                 addr.ether_addr_octet[1],
642                                                 addr.ether_addr_octet[2],
643                                                 addr.ether_addr_octet[3],
644                                                 addr.ether_addr_octet[4],
645                                                 addr.ether_addr_octet[5]);
646
647         device = connman_device_create(ident, CONNMAN_DEVICE_TYPE_BLUETOOTH);
648         if (device == NULL)
649                 goto done;
650
651         connman_device_set_ident(device, ident);
652
653         connman_device_set_string(device, "Path", path);
654
655         if (connman_device_register(device) < 0) {
656                 connman_device_unref(device);
657                 goto done;
658         }
659
660         g_hash_table_insert(bluetooth_devices, g_strdup(path), device);
661
662 update:
663         connman_device_set_string(device, "Address", address);
664         connman_device_set_string(device, "Name", name);
665         connman_device_set_string(device, "Path", path);
666
667         connman_device_set_powered(device, powered);
668         connman_device_set_scanning(device, scanning);
669
670         if (powered == TRUE)
671                 check_networks(device, &networks);
672
673 done:
674         dbus_message_unref(reply);
675
676         dbus_pending_call_unref(call);
677 }
678
679 static void add_adapter(DBusConnection *connection, const char *path)
680 {
681         DBusMessage *message;
682         DBusPendingCall *call;
683
684         DBG("path %s", path);
685
686         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
687                                 BLUEZ_ADAPTER_INTERFACE, GET_PROPERTIES);
688         if (message == NULL)
689                 return;
690
691         dbus_message_set_auto_start(message, FALSE);
692
693         if (dbus_connection_send_with_reply(connection, message,
694                                                 &call, TIMEOUT) == FALSE) {
695                 connman_error("Failed to get adapter properties for %s", path);
696                 goto done;
697         }
698
699         if (call == NULL) {
700                 connman_error("D-Bus connection not available");
701                 goto done;
702         }
703
704         dbus_pending_call_set_notify(call, adapter_properties_reply,
705                                                 g_strdup(path), g_free);
706
707 done:
708         dbus_message_unref(message);
709 }
710
711 static gboolean adapter_added(DBusConnection *connection, DBusMessage *message,
712                                 void *user_data)
713 {
714         const char *path;
715
716         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
717                                 DBUS_TYPE_INVALID);
718         add_adapter(connection, path);
719         return TRUE;
720 }
721
722 static void remove_adapter(DBusConnection *connection, const char *path)
723 {
724         DBG("path %s", path);
725
726         g_hash_table_remove(bluetooth_devices, path);
727 }
728
729 static gboolean adapter_removed(DBusConnection *connection, DBusMessage *message,
730                                 void *user_data)
731 {
732         const char *path;
733
734         dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
735                                 DBUS_TYPE_INVALID);
736         remove_adapter(connection, path);
737         return TRUE;
738 }
739
740 static void list_adapters_reply(DBusPendingCall *call, void *user_data)
741 {
742         DBusMessage *reply;
743         DBusError error;
744         char **adapters;
745         int i, num_adapters;
746
747         DBG("");
748
749         reply = dbus_pending_call_steal_reply(call);
750
751         dbus_error_init(&error);
752
753         if (dbus_set_error_from_message(&error, reply) == TRUE) {
754                 connman_error("%s", error.message);
755                 dbus_error_free(&error);
756                 goto done;
757         }
758
759         if (dbus_message_get_args(reply, &error,
760                                 DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH,
761                                                 &adapters, &num_adapters,
762                                                 DBUS_TYPE_INVALID) == FALSE) {
763                 if (dbus_error_is_set(&error) == TRUE) {
764                         connman_error("%s", error.message);
765                         dbus_error_free(&error);
766                 } else
767                         connman_error("Wrong arguments for adapter list");
768                 goto done;
769         }
770
771         for (i = 0; i < num_adapters; i++)
772                 add_adapter(connection, adapters[i]);
773
774         g_strfreev(adapters);
775
776 done:
777         dbus_message_unref(reply);
778
779         dbus_pending_call_unref(call);
780 }
781
782 static void unregister_device(gpointer data)
783 {
784         struct connman_device *device = data;
785
786         DBG("");
787
788         connman_device_unregister(device);
789         connman_device_unref(device);
790 }
791
792 static void bluetooth_connect(DBusConnection *connection, void *user_data)
793 {
794         DBusMessage *message;
795         DBusPendingCall *call;
796
797         DBG("connection %p", connection);
798
799         bluetooth_devices = g_hash_table_new_full(g_str_hash, g_str_equal,
800                                                 g_free, unregister_device);
801
802         bluetooth_networks = g_hash_table_new_full(g_str_hash, g_str_equal,
803                                                 g_free, NULL);
804
805         message = dbus_message_new_method_call(BLUEZ_SERVICE, "/",
806                                 BLUEZ_MANAGER_INTERFACE, LIST_ADAPTERS);
807         if (message == NULL)
808                 return;
809
810         dbus_message_set_auto_start(message, FALSE);
811
812         if (dbus_connection_send_with_reply(connection, message,
813                                                 &call, TIMEOUT) == FALSE) {
814                 connman_error("Failed to get Bluetooth adapters");
815                 goto done;
816         }
817
818         if (call == NULL) {
819                 connman_error("D-Bus connection not available");
820                 goto done;
821         }
822
823         dbus_pending_call_set_notify(call, list_adapters_reply, NULL, NULL);
824
825 done:
826         dbus_message_unref(message);
827 }
828
829 static void bluetooth_disconnect(DBusConnection *connection, void *user_data)
830 {
831         DBG("connection %p", connection);
832
833         if (bluetooth_devices == NULL)
834                 return;
835
836         g_hash_table_destroy(bluetooth_networks);
837         g_hash_table_destroy(bluetooth_devices);
838         bluetooth_devices = NULL;
839 }
840
841 static int bluetooth_probe(struct connman_device *device)
842 {
843         DBG("device %p", device);
844
845         return 0;
846 }
847
848 static void bluetooth_remove(struct connman_device *device)
849 {
850         DBG("device %p", device);
851 }
852
853 static void powered_reply(DBusPendingCall *call, void *user_data)
854 {
855         DBusError error;
856         DBusMessage *reply;
857
858         DBG("");
859
860         reply = dbus_pending_call_steal_reply(call);
861
862         dbus_error_init(&error);
863
864         if (dbus_set_error_from_message(&error, reply) == TRUE) {
865                 connman_error("%s", error.message);
866                 dbus_error_free(&error);
867                 dbus_message_unref(reply);
868                 dbus_pending_call_unref(call);
869                 return;
870         }
871
872         dbus_message_unref(reply);
873         dbus_pending_call_unref(call);
874
875         add_adapter(connection, user_data);
876 }
877
878 static int change_powered(DBusConnection *connection, const char *path,
879                                                         dbus_bool_t powered)
880 {
881         DBusMessage *message;
882         DBusMessageIter iter;
883         DBusPendingCall *call;
884
885         DBG("");
886
887         if (path == NULL)
888                 return -EINVAL;
889
890         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
891                                         BLUEZ_ADAPTER_INTERFACE, SET_PROPERTY);
892         if (message == NULL)
893                 return -ENOMEM;
894
895         dbus_message_set_auto_start(message, FALSE);
896
897         dbus_message_iter_init_append(message, &iter);
898         connman_dbus_property_append_basic(&iter, "Powered",
899                                                 DBUS_TYPE_BOOLEAN, &powered);
900
901         if (dbus_connection_send_with_reply(connection, message,
902                                                 &call, TIMEOUT) == FALSE) {
903                 connman_error("Failed to change Powered property");
904                 dbus_message_unref(message);
905                 return -EINVAL;
906         }
907
908         if (call == NULL) {
909                 connman_error("D-Bus connection not available");
910                 dbus_message_unref(message);
911                 return -EINVAL;
912         }
913
914         dbus_pending_call_set_notify(call, powered_reply,
915                                         g_strdup(path), g_free);
916
917         dbus_message_unref(message);
918
919         return -EINPROGRESS;
920 }
921
922 static int bluetooth_enable(struct connman_device *device)
923 {
924         const char *path = connman_device_get_string(device, "Path");
925
926         DBG("device %p", device);
927
928         return change_powered(connection, path, TRUE);
929 }
930
931 static int bluetooth_disable(struct connman_device *device)
932 {
933         const char *path = connman_device_get_string(device, "Path");
934
935         DBG("device %p", device);
936
937         return change_powered(connection, path, FALSE);
938 }
939
940 static struct connman_device_driver bluetooth_driver = {
941         .name           = "bluetooth",
942         .type           = CONNMAN_DEVICE_TYPE_BLUETOOTH,
943         .probe          = bluetooth_probe,
944         .remove         = bluetooth_remove,
945         .enable         = bluetooth_enable,
946         .disable        = bluetooth_disable,
947 };
948
949 static int tech_probe(struct connman_technology *technology)
950 {
951         return 0;
952 }
953
954 static void tech_remove(struct connman_technology *technology)
955 {
956 }
957
958 static void server_register_reply(DBusPendingCall *call, void *user_data)
959 {
960         struct connman_technology *technology = user_data;
961         DBusError error;
962         DBusMessage *reply;
963
964         DBG("");
965
966         reply = dbus_pending_call_steal_reply(call);
967
968         dbus_error_init(&error);
969
970         if (dbus_set_error_from_message(&error, reply) == TRUE) {
971                 connman_error("%s", error.message);
972                 dbus_error_free(&error);
973                 dbus_message_unref(reply);
974                 dbus_pending_call_unref(call);
975                 return;
976         }
977
978         dbus_message_unref(reply);
979         dbus_pending_call_unref(call);
980
981         connman_technology_tethering_notify(technology, TRUE);
982 }
983
984 static void server_unregister_reply(DBusPendingCall *call, void *user_data)
985 {
986         struct connman_technology *technology = user_data;
987         DBusError error;
988         DBusMessage *reply;
989
990         DBG("");
991
992         reply = dbus_pending_call_steal_reply(call);
993
994         dbus_error_init(&error);
995
996         if (dbus_set_error_from_message(&error, reply) == TRUE) {
997                 connman_error("%s", error.message);
998                 dbus_error_free(&error);
999                 dbus_message_unref(reply);
1000                 dbus_pending_call_unref(call);
1001                 return;
1002         }
1003
1004         dbus_message_unref(reply);
1005         dbus_pending_call_unref(call);
1006
1007         connman_technology_tethering_notify(technology, FALSE);
1008 }
1009
1010
1011 static void server_register(const char *path, const char *uuid,
1012                                 struct connman_technology *technology,
1013                                 const char *bridge, connman_bool_t enabled)
1014 {
1015         DBusMessage *message;
1016         DBusPendingCall *call;
1017         char *command;
1018
1019         DBG("path %s enabled %d", path, enabled);
1020
1021         command = enabled ? REGISTER : UNREGISTER;
1022
1023         message = dbus_message_new_method_call(BLUEZ_SERVICE, path,
1024                                         BLUEZ_NETWORK_SERVER, command);
1025         if (message == NULL)
1026                 return;
1027
1028         dbus_message_set_auto_start(message, FALSE);
1029
1030         dbus_message_append_args(message, DBUS_TYPE_STRING, &uuid,
1031                                                         DBUS_TYPE_INVALID);
1032
1033         if (enabled == TRUE)
1034                 dbus_message_append_args(message, DBUS_TYPE_STRING, &bridge,
1035                                                         DBUS_TYPE_INVALID);
1036
1037         if (dbus_connection_send_with_reply(connection, message,
1038                                                 &call, TIMEOUT) == FALSE) {
1039                 connman_error("Failed to enable PAN server");
1040                 dbus_message_unref(message);
1041                 return;
1042         }
1043
1044         if (call == NULL) {
1045                 connman_error("D-Bus connection not available");
1046                 dbus_message_unref(message);
1047                 return;
1048         }
1049
1050         if (enabled == TRUE)
1051                 dbus_pending_call_set_notify(call, server_register_reply,
1052                                                 technology, NULL);
1053         else
1054                 dbus_pending_call_set_notify(call, server_unregister_reply,
1055                                                 technology, NULL);
1056
1057         dbus_message_unref(message);
1058 }
1059
1060 struct tethering_info {
1061         struct connman_technology *technology;
1062         const char *bridge;
1063 };
1064
1065 static void enable_nap(gpointer key, gpointer value, gpointer user_data)
1066 {
1067         struct tethering_info *info = user_data;
1068         struct connman_device *device = value;
1069         const char *path;
1070
1071         DBG("");
1072
1073         path = connman_device_get_string(device, "Path");
1074
1075         server_register(path, "nap", info->technology, info->bridge, TRUE);
1076 }
1077
1078 static void disable_nap(gpointer key, gpointer value, gpointer user_data)
1079 {
1080         struct tethering_info *info = user_data;
1081         struct connman_device *device = value;
1082         const char *path;
1083
1084         DBG("");
1085
1086         path = connman_device_get_string(device, "Path");
1087
1088         server_register(path, "nap", info->technology, info->bridge, FALSE);
1089 }
1090
1091 static int tech_set_tethering(struct connman_technology *technology,
1092                                 const char *identifier, const char *passphrase,
1093                                 const char *bridge, connman_bool_t enabled)
1094 {
1095         struct tethering_info info = {
1096                 .technology     = technology,
1097                 .bridge         = bridge,
1098         };
1099
1100         DBG("bridge %s", bridge);
1101
1102         if (enabled)
1103                 g_hash_table_foreach(bluetooth_devices, enable_nap, &info);
1104         else
1105                 g_hash_table_foreach(bluetooth_devices, disable_nap, &info);
1106
1107         return 0;
1108 }
1109
1110 static struct connman_technology_driver tech_driver = {
1111         .name           = "bluetooth",
1112         .type           = CONNMAN_SERVICE_TYPE_BLUETOOTH,
1113         .probe          = tech_probe,
1114         .remove         = tech_remove,
1115         .set_tethering  = tech_set_tethering,
1116 };
1117
1118 static guint watch;
1119 static guint added_watch;
1120 static guint removed_watch;
1121 static guint adapter_watch;
1122 static guint device_watch;
1123 static guint device_removed_watch;
1124 static guint network_watch;
1125
1126 static int bluetooth_init(void)
1127 {
1128         int err;
1129
1130         connection = connman_dbus_get_connection();
1131         if (connection == NULL)
1132                 return -EIO;
1133
1134         watch = g_dbus_add_service_watch(connection, BLUEZ_SERVICE,
1135                         bluetooth_connect, bluetooth_disconnect, NULL, NULL);
1136
1137         added_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1138                                                 BLUEZ_MANAGER_INTERFACE,
1139                                                 ADAPTER_ADDED, adapter_added,
1140                                                 NULL, NULL);
1141
1142         removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1143                                                 BLUEZ_MANAGER_INTERFACE,
1144                                                 ADAPTER_REMOVED, adapter_removed,
1145                                                 NULL, NULL);
1146
1147         adapter_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1148                                                 BLUEZ_ADAPTER_INTERFACE,
1149                                                 PROPERTY_CHANGED, adapter_changed,
1150                                                 NULL, NULL);
1151
1152         device_removed_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1153                                                 BLUEZ_ADAPTER_INTERFACE,
1154                                                 DEVICE_REMOVED, device_removed,
1155                                                 NULL, NULL);
1156
1157         device_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1158                                                 BLUEZ_DEVICE_INTERFACE,
1159                                                 PROPERTY_CHANGED, device_changed,
1160                                                 NULL, NULL);
1161
1162         network_watch = g_dbus_add_signal_watch(connection, NULL, NULL,
1163                                                 BLUEZ_NETWORK_INTERFACE,
1164                                                 PROPERTY_CHANGED, network_changed,
1165                                                 NULL, NULL);
1166
1167         if (watch == 0 || added_watch == 0 || removed_watch == 0
1168                         || adapter_watch == 0 || network_watch == 0
1169                                 || device_watch == 0
1170                                         || device_removed_watch == 0) {
1171                 err = -EIO;
1172                 goto remove;
1173         }
1174
1175         err = connman_network_driver_register(&pan_driver);
1176         if (err < 0)
1177                 goto remove;
1178
1179         err = connman_device_driver_register(&bluetooth_driver);
1180         if (err < 0) {
1181                 connman_network_driver_unregister(&pan_driver);
1182                 goto remove;
1183         }
1184
1185         err = connman_technology_driver_register(&tech_driver);
1186         if (err < 0) {
1187                 connman_device_driver_unregister(&bluetooth_driver);
1188                 connman_network_driver_unregister(&pan_driver);
1189                 return err;
1190         }
1191
1192         return 0;
1193
1194 remove:
1195         g_dbus_remove_watch(connection, watch);
1196         g_dbus_remove_watch(connection, added_watch);
1197         g_dbus_remove_watch(connection, removed_watch);
1198         g_dbus_remove_watch(connection, adapter_watch);
1199         g_dbus_remove_watch(connection, device_removed_watch);
1200         g_dbus_remove_watch(connection, device_watch);
1201         g_dbus_remove_watch(connection, network_watch);
1202
1203         dbus_connection_unref(connection);
1204
1205         return err;
1206 }
1207
1208 static void bluetooth_exit(void)
1209 {
1210         g_dbus_remove_watch(connection, watch);
1211         g_dbus_remove_watch(connection, added_watch);
1212         g_dbus_remove_watch(connection, removed_watch);
1213         g_dbus_remove_watch(connection, adapter_watch);
1214         g_dbus_remove_watch(connection, device_removed_watch);
1215         g_dbus_remove_watch(connection, device_watch);
1216         g_dbus_remove_watch(connection, network_watch);
1217
1218         bluetooth_disconnect(connection, NULL);
1219
1220         connman_technology_driver_unregister(&tech_driver);
1221
1222         connman_device_driver_unregister(&bluetooth_driver);
1223         connman_network_driver_unregister(&pan_driver);
1224
1225         dbus_connection_unref(connection);
1226 }
1227
1228 CONNMAN_PLUGIN_DEFINE(bluetooth, "Bluetooth technology plugin", VERSION,
1229                 CONNMAN_PLUGIN_PRIORITY_DEFAULT, bluetooth_init, bluetooth_exit)