2 * WPA Supplicant / dbus-based control interface
3 * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
16 #include <dbus/dbus.h>
19 #include "eap_peer/eap_methods.h"
20 #include "common/ieee802_11_defs.h"
21 #include "eapol_supp/eapol_supp_sm.h"
22 #include "rsn_supp/wpa.h"
23 #include "../config.h"
24 #include "../wpa_supplicant_i.h"
25 #include "../driver_i.h"
26 #include "../notify.h"
27 #include "../wpas_glue.h"
31 #include "dbus_old_handlers.h"
32 #include "dbus_dict_helpers.h"
34 extern int wpa_debug_level
;
35 extern int wpa_debug_show_keys
;
36 extern int wpa_debug_timestamp
;
39 * wpas_dbus_new_invalid_opts_error - Return a new invalid options error message
40 * @message: Pointer to incoming dbus message this error refers to
41 * Returns: a dbus error message
43 * Convenience function to create and return an invalid options error
45 DBusMessage
* wpas_dbus_new_invalid_opts_error(DBusMessage
*message
,
50 reply
= dbus_message_new_error(message
, WPAS_ERROR_INVALID_OPTS
,
51 "Did not receive correct message "
54 dbus_message_append_args(reply
, DBUS_TYPE_STRING
, &arg
,
62 * wpas_dbus_new_success_reply - Return a new success reply message
63 * @message: Pointer to incoming dbus message this reply refers to
64 * Returns: a dbus message containing a single UINT32 that indicates
65 * success (ie, a value of 1)
67 * Convenience function to create and return a success reply message
69 DBusMessage
* wpas_dbus_new_success_reply(DBusMessage
*message
)
72 unsigned int success
= 1;
74 reply
= dbus_message_new_method_return(message
);
75 dbus_message_append_args(reply
, DBUS_TYPE_UINT32
, &success
,
82 * wpas_dbus_global_add_interface - Request registration of a network interface
83 * @message: Pointer to incoming dbus message
84 * @global: %wpa_supplicant global data structure
85 * Returns: The object path of the new interface object,
86 * or a dbus error message with more information
88 * Handler function for "addInterface" method call. Handles requests
89 * by dbus clients to register a network interface that wpa_supplicant
92 DBusMessage
* wpas_dbus_global_add_interface(DBusMessage
*message
,
93 struct wpa_global
*global
)
97 char *driver_param
= NULL
;
98 char *confname
= NULL
;
99 char *bridge_ifname
= NULL
;
100 DBusMessage
*reply
= NULL
;
101 DBusMessageIter iter
;
103 dbus_message_iter_init(message
, &iter
);
105 /* First argument: interface name (DBUS_TYPE_STRING)
106 * Required; must be non-zero length
108 if (dbus_message_iter_get_arg_type(&iter
) != DBUS_TYPE_STRING
)
110 dbus_message_iter_get_basic(&iter
, &ifname
);
111 if (!os_strlen(ifname
))
114 /* Second argument: dict of options */
115 if (dbus_message_iter_next(&iter
)) {
116 DBusMessageIter iter_dict
;
117 struct wpa_dbus_dict_entry entry
;
119 if (!wpa_dbus_dict_open_read(&iter
, &iter_dict
))
121 while (wpa_dbus_dict_has_dict_entry(&iter_dict
)) {
122 if (!wpa_dbus_dict_get_entry(&iter_dict
, &entry
))
124 if (!strcmp(entry
.key
, "driver") &&
125 (entry
.type
== DBUS_TYPE_STRING
)) {
126 driver
= os_strdup(entry
.str_value
);
127 wpa_dbus_dict_entry_clear(&entry
);
130 } else if (!strcmp(entry
.key
, "driver-params") &&
131 (entry
.type
== DBUS_TYPE_STRING
)) {
132 driver_param
= os_strdup(entry
.str_value
);
133 wpa_dbus_dict_entry_clear(&entry
);
134 if (driver_param
== NULL
)
136 } else if (!strcmp(entry
.key
, "config-file") &&
137 (entry
.type
== DBUS_TYPE_STRING
)) {
138 confname
= os_strdup(entry
.str_value
);
139 wpa_dbus_dict_entry_clear(&entry
);
140 if (confname
== NULL
)
142 } else if (!strcmp(entry
.key
, "bridge-ifname") &&
143 (entry
.type
== DBUS_TYPE_STRING
)) {
144 bridge_ifname
= os_strdup(entry
.str_value
);
145 wpa_dbus_dict_entry_clear(&entry
);
146 if (bridge_ifname
== NULL
)
149 wpa_dbus_dict_entry_clear(&entry
);
156 * Try to get the wpa_supplicant record for this iface, return
157 * an error if we already control it.
159 if (wpa_supplicant_get_iface(global
, ifname
) != NULL
) {
160 reply
= dbus_message_new_error(message
,
161 WPAS_ERROR_EXISTS_ERROR
,
162 "wpa_supplicant already "
163 "controls this interface.");
165 struct wpa_supplicant
*wpa_s
;
166 struct wpa_interface iface
;
167 os_memset(&iface
, 0, sizeof(iface
));
168 iface
.ifname
= ifname
;
169 iface
.driver
= driver
;
170 iface
.driver_param
= driver_param
;
171 iface
.confname
= confname
;
172 iface
.bridge_ifname
= bridge_ifname
;
173 /* Otherwise, have wpa_supplicant attach to it. */
174 if ((wpa_s
= wpa_supplicant_add_iface(global
, &iface
))) {
175 const char *path
= wpa_s
->dbus_path
;
176 reply
= dbus_message_new_method_return(message
);
177 dbus_message_append_args(reply
, DBUS_TYPE_OBJECT_PATH
,
178 &path
, DBUS_TYPE_INVALID
);
180 reply
= dbus_message_new_error(message
,
181 WPAS_ERROR_ADD_ERROR
,
183 "couldn't grab this "
190 os_free(driver_param
);
192 os_free(bridge_ifname
);
196 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
202 * wpas_dbus_global_remove_interface - Request deregistration of an interface
203 * @message: Pointer to incoming dbus message
204 * @global: wpa_supplicant global data structure
205 * Returns: a dbus message containing a UINT32 indicating success (1) or
206 * failure (0), or returns a dbus error message with more information
208 * Handler function for "removeInterface" method call. Handles requests
209 * by dbus clients to deregister a network interface that wpa_supplicant
212 DBusMessage
* wpas_dbus_global_remove_interface(DBusMessage
*message
,
213 struct wpa_global
*global
)
215 struct wpa_supplicant
*wpa_s
;
217 DBusMessage
*reply
= NULL
;
219 if (!dbus_message_get_args(message
, NULL
,
220 DBUS_TYPE_OBJECT_PATH
, &path
,
221 DBUS_TYPE_INVALID
)) {
222 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
226 wpa_s
= wpa_supplicant_get_iface_by_dbus_path(global
, path
);
228 reply
= wpas_dbus_new_invalid_iface_error(message
);
232 if (!wpa_supplicant_remove_iface(global
, wpa_s
)) {
233 reply
= wpas_dbus_new_success_reply(message
);
235 reply
= dbus_message_new_error(message
,
236 WPAS_ERROR_REMOVE_ERROR
,
237 "wpa_supplicant couldn't "
238 "remove this interface.");
247 * wpas_dbus_global_get_interface - Get the object path for an interface name
248 * @message: Pointer to incoming dbus message
249 * @global: %wpa_supplicant global data structure
250 * Returns: The object path of the interface object,
251 * or a dbus error message with more information
253 * Handler function for "getInterface" method call. Handles requests
254 * by dbus clients for the object path of an specific network interface.
256 DBusMessage
* wpas_dbus_global_get_interface(DBusMessage
*message
,
257 struct wpa_global
*global
)
259 DBusMessage
*reply
= NULL
;
262 struct wpa_supplicant
*wpa_s
;
264 if (!dbus_message_get_args(message
, NULL
,
265 DBUS_TYPE_STRING
, &ifname
,
266 DBUS_TYPE_INVALID
)) {
267 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
271 wpa_s
= wpa_supplicant_get_iface(global
, ifname
);
273 reply
= wpas_dbus_new_invalid_iface_error(message
);
277 path
= wpa_s
->dbus_path
;
278 reply
= dbus_message_new_method_return(message
);
279 dbus_message_append_args(reply
,
280 DBUS_TYPE_OBJECT_PATH
, &path
,
289 * wpas_dbus_global_set_debugparams- Set the debug params
290 * @message: Pointer to incoming dbus message
291 * @global: %wpa_supplicant global data structure
292 * Returns: a dbus message containing a UINT32 indicating success (1) or
293 * failure (0), or returns a dbus error message with more information
295 * Handler function for "setDebugParams" method call. Handles requests
296 * by dbus clients for the object path of an specific network interface.
298 DBusMessage
* wpas_dbus_global_set_debugparams(DBusMessage
*message
,
299 struct wpa_global
*global
)
301 DBusMessage
*reply
= NULL
;
303 dbus_bool_t debug_timestamp
;
304 dbus_bool_t debug_show_keys
;
306 if (!dbus_message_get_args(message
, NULL
,
307 DBUS_TYPE_INT32
, &debug_level
,
308 DBUS_TYPE_BOOLEAN
, &debug_timestamp
,
309 DBUS_TYPE_BOOLEAN
, &debug_show_keys
,
310 DBUS_TYPE_INVALID
)) {
311 return wpas_dbus_new_invalid_opts_error(message
, NULL
);
314 if (wpa_supplicant_set_debug_params(global
, debug_level
,
315 debug_timestamp
? 1 : 0,
316 debug_show_keys
? 1 : 0)) {
317 return wpas_dbus_new_invalid_opts_error(message
, NULL
);
320 reply
= wpas_dbus_new_success_reply(message
);
327 * wpas_dbus_iface_scan - Request a wireless scan on an interface
328 * @message: Pointer to incoming dbus message
329 * @wpa_s: wpa_supplicant structure for a network interface
330 * Returns: a dbus message containing a UINT32 indicating success (1) or
333 * Handler function for "scan" method call of a network device. Requests
334 * that wpa_supplicant perform a wireless scan as soon as possible
335 * on a particular wireless interface.
337 DBusMessage
* wpas_dbus_iface_scan(DBusMessage
*message
,
338 struct wpa_supplicant
*wpa_s
)
341 wpa_supplicant_req_scan(wpa_s
, 0, 0);
342 return wpas_dbus_new_success_reply(message
);
347 * wpas_dbus_iface_scan_results - Get the results of a recent scan request
348 * @message: Pointer to incoming dbus message
349 * @wpa_s: wpa_supplicant structure for a network interface
350 * Returns: a dbus message containing a dbus array of objects paths, or returns
351 * a dbus error message if not scan results could be found
353 * Handler function for "scanResults" method call of a network device. Returns
354 * a dbus message containing the object paths of wireless networks found.
356 DBusMessage
* wpas_dbus_iface_scan_results(DBusMessage
*message
,
357 struct wpa_supplicant
*wpa_s
)
359 DBusMessage
*reply
= NULL
;
360 DBusMessageIter iter
;
361 DBusMessageIter sub_iter
;
364 /* Create and initialize the return message */
365 reply
= dbus_message_new_method_return(message
);
366 dbus_message_iter_init_append(reply
, &iter
);
367 dbus_message_iter_open_container(&iter
, DBUS_TYPE_ARRAY
,
368 DBUS_TYPE_OBJECT_PATH_AS_STRING
,
371 /* Loop through scan results and append each result's object path */
372 dl_list_for_each(bss
, &wpa_s
->bss_id
, struct wpa_bss
, list_id
) {
373 char path_buf
[WPAS_DBUS_OBJECT_PATH_MAX
];
374 char *path
= path_buf
;
376 /* Construct the object path for this network. Note that ':'
377 * is not a valid character in dbus object paths.
379 os_snprintf(path
, WPAS_DBUS_OBJECT_PATH_MAX
,
380 "%s/" WPAS_DBUS_BSSIDS_PART
"/"
381 WPAS_DBUS_BSSID_FORMAT
,
382 wpa_s
->dbus_path
, MAC2STR(bss
->bssid
));
383 dbus_message_iter_append_basic(&sub_iter
,
384 DBUS_TYPE_OBJECT_PATH
, &path
);
387 dbus_message_iter_close_container(&iter
, &sub_iter
);
394 * wpas_dbus_bssid_properties - Return the properties of a scanned network
395 * @message: Pointer to incoming dbus message
396 * @wpa_s: wpa_supplicant structure for a network interface
397 * @res: wpa_supplicant scan result for which to get properties
398 * Returns: a dbus message containing the properties for the requested network
400 * Handler function for "properties" method call of a scanned network.
401 * Returns a dbus message containing the the properties.
403 DBusMessage
* wpas_dbus_bssid_properties(DBusMessage
*message
,
404 struct wpa_supplicant
*wpa_s
,
408 DBusMessageIter iter
, iter_dict
;
411 /* Dump the properties into a dbus message */
412 reply
= dbus_message_new_method_return(message
);
414 dbus_message_iter_init_append(reply
, &iter
);
415 if (!wpa_dbus_dict_open_write(&iter
, &iter_dict
))
418 if (!wpa_dbus_dict_append_byte_array(&iter_dict
, "bssid",
419 (const char *) bss
->bssid
,
423 ie
= wpa_bss_get_ie(bss
, WLAN_EID_SSID
);
425 if (!wpa_dbus_dict_append_byte_array(&iter_dict
, "ssid",
426 (const char *) (ie
+ 2),
431 ie
= wpa_bss_get_vendor_ie(bss
, WPA_IE_VENDOR_TYPE
);
433 if (!wpa_dbus_dict_append_byte_array(&iter_dict
, "wpaie",
439 ie
= wpa_bss_get_ie(bss
, WLAN_EID_RSN
);
441 if (!wpa_dbus_dict_append_byte_array(&iter_dict
, "rsnie",
447 ie
= wpa_bss_get_vendor_ie(bss
, WPS_IE_VENDOR_TYPE
);
449 if (!wpa_dbus_dict_append_byte_array(&iter_dict
, "wpsie",
456 if (!wpa_dbus_dict_append_int32(&iter_dict
, "frequency",
460 if (!wpa_dbus_dict_append_uint16(&iter_dict
, "capabilities",
463 if (!(bss
->flags
& WPA_BSS_QUAL_INVALID
) &&
464 !wpa_dbus_dict_append_int32(&iter_dict
, "quality", bss
->qual
))
466 if (!(bss
->flags
& WPA_BSS_NOISE_INVALID
) &&
467 !wpa_dbus_dict_append_int32(&iter_dict
, "noise", bss
->noise
))
469 if (!(bss
->flags
& WPA_BSS_LEVEL_INVALID
) &&
470 !wpa_dbus_dict_append_int32(&iter_dict
, "level", bss
->level
))
472 if (!wpa_dbus_dict_append_int32(&iter_dict
, "maxrate",
473 wpa_bss_get_max_rate(bss
) * 500000))
476 if (!wpa_dbus_dict_close_write(&iter
, &iter_dict
))
483 dbus_message_unref(reply
);
484 return dbus_message_new_error(message
, WPAS_ERROR_INTERNAL_ERROR
,
485 "an internal error occurred returning "
486 "BSSID properties.");
491 * wpas_dbus_iface_capabilities - Return interface capabilities
492 * @message: Pointer to incoming dbus message
493 * @wpa_s: wpa_supplicant structure for a network interface
494 * Returns: A dbus message containing a dict of strings
496 * Handler function for "capabilities" method call of an interface.
498 DBusMessage
* wpas_dbus_iface_capabilities(DBusMessage
*message
,
499 struct wpa_supplicant
*wpa_s
)
501 DBusMessage
*reply
= NULL
;
502 struct wpa_driver_capa capa
;
504 DBusMessageIter iter
, iter_dict
;
507 dbus_bool_t strict
= FALSE
;
508 DBusMessageIter iter_dict_entry
, iter_dict_val
, iter_array
;
510 if (!dbus_message_get_args(message
, NULL
,
511 DBUS_TYPE_BOOLEAN
, &strict
,
515 reply
= dbus_message_new_method_return(message
);
517 dbus_message_iter_init_append(reply
, &iter
);
518 if (!wpa_dbus_dict_open_write(&iter
, &iter_dict
))
522 eap_methods
= eap_get_names_as_string_array(&num_items
);
524 dbus_bool_t success
= FALSE
;
527 success
= wpa_dbus_dict_append_string_array(
528 &iter_dict
, "eap", (const char **) eap_methods
,
531 /* free returned method array */
532 while (eap_methods
[i
])
533 os_free(eap_methods
[i
++]);
534 os_free(eap_methods
);
540 res
= wpa_drv_get_capa(wpa_s
, &capa
);
542 /***** pairwise cipher */
545 const char *args
[] = {"CCMP", "TKIP", "NONE"};
546 if (!wpa_dbus_dict_append_string_array(
547 &iter_dict
, "pairwise", args
,
548 sizeof(args
) / sizeof(char*)))
552 if (!wpa_dbus_dict_begin_string_array(&iter_dict
, "pairwise",
558 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_CCMP
) {
559 if (!wpa_dbus_dict_string_array_add_element(
560 &iter_array
, "CCMP"))
564 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_TKIP
) {
565 if (!wpa_dbus_dict_string_array_add_element(
566 &iter_array
, "TKIP"))
570 if (capa
.key_mgmt
& WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE
) {
571 if (!wpa_dbus_dict_string_array_add_element(
572 &iter_array
, "NONE"))
576 if (!wpa_dbus_dict_end_string_array(&iter_dict
,
583 /***** group cipher */
586 const char *args
[] = {
587 "CCMP", "TKIP", "WEP104", "WEP40"
589 if (!wpa_dbus_dict_append_string_array(
590 &iter_dict
, "group", args
,
591 sizeof(args
) / sizeof(char*)))
595 if (!wpa_dbus_dict_begin_string_array(&iter_dict
, "group",
601 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_CCMP
) {
602 if (!wpa_dbus_dict_string_array_add_element(
603 &iter_array
, "CCMP"))
607 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_TKIP
) {
608 if (!wpa_dbus_dict_string_array_add_element(
609 &iter_array
, "TKIP"))
613 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_WEP104
) {
614 if (!wpa_dbus_dict_string_array_add_element(
615 &iter_array
, "WEP104"))
619 if (capa
.enc
& WPA_DRIVER_CAPA_ENC_WEP40
) {
620 if (!wpa_dbus_dict_string_array_add_element(
621 &iter_array
, "WEP40"))
625 if (!wpa_dbus_dict_end_string_array(&iter_dict
,
632 /***** key management */
635 const char *args
[] = {
636 "WPA-PSK", "WPA-EAP", "IEEE8021X", "WPA-NONE",
639 if (!wpa_dbus_dict_append_string_array(
640 &iter_dict
, "key_mgmt", args
,
641 sizeof(args
) / sizeof(char*)))
645 if (!wpa_dbus_dict_begin_string_array(&iter_dict
, "key_mgmt",
651 if (!wpa_dbus_dict_string_array_add_element(&iter_array
,
655 if (!wpa_dbus_dict_string_array_add_element(&iter_array
,
659 if (capa
.key_mgmt
& (WPA_DRIVER_CAPA_KEY_MGMT_WPA
|
660 WPA_DRIVER_CAPA_KEY_MGMT_WPA2
)) {
661 if (!wpa_dbus_dict_string_array_add_element(
662 &iter_array
, "WPA-EAP"))
666 if (capa
.key_mgmt
& (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK
|
667 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK
)) {
668 if (!wpa_dbus_dict_string_array_add_element(
669 &iter_array
, "WPA-PSK"))
673 if (capa
.key_mgmt
& WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE
) {
674 if (!wpa_dbus_dict_string_array_add_element(
675 &iter_array
, "WPA-NONE"))
679 if (!wpa_dbus_dict_end_string_array(&iter_dict
,
686 /***** WPA protocol */
689 const char *args
[] = { "RSN", "WPA" };
690 if (!wpa_dbus_dict_append_string_array(
691 &iter_dict
, "proto", args
,
692 sizeof(args
) / sizeof(char*)))
696 if (!wpa_dbus_dict_begin_string_array(&iter_dict
, "proto",
702 if (capa
.key_mgmt
& (WPA_DRIVER_CAPA_KEY_MGMT_WPA2
|
703 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK
)) {
704 if (!wpa_dbus_dict_string_array_add_element(
709 if (capa
.key_mgmt
& (WPA_DRIVER_CAPA_KEY_MGMT_WPA
|
710 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK
)) {
711 if (!wpa_dbus_dict_string_array_add_element(
716 if (!wpa_dbus_dict_end_string_array(&iter_dict
,
726 const char *args
[] = { "OPEN", "SHARED", "LEAP" };
727 if (!wpa_dbus_dict_append_string_array(
728 &iter_dict
, "auth_alg", args
,
729 sizeof(args
) / sizeof(char*)))
733 if (!wpa_dbus_dict_begin_string_array(&iter_dict
, "auth_alg",
739 if (capa
.auth
& (WPA_DRIVER_AUTH_OPEN
)) {
740 if (!wpa_dbus_dict_string_array_add_element(
741 &iter_array
, "OPEN"))
745 if (capa
.auth
& (WPA_DRIVER_AUTH_SHARED
)) {
746 if (!wpa_dbus_dict_string_array_add_element(
747 &iter_array
, "SHARED"))
751 if (capa
.auth
& (WPA_DRIVER_AUTH_LEAP
)) {
752 if (!wpa_dbus_dict_string_array_add_element(
753 &iter_array
, "LEAP"))
757 if (!wpa_dbus_dict_end_string_array(&iter_dict
,
764 if (!wpa_dbus_dict_close_write(&iter
, &iter_dict
))
771 dbus_message_unref(reply
);
772 return dbus_message_new_error(message
, WPAS_ERROR_INTERNAL_ERROR
,
773 "an internal error occurred returning "
774 "interface capabilities.");
779 * wpas_dbus_iface_add_network - Add a new configured network
780 * @message: Pointer to incoming dbus message
781 * @wpa_s: wpa_supplicant structure for a network interface
782 * Returns: A dbus message containing the object path of the new network
784 * Handler function for "addNetwork" method call of a network interface.
786 DBusMessage
* wpas_dbus_iface_add_network(DBusMessage
*message
,
787 struct wpa_supplicant
*wpa_s
)
789 DBusMessage
*reply
= NULL
;
790 struct wpa_ssid
*ssid
;
791 char path_buf
[WPAS_DBUS_OBJECT_PATH_MAX
], *path
= path_buf
;
793 ssid
= wpa_config_add_network(wpa_s
->conf
);
795 reply
= dbus_message_new_error(message
,
796 WPAS_ERROR_ADD_NETWORK_ERROR
,
797 "wpa_supplicant could not add "
798 "a network on this interface.");
801 wpas_notify_network_added(wpa_s
, ssid
);
803 wpa_config_set_network_defaults(ssid
);
805 /* Construct the object path for this network. */
806 os_snprintf(path
, WPAS_DBUS_OBJECT_PATH_MAX
,
807 "%s/" WPAS_DBUS_NETWORKS_PART
"/%d",
808 wpa_s
->dbus_path
, ssid
->id
);
810 reply
= dbus_message_new_method_return(message
);
811 dbus_message_append_args(reply
, DBUS_TYPE_OBJECT_PATH
,
812 &path
, DBUS_TYPE_INVALID
);
820 * wpas_dbus_iface_remove_network - Remove a configured network
821 * @message: Pointer to incoming dbus message
822 * @wpa_s: wpa_supplicant structure for a network interface
823 * Returns: A dbus message containing a UINT32 indicating success (1) or
826 * Handler function for "removeNetwork" method call of a network interface.
828 DBusMessage
* wpas_dbus_iface_remove_network(DBusMessage
*message
,
829 struct wpa_supplicant
*wpa_s
)
831 DBusMessage
*reply
= NULL
;
833 char *iface
= NULL
, *net_id
= NULL
;
835 struct wpa_ssid
*ssid
;
837 if (!dbus_message_get_args(message
, NULL
,
838 DBUS_TYPE_OBJECT_PATH
, &op
,
839 DBUS_TYPE_INVALID
)) {
840 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
844 /* Extract the network ID */
845 iface
= wpas_dbus_decompose_object_path(op
, &net_id
, NULL
);
847 reply
= wpas_dbus_new_invalid_network_error(message
);
851 /* Ensure the network is actually a child of this interface */
852 if (os_strcmp(iface
, wpa_s
->dbus_path
) != 0) {
853 reply
= wpas_dbus_new_invalid_network_error(message
);
857 id
= strtoul(net_id
, NULL
, 10);
858 ssid
= wpa_config_get_network(wpa_s
->conf
, id
);
860 reply
= wpas_dbus_new_invalid_network_error(message
);
864 wpas_notify_network_removed(wpa_s
, ssid
);
866 if (wpa_config_remove_network(wpa_s
->conf
, id
) < 0) {
867 reply
= dbus_message_new_error(message
,
868 WPAS_ERROR_REMOVE_NETWORK_ERROR
,
869 "error removing the specified "
870 "on this interface.");
874 if (ssid
== wpa_s
->current_ssid
)
875 wpa_supplicant_disassociate(wpa_s
, WLAN_REASON_DEAUTH_LEAVING
);
876 reply
= wpas_dbus_new_success_reply(message
);
885 static const char *dont_quote
[] = {
886 "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap",
887 "opensc_engine_path", "pkcs11_engine_path", "pkcs11_module_path",
892 static dbus_bool_t
should_quote_opt(const char *key
)
895 while (dont_quote
[i
] != NULL
) {
896 if (strcmp(key
, dont_quote
[i
]) == 0)
905 * wpas_dbus_iface_set_network - Set options for a configured network
906 * @message: Pointer to incoming dbus message
907 * @wpa_s: wpa_supplicant structure for a network interface
908 * @ssid: wpa_ssid structure for a configured network
909 * Returns: a dbus message containing a UINT32 indicating success (1) or
912 * Handler function for "set" method call of a configured network.
914 DBusMessage
* wpas_dbus_iface_set_network(DBusMessage
*message
,
915 struct wpa_supplicant
*wpa_s
,
916 struct wpa_ssid
*ssid
)
918 DBusMessage
*reply
= NULL
;
919 struct wpa_dbus_dict_entry entry
= { .type
= DBUS_TYPE_STRING
};
920 DBusMessageIter iter
, iter_dict
;
922 dbus_message_iter_init(message
, &iter
);
924 if (!wpa_dbus_dict_open_read(&iter
, &iter_dict
)) {
925 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
929 while (wpa_dbus_dict_has_dict_entry(&iter_dict
)) {
934 if (!wpa_dbus_dict_get_entry(&iter_dict
, &entry
)) {
935 reply
= wpas_dbus_new_invalid_opts_error(message
,
940 /* Type conversions, since wpa_supplicant wants strings */
941 if (entry
.type
== DBUS_TYPE_ARRAY
&&
942 entry
.array_type
== DBUS_TYPE_BYTE
) {
943 if (entry
.array_len
<= 0)
946 size
= entry
.array_len
* 2 + 1;
947 value
= os_zalloc(size
);
950 ret
= wpa_snprintf_hex(value
, size
,
951 (u8
*) entry
.bytearray_value
,
955 } else if (entry
.type
== DBUS_TYPE_STRING
) {
956 if (should_quote_opt(entry
.key
)) {
957 size
= os_strlen(entry
.str_value
);
958 /* Zero-length option check */
961 size
+= 3; /* For quotes and terminator */
962 value
= os_zalloc(size
);
965 ret
= os_snprintf(value
, size
, "\"%s\"",
967 if (ret
< 0 || (size_t) ret
!= (size
- 1))
970 value
= os_strdup(entry
.str_value
);
974 } else if (entry
.type
== DBUS_TYPE_UINT32
) {
975 value
= os_zalloc(size
);
978 ret
= os_snprintf(value
, size
, "%u",
982 } else if (entry
.type
== DBUS_TYPE_INT32
) {
983 value
= os_zalloc(size
);
986 ret
= os_snprintf(value
, size
, "%d",
993 if (wpa_config_set(ssid
, entry
.key
, value
, 0) < 0)
996 if ((os_strcmp(entry
.key
, "psk") == 0 &&
997 value
[0] == '"' && ssid
->ssid_len
) ||
998 (os_strcmp(entry
.key
, "ssid") == 0 && ssid
->passphrase
))
999 wpa_config_update_psk(ssid
);
1002 wpa_dbus_dict_entry_clear(&entry
);
1007 reply
= wpas_dbus_new_invalid_opts_error(message
, entry
.key
);
1008 wpa_dbus_dict_entry_clear(&entry
);
1013 reply
= wpas_dbus_new_success_reply(message
);
1021 * wpas_dbus_iface_enable_network - Mark a configured network as enabled
1022 * @message: Pointer to incoming dbus message
1023 * @wpa_s: wpa_supplicant structure for a network interface
1024 * @ssid: wpa_ssid structure for a configured network
1025 * Returns: A dbus message containing a UINT32 indicating success (1) or
1028 * Handler function for "enable" method call of a configured network.
1030 DBusMessage
* wpas_dbus_iface_enable_network(DBusMessage
*message
,
1031 struct wpa_supplicant
*wpa_s
,
1032 struct wpa_ssid
*ssid
)
1034 wpa_supplicant_enable_network(wpa_s
, ssid
);
1035 return wpas_dbus_new_success_reply(message
);
1040 * wpas_dbus_iface_disable_network - Mark a configured network as disabled
1041 * @message: Pointer to incoming dbus message
1042 * @wpa_s: wpa_supplicant structure for a network interface
1043 * @ssid: wpa_ssid structure for a configured network
1044 * Returns: A dbus message containing a UINT32 indicating success (1) or
1047 * Handler function for "disable" method call of a configured network.
1049 DBusMessage
* wpas_dbus_iface_disable_network(DBusMessage
*message
,
1050 struct wpa_supplicant
*wpa_s
,
1051 struct wpa_ssid
*ssid
)
1053 wpa_supplicant_disable_network(wpa_s
, ssid
);
1054 return wpas_dbus_new_success_reply(message
);
1059 * wpas_dbus_iface_select_network - Attempt association with a configured network
1060 * @message: Pointer to incoming dbus message
1061 * @wpa_s: wpa_supplicant structure for a network interface
1062 * Returns: A dbus message containing a UINT32 indicating success (1) or
1065 * Handler function for "selectNetwork" method call of network interface.
1067 DBusMessage
* wpas_dbus_iface_select_network(DBusMessage
*message
,
1068 struct wpa_supplicant
*wpa_s
)
1070 DBusMessage
*reply
= NULL
;
1072 struct wpa_ssid
*ssid
;
1073 char *iface_obj_path
= NULL
;
1074 char *network
= NULL
;
1076 if (os_strlen(dbus_message_get_signature(message
)) == 0) {
1082 if (!dbus_message_get_args(message
, NULL
,
1083 DBUS_TYPE_OBJECT_PATH
, &op
,
1084 DBUS_TYPE_INVALID
)) {
1085 reply
= wpas_dbus_new_invalid_opts_error(message
,
1090 /* Extract the network number */
1091 iface_obj_path
= wpas_dbus_decompose_object_path(op
,
1094 if (iface_obj_path
== NULL
) {
1095 reply
= wpas_dbus_new_invalid_iface_error(message
);
1098 /* Ensure the object path really points to this interface */
1099 if (os_strcmp(iface_obj_path
, wpa_s
->dbus_path
) != 0) {
1100 reply
= wpas_dbus_new_invalid_network_error(message
);
1104 nid
= strtoul(network
, NULL
, 10);
1105 if (errno
== EINVAL
) {
1106 reply
= wpas_dbus_new_invalid_network_error(message
);
1110 ssid
= wpa_config_get_network(wpa_s
->conf
, nid
);
1112 reply
= wpas_dbus_new_invalid_network_error(message
);
1117 /* Finally, associate with the network */
1118 wpa_supplicant_select_network(wpa_s
, ssid
);
1120 reply
= wpas_dbus_new_success_reply(message
);
1123 os_free(iface_obj_path
);
1130 * wpas_dbus_iface_disconnect - Terminate the current connection
1131 * @message: Pointer to incoming dbus message
1132 * @wpa_s: wpa_supplicant structure for a network interface
1133 * Returns: A dbus message containing a UINT32 indicating success (1) or
1136 * Handler function for "disconnect" method call of network interface.
1138 DBusMessage
* wpas_dbus_iface_disconnect(DBusMessage
*message
,
1139 struct wpa_supplicant
*wpa_s
)
1141 wpa_s
->disconnected
= 1;
1142 wpa_supplicant_disassociate(wpa_s
, WLAN_REASON_DEAUTH_LEAVING
);
1144 return wpas_dbus_new_success_reply(message
);
1149 * wpas_dbus_iface_set_ap_scan - Control roaming mode
1150 * @message: Pointer to incoming dbus message
1151 * @wpa_s: wpa_supplicant structure for a network interface
1152 * Returns: A dbus message containing a UINT32 indicating success (1) or
1155 * Handler function for "setAPScan" method call.
1157 DBusMessage
* wpas_dbus_iface_set_ap_scan(DBusMessage
*message
,
1158 struct wpa_supplicant
*wpa_s
)
1160 DBusMessage
*reply
= NULL
;
1161 dbus_uint32_t ap_scan
= 1;
1163 if (!dbus_message_get_args(message
, NULL
, DBUS_TYPE_UINT32
, &ap_scan
,
1164 DBUS_TYPE_INVALID
)) {
1165 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
1169 if (wpa_supplicant_set_ap_scan(wpa_s
, ap_scan
)) {
1170 reply
= wpas_dbus_new_invalid_opts_error(message
, NULL
);
1174 reply
= wpas_dbus_new_success_reply(message
);
1182 * wpas_dbus_iface_set_smartcard_modules - Set smartcard related module paths
1183 * @message: Pointer to incoming dbus message
1184 * @wpa_s: wpa_supplicant structure for a network interface
1185 * Returns: A dbus message containing a UINT32 indicating success (1) or
1188 * Handler function for "setSmartcardModules" method call.
1190 DBusMessage
* wpas_dbus_iface_set_smartcard_modules(
1191 DBusMessage
*message
, struct wpa_supplicant
*wpa_s
)
1193 DBusMessageIter iter
, iter_dict
;
1194 char *opensc_engine_path
= NULL
;
1195 char *pkcs11_engine_path
= NULL
;
1196 char *pkcs11_module_path
= NULL
;
1197 struct wpa_dbus_dict_entry entry
;
1199 if (!dbus_message_iter_init(message
, &iter
))
1202 if (!wpa_dbus_dict_open_read(&iter
, &iter_dict
))
1205 while (wpa_dbus_dict_has_dict_entry(&iter_dict
)) {
1206 if (!wpa_dbus_dict_get_entry(&iter_dict
, &entry
))
1208 if (!strcmp(entry
.key
, "opensc_engine_path") &&
1209 (entry
.type
== DBUS_TYPE_STRING
)) {
1210 opensc_engine_path
= os_strdup(entry
.str_value
);
1211 if (opensc_engine_path
== NULL
)
1213 } else if (!strcmp(entry
.key
, "pkcs11_engine_path") &&
1214 (entry
.type
== DBUS_TYPE_STRING
)) {
1215 pkcs11_engine_path
= os_strdup(entry
.str_value
);
1216 if (pkcs11_engine_path
== NULL
)
1218 } else if (!strcmp(entry
.key
, "pkcs11_module_path") &&
1219 (entry
.type
== DBUS_TYPE_STRING
)) {
1220 pkcs11_module_path
= os_strdup(entry
.str_value
);
1221 if (pkcs11_module_path
== NULL
)
1224 wpa_dbus_dict_entry_clear(&entry
);
1227 wpa_dbus_dict_entry_clear(&entry
);
1230 os_free(wpa_s
->conf
->opensc_engine_path
);
1231 wpa_s
->conf
->opensc_engine_path
= opensc_engine_path
;
1232 os_free(wpa_s
->conf
->pkcs11_engine_path
);
1233 wpa_s
->conf
->pkcs11_engine_path
= pkcs11_engine_path
;
1234 os_free(wpa_s
->conf
->pkcs11_module_path
);
1235 wpa_s
->conf
->pkcs11_module_path
= pkcs11_module_path
;
1237 wpa_sm_set_eapol(wpa_s
->wpa
, NULL
);
1238 eapol_sm_deinit(wpa_s
->eapol
);
1239 wpa_s
->eapol
= NULL
;
1240 wpa_supplicant_init_eapol(wpa_s
);
1241 wpa_sm_set_eapol(wpa_s
->wpa
, wpa_s
->eapol
);
1243 return wpas_dbus_new_success_reply(message
);
1246 os_free(opensc_engine_path
);
1247 os_free(pkcs11_engine_path
);
1248 os_free(pkcs11_module_path
);
1249 return wpas_dbus_new_invalid_opts_error(message
, NULL
);
1254 * wpas_dbus_iface_get_state - Get interface state
1255 * @message: Pointer to incoming dbus message
1256 * @wpa_s: wpa_supplicant structure for a network interface
1257 * Returns: A dbus message containing a STRING representing the current
1260 * Handler function for "state" method call.
1262 DBusMessage
* wpas_dbus_iface_get_state(DBusMessage
*message
,
1263 struct wpa_supplicant
*wpa_s
)
1265 DBusMessage
*reply
= NULL
;
1266 const char *str_state
;
1268 reply
= dbus_message_new_method_return(message
);
1269 if (reply
!= NULL
) {
1270 str_state
= wpa_supplicant_state_txt(wpa_s
->wpa_state
);
1271 dbus_message_append_args(reply
, DBUS_TYPE_STRING
, &str_state
,
1280 * wpas_dbus_iface_get_scanning - Get interface scanning state
1281 * @message: Pointer to incoming dbus message
1282 * @wpa_s: wpa_supplicant structure for a network interface
1283 * Returns: A dbus message containing whether the interface is scanning
1285 * Handler function for "scanning" method call.
1287 DBusMessage
* wpas_dbus_iface_get_scanning(DBusMessage
*message
,
1288 struct wpa_supplicant
*wpa_s
)
1290 DBusMessage
*reply
= NULL
;
1291 dbus_bool_t scanning
= wpa_s
->scanning
? TRUE
: FALSE
;
1293 reply
= dbus_message_new_method_return(message
);
1294 if (reply
!= NULL
) {
1295 dbus_message_append_args(reply
, DBUS_TYPE_BOOLEAN
, &scanning
,
1298 wpa_printf(MSG_ERROR
, "dbus: Not enough memory to return "
1307 * wpas_dbus_iface_set_blobs - Store named binary blobs (ie, for certificates)
1308 * @message: Pointer to incoming dbus message
1309 * @wpa_s: %wpa_supplicant data structure
1310 * Returns: A dbus message containing a UINT32 indicating success (1) or
1313 * Asks wpa_supplicant to internally store a one or more binary blobs.
1315 DBusMessage
* wpas_dbus_iface_set_blobs(DBusMessage
*message
,
1316 struct wpa_supplicant
*wpa_s
)
1318 DBusMessage
*reply
= NULL
;
1319 struct wpa_dbus_dict_entry entry
= { .type
= DBUS_TYPE_STRING
};
1320 DBusMessageIter iter
, iter_dict
;
1322 dbus_message_iter_init(message
, &iter
);
1324 if (!wpa_dbus_dict_open_read(&iter
, &iter_dict
))
1325 return wpas_dbus_new_invalid_opts_error(message
, NULL
);
1327 while (wpa_dbus_dict_has_dict_entry(&iter_dict
)) {
1328 struct wpa_config_blob
*blob
;
1330 if (!wpa_dbus_dict_get_entry(&iter_dict
, &entry
)) {
1331 reply
= wpas_dbus_new_invalid_opts_error(message
,
1336 if (entry
.type
!= DBUS_TYPE_ARRAY
||
1337 entry
.array_type
!= DBUS_TYPE_BYTE
) {
1338 reply
= wpas_dbus_new_invalid_opts_error(
1339 message
, "Byte array expected.");
1343 if ((entry
.array_len
<= 0) || (entry
.array_len
> 65536) ||
1344 !strlen(entry
.key
)) {
1345 reply
= wpas_dbus_new_invalid_opts_error(
1346 message
, "Invalid array size.");
1350 blob
= os_zalloc(sizeof(*blob
));
1352 reply
= dbus_message_new_error(
1353 message
, WPAS_ERROR_ADD_ERROR
,
1354 "Not enough memory to add blob.");
1357 blob
->data
= os_zalloc(entry
.array_len
);
1358 if (blob
->data
== NULL
) {
1359 reply
= dbus_message_new_error(
1360 message
, WPAS_ERROR_ADD_ERROR
,
1361 "Not enough memory to add blob data.");
1366 blob
->name
= os_strdup(entry
.key
);
1367 blob
->len
= entry
.array_len
;
1368 os_memcpy(blob
->data
, (u8
*) entry
.bytearray_value
,
1370 if (blob
->name
== NULL
|| blob
->data
== NULL
) {
1371 wpa_config_free_blob(blob
);
1372 reply
= dbus_message_new_error(
1373 message
, WPAS_ERROR_ADD_ERROR
,
1374 "Error adding blob.");
1379 if (!wpa_config_remove_blob(wpa_s
->conf
, blob
->name
))
1380 wpas_notify_blob_removed(wpa_s
, blob
->name
);
1381 wpa_config_set_blob(wpa_s
->conf
, blob
);
1382 wpas_notify_blob_added(wpa_s
, blob
->name
);
1384 wpa_dbus_dict_entry_clear(&entry
);
1386 wpa_dbus_dict_entry_clear(&entry
);
1388 return reply
? reply
: wpas_dbus_new_success_reply(message
);
1393 * wpas_dbus_iface_remove_blob - Remove named binary blobs
1394 * @message: Pointer to incoming dbus message
1395 * @wpa_s: %wpa_supplicant data structure
1396 * Returns: A dbus message containing a UINT32 indicating success (1) or
1399 * Asks wpa_supplicant to remove one or more previously stored binary blobs.
1401 DBusMessage
* wpas_dbus_iface_remove_blobs(DBusMessage
*message
,
1402 struct wpa_supplicant
*wpa_s
)
1404 DBusMessageIter iter
, array
;
1405 char *err_msg
= NULL
;
1407 dbus_message_iter_init(message
, &iter
);
1409 if ((dbus_message_iter_get_arg_type (&iter
) != DBUS_TYPE_ARRAY
) ||
1410 (dbus_message_iter_get_element_type (&iter
) != DBUS_TYPE_STRING
))
1411 return wpas_dbus_new_invalid_opts_error(message
, NULL
);
1413 dbus_message_iter_recurse(&iter
, &array
);
1414 while (dbus_message_iter_get_arg_type(&array
) == DBUS_TYPE_STRING
) {
1417 dbus_message_iter_get_basic(&array
, &name
);
1418 if (!os_strlen(name
))
1419 err_msg
= "Invalid blob name.";
1421 if (wpa_config_remove_blob(wpa_s
->conf
, name
) != 0)
1422 err_msg
= "Error removing blob.";
1424 wpas_notify_blob_removed(wpa_s
, name
);
1425 dbus_message_iter_next(&array
);
1429 return dbus_message_new_error(message
, WPAS_ERROR_REMOVE_ERROR
,
1432 return wpas_dbus_new_success_reply(message
);