dbus: Clean up dbus_path/dbus_new_path use
[mech_eap.git] / wpa_supplicant / dbus / dbus_old.c
1 /*
2  * WPA Supplicant / dbus-based control interface
3  * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16 #include <dbus/dbus.h>
17
18 #include "common.h"
19 #include "eloop.h"
20 #include "drivers/driver.h"
21 #include "wps/wps.h"
22 #include "../config.h"
23 #include "../wpa_supplicant_i.h"
24 #include "dbus_old.h"
25 #include "dbus_old_handlers.h"
26 #include "dbus_common.h"
27 #include "dbus_common_i.h"
28
29
30 /**
31  * wpas_dbus_decompose_object_path - Decompose an interface object path into parts
32  * @path: The dbus object path
33  * @network: (out) the configured network this object path refers to, if any
34  * @bssid: (out) the scanned bssid this object path refers to, if any
35  * Returns: The object path of the network interface this path refers to
36  *
37  * For a given object path, decomposes the object path into object id, network,
38  * and BSSID parts, if those parts exist.
39  */
40 char * wpas_dbus_decompose_object_path(const char *path, char **network,
41                                        char **bssid)
42 {
43         const unsigned int dev_path_prefix_len =
44                 strlen(WPAS_DBUS_PATH_INTERFACES "/");
45         char *obj_path_only;
46         char *next_sep;
47
48         /* Be a bit paranoid about path */
49         if (!path || strncmp(path, WPAS_DBUS_PATH_INTERFACES "/",
50                              dev_path_prefix_len))
51                 return NULL;
52
53         /* Ensure there's something at the end of the path */
54         if ((path + dev_path_prefix_len)[0] == '\0')
55                 return NULL;
56
57         obj_path_only = os_strdup(path);
58         if (obj_path_only == NULL)
59                 return NULL;
60
61         next_sep = strchr(obj_path_only + dev_path_prefix_len, '/');
62         if (next_sep != NULL) {
63                 const char *net_part = strstr(next_sep,
64                                               WPAS_DBUS_NETWORKS_PART "/");
65                 const char *bssid_part = strstr(next_sep,
66                                                 WPAS_DBUS_BSSIDS_PART "/");
67
68                 if (network && net_part) {
69                         /* Deal with a request for a configured network */
70                         const char *net_name = net_part +
71                                 strlen(WPAS_DBUS_NETWORKS_PART "/");
72                         *network = NULL;
73                         if (strlen(net_name))
74                                 *network = os_strdup(net_name);
75                 } else if (bssid && bssid_part) {
76                         /* Deal with a request for a scanned BSSID */
77                         const char *bssid_name = bssid_part +
78                                 strlen(WPAS_DBUS_BSSIDS_PART "/");
79                         if (strlen(bssid_name))
80                                 *bssid = os_strdup(bssid_name);
81                         else
82                                 *bssid = NULL;
83                 }
84
85                 /* Cut off interface object path before "/" */
86                 *next_sep = '\0';
87         }
88
89         return obj_path_only;
90 }
91
92
93 /**
94  * wpas_dbus_new_invalid_iface_error - Return a new invalid interface error message
95  * @message: Pointer to incoming dbus message this error refers to
96  * Returns: A dbus error message
97  *
98  * Convenience function to create and return an invalid interface error
99  */
100 DBusMessage * wpas_dbus_new_invalid_iface_error(DBusMessage *message)
101 {
102         return dbus_message_new_error(message, WPAS_ERROR_INVALID_IFACE,
103                                       "wpa_supplicant knows nothing about "
104                                       "this interface.");
105 }
106
107
108 /**
109  * wpas_dbus_new_invalid_network_error - Return a new invalid network error message
110  * @message: Pointer to incoming dbus message this error refers to
111  * Returns: a dbus error message
112  *
113  * Convenience function to create and return an invalid network error
114  */
115 DBusMessage * wpas_dbus_new_invalid_network_error(DBusMessage *message)
116 {
117         return dbus_message_new_error(message, WPAS_ERROR_INVALID_NETWORK,
118                                       "The requested network does not exist.");
119 }
120
121
122 /**
123  * wpas_dbus_new_invalid_bssid_error - Return a new invalid bssid error message
124  * @message: Pointer to incoming dbus message this error refers to
125  * Returns: a dbus error message
126  *
127  * Convenience function to create and return an invalid bssid error
128  */
129 static DBusMessage * wpas_dbus_new_invalid_bssid_error(DBusMessage *message)
130 {
131         return dbus_message_new_error(message, WPAS_ERROR_INVALID_BSSID,
132                                       "The BSSID requested was invalid.");
133 }
134
135
136 /**
137  * wpas_dispatch_network_method - dispatch messages for configured networks
138  * @message: the incoming dbus message
139  * @wpa_s: a network interface's data
140  * @network_id: id of the configured network we're interested in
141  * Returns: a reply dbus message, or a dbus error message
142  *
143  * This function dispatches all incoming dbus messages for configured networks.
144  */
145 static DBusMessage * wpas_dispatch_network_method(DBusMessage *message,
146                                                   struct wpa_supplicant *wpa_s,
147                                                   int network_id)
148 {
149         DBusMessage *reply = NULL;
150         const char *method = dbus_message_get_member(message);
151         struct wpa_ssid *ssid;
152
153         ssid = wpa_config_get_network(wpa_s->conf, network_id);
154         if (ssid == NULL)
155                 return wpas_dbus_new_invalid_network_error(message);
156
157         if (!strcmp(method, "set"))
158                 reply = wpas_dbus_iface_set_network(message, wpa_s, ssid);
159         else if (!strcmp(method, "enable"))
160                 reply = wpas_dbus_iface_enable_network(message, wpa_s, ssid);
161         else if (!strcmp(method, "disable"))
162                 reply = wpas_dbus_iface_disable_network(message, wpa_s, ssid);
163
164         return reply;
165 }
166
167
168 /**
169  * wpas_dispatch_bssid_method - dispatch messages for scanned networks
170  * @message: the incoming dbus message
171  * @wpa_s: a network interface's data
172  * @bssid: bssid of the scanned network we're interested in
173  * Returns: a reply dbus message, or a dbus error message
174  *
175  * This function dispatches all incoming dbus messages for scanned networks.
176  */
177 static DBusMessage * wpas_dispatch_bssid_method(DBusMessage *message,
178                                                 struct wpa_supplicant *wpa_s,
179                                                 const char *bssid)
180 {
181         DBusMessage *reply = NULL;
182         const char *method = dbus_message_get_member(message);
183         struct wpa_scan_res *res = NULL;
184         size_t i;
185
186         /* Ensure we actually have scan data */
187         if (wpa_s->scan_res == NULL &&
188             wpa_supplicant_get_scan_results(wpa_s) < 0) {
189                 reply = wpas_dbus_new_invalid_bssid_error(message);
190                 goto out;
191         }
192
193         /* Find the bssid's scan data */
194         for (i = 0; i < wpa_s->scan_res->num; i++) {
195                 struct wpa_scan_res *search_res = wpa_s->scan_res->res[i];
196                 char mac_str[18];
197
198                 memset(mac_str, 0, sizeof(mac_str));
199                 snprintf(mac_str, sizeof(mac_str) - 1, WPAS_DBUS_BSSID_FORMAT,
200                          MAC2STR(search_res->bssid));
201                 if (!strcmp(bssid, mac_str)) {
202                         res = search_res;
203                         break;
204                 }
205         }
206
207         if (!res) {
208                 reply = wpas_dbus_new_invalid_bssid_error(message);
209                 goto out;
210         }
211
212         /* Dispatch the method call against the scanned bssid */
213         if (!strcmp(method, "properties"))
214                 reply = wpas_dbus_bssid_properties(message, wpa_s, res);
215
216 out:
217         return reply;
218 }
219
220
221 /**
222  * wpas_iface_message_handler - Dispatch messages for interfaces or networks
223  * @connection: Connection to the system message bus
224  * @message: An incoming dbus message
225  * @user_data: A pointer to a dbus control interface data structure
226  * Returns: Whether or not the message was handled
227  *
228  * This function dispatches all incoming dbus messages for network interfaces,
229  * or objects owned by them, such as scanned BSSIDs and configured networks.
230  */
231 static DBusHandlerResult wpas_iface_message_handler(DBusConnection *connection,
232                                                     DBusMessage *message,
233                                                     void *user_data)
234 {
235         struct wpa_supplicant *wpa_s = user_data;
236         const char *method = dbus_message_get_member(message);
237         const char *path = dbus_message_get_path(message);
238         const char *msg_interface = dbus_message_get_interface(message);
239         char *iface_obj_path = NULL;
240         char *network = NULL;
241         char *bssid = NULL;
242         DBusMessage *reply = NULL;
243
244         /* Caller must specify a message interface */
245         if (!msg_interface)
246                 goto out;
247
248         iface_obj_path = wpas_dbus_decompose_object_path(path, &network,
249                                                          &bssid);
250         if (iface_obj_path == NULL) {
251                 reply = wpas_dbus_new_invalid_iface_error(message);
252                 goto out;
253         }
254
255         /* Make sure the message's object path actually refers to the
256          * wpa_supplicant structure it's supposed to (which is wpa_s)
257          */
258         if (wpa_supplicant_get_iface_by_dbus_path(wpa_s->global,
259                                                   iface_obj_path) != wpa_s) {
260                 reply = wpas_dbus_new_invalid_iface_error(message);
261                 goto out;
262         }
263
264         if (network && !strcmp(msg_interface, WPAS_DBUS_IFACE_NETWORK)) {
265                 /* A method for one of this interface's configured networks */
266                 int nid = strtoul(network, NULL, 10);
267                 if (errno != EINVAL)
268                         reply = wpas_dispatch_network_method(message, wpa_s,
269                                                              nid);
270                 else
271                         reply = wpas_dbus_new_invalid_network_error(message);
272         } else if (bssid && !strcmp(msg_interface, WPAS_DBUS_IFACE_BSSID)) {
273                 /* A method for one of this interface's scanned BSSIDs */
274                 reply = wpas_dispatch_bssid_method(message, wpa_s, bssid);
275         } else if (!strcmp(msg_interface, WPAS_DBUS_IFACE_INTERFACE)) {
276                 /* A method for an interface only. */
277                 if (!strcmp(method, "scan"))
278                         reply = wpas_dbus_iface_scan(message, wpa_s);
279                 else if (!strcmp(method, "scanResults"))
280                         reply = wpas_dbus_iface_scan_results(message, wpa_s);
281                 else if (!strcmp(method, "addNetwork"))
282                         reply = wpas_dbus_iface_add_network(message, wpa_s);
283                 else if (!strcmp(method, "removeNetwork"))
284                         reply = wpas_dbus_iface_remove_network(message, wpa_s);
285                 else if (!strcmp(method, "selectNetwork"))
286                         reply = wpas_dbus_iface_select_network(message, wpa_s);
287                 else if (!strcmp(method, "capabilities"))
288                         reply = wpas_dbus_iface_capabilities(message, wpa_s);
289                 else if (!strcmp(method, "disconnect"))
290                         reply = wpas_dbus_iface_disconnect(message, wpa_s);
291                 else if (!strcmp(method, "setAPScan"))
292                         reply = wpas_dbus_iface_set_ap_scan(message, wpa_s);
293                 else if (!strcmp(method, "setSmartcardModules"))
294                         reply = wpas_dbus_iface_set_smartcard_modules(message,
295                                                                       wpa_s);
296                 else if (!strcmp(method, "state"))
297                         reply = wpas_dbus_iface_get_state(message, wpa_s);
298                 else if (!strcmp(method, "scanning"))
299                         reply = wpas_dbus_iface_get_scanning(message, wpa_s);
300                 else if (!strcmp(method, "setBlobs"))
301                         reply = wpas_dbus_iface_set_blobs(message, wpa_s);
302                 else if (!strcmp(method, "removeBlobs"))
303                         reply = wpas_dbus_iface_remove_blobs(message, wpa_s);
304 #ifdef CONFIG_WPS
305                 else if (!os_strcmp(method, "wpsPbc"))
306                         reply = wpas_dbus_iface_wps_pbc(message, wpa_s);
307                 else if (!os_strcmp(method, "wpsPin"))
308                         reply = wpas_dbus_iface_wps_pin(message, wpa_s);
309                 else if (!os_strcmp(method, "wpsReg"))
310                         reply = wpas_dbus_iface_wps_reg(message, wpa_s);
311 #endif /* CONFIG_WPS */
312         }
313
314         /* If the message was handled, send back the reply */
315         if (reply) {
316                 if (!dbus_message_get_no_reply(message))
317                         dbus_connection_send(connection, reply, NULL);
318                 dbus_message_unref(reply);
319         }
320
321 out:
322         os_free(iface_obj_path);
323         os_free(network);
324         os_free(bssid);
325         return reply ? DBUS_HANDLER_RESULT_HANDLED :
326                 DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
327 }
328
329
330 /**
331  * wpas_message_handler - dispatch incoming dbus messages
332  * @connection: connection to the system message bus
333  * @message: an incoming dbus message
334  * @user_data: a pointer to a dbus control interface data structure
335  * Returns: whether or not the message was handled
336  *
337  * This function dispatches all incoming dbus messages to the correct
338  * handlers, depending on what the message's target object path is,
339  * and what the method call is.
340  */
341 static DBusHandlerResult wpas_message_handler(DBusConnection *connection,
342         DBusMessage *message, void *user_data)
343 {
344         struct wpas_dbus_priv *ctrl_iface = user_data;
345         const char *method;
346         const char *path;
347         const char *msg_interface;
348         DBusMessage *reply = NULL;
349
350         method = dbus_message_get_member(message);
351         path = dbus_message_get_path(message);
352         msg_interface = dbus_message_get_interface(message);
353         if (!method || !path || !ctrl_iface || !msg_interface)
354                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
355
356         /* Validate the method interface */
357         if (strcmp(msg_interface, WPAS_DBUS_INTERFACE) != 0)
358                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
359
360         if (!strcmp(path, WPAS_DBUS_PATH)) {
361                 /* dispatch methods against our global dbus interface here */
362                 if (!strcmp(method, "addInterface")) {
363                         reply = wpas_dbus_global_add_interface(
364                                 message, ctrl_iface->global);
365                 } else if (!strcmp(method, "removeInterface")) {
366                         reply = wpas_dbus_global_remove_interface(
367                                 message, ctrl_iface->global);
368                 } else if (!strcmp(method, "getInterface")) {
369                         reply = wpas_dbus_global_get_interface(
370                                 message, ctrl_iface->global);
371                 } else if (!strcmp(method, "setDebugParams")) {
372                         reply = wpas_dbus_global_set_debugparams(
373                                 message, ctrl_iface->global);
374                 }
375         }
376
377         /* If the message was handled, send back the reply */
378         if (reply) {
379                 if (!dbus_message_get_no_reply(message))
380                         dbus_connection_send(connection, reply, NULL);
381                 dbus_message_unref(reply);
382         }
383
384         return reply ? DBUS_HANDLER_RESULT_HANDLED :
385                 DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
386 }
387
388
389 /**
390  * wpa_supplicant_dbus_notify_scan_results - Send a scan results signal
391  * @wpa_s: %wpa_supplicant network interface data
392  * Returns: 0 on success, -1 on failure
393  *
394  * Notify listeners that this interface has updated scan results.
395  */
396 void wpa_supplicant_dbus_notify_scan_results(struct wpa_supplicant *wpa_s)
397 {
398         struct wpas_dbus_priv *iface = wpa_s->global->dbus;
399         DBusMessage *_signal;
400
401         /* Do nothing if the control interface is not turned on */
402         if (iface == NULL)
403                 return;
404
405         _signal = dbus_message_new_signal(wpa_s->dbus_path,
406                                           WPAS_DBUS_IFACE_INTERFACE,
407                                           "ScanResultsAvailable");
408         if (_signal == NULL) {
409                 perror("wpa_supplicant_dbus_notify_scan_results[dbus]: "
410                        "couldn't create dbus signal; likely out of memory");
411                 wpa_printf(MSG_ERROR, "dbus control interface: not enough "
412                            "memory to send scan results signal.");
413                 return;
414         }
415         dbus_connection_send(iface->con, _signal, NULL);
416         dbus_message_unref(_signal);
417 }
418
419
420 /**
421  * wpa_supplicant_dbus_notify_state_change - Send a state change signal
422  * @wpa_s: %wpa_supplicant network interface data
423  * @new_state: new state wpa_supplicant is entering
424  * @old_state: old state wpa_supplicant is leaving
425  * Returns: 0 on success, -1 on failure
426  *
427  * Notify listeners that wpa_supplicant has changed state
428  */
429 void wpa_supplicant_dbus_notify_state_change(struct wpa_supplicant *wpa_s,
430                                              enum wpa_states new_state,
431                                              enum wpa_states old_state)
432 {
433         struct wpas_dbus_priv *iface;
434         DBusMessage *_signal = NULL;
435         const char *new_state_str, *old_state_str;
436
437         /* Do nothing if the control interface is not turned on */
438         if (wpa_s->global == NULL)
439                 return;
440         iface = wpa_s->global->dbus;
441         if (iface == NULL)
442                 return;
443
444         /* Only send signal if state really changed */
445         if (new_state == old_state)
446                 return;
447
448         _signal = dbus_message_new_signal(wpa_s->dbus_path,
449                                           WPAS_DBUS_IFACE_INTERFACE,
450                                           "StateChange");
451         if (_signal == NULL) {
452                 perror("wpa_supplicant_dbus_notify_state_change[dbus]: "
453                        "couldn't create dbus signal; likely out of memory");
454                 wpa_printf(MSG_ERROR,
455                            "wpa_supplicant_dbus_notify_state_change[dbus]: "
456                            "couldn't create dbus signal; likely out of "
457                            "memory.");
458                 return;
459         }
460
461         new_state_str = wpa_supplicant_state_txt(new_state);
462         old_state_str = wpa_supplicant_state_txt(old_state);
463         if (new_state_str == NULL || old_state_str == NULL) {
464                 perror("wpa_supplicant_dbus_notify_state_change[dbus]: "
465                        "couldn't convert state strings");
466                 wpa_printf(MSG_ERROR,
467                            "wpa_supplicant_dbus_notify_state_change[dbus]: "
468                            "couldn't convert state strings.");
469                 goto out;
470         }
471
472         if (!dbus_message_append_args(_signal,
473                                       DBUS_TYPE_STRING, &new_state_str,
474                                       DBUS_TYPE_STRING, &old_state_str,
475                                       DBUS_TYPE_INVALID)) {
476                 perror("wpa_supplicant_dbus_notify_state_change[dbus]: "
477                        "not enough memory to construct state change signal.");
478                 wpa_printf(MSG_ERROR,
479                            "wpa_supplicant_dbus_notify_state_change[dbus]: "
480                            "not enough memory to construct state change "
481                            "signal.");
482                 goto out;
483         }
484
485         dbus_connection_send(iface->con, _signal, NULL);
486
487 out:
488         dbus_message_unref(_signal);
489 }
490
491
492 /**
493  * wpa_supplicant_dbus_notify_scanning - send scanning status
494  * @wpa_s: %wpa_supplicant network interface data
495  * Returns: 0 on success, -1 on failure
496  *
497  * Notify listeners of interface scanning state changes
498  */
499 void wpa_supplicant_dbus_notify_scanning(struct wpa_supplicant *wpa_s)
500 {
501         struct wpas_dbus_priv *iface = wpa_s->global->dbus;
502         DBusMessage *_signal;
503         dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
504
505         /* Do nothing if the control interface is not turned on */
506         if (iface == NULL)
507                 return;
508
509         _signal = dbus_message_new_signal(wpa_s->dbus_path,
510                                           WPAS_DBUS_IFACE_INTERFACE,
511                                           "Scanning");
512         if (_signal == NULL) {
513                 perror("wpa_supplicant_dbus_notify_scanning[dbus]: couldn't "
514                        "create dbus signal; likely out of memory");
515                 wpa_printf(MSG_ERROR, "%s[dbus]: dbus control interface: not "
516                            "enough memory to send scan results signal.",
517                            __FUNCTION__);
518                 return;
519         }
520
521         if (dbus_message_append_args(_signal,
522                                      DBUS_TYPE_BOOLEAN, &scanning,
523                                      DBUS_TYPE_INVALID)) {
524                 dbus_connection_send(iface->con, _signal, NULL);
525         } else {
526                 perror("wpa_supplicant_dbus_notify_scanning[dbus]: not enough "
527                        "memory to construct signal.");
528                 wpa_printf(MSG_ERROR, "%s[dbus]: not enough memory to "
529                            "construct signal.", __FUNCTION__);
530         }
531         dbus_message_unref(_signal);
532 }
533
534
535 #ifdef CONFIG_WPS
536 void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
537                                          const struct wps_credential *cred)
538 {
539         struct wpas_dbus_priv *iface;
540         DBusMessage *_signal = NULL;
541
542         /* Do nothing if the control interface is not turned on */
543         if (wpa_s->global == NULL)
544                 return;
545         iface = wpa_s->global->dbus;
546         if (iface == NULL)
547                 return;
548
549         _signal = dbus_message_new_signal(wpa_s->dbus_path,
550                                           WPAS_DBUS_IFACE_INTERFACE,
551                                           "WpsCred");
552         if (_signal == NULL) {
553                 perror("wpa_supplicant_dbus_notify_wps_cred[dbus]: "
554                        "couldn't create dbus signal; likely out of memory");
555                 wpa_printf(MSG_ERROR,
556                            "wpa_supplicant_dbus_notify_wps_cred[dbus]: "
557                            "couldn't create dbus signal; likely out of "
558                            "memory.");
559                 return;
560         }
561
562         if (!dbus_message_append_args(_signal,
563                                       DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE,
564                                       &cred->cred_attr, cred->cred_attr_len,
565                                       DBUS_TYPE_INVALID)) {
566                 perror("wpa_supplicant_dbus_notify_wps_cred[dbus]: "
567                        "not enough memory to construct signal.");
568                 wpa_printf(MSG_ERROR,
569                            "wpa_supplicant_dbus_notify_wps_cred[dbus]: "
570                            "not enough memory to construct signal.");
571                 goto out;
572         }
573
574         dbus_connection_send(iface->con, _signal, NULL);
575
576 out:
577         dbus_message_unref(_signal);
578 }
579 #else /* CONFIG_WPS */
580 void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
581                                          const struct wps_credential *cred)
582 {
583 }
584 #endif /* CONFIG_WPS */
585
586
587 /**
588  * wpa_supplicant_dbus_ctrl_iface_init - Initialize dbus control interface
589  * @global: Pointer to global data from wpa_supplicant_init()
590  * Returns: 0 on success, -1 on failure
591  *
592  * Initialize the dbus control interface and start receiving commands from
593  * external programs over the bus.
594  */
595 int wpa_supplicant_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface)
596 {
597         DBusError error;
598         int ret = -1;
599         DBusObjectPathVTable wpas_vtable = {
600                 NULL, &wpas_message_handler, NULL, NULL, NULL, NULL
601         };
602
603         /* Register the message handler for the global dbus interface */
604         if (!dbus_connection_register_object_path(iface->con,
605                                                   WPAS_DBUS_PATH, &wpas_vtable,
606                                                   iface)) {
607                 perror("dbus_connection_register_object_path[dbus]");
608                 wpa_printf(MSG_ERROR, "Could not set up DBus message "
609                            "handler.");
610                 return -1;
611         }
612
613         /* Register our service with the message bus */
614         dbus_error_init(&error);
615         switch (dbus_bus_request_name(iface->con, WPAS_DBUS_SERVICE,
616                                       0, &error)) {
617         case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER:
618                 ret = 0;
619                 break;
620         case DBUS_REQUEST_NAME_REPLY_EXISTS:
621         case DBUS_REQUEST_NAME_REPLY_IN_QUEUE:
622         case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER:
623                 perror("dbus_bus_request_name[dbus]");
624                 wpa_printf(MSG_ERROR, "Could not request DBus service name: "
625                            "already registered.");
626                 break;
627         default:
628                 perror("dbus_bus_request_name[dbus]");
629                 wpa_printf(MSG_ERROR, "Could not request DBus service name: "
630                            "%s %s.", error.name, error.message);
631                 break;
632         }
633         dbus_error_free(&error);
634
635         if (ret != 0)
636                 return -1;
637
638         wpa_printf(MSG_DEBUG, "Providing DBus service '" WPAS_DBUS_SERVICE
639                    "'.");
640
641         return 0;
642 }
643
644
645 /**
646  * wpas_dbus_register_new_iface - Register a new interface with dbus
647  * @wpa_s: %wpa_supplicant interface description structure to register
648  * Returns: 0 on success, -1 on error
649  *
650  * Registers a new interface with dbus and assigns it a dbus object path.
651  */
652 int wpas_dbus_register_iface(struct wpa_supplicant *wpa_s)
653 {
654         struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
655         DBusConnection * con;
656         u32 next;
657         DBusObjectPathVTable vtable = {
658                 NULL, &wpas_iface_message_handler, NULL, NULL, NULL, NULL
659         };
660         int ret = -1;
661
662         /* Do nothing if the control interface is not turned on */
663         if (ctrl_iface == NULL)
664                 return 0;
665
666         con = ctrl_iface->con;
667         next = ctrl_iface->next_objid++;
668
669         /* Create and set the interface's object path */
670         wpa_s->dbus_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
671         if (wpa_s->dbus_path == NULL)
672                 return -1;
673         os_snprintf(wpa_s->dbus_path, WPAS_DBUS_OBJECT_PATH_MAX,
674                     WPAS_DBUS_PATH_INTERFACES "/%u",
675                     next);
676
677         /* Register the message handler for the interface functions */
678         if (!dbus_connection_register_fallback(con, wpa_s->dbus_path, &vtable,
679                                                wpa_s)) {
680                 perror("wpas_dbus_register_iface [dbus]");
681                 wpa_printf(MSG_ERROR, "Could not set up DBus message "
682                            "handler for interface %s.", wpa_s->ifname);
683                 goto out;
684         }
685         ret = 0;
686
687 out:
688         return ret;
689 }
690
691
692 /**
693  * wpas_dbus_unregister_iface - Unregister an interface from dbus
694  * @wpa_s: wpa_supplicant interface structure
695  * Returns: 0 on success, -1 on failure
696  *
697  * Unregisters the interface with dbus
698  */
699 int wpas_dbus_unregister_iface(struct wpa_supplicant *wpa_s)
700 {
701         struct wpas_dbus_priv *ctrl_iface;
702         DBusConnection *con;
703
704         /* Do nothing if the control interface is not turned on */
705         if (wpa_s == NULL || wpa_s->global == NULL)
706                 return 0;
707         ctrl_iface = wpa_s->global->dbus;
708         if (ctrl_iface == NULL)
709                 return 0;
710
711         con = ctrl_iface->con;
712         if (!dbus_connection_unregister_object_path(con, wpa_s->dbus_path))
713                 return -1;
714
715         os_free(wpa_s->dbus_path);
716         wpa_s->dbus_path = NULL;
717
718         return 0;
719 }
720
721
722 /**
723  * wpa_supplicant_get_iface_by_dbus_path - Get a new network interface
724  * @global: Pointer to global data from wpa_supplicant_init()
725  * @path: Pointer to a dbus object path representing an interface
726  * Returns: Pointer to the interface or %NULL if not found
727  */
728 struct wpa_supplicant * wpa_supplicant_get_iface_by_dbus_path(
729         struct wpa_global *global, const char *path)
730 {
731         struct wpa_supplicant *wpa_s;
732
733         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
734                 if (strcmp(wpa_s->dbus_path, path) == 0)
735                         return wpa_s;
736         }
737         return NULL;
738 }