dbus: Remove perror() calls
[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                 wpa_printf(MSG_ERROR, "dbus: Not enough memory to send scan "
410                            "results signal");
411                 return;
412         }
413         dbus_connection_send(iface->con, _signal, NULL);
414         dbus_message_unref(_signal);
415 }
416
417
418 /**
419  * wpa_supplicant_dbus_notify_state_change - Send a state change signal
420  * @wpa_s: %wpa_supplicant network interface data
421  * @new_state: new state wpa_supplicant is entering
422  * @old_state: old state wpa_supplicant is leaving
423  * Returns: 0 on success, -1 on failure
424  *
425  * Notify listeners that wpa_supplicant has changed state
426  */
427 void wpa_supplicant_dbus_notify_state_change(struct wpa_supplicant *wpa_s,
428                                              enum wpa_states new_state,
429                                              enum wpa_states old_state)
430 {
431         struct wpas_dbus_priv *iface;
432         DBusMessage *_signal = NULL;
433         const char *new_state_str, *old_state_str;
434
435         /* Do nothing if the control interface is not turned on */
436         if (wpa_s->global == NULL)
437                 return;
438         iface = wpa_s->global->dbus;
439         if (iface == NULL)
440                 return;
441
442         /* Only send signal if state really changed */
443         if (new_state == old_state)
444                 return;
445
446         _signal = dbus_message_new_signal(wpa_s->dbus_path,
447                                           WPAS_DBUS_IFACE_INTERFACE,
448                                           "StateChange");
449         if (_signal == NULL) {
450                 wpa_printf(MSG_ERROR,
451                            "dbus: wpa_supplicant_dbus_notify_state_change: "
452                            "could not create dbus signal; likely out of "
453                            "memory");
454                 return;
455         }
456
457         new_state_str = wpa_supplicant_state_txt(new_state);
458         old_state_str = wpa_supplicant_state_txt(old_state);
459         if (new_state_str == NULL || old_state_str == NULL) {
460                 wpa_printf(MSG_ERROR,
461                            "dbus: wpa_supplicant_dbus_notify_state_change: "
462                            "Could not convert state strings");
463                 goto out;
464         }
465
466         if (!dbus_message_append_args(_signal,
467                                       DBUS_TYPE_STRING, &new_state_str,
468                                       DBUS_TYPE_STRING, &old_state_str,
469                                       DBUS_TYPE_INVALID)) {
470                 wpa_printf(MSG_ERROR,
471                            "dbus: wpa_supplicant_dbus_notify_state_change: "
472                            "Not enough memory to construct state change "
473                            "signal");
474                 goto out;
475         }
476
477         dbus_connection_send(iface->con, _signal, NULL);
478
479 out:
480         dbus_message_unref(_signal);
481 }
482
483
484 /**
485  * wpa_supplicant_dbus_notify_scanning - send scanning status
486  * @wpa_s: %wpa_supplicant network interface data
487  * Returns: 0 on success, -1 on failure
488  *
489  * Notify listeners of interface scanning state changes
490  */
491 void wpa_supplicant_dbus_notify_scanning(struct wpa_supplicant *wpa_s)
492 {
493         struct wpas_dbus_priv *iface = wpa_s->global->dbus;
494         DBusMessage *_signal;
495         dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
496
497         /* Do nothing if the control interface is not turned on */
498         if (iface == NULL)
499                 return;
500
501         _signal = dbus_message_new_signal(wpa_s->dbus_path,
502                                           WPAS_DBUS_IFACE_INTERFACE,
503                                           "Scanning");
504         if (_signal == NULL) {
505                 wpa_printf(MSG_ERROR, "dbus: Not enough memory to send scan "
506                            "results signal");
507                 return;
508         }
509
510         if (dbus_message_append_args(_signal,
511                                      DBUS_TYPE_BOOLEAN, &scanning,
512                                      DBUS_TYPE_INVALID)) {
513                 dbus_connection_send(iface->con, _signal, NULL);
514         } else {
515                 wpa_printf(MSG_ERROR, "dbus: Not enough memory to construct "
516                            "signal");
517         }
518         dbus_message_unref(_signal);
519 }
520
521
522 #ifdef CONFIG_WPS
523 void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
524                                          const struct wps_credential *cred)
525 {
526         struct wpas_dbus_priv *iface;
527         DBusMessage *_signal = NULL;
528
529         /* Do nothing if the control interface is not turned on */
530         if (wpa_s->global == NULL)
531                 return;
532         iface = wpa_s->global->dbus;
533         if (iface == NULL)
534                 return;
535
536         _signal = dbus_message_new_signal(wpa_s->dbus_path,
537                                           WPAS_DBUS_IFACE_INTERFACE,
538                                           "WpsCred");
539         if (_signal == NULL) {
540                 wpa_printf(MSG_ERROR,
541                            "dbus: wpa_supplicant_dbus_notify_wps_cred: "
542                            "Could not create dbus signal; likely out of "
543                            "memory");
544                 return;
545         }
546
547         if (!dbus_message_append_args(_signal,
548                                       DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE,
549                                       &cred->cred_attr, cred->cred_attr_len,
550                                       DBUS_TYPE_INVALID)) {
551                 wpa_printf(MSG_ERROR,
552                            "dbus: wpa_supplicant_dbus_notify_wps_cred: "
553                            "Not enough memory to construct signal");
554                 goto out;
555         }
556
557         dbus_connection_send(iface->con, _signal, NULL);
558
559 out:
560         dbus_message_unref(_signal);
561 }
562 #else /* CONFIG_WPS */
563 void wpa_supplicant_dbus_notify_wps_cred(struct wpa_supplicant *wpa_s,
564                                          const struct wps_credential *cred)
565 {
566 }
567 #endif /* CONFIG_WPS */
568
569
570 /**
571  * wpa_supplicant_dbus_ctrl_iface_init - Initialize dbus control interface
572  * @global: Pointer to global data from wpa_supplicant_init()
573  * Returns: 0 on success, -1 on failure
574  *
575  * Initialize the dbus control interface and start receiving commands from
576  * external programs over the bus.
577  */
578 int wpa_supplicant_dbus_ctrl_iface_init(struct wpas_dbus_priv *iface)
579 {
580         DBusError error;
581         int ret = -1;
582         DBusObjectPathVTable wpas_vtable = {
583                 NULL, &wpas_message_handler, NULL, NULL, NULL, NULL
584         };
585
586         /* Register the message handler for the global dbus interface */
587         if (!dbus_connection_register_object_path(iface->con,
588                                                   WPAS_DBUS_PATH, &wpas_vtable,
589                                                   iface)) {
590                 wpa_printf(MSG_ERROR, "dbus: Could not set up message "
591                            "handler");
592                 return -1;
593         }
594
595         /* Register our service with the message bus */
596         dbus_error_init(&error);
597         switch (dbus_bus_request_name(iface->con, WPAS_DBUS_SERVICE,
598                                       0, &error)) {
599         case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER:
600                 ret = 0;
601                 break;
602         case DBUS_REQUEST_NAME_REPLY_EXISTS:
603         case DBUS_REQUEST_NAME_REPLY_IN_QUEUE:
604         case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER:
605                 wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
606                            "already registered");
607                 break;
608         default:
609                 wpa_printf(MSG_ERROR, "dbus: Could not request service name: "
610                            "%s %s", error.name, error.message);
611                 break;
612         }
613         dbus_error_free(&error);
614
615         if (ret != 0)
616                 return -1;
617
618         wpa_printf(MSG_DEBUG, "Providing DBus service '" WPAS_DBUS_SERVICE
619                    "'.");
620
621         return 0;
622 }
623
624
625 /**
626  * wpas_dbus_register_new_iface - Register a new interface with dbus
627  * @wpa_s: %wpa_supplicant interface description structure to register
628  * Returns: 0 on success, -1 on error
629  *
630  * Registers a new interface with dbus and assigns it a dbus object path.
631  */
632 int wpas_dbus_register_iface(struct wpa_supplicant *wpa_s)
633 {
634         struct wpas_dbus_priv *ctrl_iface = wpa_s->global->dbus;
635         DBusConnection * con;
636         u32 next;
637         DBusObjectPathVTable vtable = {
638                 NULL, &wpas_iface_message_handler, NULL, NULL, NULL, NULL
639         };
640
641         /* Do nothing if the control interface is not turned on */
642         if (ctrl_iface == NULL)
643                 return 0;
644
645         con = ctrl_iface->con;
646         next = ctrl_iface->next_objid++;
647
648         /* Create and set the interface's object path */
649         wpa_s->dbus_path = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
650         if (wpa_s->dbus_path == NULL)
651                 return -1;
652         os_snprintf(wpa_s->dbus_path, WPAS_DBUS_OBJECT_PATH_MAX,
653                     WPAS_DBUS_PATH_INTERFACES "/%u",
654                     next);
655
656         /* Register the message handler for the interface functions */
657         if (!dbus_connection_register_fallback(con, wpa_s->dbus_path, &vtable,
658                                                wpa_s)) {
659                 wpa_printf(MSG_ERROR, "dbus: Could not set up message "
660                            "handler for interface %s", wpa_s->ifname);
661                 return -1;
662         }
663
664         return 0;
665 }
666
667
668 /**
669  * wpas_dbus_unregister_iface - Unregister an interface from dbus
670  * @wpa_s: wpa_supplicant interface structure
671  * Returns: 0 on success, -1 on failure
672  *
673  * Unregisters the interface with dbus
674  */
675 int wpas_dbus_unregister_iface(struct wpa_supplicant *wpa_s)
676 {
677         struct wpas_dbus_priv *ctrl_iface;
678         DBusConnection *con;
679
680         /* Do nothing if the control interface is not turned on */
681         if (wpa_s == NULL || wpa_s->global == NULL)
682                 return 0;
683         ctrl_iface = wpa_s->global->dbus;
684         if (ctrl_iface == NULL)
685                 return 0;
686
687         con = ctrl_iface->con;
688         if (!dbus_connection_unregister_object_path(con, wpa_s->dbus_path))
689                 return -1;
690
691         os_free(wpa_s->dbus_path);
692         wpa_s->dbus_path = NULL;
693
694         return 0;
695 }
696
697
698 /**
699  * wpa_supplicant_get_iface_by_dbus_path - Get a new network interface
700  * @global: Pointer to global data from wpa_supplicant_init()
701  * @path: Pointer to a dbus object path representing an interface
702  * Returns: Pointer to the interface or %NULL if not found
703  */
704 struct wpa_supplicant * wpa_supplicant_get_iface_by_dbus_path(
705         struct wpa_global *global, const char *path)
706 {
707         struct wpa_supplicant *wpa_s;
708
709         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
710                 if (strcmp(wpa_s->dbus_path, path) == 0)
711                         return wpa_s;
712         }
713         return NULL;
714 }