Branch data Line data Source code
1 : : /*
2 : : * WPA Supplicant / dbus-based control interface
3 : : * Copyright (c) 2006, Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
4 : : * Copyright (c) 2009-2010, Witold Sowa <witold.sowa@gmail.com>
5 : : * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
6 : : *
7 : : * This software may be distributed under the terms of the BSD license.
8 : : * See README for more details.
9 : : */
10 : :
11 : : #include "includes.h"
12 : :
13 : : #include "common.h"
14 : : #include "common/ieee802_11_defs.h"
15 : : #include "eap_peer/eap_methods.h"
16 : : #include "eapol_supp/eapol_supp_sm.h"
17 : : #include "rsn_supp/wpa.h"
18 : : #include "../config.h"
19 : : #include "../wpa_supplicant_i.h"
20 : : #include "../driver_i.h"
21 : : #include "../notify.h"
22 : : #include "../bss.h"
23 : : #include "../scan.h"
24 : : #include "../autoscan.h"
25 : : #include "dbus_new_helpers.h"
26 : : #include "dbus_new.h"
27 : : #include "dbus_new_handlers.h"
28 : : #include "dbus_dict_helpers.h"
29 : : #include "dbus_common_i.h"
30 : :
31 : : static const char *debug_strings[] = {
32 : : "excessive", "msgdump", "debug", "info", "warning", "error", NULL
33 : : };
34 : :
35 : :
36 : : /**
37 : : * wpas_dbus_error_unknown_error - Return a new InvalidArgs error message
38 : : * @message: Pointer to incoming dbus message this error refers to
39 : : * @arg: Optional string appended to error message
40 : : * Returns: a dbus error message
41 : : *
42 : : * Convenience function to create and return an UnknownError
43 : : */
44 : 0 : DBusMessage * wpas_dbus_error_unknown_error(DBusMessage *message,
45 : : const char *arg)
46 : : {
47 : : /*
48 : : * This function can be called as a result of a failure
49 : : * within internal getter calls, which will call this function
50 : : * with a NULL message parameter. However, dbus_message_new_error
51 : : * looks very unkindly (i.e, abort()) on a NULL message, so
52 : : * in this case, we should not call it.
53 : : */
54 [ # # ]: 0 : if (message == NULL) {
55 [ # # ]: 0 : wpa_printf(MSG_INFO, "dbus: wpas_dbus_error_unknown_error "
56 : : "called with NULL message (arg=%s)",
57 : : arg ? arg : "N/A");
58 : 0 : return NULL;
59 : : }
60 : :
61 : 0 : return dbus_message_new_error(message, WPAS_DBUS_ERROR_UNKNOWN_ERROR,
62 : : arg);
63 : : }
64 : :
65 : :
66 : : /**
67 : : * wpas_dbus_error_iface_unknown - Return a new invalid interface error message
68 : : * @message: Pointer to incoming dbus message this error refers to
69 : : * Returns: A dbus error message
70 : : *
71 : : * Convenience function to create and return an invalid interface error
72 : : */
73 : 0 : static DBusMessage * wpas_dbus_error_iface_unknown(DBusMessage *message)
74 : : {
75 : 0 : return dbus_message_new_error(message, WPAS_DBUS_ERROR_IFACE_UNKNOWN,
76 : : "wpa_supplicant knows nothing about "
77 : : "this interface.");
78 : : }
79 : :
80 : :
81 : : /**
82 : : * wpas_dbus_error_network_unknown - Return a new NetworkUnknown error message
83 : : * @message: Pointer to incoming dbus message this error refers to
84 : : * Returns: a dbus error message
85 : : *
86 : : * Convenience function to create and return an invalid network error
87 : : */
88 : 0 : static DBusMessage * wpas_dbus_error_network_unknown(DBusMessage *message)
89 : : {
90 : 0 : return dbus_message_new_error(message, WPAS_DBUS_ERROR_NETWORK_UNKNOWN,
91 : : "There is no such a network in this "
92 : : "interface.");
93 : : }
94 : :
95 : :
96 : : /**
97 : : * wpas_dbus_error_invalid_args - Return a new InvalidArgs error message
98 : : * @message: Pointer to incoming dbus message this error refers to
99 : : * Returns: a dbus error message
100 : : *
101 : : * Convenience function to create and return an invalid options error
102 : : */
103 : 0 : DBusMessage * wpas_dbus_error_invalid_args(DBusMessage *message,
104 : : const char *arg)
105 : : {
106 : : DBusMessage *reply;
107 : :
108 : 0 : reply = dbus_message_new_error(message, WPAS_DBUS_ERROR_INVALID_ARGS,
109 : : "Did not receive correct message "
110 : : "arguments.");
111 [ # # ]: 0 : if (arg != NULL)
112 : 0 : dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg,
113 : : DBUS_TYPE_INVALID);
114 : :
115 : 0 : return reply;
116 : : }
117 : :
118 : :
119 : : static const char *dont_quote[] = {
120 : : "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap",
121 : : "opensc_engine_path", "pkcs11_engine_path", "pkcs11_module_path",
122 : : "bssid", "scan_freq", "freq_list", NULL
123 : : };
124 : :
125 : 0 : static dbus_bool_t should_quote_opt(const char *key)
126 : : {
127 : 0 : int i = 0;
128 [ # # ]: 0 : while (dont_quote[i] != NULL) {
129 [ # # ]: 0 : if (os_strcmp(key, dont_quote[i]) == 0)
130 : 0 : return FALSE;
131 : 0 : i++;
132 : : }
133 : 0 : return TRUE;
134 : : }
135 : :
136 : : /**
137 : : * get_iface_by_dbus_path - Get a new network interface
138 : : * @global: Pointer to global data from wpa_supplicant_init()
139 : : * @path: Pointer to a dbus object path representing an interface
140 : : * Returns: Pointer to the interface or %NULL if not found
141 : : */
142 : 0 : static struct wpa_supplicant * get_iface_by_dbus_path(
143 : : struct wpa_global *global, const char *path)
144 : : {
145 : : struct wpa_supplicant *wpa_s;
146 : :
147 [ # # ]: 0 : for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
148 [ # # ]: 0 : if (os_strcmp(wpa_s->dbus_new_path, path) == 0)
149 : 0 : return wpa_s;
150 : : }
151 : 0 : return NULL;
152 : : }
153 : :
154 : :
155 : : /**
156 : : * set_network_properties - Set properties of a configured network
157 : : * @wpa_s: wpa_supplicant structure for a network interface
158 : : * @ssid: wpa_ssid structure for a configured network
159 : : * @iter: DBus message iterator containing dictionary of network
160 : : * properties to set.
161 : : * @error: On failure, an error describing the failure
162 : : * Returns: TRUE if the request succeeds, FALSE if it failed
163 : : *
164 : : * Sets network configuration with parameters given id DBus dictionary
165 : : */
166 : 0 : dbus_bool_t set_network_properties(struct wpa_supplicant *wpa_s,
167 : : struct wpa_ssid *ssid,
168 : : DBusMessageIter *iter,
169 : : DBusError *error)
170 : : {
171 : 0 : struct wpa_dbus_dict_entry entry = { .type = DBUS_TYPE_STRING };
172 : : DBusMessageIter iter_dict;
173 : 0 : char *value = NULL;
174 : :
175 [ # # ]: 0 : if (!wpa_dbus_dict_open_read(iter, &iter_dict, error))
176 : 0 : return FALSE;
177 : :
178 [ # # ]: 0 : while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
179 : 0 : size_t size = 50;
180 : : int ret;
181 : :
182 [ # # ]: 0 : if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
183 : 0 : goto error;
184 : :
185 : 0 : value = NULL;
186 [ # # ][ # # ]: 0 : if (entry.type == DBUS_TYPE_ARRAY &&
187 : 0 : entry.array_type == DBUS_TYPE_BYTE) {
188 [ # # ]: 0 : if (entry.array_len <= 0)
189 : 0 : goto error;
190 : :
191 : 0 : size = entry.array_len * 2 + 1;
192 : 0 : value = os_zalloc(size);
193 [ # # ]: 0 : if (value == NULL)
194 : 0 : goto error;
195 : :
196 : 0 : ret = wpa_snprintf_hex(value, size,
197 : 0 : (u8 *) entry.bytearray_value,
198 : 0 : entry.array_len);
199 [ # # ]: 0 : if (ret <= 0)
200 : 0 : goto error;
201 [ # # ]: 0 : } else if (entry.type == DBUS_TYPE_STRING) {
202 [ # # ]: 0 : if (should_quote_opt(entry.key)) {
203 : 0 : size = os_strlen(entry.str_value);
204 [ # # ]: 0 : if (size <= 0)
205 : 0 : goto error;
206 : :
207 : 0 : size += 3;
208 : 0 : value = os_zalloc(size);
209 [ # # ]: 0 : if (value == NULL)
210 : 0 : goto error;
211 : :
212 : 0 : ret = os_snprintf(value, size, "\"%s\"",
213 : : entry.str_value);
214 [ # # ][ # # ]: 0 : if (ret < 0 || (size_t) ret != (size - 1))
215 : : goto error;
216 : : } else {
217 : 0 : value = os_strdup(entry.str_value);
218 [ # # ]: 0 : if (value == NULL)
219 : 0 : goto error;
220 : : }
221 [ # # ]: 0 : } else if (entry.type == DBUS_TYPE_UINT32) {
222 : 0 : value = os_zalloc(size);
223 [ # # ]: 0 : if (value == NULL)
224 : 0 : goto error;
225 : :
226 : 0 : ret = os_snprintf(value, size, "%u",
227 : : entry.uint32_value);
228 [ # # ]: 0 : if (ret <= 0)
229 : 0 : goto error;
230 [ # # ]: 0 : } else if (entry.type == DBUS_TYPE_INT32) {
231 : 0 : value = os_zalloc(size);
232 [ # # ]: 0 : if (value == NULL)
233 : 0 : goto error;
234 : :
235 : 0 : ret = os_snprintf(value, size, "%d",
236 : : entry.int32_value);
237 [ # # ]: 0 : if (ret <= 0)
238 : 0 : goto error;
239 : : } else
240 : 0 : goto error;
241 : :
242 [ # # ]: 0 : if (wpa_config_set(ssid, entry.key, value, 0) < 0)
243 : 0 : goto error;
244 : :
245 [ # # ][ # # ]: 0 : if ((os_strcmp(entry.key, "psk") == 0 &&
246 [ # # ][ # # ]: 0 : value[0] == '"' && ssid->ssid_len) ||
247 [ # # ]: 0 : (os_strcmp(entry.key, "ssid") == 0 && ssid->passphrase))
248 : 0 : wpa_config_update_psk(ssid);
249 [ # # ]: 0 : else if (os_strcmp(entry.key, "priority") == 0)
250 : 0 : wpa_config_update_prio_list(wpa_s->conf);
251 : :
252 : 0 : os_free(value);
253 : 0 : wpa_dbus_dict_entry_clear(&entry);
254 : : }
255 : :
256 : 0 : return TRUE;
257 : :
258 : : error:
259 : 0 : os_free(value);
260 : 0 : wpa_dbus_dict_entry_clear(&entry);
261 : 0 : dbus_set_error_const(error, DBUS_ERROR_INVALID_ARGS,
262 : : "invalid message format");
263 : 0 : return FALSE;
264 : : }
265 : :
266 : :
267 : : /**
268 : : * wpas_dbus_simple_property_getter - Get basic type property
269 : : * @iter: Message iter to use when appending arguments
270 : : * @type: DBus type of property (must be basic type)
271 : : * @val: pointer to place holding property value
272 : : * @error: On failure an error describing the failure
273 : : * Returns: TRUE if the request was successful, FALSE if it failed
274 : : *
275 : : * Generic getter for basic type properties. Type is required to be basic.
276 : : */
277 : 0 : dbus_bool_t wpas_dbus_simple_property_getter(DBusMessageIter *iter,
278 : : const int type,
279 : : const void *val,
280 : : DBusError *error)
281 : : {
282 : : DBusMessageIter variant_iter;
283 : :
284 [ # # ]: 0 : if (!dbus_type_is_basic(type)) {
285 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
286 : : "%s: given type is not basic", __func__);
287 : 0 : return FALSE;
288 : : }
289 : :
290 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
291 : : wpa_dbus_type_as_string(type),
292 : : &variant_iter))
293 : 0 : goto error;
294 : :
295 [ # # ]: 0 : if (!dbus_message_iter_append_basic(&variant_iter, type, val))
296 : 0 : goto error;
297 : :
298 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter))
299 : 0 : goto error;
300 : :
301 : 0 : return TRUE;
302 : :
303 : : error:
304 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
305 : : "%s: error constructing reply", __func__);
306 : 0 : return FALSE;
307 : : }
308 : :
309 : :
310 : : /**
311 : : * wpas_dbus_simple_property_setter - Set basic type property
312 : : * @message: Pointer to incoming dbus message
313 : : * @type: DBus type of property (must be basic type)
314 : : * @val: pointer to place where value being set will be stored
315 : : * Returns: TRUE if the request was successful, FALSE if it failed
316 : : *
317 : : * Generic setter for basic type properties. Type is required to be basic.
318 : : */
319 : 0 : dbus_bool_t wpas_dbus_simple_property_setter(DBusMessageIter *iter,
320 : : DBusError *error,
321 : : const int type, void *val)
322 : : {
323 : : DBusMessageIter variant_iter;
324 : :
325 [ # # ]: 0 : if (!dbus_type_is_basic(type)) {
326 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
327 : : "%s: given type is not basic", __func__);
328 : 0 : return FALSE;
329 : : }
330 : :
331 : : /* Look at the new value */
332 : 0 : dbus_message_iter_recurse(iter, &variant_iter);
333 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(&variant_iter) != type) {
334 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
335 : : "wrong property type");
336 : 0 : return FALSE;
337 : : }
338 : 0 : dbus_message_iter_get_basic(&variant_iter, val);
339 : :
340 : 0 : return TRUE;
341 : : }
342 : :
343 : :
344 : : /**
345 : : * wpas_dbus_simple_array_property_getter - Get array type property
346 : : * @iter: Pointer to incoming dbus message iterator
347 : : * @type: DBus type of property array elements (must be basic type)
348 : : * @array: pointer to array of elements to put into response message
349 : : * @array_len: length of above array
350 : : * @error: a pointer to an error to fill on failure
351 : : * Returns: TRUE if the request succeeded, FALSE if it failed
352 : : *
353 : : * Generic getter for array type properties. Array elements type is
354 : : * required to be basic.
355 : : */
356 : 0 : dbus_bool_t wpas_dbus_simple_array_property_getter(DBusMessageIter *iter,
357 : : const int type,
358 : : const void *array,
359 : : size_t array_len,
360 : : DBusError *error)
361 : : {
362 : : DBusMessageIter variant_iter, array_iter;
363 : 0 : char type_str[] = "a?"; /* ? will be replaced with subtype letter; */
364 : : const char *sub_type_str;
365 : : size_t element_size, i;
366 : :
367 [ # # ]: 0 : if (!dbus_type_is_basic(type)) {
368 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
369 : : "%s: given type is not basic", __func__);
370 : 0 : return FALSE;
371 : : }
372 : :
373 : 0 : sub_type_str = wpa_dbus_type_as_string(type);
374 : 0 : type_str[1] = sub_type_str[0];
375 : :
376 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
377 : : type_str, &variant_iter)) {
378 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
379 : : "%s: failed to construct message 1", __func__);
380 : 0 : return FALSE;
381 : : }
382 : :
383 [ # # ]: 0 : if (!dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY,
384 : : sub_type_str, &array_iter)) {
385 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
386 : : "%s: failed to construct message 2", __func__);
387 : 0 : return FALSE;
388 : : }
389 : :
390 [ # # # # : 0 : switch(type) {
# # # ]
391 : : case DBUS_TYPE_BYTE:
392 : : case DBUS_TYPE_BOOLEAN:
393 : 0 : element_size = 1;
394 : 0 : break;
395 : : case DBUS_TYPE_INT16:
396 : : case DBUS_TYPE_UINT16:
397 : 0 : element_size = sizeof(uint16_t);
398 : 0 : break;
399 : : case DBUS_TYPE_INT32:
400 : : case DBUS_TYPE_UINT32:
401 : 0 : element_size = sizeof(uint32_t);
402 : 0 : break;
403 : : case DBUS_TYPE_INT64:
404 : : case DBUS_TYPE_UINT64:
405 : 0 : element_size = sizeof(uint64_t);
406 : 0 : break;
407 : : case DBUS_TYPE_DOUBLE:
408 : 0 : element_size = sizeof(double);
409 : 0 : break;
410 : : case DBUS_TYPE_STRING:
411 : : case DBUS_TYPE_OBJECT_PATH:
412 : 0 : element_size = sizeof(char *);
413 : 0 : break;
414 : : default:
415 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
416 : : "%s: unknown element type %d", __func__, type);
417 : 0 : return FALSE;
418 : : }
419 : :
420 [ # # ]: 0 : for (i = 0; i < array_len; i++) {
421 : 0 : dbus_message_iter_append_basic(&array_iter, type,
422 : 0 : array + i * element_size);
423 : : }
424 : :
425 [ # # ]: 0 : if (!dbus_message_iter_close_container(&variant_iter, &array_iter)) {
426 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
427 : : "%s: failed to construct message 3", __func__);
428 : 0 : return FALSE;
429 : : }
430 : :
431 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter)) {
432 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
433 : : "%s: failed to construct message 4", __func__);
434 : 0 : return FALSE;
435 : : }
436 : :
437 : 0 : return TRUE;
438 : : }
439 : :
440 : :
441 : : /**
442 : : * wpas_dbus_simple_array_array_property_getter - Get array array type property
443 : : * @iter: Pointer to incoming dbus message iterator
444 : : * @type: DBus type of property array elements (must be basic type)
445 : : * @array: pointer to array of elements to put into response message
446 : : * @array_len: length of above array
447 : : * @error: a pointer to an error to fill on failure
448 : : * Returns: TRUE if the request succeeded, FALSE if it failed
449 : : *
450 : : * Generic getter for array type properties. Array elements type is
451 : : * required to be basic.
452 : : */
453 : 0 : dbus_bool_t wpas_dbus_simple_array_array_property_getter(DBusMessageIter *iter,
454 : : const int type,
455 : : struct wpabuf **array,
456 : : size_t array_len,
457 : : DBusError *error)
458 : : {
459 : : DBusMessageIter variant_iter, array_iter;
460 : 0 : char type_str[] = "aa?";
461 : 0 : char inner_type_str[] = "a?";
462 : : const char *sub_type_str;
463 : : size_t i;
464 : :
465 [ # # ]: 0 : if (!dbus_type_is_basic(type)) {
466 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
467 : : "%s: given type is not basic", __func__);
468 : 0 : return FALSE;
469 : : }
470 : :
471 : 0 : sub_type_str = wpa_dbus_type_as_string(type);
472 : 0 : type_str[2] = sub_type_str[0];
473 : 0 : inner_type_str[1] = sub_type_str[0];
474 : :
475 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
476 : : type_str, &variant_iter)) {
477 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
478 : : "%s: failed to construct message 1", __func__);
479 : 0 : return FALSE;
480 : : }
481 [ # # ]: 0 : if (!dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY,
482 : : inner_type_str, &array_iter)) {
483 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
484 : : "%s: failed to construct message 2", __func__);
485 : 0 : return FALSE;
486 : : }
487 : :
488 [ # # ]: 0 : for (i = 0; i < array_len; i++) {
489 : 0 : wpa_dbus_dict_bin_array_add_element(&array_iter,
490 : 0 : wpabuf_head(array[i]),
491 : 0 : wpabuf_len(array[i]));
492 : :
493 : : }
494 : :
495 [ # # ]: 0 : if (!dbus_message_iter_close_container(&variant_iter, &array_iter)) {
496 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
497 : : "%s: failed to close message 2", __func__);
498 : 0 : return FALSE;
499 : : }
500 : :
501 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter)) {
502 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
503 : : "%s: failed to close message 1", __func__);
504 : 0 : return FALSE;
505 : : }
506 : :
507 : 0 : return TRUE;
508 : : }
509 : :
510 : :
511 : : /**
512 : : * wpas_dbus_handler_create_interface - Request registration of a network iface
513 : : * @message: Pointer to incoming dbus message
514 : : * @global: %wpa_supplicant global data structure
515 : : * Returns: The object path of the new interface object,
516 : : * or a dbus error message with more information
517 : : *
518 : : * Handler function for "CreateInterface" method call. Handles requests
519 : : * by dbus clients to register a network interface that wpa_supplicant
520 : : * will manage.
521 : : */
522 : 0 : DBusMessage * wpas_dbus_handler_create_interface(DBusMessage *message,
523 : : struct wpa_global *global)
524 : : {
525 : : DBusMessageIter iter_dict;
526 : 0 : DBusMessage *reply = NULL;
527 : : DBusMessageIter iter;
528 : : struct wpa_dbus_dict_entry entry;
529 : 0 : char *driver = NULL;
530 : 0 : char *ifname = NULL;
531 : 0 : char *confname = NULL;
532 : 0 : char *bridge_ifname = NULL;
533 : :
534 : 0 : dbus_message_iter_init(message, &iter);
535 : :
536 [ # # ]: 0 : if (!wpa_dbus_dict_open_read(&iter, &iter_dict, NULL))
537 : 0 : goto error;
538 [ # # ]: 0 : while (wpa_dbus_dict_has_dict_entry(&iter_dict)) {
539 [ # # ]: 0 : if (!wpa_dbus_dict_get_entry(&iter_dict, &entry))
540 : 0 : goto error;
541 [ # # ][ # # ]: 0 : if (!os_strcmp(entry.key, "Driver") &&
542 : 0 : (entry.type == DBUS_TYPE_STRING)) {
543 : 0 : driver = os_strdup(entry.str_value);
544 : 0 : wpa_dbus_dict_entry_clear(&entry);
545 [ # # ]: 0 : if (driver == NULL)
546 : 0 : goto error;
547 [ # # ][ # # ]: 0 : } else if (!os_strcmp(entry.key, "Ifname") &&
548 : 0 : (entry.type == DBUS_TYPE_STRING)) {
549 : 0 : ifname = os_strdup(entry.str_value);
550 : 0 : wpa_dbus_dict_entry_clear(&entry);
551 [ # # ]: 0 : if (ifname == NULL)
552 : 0 : goto error;
553 [ # # ][ # # ]: 0 : } else if (!os_strcmp(entry.key, "ConfigFile") &&
554 : 0 : (entry.type == DBUS_TYPE_STRING)) {
555 : 0 : confname = os_strdup(entry.str_value);
556 : 0 : wpa_dbus_dict_entry_clear(&entry);
557 [ # # ]: 0 : if (confname == NULL)
558 : 0 : goto error;
559 [ # # ][ # # ]: 0 : } else if (!os_strcmp(entry.key, "BridgeIfname") &&
560 : 0 : (entry.type == DBUS_TYPE_STRING)) {
561 : 0 : bridge_ifname = os_strdup(entry.str_value);
562 : 0 : wpa_dbus_dict_entry_clear(&entry);
563 [ # # ]: 0 : if (bridge_ifname == NULL)
564 : 0 : goto error;
565 : : } else {
566 : 0 : wpa_dbus_dict_entry_clear(&entry);
567 : 0 : goto error;
568 : : }
569 : : }
570 : :
571 [ # # ]: 0 : if (ifname == NULL)
572 : 0 : goto error; /* Required Ifname argument missing */
573 : :
574 : : /*
575 : : * Try to get the wpa_supplicant record for this iface, return
576 : : * an error if we already control it.
577 : : */
578 [ # # ]: 0 : if (wpa_supplicant_get_iface(global, ifname) != NULL) {
579 : 0 : reply = dbus_message_new_error(message,
580 : : WPAS_DBUS_ERROR_IFACE_EXISTS,
581 : : "wpa_supplicant already "
582 : : "controls this interface.");
583 : : } else {
584 : : struct wpa_supplicant *wpa_s;
585 : : struct wpa_interface iface;
586 : 0 : os_memset(&iface, 0, sizeof(iface));
587 : 0 : iface.driver = driver;
588 : 0 : iface.ifname = ifname;
589 : 0 : iface.confname = confname;
590 : 0 : iface.bridge_ifname = bridge_ifname;
591 : : /* Otherwise, have wpa_supplicant attach to it. */
592 [ # # ]: 0 : if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
593 : 0 : const char *path = wpa_s->dbus_new_path;
594 : 0 : reply = dbus_message_new_method_return(message);
595 : 0 : dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH,
596 : : &path, DBUS_TYPE_INVALID);
597 : : } else {
598 : 0 : reply = wpas_dbus_error_unknown_error(
599 : : message, "wpa_supplicant couldn't grab this "
600 : : "interface.");
601 : : }
602 : : }
603 : :
604 : : out:
605 : 0 : os_free(driver);
606 : 0 : os_free(ifname);
607 : 0 : os_free(confname);
608 : 0 : os_free(bridge_ifname);
609 : 0 : return reply;
610 : :
611 : : error:
612 : 0 : reply = wpas_dbus_error_invalid_args(message, NULL);
613 : 0 : goto out;
614 : : }
615 : :
616 : :
617 : : /**
618 : : * wpas_dbus_handler_remove_interface - Request deregistration of an interface
619 : : * @message: Pointer to incoming dbus message
620 : : * @global: wpa_supplicant global data structure
621 : : * Returns: a dbus message containing a UINT32 indicating success (1) or
622 : : * failure (0), or returns a dbus error message with more information
623 : : *
624 : : * Handler function for "removeInterface" method call. Handles requests
625 : : * by dbus clients to deregister a network interface that wpa_supplicant
626 : : * currently manages.
627 : : */
628 : 0 : DBusMessage * wpas_dbus_handler_remove_interface(DBusMessage *message,
629 : : struct wpa_global *global)
630 : : {
631 : : struct wpa_supplicant *wpa_s;
632 : : char *path;
633 : 0 : DBusMessage *reply = NULL;
634 : :
635 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &path,
636 : : DBUS_TYPE_INVALID);
637 : :
638 : 0 : wpa_s = get_iface_by_dbus_path(global, path);
639 [ # # ]: 0 : if (wpa_s == NULL)
640 : 0 : reply = wpas_dbus_error_iface_unknown(message);
641 [ # # ]: 0 : else if (wpa_supplicant_remove_iface(global, wpa_s, 0)) {
642 : 0 : reply = wpas_dbus_error_unknown_error(
643 : : message, "wpa_supplicant couldn't remove this "
644 : : "interface.");
645 : : }
646 : :
647 : 0 : return reply;
648 : : }
649 : :
650 : :
651 : : /**
652 : : * wpas_dbus_handler_get_interface - Get the object path for an interface name
653 : : * @message: Pointer to incoming dbus message
654 : : * @global: %wpa_supplicant global data structure
655 : : * Returns: The object path of the interface object,
656 : : * or a dbus error message with more information
657 : : *
658 : : * Handler function for "getInterface" method call.
659 : : */
660 : 0 : DBusMessage * wpas_dbus_handler_get_interface(DBusMessage *message,
661 : : struct wpa_global *global)
662 : : {
663 : 0 : DBusMessage *reply = NULL;
664 : : const char *ifname;
665 : : const char *path;
666 : : struct wpa_supplicant *wpa_s;
667 : :
668 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &ifname,
669 : : DBUS_TYPE_INVALID);
670 : :
671 : 0 : wpa_s = wpa_supplicant_get_iface(global, ifname);
672 [ # # ]: 0 : if (wpa_s == NULL)
673 : 0 : return wpas_dbus_error_iface_unknown(message);
674 : :
675 : 0 : path = wpa_s->dbus_new_path;
676 : 0 : reply = dbus_message_new_method_return(message);
677 [ # # ]: 0 : if (reply == NULL)
678 : 0 : return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
679 : : NULL);
680 [ # # ]: 0 : if (!dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH, &path,
681 : : DBUS_TYPE_INVALID)) {
682 : 0 : dbus_message_unref(reply);
683 : 0 : return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
684 : : NULL);
685 : : }
686 : :
687 : 0 : return reply;
688 : : }
689 : :
690 : :
691 : : /**
692 : : * wpas_dbus_getter_debug_level - Get debug level
693 : : * @iter: Pointer to incoming dbus message iter
694 : : * @error: Location to store error on failure
695 : : * @user_data: Function specific data
696 : : * Returns: TRUE on success, FALSE on failure
697 : : *
698 : : * Getter for "DebugLevel" property.
699 : : */
700 : 0 : dbus_bool_t wpas_dbus_getter_debug_level(DBusMessageIter *iter,
701 : : DBusError *error,
702 : : void *user_data)
703 : : {
704 : : const char *str;
705 : 0 : int idx = wpa_debug_level;
706 : :
707 [ # # ]: 0 : if (idx < 0)
708 : 0 : idx = 0;
709 [ # # ]: 0 : if (idx > 5)
710 : 0 : idx = 5;
711 : 0 : str = debug_strings[idx];
712 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
713 : : &str, error);
714 : : }
715 : :
716 : :
717 : : /**
718 : : * wpas_dbus_getter_debug_timestamp - Get debug timestamp
719 : : * @iter: Pointer to incoming dbus message iter
720 : : * @error: Location to store error on failure
721 : : * @user_data: Function specific data
722 : : * Returns: TRUE on success, FALSE on failure
723 : : *
724 : : * Getter for "DebugTimestamp" property.
725 : : */
726 : 0 : dbus_bool_t wpas_dbus_getter_debug_timestamp(DBusMessageIter *iter,
727 : : DBusError *error,
728 : : void *user_data)
729 : : {
730 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
731 : : &wpa_debug_timestamp, error);
732 : :
733 : : }
734 : :
735 : :
736 : : /**
737 : : * wpas_dbus_getter_debug_show_keys - Get debug show keys
738 : : * @iter: Pointer to incoming dbus message iter
739 : : * @error: Location to store error on failure
740 : : * @user_data: Function specific data
741 : : * Returns: TRUE on success, FALSE on failure
742 : : *
743 : : * Getter for "DebugShowKeys" property.
744 : : */
745 : 0 : dbus_bool_t wpas_dbus_getter_debug_show_keys(DBusMessageIter *iter,
746 : : DBusError *error,
747 : : void *user_data)
748 : : {
749 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
750 : : &wpa_debug_show_keys, error);
751 : :
752 : : }
753 : :
754 : : /**
755 : : * wpas_dbus_setter_debug_level - Set debug level
756 : : * @iter: Pointer to incoming dbus message iter
757 : : * @error: Location to store error on failure
758 : : * @user_data: Function specific data
759 : : * Returns: TRUE on success, FALSE on failure
760 : : *
761 : : * Setter for "DebugLevel" property.
762 : : */
763 : 0 : dbus_bool_t wpas_dbus_setter_debug_level(DBusMessageIter *iter,
764 : : DBusError *error, void *user_data)
765 : : {
766 : 0 : struct wpa_global *global = user_data;
767 : 0 : const char *str = NULL;
768 : 0 : int i, val = -1;
769 : :
770 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_STRING,
771 : : &str))
772 : 0 : return FALSE;
773 : :
774 [ # # ]: 0 : for (i = 0; debug_strings[i]; i++)
775 [ # # ]: 0 : if (os_strcmp(debug_strings[i], str) == 0) {
776 : 0 : val = i;
777 : 0 : break;
778 : : }
779 : :
780 [ # # # # ]: 0 : if (val < 0 ||
781 : 0 : wpa_supplicant_set_debug_params(global, val, wpa_debug_timestamp,
782 : : wpa_debug_show_keys)) {
783 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED, "wrong debug "
784 : : "level value");
785 : 0 : return FALSE;
786 : : }
787 : :
788 : 0 : return TRUE;
789 : : }
790 : :
791 : :
792 : : /**
793 : : * wpas_dbus_setter_debug_timestamp - Set debug timestamp
794 : : * @iter: Pointer to incoming dbus message iter
795 : : * @error: Location to store error on failure
796 : : * @user_data: Function specific data
797 : : * Returns: TRUE on success, FALSE on failure
798 : : *
799 : : * Setter for "DebugTimestamp" property.
800 : : */
801 : 0 : dbus_bool_t wpas_dbus_setter_debug_timestamp(DBusMessageIter *iter,
802 : : DBusError *error,
803 : : void *user_data)
804 : : {
805 : 0 : struct wpa_global *global = user_data;
806 : : dbus_bool_t val;
807 : :
808 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_BOOLEAN,
809 : : &val))
810 : 0 : return FALSE;
811 : :
812 : 0 : wpa_supplicant_set_debug_params(global, wpa_debug_level, val ? 1 : 0,
813 : : wpa_debug_show_keys);
814 : 0 : return TRUE;
815 : : }
816 : :
817 : :
818 : : /**
819 : : * wpas_dbus_setter_debug_show_keys - Set debug show keys
820 : : * @iter: Pointer to incoming dbus message iter
821 : : * @error: Location to store error on failure
822 : : * @user_data: Function specific data
823 : : * Returns: TRUE on success, FALSE on failure
824 : : *
825 : : * Setter for "DebugShowKeys" property.
826 : : */
827 : 0 : dbus_bool_t wpas_dbus_setter_debug_show_keys(DBusMessageIter *iter,
828 : : DBusError *error,
829 : : void *user_data)
830 : : {
831 : 0 : struct wpa_global *global = user_data;
832 : : dbus_bool_t val;
833 : :
834 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_BOOLEAN,
835 : : &val))
836 : 0 : return FALSE;
837 : :
838 : 0 : wpa_supplicant_set_debug_params(global, wpa_debug_level,
839 : : wpa_debug_timestamp,
840 : : val ? 1 : 0);
841 : 0 : return TRUE;
842 : : }
843 : :
844 : :
845 : : /**
846 : : * wpas_dbus_getter_interfaces - Request registered interfaces list
847 : : * @iter: Pointer to incoming dbus message iter
848 : : * @error: Location to store error on failure
849 : : * @user_data: Function specific data
850 : : * Returns: TRUE on success, FALSE on failure
851 : : *
852 : : * Getter for "Interfaces" property. Handles requests
853 : : * by dbus clients to return list of registered interfaces objects
854 : : * paths
855 : : */
856 : 0 : dbus_bool_t wpas_dbus_getter_interfaces(DBusMessageIter *iter,
857 : : DBusError *error,
858 : : void *user_data)
859 : : {
860 : 0 : struct wpa_global *global = user_data;
861 : : struct wpa_supplicant *wpa_s;
862 : : const char **paths;
863 : 0 : unsigned int i = 0, num = 0;
864 : : dbus_bool_t success;
865 : :
866 [ # # ]: 0 : for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
867 : 0 : num++;
868 : :
869 : 0 : paths = os_calloc(num, sizeof(char *));
870 [ # # ]: 0 : if (!paths) {
871 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
872 : 0 : return FALSE;
873 : : }
874 : :
875 [ # # ]: 0 : for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
876 : 0 : paths[i++] = wpa_s->dbus_new_path;
877 : :
878 : 0 : success = wpas_dbus_simple_array_property_getter(iter,
879 : : DBUS_TYPE_OBJECT_PATH,
880 : : paths, num, error);
881 : :
882 : 0 : os_free(paths);
883 : 0 : return success;
884 : : }
885 : :
886 : :
887 : : /**
888 : : * wpas_dbus_getter_eap_methods - Request supported EAP methods list
889 : : * @iter: Pointer to incoming dbus message iter
890 : : * @error: Location to store error on failure
891 : : * @user_data: Function specific data
892 : : * Returns: TRUE on success, FALSE on failure
893 : : *
894 : : * Getter for "EapMethods" property. Handles requests
895 : : * by dbus clients to return list of strings with supported EAP methods
896 : : */
897 : 0 : dbus_bool_t wpas_dbus_getter_eap_methods(DBusMessageIter *iter,
898 : : DBusError *error, void *user_data)
899 : : {
900 : : char **eap_methods;
901 : 0 : size_t num_items = 0;
902 : : dbus_bool_t success;
903 : :
904 : 0 : eap_methods = eap_get_names_as_string_array(&num_items);
905 [ # # ]: 0 : if (!eap_methods) {
906 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
907 : 0 : return FALSE;
908 : : }
909 : :
910 : 0 : success = wpas_dbus_simple_array_property_getter(iter,
911 : : DBUS_TYPE_STRING,
912 : : eap_methods,
913 : : num_items, error);
914 : :
915 [ # # ]: 0 : while (num_items)
916 : 0 : os_free(eap_methods[--num_items]);
917 : 0 : os_free(eap_methods);
918 : 0 : return success;
919 : : }
920 : :
921 : :
922 : : /**
923 : : * wpas_dbus_getter_global_capabilities - Request supported global capabilities
924 : : * @iter: Pointer to incoming dbus message iter
925 : : * @error: Location to store error on failure
926 : : * @user_data: Function specific data
927 : : * Returns: TRUE on success, FALSE on failure
928 : : *
929 : : * Getter for "Capabilities" property. Handles requests by dbus clients to
930 : : * return a list of strings with supported capabilities like AP, RSN IBSS,
931 : : * and P2P that are determined at compile time.
932 : : */
933 : 0 : dbus_bool_t wpas_dbus_getter_global_capabilities(DBusMessageIter *iter,
934 : : DBusError *error,
935 : : void *user_data)
936 : : {
937 : 0 : const char *capabilities[5] = { NULL, NULL, NULL, NULL, NULL };
938 : 0 : size_t num_items = 0;
939 : :
940 : : #ifdef CONFIG_AP
941 : 0 : capabilities[num_items++] = "ap";
942 : : #endif /* CONFIG_AP */
943 : : #ifdef CONFIG_IBSS_RSN
944 : 0 : capabilities[num_items++] = "ibss-rsn";
945 : : #endif /* CONFIG_IBSS_RSN */
946 : : #ifdef CONFIG_P2P
947 : 0 : capabilities[num_items++] = "p2p";
948 : : #endif /* CONFIG_P2P */
949 : : #ifdef CONFIG_INTERWORKING
950 : 0 : capabilities[num_items++] = "interworking";
951 : : #endif /* CONFIG_INTERWORKING */
952 : :
953 : 0 : return wpas_dbus_simple_array_property_getter(iter,
954 : : DBUS_TYPE_STRING,
955 : : capabilities,
956 : : num_items, error);
957 : : }
958 : :
959 : :
960 : 0 : static int wpas_dbus_get_scan_type(DBusMessage *message, DBusMessageIter *var,
961 : : char **type, DBusMessage **reply)
962 : : {
963 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_STRING) {
964 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
965 : : "Type must be a string");
966 : 0 : *reply = wpas_dbus_error_invalid_args(
967 : : message, "Wrong Type value type. String required");
968 : 0 : return -1;
969 : : }
970 : 0 : dbus_message_iter_get_basic(var, type);
971 : 0 : return 0;
972 : : }
973 : :
974 : :
975 : 0 : static int wpas_dbus_get_scan_ssids(DBusMessage *message, DBusMessageIter *var,
976 : : struct wpa_driver_scan_params *params,
977 : : DBusMessage **reply)
978 : : {
979 : 0 : struct wpa_driver_scan_ssid *ssids = params->ssids;
980 : 0 : size_t ssids_num = 0;
981 : : u8 *ssid;
982 : : DBusMessageIter array_iter, sub_array_iter;
983 : : char *val;
984 : : int len;
985 : :
986 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
987 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ssids "
988 : : "must be an array of arrays of bytes");
989 : 0 : *reply = wpas_dbus_error_invalid_args(
990 : : message, "Wrong SSIDs value type. Array of arrays of "
991 : : "bytes required");
992 : 0 : return -1;
993 : : }
994 : :
995 : 0 : dbus_message_iter_recurse(var, &array_iter);
996 : :
997 [ # # # # ]: 0 : if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_ARRAY ||
998 : 0 : dbus_message_iter_get_element_type(&array_iter) != DBUS_TYPE_BYTE)
999 : : {
1000 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ssids "
1001 : : "must be an array of arrays of bytes");
1002 : 0 : *reply = wpas_dbus_error_invalid_args(
1003 : : message, "Wrong SSIDs value type. Array of arrays of "
1004 : : "bytes required");
1005 : 0 : return -1;
1006 : : }
1007 : :
1008 [ # # ]: 0 : while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_ARRAY)
1009 : : {
1010 [ # # ]: 0 : if (ssids_num >= WPAS_MAX_SCAN_SSIDS) {
1011 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1012 : : "Too many ssids specified on scan dbus "
1013 : : "call");
1014 : 0 : *reply = wpas_dbus_error_invalid_args(
1015 : : message, "Too many ssids specified. Specify "
1016 : : "at most four");
1017 : 0 : return -1;
1018 : : }
1019 : :
1020 : 0 : dbus_message_iter_recurse(&array_iter, &sub_array_iter);
1021 : :
1022 : 0 : dbus_message_iter_get_fixed_array(&sub_array_iter, &val, &len);
1023 : :
1024 [ # # ]: 0 : if (len > MAX_SSID_LEN) {
1025 : 0 : wpa_printf(MSG_DEBUG,
1026 : : "wpas_dbus_handler_scan[dbus]: "
1027 : : "SSID too long (len=%d max_len=%d)",
1028 : : len, MAX_SSID_LEN);
1029 : 0 : *reply = wpas_dbus_error_invalid_args(
1030 : : message, "Invalid SSID: too long");
1031 : 0 : return -1;
1032 : : }
1033 : :
1034 [ # # ]: 0 : if (len != 0) {
1035 : 0 : ssid = os_malloc(len);
1036 [ # # ]: 0 : if (ssid == NULL) {
1037 : 0 : wpa_printf(MSG_DEBUG,
1038 : : "wpas_dbus_handler_scan[dbus]: "
1039 : : "out of memory. Cannot allocate "
1040 : : "memory for SSID");
1041 : 0 : *reply = dbus_message_new_error(
1042 : : message, DBUS_ERROR_NO_MEMORY, NULL);
1043 : 0 : return -1;
1044 : : }
1045 : 0 : os_memcpy(ssid, val, len);
1046 : : } else {
1047 : : /* Allow zero-length SSIDs */
1048 : 0 : ssid = NULL;
1049 : : }
1050 : :
1051 : 0 : ssids[ssids_num].ssid = ssid;
1052 : 0 : ssids[ssids_num].ssid_len = len;
1053 : :
1054 : 0 : dbus_message_iter_next(&array_iter);
1055 : 0 : ssids_num++;
1056 : : }
1057 : :
1058 : 0 : params->num_ssids = ssids_num;
1059 : 0 : return 0;
1060 : : }
1061 : :
1062 : :
1063 : 0 : static int wpas_dbus_get_scan_ies(DBusMessage *message, DBusMessageIter *var,
1064 : : struct wpa_driver_scan_params *params,
1065 : : DBusMessage **reply)
1066 : : {
1067 : 0 : u8 *ies = NULL, *nies;
1068 : 0 : int ies_len = 0;
1069 : : DBusMessageIter array_iter, sub_array_iter;
1070 : : char *val;
1071 : : int len;
1072 : :
1073 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
1074 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1075 : : "be an array of arrays of bytes");
1076 : 0 : *reply = wpas_dbus_error_invalid_args(
1077 : : message, "Wrong IEs value type. Array of arrays of "
1078 : : "bytes required");
1079 : 0 : return -1;
1080 : : }
1081 : :
1082 : 0 : dbus_message_iter_recurse(var, &array_iter);
1083 : :
1084 [ # # # # ]: 0 : if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_ARRAY ||
1085 : 0 : dbus_message_iter_get_element_type(&array_iter) != DBUS_TYPE_BYTE)
1086 : : {
1087 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: ies must "
1088 : : "be an array of arrays of bytes");
1089 : 0 : *reply = wpas_dbus_error_invalid_args(
1090 : : message, "Wrong IEs value type. Array required");
1091 : 0 : return -1;
1092 : : }
1093 : :
1094 [ # # ]: 0 : while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_ARRAY)
1095 : : {
1096 : 0 : dbus_message_iter_recurse(&array_iter, &sub_array_iter);
1097 : :
1098 : 0 : dbus_message_iter_get_fixed_array(&sub_array_iter, &val, &len);
1099 [ # # ]: 0 : if (len == 0) {
1100 : 0 : dbus_message_iter_next(&array_iter);
1101 : 0 : continue;
1102 : : }
1103 : :
1104 : 0 : nies = os_realloc(ies, ies_len + len);
1105 [ # # ]: 0 : if (nies == NULL) {
1106 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1107 : : "out of memory. Cannot allocate memory for "
1108 : : "IE");
1109 : 0 : os_free(ies);
1110 : 0 : *reply = dbus_message_new_error(
1111 : : message, DBUS_ERROR_NO_MEMORY, NULL);
1112 : 0 : return -1;
1113 : : }
1114 : 0 : ies = nies;
1115 : 0 : os_memcpy(ies + ies_len, val, len);
1116 : 0 : ies_len += len;
1117 : :
1118 : 0 : dbus_message_iter_next(&array_iter);
1119 : : }
1120 : :
1121 : 0 : params->extra_ies = ies;
1122 : 0 : params->extra_ies_len = ies_len;
1123 : 0 : return 0;
1124 : : }
1125 : :
1126 : :
1127 : 0 : static int wpas_dbus_get_scan_channels(DBusMessage *message,
1128 : : DBusMessageIter *var,
1129 : : struct wpa_driver_scan_params *params,
1130 : : DBusMessage **reply)
1131 : : {
1132 : : DBusMessageIter array_iter, sub_array_iter;
1133 : 0 : int *freqs = NULL, *nfreqs;
1134 : 0 : int freqs_num = 0;
1135 : :
1136 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_ARRAY) {
1137 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1138 : : "Channels must be an array of structs");
1139 : 0 : *reply = wpas_dbus_error_invalid_args(
1140 : : message, "Wrong Channels value type. Array of structs "
1141 : : "required");
1142 : 0 : return -1;
1143 : : }
1144 : :
1145 : 0 : dbus_message_iter_recurse(var, &array_iter);
1146 : :
1147 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(&array_iter) != DBUS_TYPE_STRUCT) {
1148 : 0 : wpa_printf(MSG_DEBUG,
1149 : : "wpas_dbus_handler_scan[dbus]: Channels must be an "
1150 : : "array of structs");
1151 : 0 : *reply = wpas_dbus_error_invalid_args(
1152 : : message, "Wrong Channels value type. Array of structs "
1153 : : "required");
1154 : 0 : return -1;
1155 : : }
1156 : :
1157 [ # # ]: 0 : while (dbus_message_iter_get_arg_type(&array_iter) == DBUS_TYPE_STRUCT)
1158 : : {
1159 : : int freq, width;
1160 : :
1161 : 0 : dbus_message_iter_recurse(&array_iter, &sub_array_iter);
1162 : :
1163 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(&sub_array_iter) !=
1164 : : DBUS_TYPE_UINT32) {
1165 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1166 : : "Channel must by specified by struct of "
1167 : : "two UINT32s %c",
1168 : : dbus_message_iter_get_arg_type(
1169 : : &sub_array_iter));
1170 : 0 : *reply = wpas_dbus_error_invalid_args(
1171 : : message, "Wrong Channel struct. Two UINT32s "
1172 : : "required");
1173 : 0 : os_free(freqs);
1174 : 0 : return -1;
1175 : : }
1176 : 0 : dbus_message_iter_get_basic(&sub_array_iter, &freq);
1177 : :
1178 [ # # # # ]: 0 : if (!dbus_message_iter_next(&sub_array_iter) ||
1179 : 0 : dbus_message_iter_get_arg_type(&sub_array_iter) !=
1180 : : DBUS_TYPE_UINT32) {
1181 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1182 : : "Channel must by specified by struct of "
1183 : : "two UINT32s");
1184 : 0 : *reply = wpas_dbus_error_invalid_args(
1185 : : message,
1186 : : "Wrong Channel struct. Two UINT32s required");
1187 : 0 : os_free(freqs);
1188 : 0 : return -1;
1189 : : }
1190 : :
1191 : 0 : dbus_message_iter_get_basic(&sub_array_iter, &width);
1192 : :
1193 : : #define FREQS_ALLOC_CHUNK 32
1194 [ # # ]: 0 : if (freqs_num % FREQS_ALLOC_CHUNK == 0) {
1195 : 0 : nfreqs = os_realloc_array(
1196 : 0 : freqs, freqs_num + FREQS_ALLOC_CHUNK,
1197 : : sizeof(int));
1198 [ # # ]: 0 : if (nfreqs == NULL)
1199 : 0 : os_free(freqs);
1200 : 0 : freqs = nfreqs;
1201 : : }
1202 [ # # ]: 0 : if (freqs == NULL) {
1203 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1204 : : "out of memory. can't allocate memory for "
1205 : : "freqs");
1206 : 0 : *reply = dbus_message_new_error(
1207 : : message, DBUS_ERROR_NO_MEMORY, NULL);
1208 : 0 : return -1;
1209 : : }
1210 : :
1211 : 0 : freqs[freqs_num] = freq;
1212 : :
1213 : 0 : freqs_num++;
1214 : 0 : dbus_message_iter_next(&array_iter);
1215 : : }
1216 : :
1217 : 0 : nfreqs = os_realloc_array(freqs, freqs_num + 1, sizeof(int));
1218 [ # # ]: 0 : if (nfreqs == NULL)
1219 : 0 : os_free(freqs);
1220 : 0 : freqs = nfreqs;
1221 [ # # ]: 0 : if (freqs == NULL) {
1222 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1223 : : "out of memory. Can't allocate memory for freqs");
1224 : 0 : *reply = dbus_message_new_error(
1225 : : message, DBUS_ERROR_NO_MEMORY, NULL);
1226 : 0 : return -1;
1227 : : }
1228 : 0 : freqs[freqs_num] = 0;
1229 : :
1230 : 0 : params->freqs = freqs;
1231 : 0 : return 0;
1232 : : }
1233 : :
1234 : :
1235 : 0 : static int wpas_dbus_get_scan_allow_roam(DBusMessage *message,
1236 : : DBusMessageIter *var,
1237 : : dbus_bool_t *allow,
1238 : : DBusMessage **reply)
1239 : : {
1240 [ # # ]: 0 : if (dbus_message_iter_get_arg_type(var) != DBUS_TYPE_BOOLEAN) {
1241 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1242 : : "Type must be a boolean");
1243 : 0 : *reply = wpas_dbus_error_invalid_args(
1244 : : message, "Wrong Type value type. Boolean required");
1245 : 0 : return -1;
1246 : : }
1247 : 0 : dbus_message_iter_get_basic(var, allow);
1248 : 0 : return 0;
1249 : : }
1250 : :
1251 : :
1252 : : /**
1253 : : * wpas_dbus_handler_scan - Request a wireless scan on an interface
1254 : : * @message: Pointer to incoming dbus message
1255 : : * @wpa_s: wpa_supplicant structure for a network interface
1256 : : * Returns: NULL indicating success or DBus error message on failure
1257 : : *
1258 : : * Handler function for "Scan" method call of a network device. Requests
1259 : : * that wpa_supplicant perform a wireless scan as soon as possible
1260 : : * on a particular wireless interface.
1261 : : */
1262 : 0 : DBusMessage * wpas_dbus_handler_scan(DBusMessage *message,
1263 : : struct wpa_supplicant *wpa_s)
1264 : : {
1265 : 0 : DBusMessage *reply = NULL;
1266 : : DBusMessageIter iter, dict_iter, entry_iter, variant_iter;
1267 : 0 : char *key = NULL, *type = NULL;
1268 : : struct wpa_driver_scan_params params;
1269 : : size_t i;
1270 : 0 : dbus_bool_t allow_roam = 1;
1271 : :
1272 : 0 : os_memset(¶ms, 0, sizeof(params));
1273 : :
1274 : 0 : dbus_message_iter_init(message, &iter);
1275 : :
1276 : 0 : dbus_message_iter_recurse(&iter, &dict_iter);
1277 : :
1278 [ # # ]: 0 : while (dbus_message_iter_get_arg_type(&dict_iter) ==
1279 : : DBUS_TYPE_DICT_ENTRY) {
1280 : 0 : dbus_message_iter_recurse(&dict_iter, &entry_iter);
1281 : 0 : dbus_message_iter_get_basic(&entry_iter, &key);
1282 : 0 : dbus_message_iter_next(&entry_iter);
1283 : 0 : dbus_message_iter_recurse(&entry_iter, &variant_iter);
1284 : :
1285 [ # # ]: 0 : if (os_strcmp(key, "Type") == 0) {
1286 [ # # ]: 0 : if (wpas_dbus_get_scan_type(message, &variant_iter,
1287 : : &type, &reply) < 0)
1288 : 0 : goto out;
1289 [ # # ]: 0 : } else if (os_strcmp(key, "SSIDs") == 0) {
1290 [ # # ]: 0 : if (wpas_dbus_get_scan_ssids(message, &variant_iter,
1291 : : ¶ms, &reply) < 0)
1292 : 0 : goto out;
1293 [ # # ]: 0 : } else if (os_strcmp(key, "IEs") == 0) {
1294 [ # # ]: 0 : if (wpas_dbus_get_scan_ies(message, &variant_iter,
1295 : : ¶ms, &reply) < 0)
1296 : 0 : goto out;
1297 [ # # ]: 0 : } else if (os_strcmp(key, "Channels") == 0) {
1298 [ # # ]: 0 : if (wpas_dbus_get_scan_channels(message, &variant_iter,
1299 : : ¶ms, &reply) < 0)
1300 : 0 : goto out;
1301 [ # # ]: 0 : } else if (os_strcmp(key, "AllowRoam") == 0) {
1302 [ # # ]: 0 : if (wpas_dbus_get_scan_allow_roam(message,
1303 : : &variant_iter,
1304 : : &allow_roam,
1305 : : &reply) < 0)
1306 : 0 : goto out;
1307 : : } else {
1308 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1309 : : "Unknown argument %s", key);
1310 : 0 : reply = wpas_dbus_error_invalid_args(message, key);
1311 : 0 : goto out;
1312 : : }
1313 : :
1314 : 0 : dbus_message_iter_next(&dict_iter);
1315 : : }
1316 : :
1317 [ # # ]: 0 : if (!type) {
1318 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1319 : : "Scan type not specified");
1320 : 0 : reply = wpas_dbus_error_invalid_args(message, key);
1321 : 0 : goto out;
1322 : : }
1323 : :
1324 [ # # ]: 0 : if (!os_strcmp(type, "passive")) {
1325 [ # # ][ # # ]: 0 : if (params.num_ssids || params.extra_ies_len) {
1326 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1327 : : "SSIDs or IEs specified for passive scan.");
1328 : 0 : reply = wpas_dbus_error_invalid_args(
1329 : : message, "You can specify only Channels in "
1330 : : "passive scan");
1331 : 0 : goto out;
1332 [ # # ][ # # ]: 0 : } else if (params.freqs && params.freqs[0]) {
1333 : 0 : wpa_supplicant_trigger_scan(wpa_s, ¶ms);
1334 : : } else {
1335 : 0 : wpa_s->scan_req = MANUAL_SCAN_REQ;
1336 : 0 : wpa_supplicant_req_scan(wpa_s, 0, 0);
1337 : : }
1338 [ # # ]: 0 : } else if (!os_strcmp(type, "active")) {
1339 [ # # ]: 0 : if (!params.num_ssids) {
1340 : : /* Add wildcard ssid */
1341 : 0 : params.num_ssids++;
1342 : : }
1343 : : #ifdef CONFIG_AUTOSCAN
1344 : 0 : autoscan_deinit(wpa_s);
1345 : : #endif /* CONFIG_AUTOSCAN */
1346 : 0 : wpa_supplicant_trigger_scan(wpa_s, ¶ms);
1347 : : } else {
1348 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_scan[dbus]: "
1349 : : "Unknown scan type: %s", type);
1350 : 0 : reply = wpas_dbus_error_invalid_args(message,
1351 : : "Wrong scan type");
1352 : 0 : goto out;
1353 : : }
1354 : :
1355 [ # # ]: 0 : if (!allow_roam)
1356 : 0 : wpa_s->scan_res_handler = scan_only_handler;
1357 : :
1358 : : out:
1359 [ # # ]: 0 : for (i = 0; i < WPAS_MAX_SCAN_SSIDS; i++)
1360 : 0 : os_free((u8 *) params.ssids[i].ssid);
1361 : 0 : os_free((u8 *) params.extra_ies);
1362 : 0 : os_free(params.freqs);
1363 : 0 : return reply;
1364 : : }
1365 : :
1366 : :
1367 : : /*
1368 : : * wpas_dbus_handler_disconnect - Terminate the current connection
1369 : : * @message: Pointer to incoming dbus message
1370 : : * @wpa_s: wpa_supplicant structure for a network interface
1371 : : * Returns: NotConnected DBus error message if already not connected
1372 : : * or NULL otherwise.
1373 : : *
1374 : : * Handler function for "Disconnect" method call of network interface.
1375 : : */
1376 : 0 : DBusMessage * wpas_dbus_handler_disconnect(DBusMessage *message,
1377 : : struct wpa_supplicant *wpa_s)
1378 : : {
1379 [ # # ]: 0 : if (wpa_s->current_ssid != NULL) {
1380 : 0 : wpa_s->disconnected = 1;
1381 : 0 : wpa_supplicant_deauthenticate(wpa_s,
1382 : : WLAN_REASON_DEAUTH_LEAVING);
1383 : :
1384 : 0 : return NULL;
1385 : : }
1386 : :
1387 : 0 : return dbus_message_new_error(message, WPAS_DBUS_ERROR_NOT_CONNECTED,
1388 : : "This interface is not connected");
1389 : : }
1390 : :
1391 : :
1392 : : /**
1393 : : * wpas_dbus_new_iface_add_network - Add a new configured network
1394 : : * @message: Pointer to incoming dbus message
1395 : : * @wpa_s: wpa_supplicant structure for a network interface
1396 : : * Returns: A dbus message containing the object path of the new network
1397 : : *
1398 : : * Handler function for "AddNetwork" method call of a network interface.
1399 : : */
1400 : 0 : DBusMessage * wpas_dbus_handler_add_network(DBusMessage *message,
1401 : : struct wpa_supplicant *wpa_s)
1402 : : {
1403 : 0 : DBusMessage *reply = NULL;
1404 : : DBusMessageIter iter;
1405 : 0 : struct wpa_ssid *ssid = NULL;
1406 : 0 : char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *path = path_buf;
1407 : : DBusError error;
1408 : :
1409 : 0 : dbus_message_iter_init(message, &iter);
1410 : :
1411 : 0 : ssid = wpa_config_add_network(wpa_s->conf);
1412 [ # # ]: 0 : if (ssid == NULL) {
1413 : 0 : wpa_printf(MSG_ERROR, "wpas_dbus_handler_add_network[dbus]: "
1414 : : "can't add new interface.");
1415 : 0 : reply = wpas_dbus_error_unknown_error(
1416 : : message,
1417 : : "wpa_supplicant could not add "
1418 : : "a network on this interface.");
1419 : 0 : goto err;
1420 : : }
1421 : 0 : wpas_notify_network_added(wpa_s, ssid);
1422 : 0 : ssid->disabled = 1;
1423 : 0 : wpa_config_set_network_defaults(ssid);
1424 : :
1425 : 0 : dbus_error_init(&error);
1426 [ # # ]: 0 : if (!set_network_properties(wpa_s, ssid, &iter, &error)) {
1427 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_handler_add_network[dbus]:"
1428 : : "control interface couldn't set network "
1429 : : "properties");
1430 : 0 : reply = wpas_dbus_reply_new_from_error(message, &error,
1431 : : DBUS_ERROR_INVALID_ARGS,
1432 : : "Failed to add network");
1433 : 0 : dbus_error_free(&error);
1434 : 0 : goto err;
1435 : : }
1436 : :
1437 : : /* Construct the object path for this network. */
1438 : 0 : os_snprintf(path, WPAS_DBUS_OBJECT_PATH_MAX,
1439 : : "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
1440 : : wpa_s->dbus_new_path, ssid->id);
1441 : :
1442 : 0 : reply = dbus_message_new_method_return(message);
1443 [ # # ]: 0 : if (reply == NULL) {
1444 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1445 : : NULL);
1446 : 0 : goto err;
1447 : : }
1448 [ # # ]: 0 : if (!dbus_message_append_args(reply, DBUS_TYPE_OBJECT_PATH, &path,
1449 : : DBUS_TYPE_INVALID)) {
1450 : 0 : dbus_message_unref(reply);
1451 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1452 : : NULL);
1453 : 0 : goto err;
1454 : : }
1455 : :
1456 : 0 : return reply;
1457 : :
1458 : : err:
1459 [ # # ]: 0 : if (ssid) {
1460 : 0 : wpas_notify_network_removed(wpa_s, ssid);
1461 : 0 : wpa_config_remove_network(wpa_s->conf, ssid->id);
1462 : : }
1463 : 0 : return reply;
1464 : : }
1465 : :
1466 : :
1467 : : /**
1468 : : * wpas_dbus_handler_reassociate - Reassociate to current AP
1469 : : * @message: Pointer to incoming dbus message
1470 : : * @wpa_s: wpa_supplicant structure for a network interface
1471 : : * Returns: NotConnected DBus error message if not connected
1472 : : * or NULL otherwise.
1473 : : *
1474 : : * Handler function for "Reassociate" method call of network interface.
1475 : : */
1476 : 0 : DBusMessage * wpas_dbus_handler_reassociate(DBusMessage *message,
1477 : : struct wpa_supplicant *wpa_s)
1478 : : {
1479 [ # # ]: 0 : if (wpa_s->current_ssid != NULL) {
1480 : 0 : wpas_request_connection(wpa_s);
1481 : 0 : return NULL;
1482 : : }
1483 : :
1484 : 0 : return dbus_message_new_error(message, WPAS_DBUS_ERROR_NOT_CONNECTED,
1485 : : "This interface is not connected");
1486 : : }
1487 : :
1488 : :
1489 : : /**
1490 : : * wpas_dbus_handler_remove_network - Remove a configured network
1491 : : * @message: Pointer to incoming dbus message
1492 : : * @wpa_s: wpa_supplicant structure for a network interface
1493 : : * Returns: NULL on success or dbus error on failure
1494 : : *
1495 : : * Handler function for "RemoveNetwork" method call of a network interface.
1496 : : */
1497 : 0 : DBusMessage * wpas_dbus_handler_remove_network(DBusMessage *message,
1498 : : struct wpa_supplicant *wpa_s)
1499 : : {
1500 : 0 : DBusMessage *reply = NULL;
1501 : : const char *op;
1502 : 0 : char *iface = NULL, *net_id = NULL;
1503 : : int id;
1504 : : struct wpa_ssid *ssid;
1505 : : int was_disabled;
1506 : :
1507 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &op,
1508 : : DBUS_TYPE_INVALID);
1509 : :
1510 : : /* Extract the network ID and ensure the network */
1511 : : /* is actually a child of this interface */
1512 : 0 : iface = wpas_dbus_new_decompose_object_path(op, 0, &net_id, NULL);
1513 [ # # ][ # # ]: 0 : if (iface == NULL || net_id == NULL ||
[ # # ]
1514 : 0 : os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
1515 : 0 : reply = wpas_dbus_error_invalid_args(message, op);
1516 : 0 : goto out;
1517 : : }
1518 : :
1519 : 0 : errno = 0;
1520 : 0 : id = strtoul(net_id, NULL, 10);
1521 [ # # ]: 0 : if (errno != 0) {
1522 : 0 : reply = wpas_dbus_error_invalid_args(message, op);
1523 : 0 : goto out;
1524 : : }
1525 : :
1526 : 0 : ssid = wpa_config_get_network(wpa_s->conf, id);
1527 [ # # ]: 0 : if (ssid == NULL) {
1528 : 0 : reply = wpas_dbus_error_network_unknown(message);
1529 : 0 : goto out;
1530 : : }
1531 : :
1532 : 0 : was_disabled = ssid->disabled;
1533 : :
1534 : 0 : wpas_notify_network_removed(wpa_s, ssid);
1535 : :
1536 [ # # ]: 0 : if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
1537 : 0 : wpa_printf(MSG_ERROR,
1538 : : "wpas_dbus_handler_remove_network[dbus]: "
1539 : : "error occurred when removing network %d", id);
1540 : 0 : reply = wpas_dbus_error_unknown_error(
1541 : : message, "error removing the specified network on "
1542 : : "this interface.");
1543 : 0 : goto out;
1544 : : }
1545 : :
1546 [ # # ]: 0 : if (ssid == wpa_s->current_ssid)
1547 : 0 : wpa_supplicant_deauthenticate(wpa_s,
1548 : : WLAN_REASON_DEAUTH_LEAVING);
1549 [ # # ][ # # ]: 0 : else if (!was_disabled && wpa_s->sched_scanning) {
1550 : 0 : wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
1551 : : "network from filters");
1552 : 0 : wpa_supplicant_cancel_sched_scan(wpa_s);
1553 : 0 : wpa_supplicant_req_scan(wpa_s, 0, 0);
1554 : : }
1555 : :
1556 : :
1557 : : out:
1558 : 0 : os_free(iface);
1559 : 0 : os_free(net_id);
1560 : 0 : return reply;
1561 : : }
1562 : :
1563 : :
1564 : 0 : static void remove_network(void *arg, struct wpa_ssid *ssid)
1565 : : {
1566 : 0 : struct wpa_supplicant *wpa_s = arg;
1567 : :
1568 : 0 : wpas_notify_network_removed(wpa_s, ssid);
1569 : :
1570 [ # # ]: 0 : if (wpa_config_remove_network(wpa_s->conf, ssid->id) < 0) {
1571 : 0 : wpa_printf(MSG_ERROR,
1572 : : "wpas_dbus_handler_remove_all_networks[dbus]: "
1573 : : "error occurred when removing network %d",
1574 : : ssid->id);
1575 : 0 : return;
1576 : : }
1577 : :
1578 [ # # ]: 0 : if (ssid == wpa_s->current_ssid)
1579 : 0 : wpa_supplicant_deauthenticate(wpa_s,
1580 : : WLAN_REASON_DEAUTH_LEAVING);
1581 : : }
1582 : :
1583 : :
1584 : : /**
1585 : : * wpas_dbus_handler_remove_all_networks - Remove all configured networks
1586 : : * @message: Pointer to incoming dbus message
1587 : : * @wpa_s: wpa_supplicant structure for a network interface
1588 : : * Returns: NULL on success or dbus error on failure
1589 : : *
1590 : : * Handler function for "RemoveAllNetworks" method call of a network interface.
1591 : : */
1592 : 0 : DBusMessage * wpas_dbus_handler_remove_all_networks(
1593 : : DBusMessage *message, struct wpa_supplicant *wpa_s)
1594 : : {
1595 [ # # ]: 0 : if (wpa_s->sched_scanning)
1596 : 0 : wpa_supplicant_cancel_sched_scan(wpa_s);
1597 : :
1598 : : /* NB: could check for failure and return an error */
1599 : 0 : wpa_config_foreach_network(wpa_s->conf, remove_network, wpa_s);
1600 : 0 : return NULL;
1601 : : }
1602 : :
1603 : :
1604 : : /**
1605 : : * wpas_dbus_handler_select_network - Attempt association with a network
1606 : : * @message: Pointer to incoming dbus message
1607 : : * @wpa_s: wpa_supplicant structure for a network interface
1608 : : * Returns: NULL on success or dbus error on failure
1609 : : *
1610 : : * Handler function for "SelectNetwork" method call of network interface.
1611 : : */
1612 : 0 : DBusMessage * wpas_dbus_handler_select_network(DBusMessage *message,
1613 : : struct wpa_supplicant *wpa_s)
1614 : : {
1615 : 0 : DBusMessage *reply = NULL;
1616 : : const char *op;
1617 : 0 : char *iface = NULL, *net_id = NULL;
1618 : : int id;
1619 : : struct wpa_ssid *ssid;
1620 : :
1621 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_OBJECT_PATH, &op,
1622 : : DBUS_TYPE_INVALID);
1623 : :
1624 : : /* Extract the network ID and ensure the network */
1625 : : /* is actually a child of this interface */
1626 : 0 : iface = wpas_dbus_new_decompose_object_path(op, 0, &net_id, NULL);
1627 [ # # ][ # # ]: 0 : if (iface == NULL || net_id == NULL ||
[ # # ]
1628 : 0 : os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
1629 : 0 : reply = wpas_dbus_error_invalid_args(message, op);
1630 : 0 : goto out;
1631 : : }
1632 : :
1633 : 0 : errno = 0;
1634 : 0 : id = strtoul(net_id, NULL, 10);
1635 [ # # ]: 0 : if (errno != 0) {
1636 : 0 : reply = wpas_dbus_error_invalid_args(message, op);
1637 : 0 : goto out;
1638 : : }
1639 : :
1640 : 0 : ssid = wpa_config_get_network(wpa_s->conf, id);
1641 [ # # ]: 0 : if (ssid == NULL) {
1642 : 0 : reply = wpas_dbus_error_network_unknown(message);
1643 : 0 : goto out;
1644 : : }
1645 : :
1646 : : /* Finally, associate with the network */
1647 : 0 : wpa_supplicant_select_network(wpa_s, ssid);
1648 : :
1649 : : out:
1650 : 0 : os_free(iface);
1651 : 0 : os_free(net_id);
1652 : 0 : return reply;
1653 : : }
1654 : :
1655 : :
1656 : : /**
1657 : : * wpas_dbus_handler_network_reply - Reply to a NetworkRequest signal
1658 : : * @message: Pointer to incoming dbus message
1659 : : * @wpa_s: wpa_supplicant structure for a network interface
1660 : : * Returns: NULL on success or dbus error on failure
1661 : : *
1662 : : * Handler function for "NetworkReply" method call of network interface.
1663 : : */
1664 : 0 : DBusMessage * wpas_dbus_handler_network_reply(DBusMessage *message,
1665 : : struct wpa_supplicant *wpa_s)
1666 : : {
1667 : : #ifdef IEEE8021X_EAPOL
1668 : 0 : DBusMessage *reply = NULL;
1669 : : const char *op, *field, *value;
1670 : 0 : char *iface = NULL, *net_id = NULL;
1671 : : int id;
1672 : : struct wpa_ssid *ssid;
1673 : :
1674 [ # # ]: 0 : if (!dbus_message_get_args(message, NULL,
1675 : : DBUS_TYPE_OBJECT_PATH, &op,
1676 : : DBUS_TYPE_STRING, &field,
1677 : : DBUS_TYPE_STRING, &value,
1678 : : DBUS_TYPE_INVALID))
1679 : 0 : return wpas_dbus_error_invalid_args(message, NULL);
1680 : :
1681 : : /* Extract the network ID and ensure the network */
1682 : : /* is actually a child of this interface */
1683 : 0 : iface = wpas_dbus_new_decompose_object_path(op, 0, &net_id, NULL);
1684 [ # # ][ # # ]: 0 : if (iface == NULL || net_id == NULL ||
[ # # ]
1685 : 0 : os_strcmp(iface, wpa_s->dbus_new_path) != 0) {
1686 : 0 : reply = wpas_dbus_error_invalid_args(message, op);
1687 : 0 : goto out;
1688 : : }
1689 : :
1690 : 0 : errno = 0;
1691 : 0 : id = strtoul(net_id, NULL, 10);
1692 [ # # ]: 0 : if (errno != 0) {
1693 : 0 : reply = wpas_dbus_error_invalid_args(message, net_id);
1694 : 0 : goto out;
1695 : : }
1696 : :
1697 : 0 : ssid = wpa_config_get_network(wpa_s->conf, id);
1698 [ # # ]: 0 : if (ssid == NULL) {
1699 : 0 : reply = wpas_dbus_error_network_unknown(message);
1700 : 0 : goto out;
1701 : : }
1702 : :
1703 [ # # ]: 0 : if (wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid,
1704 : : field, value) < 0)
1705 : 0 : reply = wpas_dbus_error_invalid_args(message, field);
1706 : : else {
1707 : : /* Tell EAP to retry immediately */
1708 : 0 : eapol_sm_notify_ctrl_response(wpa_s->eapol);
1709 : : }
1710 : :
1711 : : out:
1712 : 0 : os_free(iface);
1713 : 0 : os_free(net_id);
1714 : 0 : return reply;
1715 : : #else /* IEEE8021X_EAPOL */
1716 : : wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1717 : : return wpas_dbus_error_unknown_error(message, "802.1X not included");
1718 : : #endif /* IEEE8021X_EAPOL */
1719 : : }
1720 : :
1721 : :
1722 : : #ifndef CONFIG_NO_CONFIG_BLOBS
1723 : :
1724 : : /**
1725 : : * wpas_dbus_handler_add_blob - Store named binary blob (ie, for certificates)
1726 : : * @message: Pointer to incoming dbus message
1727 : : * @wpa_s: %wpa_supplicant data structure
1728 : : * Returns: A dbus message containing an error on failure or NULL on success
1729 : : *
1730 : : * Asks wpa_supplicant to internally store a binary blobs.
1731 : : */
1732 : 0 : DBusMessage * wpas_dbus_handler_add_blob(DBusMessage *message,
1733 : : struct wpa_supplicant *wpa_s)
1734 : : {
1735 : 0 : DBusMessage *reply = NULL;
1736 : : DBusMessageIter iter, array_iter;
1737 : :
1738 : : char *blob_name;
1739 : : u8 *blob_data;
1740 : : int blob_len;
1741 : 0 : struct wpa_config_blob *blob = NULL;
1742 : :
1743 : 0 : dbus_message_iter_init(message, &iter);
1744 : 0 : dbus_message_iter_get_basic(&iter, &blob_name);
1745 : :
1746 [ # # ]: 0 : if (wpa_config_get_blob(wpa_s->conf, blob_name)) {
1747 : 0 : return dbus_message_new_error(message,
1748 : : WPAS_DBUS_ERROR_BLOB_EXISTS,
1749 : : NULL);
1750 : : }
1751 : :
1752 : 0 : dbus_message_iter_next(&iter);
1753 : 0 : dbus_message_iter_recurse(&iter, &array_iter);
1754 : :
1755 : 0 : dbus_message_iter_get_fixed_array(&array_iter, &blob_data, &blob_len);
1756 : :
1757 : 0 : blob = os_zalloc(sizeof(*blob));
1758 [ # # ]: 0 : if (!blob) {
1759 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1760 : : NULL);
1761 : 0 : goto err;
1762 : : }
1763 : :
1764 : 0 : blob->data = os_malloc(blob_len);
1765 [ # # ]: 0 : if (!blob->data) {
1766 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1767 : : NULL);
1768 : 0 : goto err;
1769 : : }
1770 : 0 : os_memcpy(blob->data, blob_data, blob_len);
1771 : :
1772 : 0 : blob->len = blob_len;
1773 : 0 : blob->name = os_strdup(blob_name);
1774 [ # # ]: 0 : if (!blob->name) {
1775 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1776 : : NULL);
1777 : 0 : goto err;
1778 : : }
1779 : :
1780 : 0 : wpa_config_set_blob(wpa_s->conf, blob);
1781 : 0 : wpas_notify_blob_added(wpa_s, blob->name);
1782 : :
1783 : 0 : return reply;
1784 : :
1785 : : err:
1786 [ # # ]: 0 : if (blob) {
1787 : 0 : os_free(blob->name);
1788 : 0 : os_free(blob->data);
1789 : 0 : os_free(blob);
1790 : : }
1791 : 0 : return reply;
1792 : : }
1793 : :
1794 : :
1795 : : /**
1796 : : * wpas_dbus_handler_get_blob - Get named binary blob (ie, for certificates)
1797 : : * @message: Pointer to incoming dbus message
1798 : : * @wpa_s: %wpa_supplicant data structure
1799 : : * Returns: A dbus message containing array of bytes (blob)
1800 : : *
1801 : : * Gets one wpa_supplicant's binary blobs.
1802 : : */
1803 : 0 : DBusMessage * wpas_dbus_handler_get_blob(DBusMessage *message,
1804 : : struct wpa_supplicant *wpa_s)
1805 : : {
1806 : 0 : DBusMessage *reply = NULL;
1807 : : DBusMessageIter iter, array_iter;
1808 : :
1809 : : char *blob_name;
1810 : : const struct wpa_config_blob *blob;
1811 : :
1812 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &blob_name,
1813 : : DBUS_TYPE_INVALID);
1814 : :
1815 : 0 : blob = wpa_config_get_blob(wpa_s->conf, blob_name);
1816 [ # # ]: 0 : if (!blob) {
1817 : 0 : return dbus_message_new_error(message,
1818 : : WPAS_DBUS_ERROR_BLOB_UNKNOWN,
1819 : : "Blob id not set");
1820 : : }
1821 : :
1822 : 0 : reply = dbus_message_new_method_return(message);
1823 [ # # ]: 0 : if (!reply) {
1824 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1825 : : NULL);
1826 : 0 : goto out;
1827 : : }
1828 : :
1829 : 0 : dbus_message_iter_init_append(reply, &iter);
1830 : :
1831 [ # # ]: 0 : if (!dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
1832 : : DBUS_TYPE_BYTE_AS_STRING,
1833 : : &array_iter)) {
1834 : 0 : dbus_message_unref(reply);
1835 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1836 : : NULL);
1837 : 0 : goto out;
1838 : : }
1839 : :
1840 [ # # ]: 0 : if (!dbus_message_iter_append_fixed_array(&array_iter, DBUS_TYPE_BYTE,
1841 : 0 : &(blob->data), blob->len)) {
1842 : 0 : dbus_message_unref(reply);
1843 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1844 : : NULL);
1845 : 0 : goto out;
1846 : : }
1847 : :
1848 [ # # ]: 0 : if (!dbus_message_iter_close_container(&iter, &array_iter)) {
1849 : 0 : dbus_message_unref(reply);
1850 : 0 : reply = dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
1851 : : NULL);
1852 : 0 : goto out;
1853 : : }
1854 : :
1855 : : out:
1856 : 0 : return reply;
1857 : : }
1858 : :
1859 : :
1860 : : /**
1861 : : * wpas_remove_handler_remove_blob - Remove named binary blob
1862 : : * @message: Pointer to incoming dbus message
1863 : : * @wpa_s: %wpa_supplicant data structure
1864 : : * Returns: NULL on success or dbus error
1865 : : *
1866 : : * Asks wpa_supplicant to internally remove a binary blobs.
1867 : : */
1868 : 0 : DBusMessage * wpas_dbus_handler_remove_blob(DBusMessage *message,
1869 : : struct wpa_supplicant *wpa_s)
1870 : : {
1871 : 0 : DBusMessage *reply = NULL;
1872 : : char *blob_name;
1873 : :
1874 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &blob_name,
1875 : : DBUS_TYPE_INVALID);
1876 : :
1877 [ # # ]: 0 : if (wpa_config_remove_blob(wpa_s->conf, blob_name)) {
1878 : 0 : return dbus_message_new_error(message,
1879 : : WPAS_DBUS_ERROR_BLOB_UNKNOWN,
1880 : : "Blob id not set");
1881 : : }
1882 : 0 : wpas_notify_blob_removed(wpa_s, blob_name);
1883 : :
1884 : 0 : return reply;
1885 : :
1886 : : }
1887 : :
1888 : : #endif /* CONFIG_NO_CONFIG_BLOBS */
1889 : :
1890 : :
1891 : : /*
1892 : : * wpas_dbus_handler_flush_bss - Flush the BSS cache
1893 : : * @message: Pointer to incoming dbus message
1894 : : * @wpa_s: wpa_supplicant structure for a network interface
1895 : : * Returns: NULL
1896 : : *
1897 : : * Handler function for "FlushBSS" method call of network interface.
1898 : : */
1899 : 0 : DBusMessage * wpas_dbus_handler_flush_bss(DBusMessage *message,
1900 : : struct wpa_supplicant *wpa_s)
1901 : : {
1902 : : dbus_uint32_t age;
1903 : :
1904 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_UINT32, &age,
1905 : : DBUS_TYPE_INVALID);
1906 : :
1907 [ # # ]: 0 : if (age == 0)
1908 : 0 : wpa_bss_flush(wpa_s);
1909 : : else
1910 : 0 : wpa_bss_flush_by_age(wpa_s, age);
1911 : :
1912 : 0 : return NULL;
1913 : : }
1914 : :
1915 : :
1916 : : #ifdef CONFIG_AUTOSCAN
1917 : : /**
1918 : : * wpas_dbus_handler_autoscan - Set autoscan parameters for the interface
1919 : : * @message: Pointer to incoming dbus message
1920 : : * @wpa_s: wpa_supplicant structure for a network interface
1921 : : * Returns: NULL
1922 : : *
1923 : : * Handler function for "AutoScan" method call of network interface.
1924 : : */
1925 : 0 : DBusMessage * wpas_dbus_handler_autoscan(DBusMessage *message,
1926 : : struct wpa_supplicant *wpa_s)
1927 : : {
1928 : 0 : DBusMessage *reply = NULL;
1929 : 0 : enum wpa_states state = wpa_s->wpa_state;
1930 : : char *arg;
1931 : :
1932 : 0 : dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &arg,
1933 : : DBUS_TYPE_INVALID);
1934 : :
1935 [ # # ][ # # ]: 0 : if (arg != NULL && os_strlen(arg) > 0) {
1936 : : char *tmp;
1937 : 0 : tmp = os_strdup(arg);
1938 [ # # ]: 0 : if (tmp == NULL) {
1939 : 0 : reply = dbus_message_new_error(message,
1940 : : DBUS_ERROR_NO_MEMORY,
1941 : : NULL);
1942 : : } else {
1943 : 0 : os_free(wpa_s->conf->autoscan);
1944 : 0 : wpa_s->conf->autoscan = tmp;
1945 [ # # ][ # # ]: 0 : if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
1946 : 0 : autoscan_init(wpa_s, 1);
1947 [ # # ]: 0 : else if (state == WPA_SCANNING)
1948 : 0 : wpa_supplicant_reinit_autoscan(wpa_s);
1949 : : }
1950 [ # # ][ # # ]: 0 : } else if (arg != NULL && os_strlen(arg) == 0) {
1951 : 0 : os_free(wpa_s->conf->autoscan);
1952 : 0 : wpa_s->conf->autoscan = NULL;
1953 : 0 : autoscan_deinit(wpa_s);
1954 : : } else
1955 : 0 : reply = dbus_message_new_error(message,
1956 : : DBUS_ERROR_INVALID_ARGS,
1957 : : NULL);
1958 : :
1959 : 0 : return reply;
1960 : : }
1961 : : #endif /* CONFIG_AUTOSCAN */
1962 : :
1963 : :
1964 : : /*
1965 : : * wpas_dbus_handler_eap_logoff - IEEE 802.1X EAPOL state machine logoff
1966 : : * @message: Pointer to incoming dbus message
1967 : : * @wpa_s: wpa_supplicant structure for a network interface
1968 : : * Returns: NULL
1969 : : *
1970 : : * Handler function for "EAPLogoff" method call of network interface.
1971 : : */
1972 : 0 : DBusMessage * wpas_dbus_handler_eap_logoff(DBusMessage *message,
1973 : : struct wpa_supplicant *wpa_s)
1974 : : {
1975 : 0 : eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
1976 : 0 : return NULL;
1977 : : }
1978 : :
1979 : :
1980 : : /*
1981 : : * wpas_dbus_handler_eap_logon - IEEE 802.1X EAPOL state machine logon
1982 : : * @message: Pointer to incoming dbus message
1983 : : * @wpa_s: wpa_supplicant structure for a network interface
1984 : : * Returns: NULL
1985 : : *
1986 : : * Handler function for "EAPLogin" method call of network interface.
1987 : : */
1988 : 0 : DBusMessage * wpas_dbus_handler_eap_logon(DBusMessage *message,
1989 : : struct wpa_supplicant *wpa_s)
1990 : : {
1991 : 0 : eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
1992 : 0 : return NULL;
1993 : : }
1994 : :
1995 : :
1996 : : #ifdef CONFIG_TDLS
1997 : :
1998 : 0 : static DBusMessage * get_peer_hwaddr_helper(DBusMessage *message,
1999 : : const char *func_name,
2000 : : u8 *peer_address)
2001 : : {
2002 : : const char *peer_string;
2003 : :
2004 [ # # ]: 0 : if (!dbus_message_get_args(message, NULL,
2005 : : DBUS_TYPE_STRING, &peer_string,
2006 : : DBUS_TYPE_INVALID))
2007 : 0 : return wpas_dbus_error_invalid_args(message, NULL);
2008 : :
2009 [ # # ]: 0 : if (hwaddr_aton(peer_string, peer_address)) {
2010 : 0 : wpa_printf(MSG_DEBUG, "%s: invalid address '%s'",
2011 : : func_name, peer_string);
2012 : 0 : return wpas_dbus_error_invalid_args(
2013 : : message, "Invalid hardware address format");
2014 : : }
2015 : :
2016 : 0 : return NULL;
2017 : : }
2018 : :
2019 : :
2020 : : /*
2021 : : * wpas_dbus_handler_tdls_discover - Discover TDLS peer
2022 : : * @message: Pointer to incoming dbus message
2023 : : * @wpa_s: wpa_supplicant structure for a network interface
2024 : : * Returns: NULL indicating success or DBus error message on failure
2025 : : *
2026 : : * Handler function for "TDLSDiscover" method call of network interface.
2027 : : */
2028 : 0 : DBusMessage * wpas_dbus_handler_tdls_discover(DBusMessage *message,
2029 : : struct wpa_supplicant *wpa_s)
2030 : : {
2031 : : u8 peer[ETH_ALEN];
2032 : : DBusMessage *error_reply;
2033 : : int ret;
2034 : :
2035 : 0 : error_reply = get_peer_hwaddr_helper(message, __func__, peer);
2036 [ # # ]: 0 : if (error_reply)
2037 : 0 : return error_reply;
2038 : :
2039 : 0 : wpa_printf(MSG_DEBUG, "DBUS TDLS_DISCOVER " MACSTR, MAC2STR(peer));
2040 : :
2041 [ # # ]: 0 : if (wpa_tdls_is_external_setup(wpa_s->wpa))
2042 : 0 : ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
2043 : : else
2044 : 0 : ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
2045 : :
2046 [ # # ]: 0 : if (ret) {
2047 : 0 : return wpas_dbus_error_unknown_error(
2048 : : message, "error performing TDLS discovery");
2049 : : }
2050 : :
2051 : 0 : return NULL;
2052 : : }
2053 : :
2054 : :
2055 : : /*
2056 : : * wpas_dbus_handler_tdls_setup - Setup TDLS session
2057 : : * @message: Pointer to incoming dbus message
2058 : : * @wpa_s: wpa_supplicant structure for a network interface
2059 : : * Returns: NULL indicating success or DBus error message on failure
2060 : : *
2061 : : * Handler function for "TDLSSetup" method call of network interface.
2062 : : */
2063 : 0 : DBusMessage * wpas_dbus_handler_tdls_setup(DBusMessage *message,
2064 : : struct wpa_supplicant *wpa_s)
2065 : : {
2066 : : u8 peer[ETH_ALEN];
2067 : : DBusMessage *error_reply;
2068 : : int ret;
2069 : :
2070 : 0 : error_reply = get_peer_hwaddr_helper(message, __func__, peer);
2071 [ # # ]: 0 : if (error_reply)
2072 : 0 : return error_reply;
2073 : :
2074 : 0 : wpa_printf(MSG_DEBUG, "DBUS TDLS_SETUP " MACSTR, MAC2STR(peer));
2075 : :
2076 : 0 : wpa_tdls_remove(wpa_s->wpa, peer);
2077 [ # # ]: 0 : if (wpa_tdls_is_external_setup(wpa_s->wpa))
2078 : 0 : ret = wpa_tdls_start(wpa_s->wpa, peer);
2079 : : else
2080 : 0 : ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
2081 : :
2082 [ # # ]: 0 : if (ret) {
2083 : 0 : return wpas_dbus_error_unknown_error(
2084 : : message, "error performing TDLS setup");
2085 : : }
2086 : :
2087 : 0 : return NULL;
2088 : : }
2089 : :
2090 : :
2091 : : /*
2092 : : * wpas_dbus_handler_tdls_status - Return TDLS session status
2093 : : * @message: Pointer to incoming dbus message
2094 : : * @wpa_s: wpa_supplicant structure for a network interface
2095 : : * Returns: A string representing the state of the link to this TDLS peer
2096 : : *
2097 : : * Handler function for "TDLSStatus" method call of network interface.
2098 : : */
2099 : 0 : DBusMessage * wpas_dbus_handler_tdls_status(DBusMessage *message,
2100 : : struct wpa_supplicant *wpa_s)
2101 : : {
2102 : : u8 peer[ETH_ALEN];
2103 : : DBusMessage *reply;
2104 : : const char *tdls_status;
2105 : :
2106 : 0 : reply = get_peer_hwaddr_helper(message, __func__, peer);
2107 [ # # ]: 0 : if (reply)
2108 : 0 : return reply;
2109 : :
2110 : 0 : wpa_printf(MSG_DEBUG, "DBUS TDLS_STATUS " MACSTR, MAC2STR(peer));
2111 : :
2112 : 0 : tdls_status = wpa_tdls_get_link_status(wpa_s->wpa, peer);
2113 : :
2114 : 0 : reply = dbus_message_new_method_return(message);
2115 : 0 : dbus_message_append_args(reply, DBUS_TYPE_STRING,
2116 : : &tdls_status, DBUS_TYPE_INVALID);
2117 : 0 : return reply;
2118 : : }
2119 : :
2120 : :
2121 : : /*
2122 : : * wpas_dbus_handler_tdls_teardown - Teardown TDLS session
2123 : : * @message: Pointer to incoming dbus message
2124 : : * @wpa_s: wpa_supplicant structure for a network interface
2125 : : * Returns: NULL indicating success or DBus error message on failure
2126 : : *
2127 : : * Handler function for "TDLSTeardown" method call of network interface.
2128 : : */
2129 : 0 : DBusMessage * wpas_dbus_handler_tdls_teardown(DBusMessage *message,
2130 : : struct wpa_supplicant *wpa_s)
2131 : : {
2132 : : u8 peer[ETH_ALEN];
2133 : : DBusMessage *error_reply;
2134 : : int ret;
2135 : :
2136 : 0 : error_reply = get_peer_hwaddr_helper(message, __func__, peer);
2137 [ # # ]: 0 : if (error_reply)
2138 : 0 : return error_reply;
2139 : :
2140 : 0 : wpa_printf(MSG_DEBUG, "DBUS TDLS_TEARDOWN " MACSTR, MAC2STR(peer));
2141 : :
2142 [ # # ]: 0 : if (wpa_tdls_is_external_setup(wpa_s->wpa))
2143 : 0 : ret = wpa_tdls_teardown_link(
2144 : : wpa_s->wpa, peer,
2145 : : WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
2146 : : else
2147 : 0 : ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
2148 : :
2149 [ # # ]: 0 : if (ret) {
2150 : 0 : return wpas_dbus_error_unknown_error(
2151 : : message, "error performing TDLS teardown");
2152 : : }
2153 : :
2154 : 0 : return NULL;
2155 : : }
2156 : :
2157 : : #endif /* CONFIG_TDLS */
2158 : :
2159 : :
2160 : : /**
2161 : : * wpas_dbus_handler_set_pkcs11_engine_and_module_path - Set PKCS #11 engine and module path
2162 : : * @message: Pointer to incoming dbus message
2163 : : * @wpa_s: %wpa_supplicant data structure
2164 : : * Returns: A dbus message containing an error on failure or NULL on success
2165 : : *
2166 : : * Sets the PKCS #11 engine and module path.
2167 : : */
2168 : 0 : DBusMessage * wpas_dbus_handler_set_pkcs11_engine_and_module_path(
2169 : : DBusMessage *message, struct wpa_supplicant *wpa_s)
2170 : : {
2171 : : DBusMessageIter iter;
2172 : 0 : char *value = NULL;
2173 : 0 : char *pkcs11_engine_path = NULL;
2174 : 0 : char *pkcs11_module_path = NULL;
2175 : :
2176 : 0 : dbus_message_iter_init(message, &iter);
2177 : 0 : dbus_message_iter_get_basic(&iter, &value);
2178 [ # # ]: 0 : if (value == NULL) {
2179 : 0 : return dbus_message_new_error(
2180 : : message, DBUS_ERROR_INVALID_ARGS,
2181 : : "Invalid pkcs11_engine_path argument");
2182 : : }
2183 : : /* Empty path defaults to NULL */
2184 [ # # ]: 0 : if (os_strlen(value))
2185 : 0 : pkcs11_engine_path = value;
2186 : :
2187 : 0 : dbus_message_iter_next(&iter);
2188 : 0 : dbus_message_iter_get_basic(&iter, &value);
2189 [ # # ]: 0 : if (value == NULL) {
2190 : 0 : os_free(pkcs11_engine_path);
2191 : 0 : return dbus_message_new_error(
2192 : : message, DBUS_ERROR_INVALID_ARGS,
2193 : : "Invalid pkcs11_module_path argument");
2194 : : }
2195 : : /* Empty path defaults to NULL */
2196 [ # # ]: 0 : if (os_strlen(value))
2197 : 0 : pkcs11_module_path = value;
2198 : :
2199 [ # # ]: 0 : if (wpas_set_pkcs11_engine_and_module_path(wpa_s, pkcs11_engine_path,
2200 : : pkcs11_module_path))
2201 : 0 : return dbus_message_new_error(
2202 : : message, DBUS_ERROR_FAILED,
2203 : : "Reinit of the EAPOL state machine with the new PKCS "
2204 : : "#11 engine and module path failed.");
2205 : :
2206 : 0 : wpa_dbus_mark_property_changed(
2207 : 0 : wpa_s->global->dbus, wpa_s->dbus_new_path,
2208 : : WPAS_DBUS_NEW_IFACE_INTERFACE, "PKCS11EnginePath");
2209 : 0 : wpa_dbus_mark_property_changed(
2210 : 0 : wpa_s->global->dbus, wpa_s->dbus_new_path,
2211 : : WPAS_DBUS_NEW_IFACE_INTERFACE, "PKCS11ModulePath");
2212 : :
2213 : 0 : return NULL;
2214 : : }
2215 : :
2216 : :
2217 : : /**
2218 : : * wpas_dbus_getter_capabilities - Return interface capabilities
2219 : : * @iter: Pointer to incoming dbus message iter
2220 : : * @error: Location to store error on failure
2221 : : * @user_data: Function specific data
2222 : : * Returns: TRUE on success, FALSE on failure
2223 : : *
2224 : : * Getter for "Capabilities" property of an interface.
2225 : : */
2226 : 0 : dbus_bool_t wpas_dbus_getter_capabilities(DBusMessageIter *iter,
2227 : : DBusError *error, void *user_data)
2228 : : {
2229 : 0 : struct wpa_supplicant *wpa_s = user_data;
2230 : : struct wpa_driver_capa capa;
2231 : : int res;
2232 : : DBusMessageIter iter_dict, iter_dict_entry, iter_dict_val, iter_array,
2233 : : variant_iter;
2234 : 0 : const char *scans[] = { "active", "passive", "ssid" };
2235 : :
2236 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
2237 : : "a{sv}", &variant_iter))
2238 : 0 : goto nomem;
2239 : :
2240 [ # # ]: 0 : if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
2241 : 0 : goto nomem;
2242 : :
2243 : 0 : res = wpa_drv_get_capa(wpa_s, &capa);
2244 : :
2245 : : /***** pairwise cipher */
2246 [ # # ]: 0 : if (res < 0) {
2247 : 0 : const char *args[] = {"ccmp", "tkip", "none"};
2248 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(
2249 : : &iter_dict, "Pairwise", args,
2250 : : ARRAY_SIZE(args)))
2251 : 0 : goto nomem;
2252 : : } else {
2253 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Pairwise",
2254 : : &iter_dict_entry,
2255 : : &iter_dict_val,
2256 : : &iter_array))
2257 : 0 : goto nomem;
2258 : :
2259 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP_256) {
2260 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2261 : : &iter_array, "ccmp-256"))
2262 : 0 : goto nomem;
2263 : : }
2264 : :
2265 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_GCMP_256) {
2266 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2267 : : &iter_array, "gcmp-256"))
2268 : 0 : goto nomem;
2269 : : }
2270 : :
2271 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2272 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2273 : : &iter_array, "ccmp"))
2274 : 0 : goto nomem;
2275 : : }
2276 : :
2277 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2278 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2279 : : &iter_array, "gcmp"))
2280 : 0 : goto nomem;
2281 : : }
2282 : :
2283 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2284 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2285 : : &iter_array, "tkip"))
2286 : 0 : goto nomem;
2287 : : }
2288 : :
2289 [ # # ]: 0 : if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2290 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2291 : : &iter_array, "none"))
2292 : 0 : goto nomem;
2293 : : }
2294 : :
2295 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2296 : : &iter_dict_entry,
2297 : : &iter_dict_val,
2298 : : &iter_array))
2299 : 0 : goto nomem;
2300 : : }
2301 : :
2302 : : /***** group cipher */
2303 [ # # ]: 0 : if (res < 0) {
2304 : 0 : const char *args[] = {
2305 : : "ccmp", "tkip", "wep104", "wep40"
2306 : : };
2307 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(
2308 : : &iter_dict, "Group", args,
2309 : : ARRAY_SIZE(args)))
2310 : 0 : goto nomem;
2311 : : } else {
2312 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Group",
2313 : : &iter_dict_entry,
2314 : : &iter_dict_val,
2315 : : &iter_array))
2316 : 0 : goto nomem;
2317 : :
2318 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP_256) {
2319 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2320 : : &iter_array, "ccmp-256"))
2321 : 0 : goto nomem;
2322 : : }
2323 : :
2324 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_GCMP_256) {
2325 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2326 : : &iter_array, "gcmp-256"))
2327 : 0 : goto nomem;
2328 : : }
2329 : :
2330 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP) {
2331 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2332 : : &iter_array, "ccmp"))
2333 : 0 : goto nomem;
2334 : : }
2335 : :
2336 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_GCMP) {
2337 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2338 : : &iter_array, "gcmp"))
2339 : 0 : goto nomem;
2340 : : }
2341 : :
2342 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_TKIP) {
2343 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2344 : : &iter_array, "tkip"))
2345 : 0 : goto nomem;
2346 : : }
2347 : :
2348 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP104) {
2349 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2350 : : &iter_array, "wep104"))
2351 : 0 : goto nomem;
2352 : : }
2353 : :
2354 [ # # ]: 0 : if (capa.enc & WPA_DRIVER_CAPA_ENC_WEP40) {
2355 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2356 : : &iter_array, "wep40"))
2357 : 0 : goto nomem;
2358 : : }
2359 : :
2360 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2361 : : &iter_dict_entry,
2362 : : &iter_dict_val,
2363 : : &iter_array))
2364 : 0 : goto nomem;
2365 : : }
2366 : :
2367 : : /***** key management */
2368 [ # # ]: 0 : if (res < 0) {
2369 : 0 : const char *args[] = {
2370 : : "wpa-psk", "wpa-eap", "ieee8021x", "wpa-none",
2371 : : #ifdef CONFIG_WPS
2372 : : "wps",
2373 : : #endif /* CONFIG_WPS */
2374 : : "none"
2375 : : };
2376 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(
2377 : : &iter_dict, "KeyMgmt", args,
2378 : : ARRAY_SIZE(args)))
2379 : 0 : goto nomem;
2380 : : } else {
2381 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "KeyMgmt",
2382 : : &iter_dict_entry,
2383 : : &iter_dict_val,
2384 : : &iter_array))
2385 : 0 : goto nomem;
2386 : :
2387 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(&iter_array,
2388 : : "none"))
2389 : 0 : goto nomem;
2390 : :
2391 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(&iter_array,
2392 : : "ieee8021x"))
2393 : 0 : goto nomem;
2394 : :
2395 [ # # ]: 0 : if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2396 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
2397 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2398 : : &iter_array, "wpa-eap"))
2399 : 0 : goto nomem;
2400 : :
2401 [ # # ]: 0 : if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT)
2402 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2403 : : &iter_array, "wpa-ft-eap"))
2404 : 0 : goto nomem;
2405 : :
2406 : : /* TODO: Ensure that driver actually supports sha256 encryption. */
2407 : : #ifdef CONFIG_IEEE80211W
2408 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2409 : : &iter_array, "wpa-eap-sha256"))
2410 : 0 : goto nomem;
2411 : : #endif /* CONFIG_IEEE80211W */
2412 : : }
2413 : :
2414 [ # # ]: 0 : if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
2415 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2416 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2417 : : &iter_array, "wpa-psk"))
2418 : 0 : goto nomem;
2419 : :
2420 [ # # ]: 0 : if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK)
2421 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2422 : : &iter_array, "wpa-ft-psk"))
2423 : 0 : goto nomem;
2424 : :
2425 : : /* TODO: Ensure that driver actually supports sha256 encryption. */
2426 : : #ifdef CONFIG_IEEE80211W
2427 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2428 : : &iter_array, "wpa-psk-sha256"))
2429 : 0 : goto nomem;
2430 : : #endif /* CONFIG_IEEE80211W */
2431 : : }
2432 : :
2433 [ # # ]: 0 : if (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
2434 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2435 : : &iter_array, "wpa-none"))
2436 : 0 : goto nomem;
2437 : : }
2438 : :
2439 : :
2440 : : #ifdef CONFIG_WPS
2441 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(&iter_array,
2442 : : "wps"))
2443 : 0 : goto nomem;
2444 : : #endif /* CONFIG_WPS */
2445 : :
2446 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2447 : : &iter_dict_entry,
2448 : : &iter_dict_val,
2449 : : &iter_array))
2450 : 0 : goto nomem;
2451 : : }
2452 : :
2453 : : /***** WPA protocol */
2454 [ # # ]: 0 : if (res < 0) {
2455 : 0 : const char *args[] = { "rsn", "wpa" };
2456 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(
2457 : : &iter_dict, "Protocol", args,
2458 : : ARRAY_SIZE(args)))
2459 : 0 : goto nomem;
2460 : : } else {
2461 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Protocol",
2462 : : &iter_dict_entry,
2463 : : &iter_dict_val,
2464 : : &iter_array))
2465 : 0 : goto nomem;
2466 : :
2467 [ # # ]: 0 : if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
2468 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
2469 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2470 : : &iter_array, "rsn"))
2471 : 0 : goto nomem;
2472 : : }
2473 : :
2474 [ # # ]: 0 : if (capa.key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
2475 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
2476 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2477 : : &iter_array, "wpa"))
2478 : 0 : goto nomem;
2479 : : }
2480 : :
2481 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2482 : : &iter_dict_entry,
2483 : : &iter_dict_val,
2484 : : &iter_array))
2485 : 0 : goto nomem;
2486 : : }
2487 : :
2488 : : /***** auth alg */
2489 [ # # ]: 0 : if (res < 0) {
2490 : 0 : const char *args[] = { "open", "shared", "leap" };
2491 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(
2492 : : &iter_dict, "AuthAlg", args,
2493 : : ARRAY_SIZE(args)))
2494 : 0 : goto nomem;
2495 : : } else {
2496 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "AuthAlg",
2497 : : &iter_dict_entry,
2498 : : &iter_dict_val,
2499 : : &iter_array))
2500 : 0 : goto nomem;
2501 : :
2502 [ # # ]: 0 : if (capa.auth & (WPA_DRIVER_AUTH_OPEN)) {
2503 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2504 : : &iter_array, "open"))
2505 : 0 : goto nomem;
2506 : : }
2507 : :
2508 [ # # ]: 0 : if (capa.auth & (WPA_DRIVER_AUTH_SHARED)) {
2509 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2510 : : &iter_array, "shared"))
2511 : 0 : goto nomem;
2512 : : }
2513 : :
2514 [ # # ]: 0 : if (capa.auth & (WPA_DRIVER_AUTH_LEAP)) {
2515 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2516 : : &iter_array, "leap"))
2517 : 0 : goto nomem;
2518 : : }
2519 : :
2520 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2521 : : &iter_dict_entry,
2522 : : &iter_dict_val,
2523 : : &iter_array))
2524 : 0 : goto nomem;
2525 : : }
2526 : :
2527 : : /***** Scan */
2528 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(&iter_dict, "Scan", scans,
2529 : : ARRAY_SIZE(scans)))
2530 : 0 : goto nomem;
2531 : :
2532 : : /***** Modes */
2533 [ # # ]: 0 : if (!wpa_dbus_dict_begin_string_array(&iter_dict, "Modes",
2534 : : &iter_dict_entry,
2535 : : &iter_dict_val,
2536 : : &iter_array))
2537 : 0 : goto nomem;
2538 : :
2539 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2540 : : &iter_array, "infrastructure"))
2541 : 0 : goto nomem;
2542 : :
2543 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2544 : : &iter_array, "ad-hoc"))
2545 : 0 : goto nomem;
2546 : :
2547 [ # # ]: 0 : if (res >= 0) {
2548 [ # # ]: 0 : if (capa.flags & (WPA_DRIVER_FLAGS_AP)) {
2549 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2550 : : &iter_array, "ap"))
2551 : 0 : goto nomem;
2552 : : }
2553 : :
2554 [ # # ]: 0 : if (capa.flags & (WPA_DRIVER_FLAGS_P2P_CAPABLE)) {
2555 [ # # ]: 0 : if (!wpa_dbus_dict_string_array_add_element(
2556 : : &iter_array, "p2p"))
2557 : 0 : goto nomem;
2558 : : }
2559 : : }
2560 : :
2561 [ # # ]: 0 : if (!wpa_dbus_dict_end_string_array(&iter_dict,
2562 : : &iter_dict_entry,
2563 : : &iter_dict_val,
2564 : : &iter_array))
2565 : 0 : goto nomem;
2566 : : /***** Modes end */
2567 : :
2568 [ # # ]: 0 : if (res >= 0) {
2569 : 0 : dbus_int32_t max_scan_ssid = capa.max_scan_ssids;
2570 : :
2571 [ # # ]: 0 : if (!wpa_dbus_dict_append_int32(&iter_dict, "MaxScanSSID",
2572 : : max_scan_ssid))
2573 : 0 : goto nomem;
2574 : : }
2575 : :
2576 [ # # ]: 0 : if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
2577 : 0 : goto nomem;
2578 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter))
2579 : 0 : goto nomem;
2580 : :
2581 : 0 : return TRUE;
2582 : :
2583 : : nomem:
2584 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
2585 : 0 : return FALSE;
2586 : : }
2587 : :
2588 : :
2589 : : /**
2590 : : * wpas_dbus_getter_state - Get interface state
2591 : : * @iter: Pointer to incoming dbus message iter
2592 : : * @error: Location to store error on failure
2593 : : * @user_data: Function specific data
2594 : : * Returns: TRUE on success, FALSE on failure
2595 : : *
2596 : : * Getter for "State" property.
2597 : : */
2598 : 0 : dbus_bool_t wpas_dbus_getter_state(DBusMessageIter *iter, DBusError *error,
2599 : : void *user_data)
2600 : : {
2601 : 0 : struct wpa_supplicant *wpa_s = user_data;
2602 : : const char *str_state;
2603 : : char *state_ls, *tmp;
2604 : 0 : dbus_bool_t success = FALSE;
2605 : :
2606 : 0 : str_state = wpa_supplicant_state_txt(wpa_s->wpa_state);
2607 : :
2608 : : /* make state string lowercase to fit new DBus API convention
2609 : : */
2610 : 0 : state_ls = tmp = os_strdup(str_state);
2611 [ # # ]: 0 : if (!tmp) {
2612 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
2613 : 0 : return FALSE;
2614 : : }
2615 [ # # ]: 0 : while (*tmp) {
2616 : 0 : *tmp = tolower(*tmp);
2617 : 0 : tmp++;
2618 : : }
2619 : :
2620 : 0 : success = wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
2621 : : &state_ls, error);
2622 : :
2623 : 0 : os_free(state_ls);
2624 : :
2625 : 0 : return success;
2626 : : }
2627 : :
2628 : :
2629 : : /**
2630 : : * wpas_dbus_new_iface_get_scanning - Get interface scanning state
2631 : : * @iter: Pointer to incoming dbus message iter
2632 : : * @error: Location to store error on failure
2633 : : * @user_data: Function specific data
2634 : : * Returns: TRUE on success, FALSE on failure
2635 : : *
2636 : : * Getter for "scanning" property.
2637 : : */
2638 : 0 : dbus_bool_t wpas_dbus_getter_scanning(DBusMessageIter *iter, DBusError *error,
2639 : : void *user_data)
2640 : : {
2641 : 0 : struct wpa_supplicant *wpa_s = user_data;
2642 : 0 : dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE;
2643 : :
2644 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
2645 : : &scanning, error);
2646 : : }
2647 : :
2648 : :
2649 : : /**
2650 : : * wpas_dbus_getter_ap_scan - Control roaming mode
2651 : : * @iter: Pointer to incoming dbus message iter
2652 : : * @error: Location to store error on failure
2653 : : * @user_data: Function specific data
2654 : : * Returns: TRUE on success, FALSE on failure
2655 : : *
2656 : : * Getter function for "ApScan" property.
2657 : : */
2658 : 0 : dbus_bool_t wpas_dbus_getter_ap_scan(DBusMessageIter *iter, DBusError *error,
2659 : : void *user_data)
2660 : : {
2661 : 0 : struct wpa_supplicant *wpa_s = user_data;
2662 : 0 : dbus_uint32_t ap_scan = wpa_s->conf->ap_scan;
2663 : :
2664 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_UINT32,
2665 : : &ap_scan, error);
2666 : : }
2667 : :
2668 : :
2669 : : /**
2670 : : * wpas_dbus_setter_ap_scan - Control roaming mode
2671 : : * @iter: Pointer to incoming dbus message iter
2672 : : * @error: Location to store error on failure
2673 : : * @user_data: Function specific data
2674 : : * Returns: TRUE on success, FALSE on failure
2675 : : *
2676 : : * Setter function for "ApScan" property.
2677 : : */
2678 : 0 : dbus_bool_t wpas_dbus_setter_ap_scan(DBusMessageIter *iter, DBusError *error,
2679 : : void *user_data)
2680 : : {
2681 : 0 : struct wpa_supplicant *wpa_s = user_data;
2682 : : dbus_uint32_t ap_scan;
2683 : :
2684 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_UINT32,
2685 : : &ap_scan))
2686 : 0 : return FALSE;
2687 : :
2688 [ # # ]: 0 : if (wpa_supplicant_set_ap_scan(wpa_s, ap_scan)) {
2689 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2690 : : "ap_scan must be 0, 1, or 2");
2691 : 0 : return FALSE;
2692 : : }
2693 : 0 : return TRUE;
2694 : : }
2695 : :
2696 : :
2697 : : /**
2698 : : * wpas_dbus_getter_fast_reauth - Control fast
2699 : : * reauthentication (TLS session resumption)
2700 : : * @iter: Pointer to incoming dbus message iter
2701 : : * @error: Location to store error on failure
2702 : : * @user_data: Function specific data
2703 : : * Returns: TRUE on success, FALSE on failure
2704 : : *
2705 : : * Getter function for "FastReauth" property.
2706 : : */
2707 : 0 : dbus_bool_t wpas_dbus_getter_fast_reauth(DBusMessageIter *iter,
2708 : : DBusError *error,
2709 : : void *user_data)
2710 : : {
2711 : 0 : struct wpa_supplicant *wpa_s = user_data;
2712 : 0 : dbus_bool_t fast_reauth = wpa_s->conf->fast_reauth ? TRUE : FALSE;
2713 : :
2714 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
2715 : : &fast_reauth, error);
2716 : : }
2717 : :
2718 : :
2719 : : /**
2720 : : * wpas_dbus_setter_fast_reauth - Control fast
2721 : : * reauthentication (TLS session resumption)
2722 : : * @iter: Pointer to incoming dbus message iter
2723 : : * @error: Location to store error on failure
2724 : : * @user_data: Function specific data
2725 : : * Returns: TRUE on success, FALSE on failure
2726 : : *
2727 : : * Setter function for "FastReauth" property.
2728 : : */
2729 : 0 : dbus_bool_t wpas_dbus_setter_fast_reauth(DBusMessageIter *iter,
2730 : : DBusError *error,
2731 : : void *user_data)
2732 : : {
2733 : 0 : struct wpa_supplicant *wpa_s = user_data;
2734 : : dbus_bool_t fast_reauth;
2735 : :
2736 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_BOOLEAN,
2737 : : &fast_reauth))
2738 : 0 : return FALSE;
2739 : :
2740 : 0 : wpa_s->conf->fast_reauth = fast_reauth;
2741 : 0 : return TRUE;
2742 : : }
2743 : :
2744 : :
2745 : : /**
2746 : : * wpas_dbus_getter_disconnect_reason - Get most recent reason for disconnect
2747 : : * @iter: Pointer to incoming dbus message iter
2748 : : * @error: Location to store error on failure
2749 : : * @user_data: Function specific data
2750 : : * Returns: TRUE on success, FALSE on failure
2751 : : *
2752 : : * Getter for "DisconnectReason" property. The reason is negative if it is
2753 : : * locally generated.
2754 : : */
2755 : 0 : dbus_bool_t wpas_dbus_getter_disconnect_reason(DBusMessageIter *iter,
2756 : : DBusError *error,
2757 : : void *user_data)
2758 : : {
2759 : 0 : struct wpa_supplicant *wpa_s = user_data;
2760 : 0 : dbus_int32_t reason = wpa_s->disconnect_reason;
2761 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_INT32,
2762 : : &reason, error);
2763 : : }
2764 : :
2765 : :
2766 : : /**
2767 : : * wpas_dbus_getter_bss_expire_age - Get BSS entry expiration age
2768 : : * @iter: Pointer to incoming dbus message iter
2769 : : * @error: Location to store error on failure
2770 : : * @user_data: Function specific data
2771 : : * Returns: TRUE on success, FALSE on failure
2772 : : *
2773 : : * Getter function for "BSSExpireAge" property.
2774 : : */
2775 : 0 : dbus_bool_t wpas_dbus_getter_bss_expire_age(DBusMessageIter *iter,
2776 : : DBusError *error,
2777 : : void *user_data)
2778 : : {
2779 : 0 : struct wpa_supplicant *wpa_s = user_data;
2780 : 0 : dbus_uint32_t expire_age = wpa_s->conf->bss_expiration_age;
2781 : :
2782 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_UINT32,
2783 : : &expire_age, error);
2784 : : }
2785 : :
2786 : :
2787 : : /**
2788 : : * wpas_dbus_setter_bss_expire_age - Control BSS entry expiration age
2789 : : * @iter: Pointer to incoming dbus message iter
2790 : : * @error: Location to store error on failure
2791 : : * @user_data: Function specific data
2792 : : * Returns: TRUE on success, FALSE on failure
2793 : : *
2794 : : * Setter function for "BSSExpireAge" property.
2795 : : */
2796 : 0 : dbus_bool_t wpas_dbus_setter_bss_expire_age(DBusMessageIter *iter,
2797 : : DBusError *error,
2798 : : void *user_data)
2799 : : {
2800 : 0 : struct wpa_supplicant *wpa_s = user_data;
2801 : : dbus_uint32_t expire_age;
2802 : :
2803 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_UINT32,
2804 : : &expire_age))
2805 : 0 : return FALSE;
2806 : :
2807 [ # # ]: 0 : if (wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age)) {
2808 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2809 : : "BSSExpireAge must be >= 10");
2810 : 0 : return FALSE;
2811 : : }
2812 : 0 : return TRUE;
2813 : : }
2814 : :
2815 : :
2816 : : /**
2817 : : * wpas_dbus_getter_bss_expire_count - Get BSS entry expiration scan count
2818 : : * @iter: Pointer to incoming dbus message iter
2819 : : * @error: Location to store error on failure
2820 : : * @user_data: Function specific data
2821 : : * Returns: TRUE on success, FALSE on failure
2822 : : *
2823 : : * Getter function for "BSSExpireCount" property.
2824 : : */
2825 : 0 : dbus_bool_t wpas_dbus_getter_bss_expire_count(DBusMessageIter *iter,
2826 : : DBusError *error,
2827 : : void *user_data)
2828 : : {
2829 : 0 : struct wpa_supplicant *wpa_s = user_data;
2830 : 0 : dbus_uint32_t expire_count = wpa_s->conf->bss_expiration_scan_count;
2831 : :
2832 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_UINT32,
2833 : : &expire_count, error);
2834 : : }
2835 : :
2836 : :
2837 : : /**
2838 : : * wpas_dbus_setter_bss_expire_count - Control BSS entry expiration scan count
2839 : : * @iter: Pointer to incoming dbus message iter
2840 : : * @error: Location to store error on failure
2841 : : * @user_data: Function specific data
2842 : : * Returns: TRUE on success, FALSE on failure
2843 : : *
2844 : : * Setter function for "BSSExpireCount" property.
2845 : : */
2846 : 0 : dbus_bool_t wpas_dbus_setter_bss_expire_count(DBusMessageIter *iter,
2847 : : DBusError *error,
2848 : : void *user_data)
2849 : : {
2850 : 0 : struct wpa_supplicant *wpa_s = user_data;
2851 : : dbus_uint32_t expire_count;
2852 : :
2853 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_UINT32,
2854 : : &expire_count))
2855 : 0 : return FALSE;
2856 : :
2857 [ # # ]: 0 : if (wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count)) {
2858 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2859 : : "BSSExpireCount must be > 0");
2860 : 0 : return FALSE;
2861 : : }
2862 : 0 : return TRUE;
2863 : : }
2864 : :
2865 : :
2866 : : /**
2867 : : * wpas_dbus_getter_country - Control country code
2868 : : * @iter: Pointer to incoming dbus message iter
2869 : : * @error: Location to store error on failure
2870 : : * @user_data: Function specific data
2871 : : * Returns: TRUE on success, FALSE on failure
2872 : : *
2873 : : * Getter function for "Country" property.
2874 : : */
2875 : 0 : dbus_bool_t wpas_dbus_getter_country(DBusMessageIter *iter, DBusError *error,
2876 : : void *user_data)
2877 : : {
2878 : 0 : struct wpa_supplicant *wpa_s = user_data;
2879 : : char country[3];
2880 : 0 : char *str = country;
2881 : :
2882 : 0 : country[0] = wpa_s->conf->country[0];
2883 : 0 : country[1] = wpa_s->conf->country[1];
2884 : 0 : country[2] = '\0';
2885 : :
2886 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
2887 : : &str, error);
2888 : : }
2889 : :
2890 : :
2891 : : /**
2892 : : * wpas_dbus_setter_country - Control country code
2893 : : * @iter: Pointer to incoming dbus message iter
2894 : : * @error: Location to store error on failure
2895 : : * @user_data: Function specific data
2896 : : * Returns: TRUE on success, FALSE on failure
2897 : : *
2898 : : * Setter function for "Country" property.
2899 : : */
2900 : 0 : dbus_bool_t wpas_dbus_setter_country(DBusMessageIter *iter, DBusError *error,
2901 : : void *user_data)
2902 : : {
2903 : 0 : struct wpa_supplicant *wpa_s = user_data;
2904 : : const char *country;
2905 : :
2906 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_STRING,
2907 : : &country))
2908 : 0 : return FALSE;
2909 : :
2910 [ # # ][ # # ]: 0 : if (!country[0] || !country[1]) {
2911 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2912 : : "invalid country code");
2913 : 0 : return FALSE;
2914 : : }
2915 : :
2916 [ # # ][ # # ]: 0 : if (wpa_s->drv_priv != NULL && wpa_drv_set_country(wpa_s, country)) {
2917 : 0 : wpa_printf(MSG_DEBUG, "Failed to set country");
2918 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2919 : : "failed to set country code");
2920 : 0 : return FALSE;
2921 : : }
2922 : :
2923 : 0 : wpa_s->conf->country[0] = country[0];
2924 : 0 : wpa_s->conf->country[1] = country[1];
2925 : 0 : return TRUE;
2926 : : }
2927 : :
2928 : :
2929 : : /**
2930 : : * wpas_dbus_getter_scan_interval - Get scan interval
2931 : : * @iter: Pointer to incoming dbus message iter
2932 : : * @error: Location to store error on failure
2933 : : * @user_data: Function specific data
2934 : : * Returns: TRUE on success, FALSE on failure
2935 : : *
2936 : : * Getter function for "ScanInterval" property.
2937 : : */
2938 : 0 : dbus_bool_t wpas_dbus_getter_scan_interval(DBusMessageIter *iter,
2939 : : DBusError *error,
2940 : : void *user_data)
2941 : : {
2942 : 0 : struct wpa_supplicant *wpa_s = user_data;
2943 : 0 : dbus_int32_t scan_interval = wpa_s->scan_interval;
2944 : :
2945 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_INT32,
2946 : : &scan_interval, error);
2947 : : }
2948 : :
2949 : :
2950 : : /**
2951 : : * wpas_dbus_setter_scan_interval - Control scan interval
2952 : : * @iter: Pointer to incoming dbus message iter
2953 : : * @error: Location to store error on failure
2954 : : * @user_data: Function specific data
2955 : : * Returns: TRUE on success, FALSE on failure
2956 : : *
2957 : : * Setter function for "ScanInterval" property.
2958 : : */
2959 : 0 : dbus_bool_t wpas_dbus_setter_scan_interval(DBusMessageIter *iter,
2960 : : DBusError *error,
2961 : : void *user_data)
2962 : : {
2963 : 0 : struct wpa_supplicant *wpa_s = user_data;
2964 : : dbus_int32_t scan_interval;
2965 : :
2966 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_INT32,
2967 : : &scan_interval))
2968 : 0 : return FALSE;
2969 : :
2970 [ # # ]: 0 : if (wpa_supplicant_set_scan_interval(wpa_s, scan_interval)) {
2971 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
2972 : : "scan_interval must be >= 0");
2973 : 0 : return FALSE;
2974 : : }
2975 : 0 : return TRUE;
2976 : : }
2977 : :
2978 : :
2979 : : /**
2980 : : * wpas_dbus_getter_ifname - Get interface name
2981 : : * @iter: Pointer to incoming dbus message iter
2982 : : * @error: Location to store error on failure
2983 : : * @user_data: Function specific data
2984 : : * Returns: TRUE on success, FALSE on failure
2985 : : *
2986 : : * Getter for "Ifname" property.
2987 : : */
2988 : 0 : dbus_bool_t wpas_dbus_getter_ifname(DBusMessageIter *iter, DBusError *error,
2989 : : void *user_data)
2990 : : {
2991 : 0 : struct wpa_supplicant *wpa_s = user_data;
2992 : 0 : const char *ifname = wpa_s->ifname;
2993 : :
2994 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
2995 : : &ifname, error);
2996 : : }
2997 : :
2998 : :
2999 : : /**
3000 : : * wpas_dbus_getter_driver - Get interface name
3001 : : * @iter: Pointer to incoming dbus message iter
3002 : : * @error: Location to store error on failure
3003 : : * @user_data: Function specific data
3004 : : * Returns: TRUE on success, FALSE on failure
3005 : : *
3006 : : * Getter for "Driver" property.
3007 : : */
3008 : 0 : dbus_bool_t wpas_dbus_getter_driver(DBusMessageIter *iter, DBusError *error,
3009 : : void *user_data)
3010 : : {
3011 : 0 : struct wpa_supplicant *wpa_s = user_data;
3012 : : const char *driver;
3013 : :
3014 [ # # ][ # # ]: 0 : if (wpa_s->driver == NULL || wpa_s->driver->name == NULL) {
3015 : 0 : wpa_printf(MSG_DEBUG, "wpas_dbus_getter_driver[dbus]: "
3016 : : "wpa_s has no driver set");
3017 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED, "%s: no driver set",
3018 : : __func__);
3019 : 0 : return FALSE;
3020 : : }
3021 : :
3022 : 0 : driver = wpa_s->driver->name;
3023 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3024 : : &driver, error);
3025 : : }
3026 : :
3027 : :
3028 : : /**
3029 : : * wpas_dbus_getter_current_bss - Get current bss object path
3030 : : * @iter: Pointer to incoming dbus message iter
3031 : : * @error: Location to store error on failure
3032 : : * @user_data: Function specific data
3033 : : * Returns: TRUE on success, FALSE on failure
3034 : : *
3035 : : * Getter for "CurrentBSS" property.
3036 : : */
3037 : 0 : dbus_bool_t wpas_dbus_getter_current_bss(DBusMessageIter *iter,
3038 : : DBusError *error,
3039 : : void *user_data)
3040 : : {
3041 : 0 : struct wpa_supplicant *wpa_s = user_data;
3042 : 0 : char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *bss_obj_path = path_buf;
3043 : :
3044 [ # # ]: 0 : if (wpa_s->current_bss)
3045 : 0 : os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
3046 : : "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
3047 : 0 : wpa_s->dbus_new_path, wpa_s->current_bss->id);
3048 : : else
3049 : 0 : os_snprintf(bss_obj_path, WPAS_DBUS_OBJECT_PATH_MAX, "/");
3050 : :
3051 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_OBJECT_PATH,
3052 : : &bss_obj_path, error);
3053 : : }
3054 : :
3055 : :
3056 : : /**
3057 : : * wpas_dbus_getter_current_network - Get current network object path
3058 : : * @iter: Pointer to incoming dbus message iter
3059 : : * @error: Location to store error on failure
3060 : : * @user_data: Function specific data
3061 : : * Returns: TRUE on success, FALSE on failure
3062 : : *
3063 : : * Getter for "CurrentNetwork" property.
3064 : : */
3065 : 0 : dbus_bool_t wpas_dbus_getter_current_network(DBusMessageIter *iter,
3066 : : DBusError *error,
3067 : : void *user_data)
3068 : : {
3069 : 0 : struct wpa_supplicant *wpa_s = user_data;
3070 : 0 : char path_buf[WPAS_DBUS_OBJECT_PATH_MAX], *net_obj_path = path_buf;
3071 : :
3072 [ # # ]: 0 : if (wpa_s->current_ssid)
3073 : 0 : os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX,
3074 : : "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%u",
3075 : 0 : wpa_s->dbus_new_path, wpa_s->current_ssid->id);
3076 : : else
3077 : 0 : os_snprintf(net_obj_path, WPAS_DBUS_OBJECT_PATH_MAX, "/");
3078 : :
3079 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_OBJECT_PATH,
3080 : : &net_obj_path, error);
3081 : : }
3082 : :
3083 : :
3084 : : /**
3085 : : * wpas_dbus_getter_current_auth_mode - Get current authentication type
3086 : : * @iter: Pointer to incoming dbus message iter
3087 : : * @error: Location to store error on failure
3088 : : * @user_data: Function specific data
3089 : : * Returns: TRUE on success, FALSE on failure
3090 : : *
3091 : : * Getter for "CurrentAuthMode" property.
3092 : : */
3093 : 0 : dbus_bool_t wpas_dbus_getter_current_auth_mode(DBusMessageIter *iter,
3094 : : DBusError *error,
3095 : : void *user_data)
3096 : : {
3097 : 0 : struct wpa_supplicant *wpa_s = user_data;
3098 : : const char *eap_mode;
3099 : : const char *auth_mode;
3100 : : char eap_mode_buf[WPAS_DBUS_AUTH_MODE_MAX];
3101 : :
3102 [ # # ]: 0 : if (wpa_s->wpa_state != WPA_COMPLETED) {
3103 : 0 : auth_mode = "INACTIVE";
3104 [ # # ][ # # ]: 0 : } else if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X ||
3105 : 0 : wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
3106 : 0 : eap_mode = wpa_supplicant_get_eap_mode(wpa_s);
3107 : 0 : os_snprintf(eap_mode_buf, WPAS_DBUS_AUTH_MODE_MAX,
3108 : : "EAP-%s", eap_mode);
3109 : 0 : auth_mode = eap_mode_buf;
3110 : :
3111 : : } else {
3112 : 0 : auth_mode = wpa_key_mgmt_txt(wpa_s->key_mgmt,
3113 : 0 : wpa_s->current_ssid->proto);
3114 : : }
3115 : :
3116 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3117 : : &auth_mode, error);
3118 : : }
3119 : :
3120 : :
3121 : : /**
3122 : : * wpas_dbus_getter_bridge_ifname - Get interface name
3123 : : * @iter: Pointer to incoming dbus message iter
3124 : : * @error: Location to store error on failure
3125 : : * @user_data: Function specific data
3126 : : * Returns: TRUE on success, FALSE on failure
3127 : : *
3128 : : * Getter for "BridgeIfname" property.
3129 : : */
3130 : 0 : dbus_bool_t wpas_dbus_getter_bridge_ifname(DBusMessageIter *iter,
3131 : : DBusError *error,
3132 : : void *user_data)
3133 : : {
3134 : 0 : struct wpa_supplicant *wpa_s = user_data;
3135 : 0 : const char *bridge_ifname = wpa_s->bridge_ifname;
3136 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3137 : : &bridge_ifname, error);
3138 : : }
3139 : :
3140 : :
3141 : : /**
3142 : : * wpas_dbus_getter_bsss - Get array of BSSs objects
3143 : : * @iter: Pointer to incoming dbus message iter
3144 : : * @error: Location to store error on failure
3145 : : * @user_data: Function specific data
3146 : : * Returns: TRUE on success, FALSE on failure
3147 : : *
3148 : : * Getter for "BSSs" property.
3149 : : */
3150 : 0 : dbus_bool_t wpas_dbus_getter_bsss(DBusMessageIter *iter, DBusError *error,
3151 : : void *user_data)
3152 : : {
3153 : 0 : struct wpa_supplicant *wpa_s = user_data;
3154 : : struct wpa_bss *bss;
3155 : : char **paths;
3156 : 0 : unsigned int i = 0;
3157 : 0 : dbus_bool_t success = FALSE;
3158 : :
3159 : 0 : paths = os_calloc(wpa_s->num_bss, sizeof(char *));
3160 [ # # ]: 0 : if (!paths) {
3161 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3162 : 0 : return FALSE;
3163 : : }
3164 : :
3165 : : /* Loop through scan results and append each result's object path */
3166 [ # # ]: 0 : dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
3167 : 0 : paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
3168 [ # # ]: 0 : if (paths[i] == NULL) {
3169 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY,
3170 : : "no memory");
3171 : 0 : goto out;
3172 : : }
3173 : : /* Construct the object path for this BSS. */
3174 : 0 : os_snprintf(paths[i++], WPAS_DBUS_OBJECT_PATH_MAX,
3175 : : "%s/" WPAS_DBUS_NEW_BSSIDS_PART "/%u",
3176 : : wpa_s->dbus_new_path, bss->id);
3177 : : }
3178 : :
3179 : 0 : success = wpas_dbus_simple_array_property_getter(iter,
3180 : : DBUS_TYPE_OBJECT_PATH,
3181 : : paths, wpa_s->num_bss,
3182 : : error);
3183 : :
3184 : : out:
3185 [ # # ]: 0 : while (i)
3186 : 0 : os_free(paths[--i]);
3187 : 0 : os_free(paths);
3188 : 0 : return success;
3189 : : }
3190 : :
3191 : :
3192 : : /**
3193 : : * wpas_dbus_getter_networks - Get array of networks objects
3194 : : * @iter: Pointer to incoming dbus message iter
3195 : : * @error: Location to store error on failure
3196 : : * @user_data: Function specific data
3197 : : * Returns: TRUE on success, FALSE on failure
3198 : : *
3199 : : * Getter for "Networks" property.
3200 : : */
3201 : 0 : dbus_bool_t wpas_dbus_getter_networks(DBusMessageIter *iter, DBusError *error,
3202 : : void *user_data)
3203 : : {
3204 : 0 : struct wpa_supplicant *wpa_s = user_data;
3205 : : struct wpa_ssid *ssid;
3206 : : char **paths;
3207 : 0 : unsigned int i = 0, num = 0;
3208 : 0 : dbus_bool_t success = FALSE;
3209 : :
3210 [ # # ]: 0 : if (wpa_s->conf == NULL) {
3211 : 0 : wpa_printf(MSG_ERROR, "%s[dbus]: An error occurred getting "
3212 : : "networks list.", __func__);
3213 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED, "%s: an error "
3214 : : "occurred getting the networks list", __func__);
3215 : 0 : return FALSE;
3216 : : }
3217 : :
3218 [ # # ]: 0 : for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
3219 [ # # ]: 0 : if (!network_is_persistent_group(ssid))
3220 : 0 : num++;
3221 : :
3222 : 0 : paths = os_calloc(num, sizeof(char *));
3223 [ # # ]: 0 : if (!paths) {
3224 : 0 : dbus_set_error(error, DBUS_ERROR_NO_MEMORY, "no memory");
3225 : 0 : return FALSE;
3226 : : }
3227 : :
3228 : : /* Loop through configured networks and append object path of each */
3229 [ # # ]: 0 : for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
3230 [ # # ]: 0 : if (network_is_persistent_group(ssid))
3231 : 0 : continue;
3232 : 0 : paths[i] = os_zalloc(WPAS_DBUS_OBJECT_PATH_MAX);
3233 [ # # ]: 0 : if (paths[i] == NULL) {
3234 : 0 : dbus_set_error(error, DBUS_ERROR_NO_MEMORY, "no memory");
3235 : 0 : goto out;
3236 : : }
3237 : :
3238 : : /* Construct the object path for this network. */
3239 : 0 : os_snprintf(paths[i++], WPAS_DBUS_OBJECT_PATH_MAX,
3240 : : "%s/" WPAS_DBUS_NEW_NETWORKS_PART "/%d",
3241 : : wpa_s->dbus_new_path, ssid->id);
3242 : : }
3243 : :
3244 : 0 : success = wpas_dbus_simple_array_property_getter(iter,
3245 : : DBUS_TYPE_OBJECT_PATH,
3246 : : paths, num, error);
3247 : :
3248 : : out:
3249 [ # # ]: 0 : while (i)
3250 : 0 : os_free(paths[--i]);
3251 : 0 : os_free(paths);
3252 : 0 : return success;
3253 : : }
3254 : :
3255 : :
3256 : : /**
3257 : : * wpas_dbus_getter_pkcs11_engine_path - Get PKCS #11 engine path
3258 : : * @iter: Pointer to incoming dbus message iter
3259 : : * @error: Location to store error on failure
3260 : : * @user_data: Function specific data
3261 : : * Returns: A dbus message containing the PKCS #11 engine path
3262 : : *
3263 : : * Getter for "PKCS11EnginePath" property.
3264 : : */
3265 : 0 : dbus_bool_t wpas_dbus_getter_pkcs11_engine_path(DBusMessageIter *iter,
3266 : : DBusError *error,
3267 : : void *user_data)
3268 : : {
3269 : 0 : struct wpa_supplicant *wpa_s = user_data;
3270 : : const char *pkcs11_engine_path;
3271 : :
3272 [ # # ]: 0 : if (wpa_s->conf == NULL) {
3273 : 0 : wpa_printf(MSG_ERROR,
3274 : : "wpas_dbus_getter_pkcs11_engine_path[dbus]: An "
3275 : : "error occurred getting the PKCS #11 engine path.");
3276 : 0 : dbus_set_error_const(
3277 : : error, DBUS_ERROR_FAILED,
3278 : : "An error occured getting the PKCS #11 engine path.");
3279 : 0 : return FALSE;
3280 : : }
3281 : :
3282 [ # # ]: 0 : if (wpa_s->conf->pkcs11_engine_path == NULL)
3283 : 0 : pkcs11_engine_path = "";
3284 : : else
3285 : 0 : pkcs11_engine_path = wpa_s->conf->pkcs11_engine_path;
3286 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3287 : : &pkcs11_engine_path, error);
3288 : : }
3289 : :
3290 : :
3291 : : /**
3292 : : * wpas_dbus_getter_pkcs11_module_path - Get PKCS #11 module path
3293 : : * @iter: Pointer to incoming dbus message iter
3294 : : * @error: Location to store error on failure
3295 : : * @user_data: Function specific data
3296 : : * Returns: A dbus message containing the PKCS #11 module path
3297 : : *
3298 : : * Getter for "PKCS11ModulePath" property.
3299 : : */
3300 : 0 : dbus_bool_t wpas_dbus_getter_pkcs11_module_path(DBusMessageIter *iter,
3301 : : DBusError *error,
3302 : : void *user_data)
3303 : : {
3304 : 0 : struct wpa_supplicant *wpa_s = user_data;
3305 : : const char *pkcs11_module_path;
3306 : :
3307 [ # # ]: 0 : if (wpa_s->conf == NULL) {
3308 : 0 : wpa_printf(MSG_ERROR,
3309 : : "wpas_dbus_getter_pkcs11_module_path[dbus]: An "
3310 : : "error occurred getting the PKCS #11 module path.");
3311 : 0 : dbus_set_error_const(
3312 : : error, DBUS_ERROR_FAILED,
3313 : : "An error occured getting the PKCS #11 module path.");
3314 : 0 : return FALSE;
3315 : : }
3316 : :
3317 [ # # ]: 0 : if (wpa_s->conf->pkcs11_module_path == NULL)
3318 : 0 : pkcs11_module_path = "";
3319 : : else
3320 : 0 : pkcs11_module_path = wpa_s->conf->pkcs11_module_path;
3321 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3322 : : &pkcs11_module_path, error);
3323 : : }
3324 : :
3325 : :
3326 : : /**
3327 : : * wpas_dbus_getter_blobs - Get all blobs defined for this interface
3328 : : * @iter: Pointer to incoming dbus message iter
3329 : : * @error: Location to store error on failure
3330 : : * @user_data: Function specific data
3331 : : * Returns: TRUE on success, FALSE on failure
3332 : : *
3333 : : * Getter for "Blobs" property.
3334 : : */
3335 : 0 : dbus_bool_t wpas_dbus_getter_blobs(DBusMessageIter *iter, DBusError *error,
3336 : : void *user_data)
3337 : : {
3338 : 0 : struct wpa_supplicant *wpa_s = user_data;
3339 : : DBusMessageIter variant_iter, dict_iter, entry_iter, array_iter;
3340 : : struct wpa_config_blob *blob;
3341 : :
3342 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
3343 [ # # ]: 0 : "a{say}", &variant_iter) ||
3344 : 0 : !dbus_message_iter_open_container(&variant_iter, DBUS_TYPE_ARRAY,
3345 : : "{say}", &dict_iter)) {
3346 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3347 : 0 : return FALSE;
3348 : : }
3349 : :
3350 : 0 : blob = wpa_s->conf->blobs;
3351 [ # # ]: 0 : while (blob) {
3352 [ # # ]: 0 : if (!dbus_message_iter_open_container(&dict_iter,
3353 : : DBUS_TYPE_DICT_ENTRY,
3354 [ # # ]: 0 : NULL, &entry_iter) ||
3355 : 0 : !dbus_message_iter_append_basic(&entry_iter,
3356 : : DBUS_TYPE_STRING,
3357 [ # # ]: 0 : &(blob->name)) ||
3358 : 0 : !dbus_message_iter_open_container(&entry_iter,
3359 : : DBUS_TYPE_ARRAY,
3360 : : DBUS_TYPE_BYTE_AS_STRING,
3361 [ # # ]: 0 : &array_iter) ||
3362 : 0 : !dbus_message_iter_append_fixed_array(&array_iter,
3363 : : DBUS_TYPE_BYTE,
3364 : 0 : &(blob->data),
3365 [ # # ]: 0 : blob->len) ||
3366 : 0 : !dbus_message_iter_close_container(&entry_iter,
3367 [ # # ]: 0 : &array_iter) ||
3368 : 0 : !dbus_message_iter_close_container(&dict_iter,
3369 : : &entry_iter)) {
3370 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY,
3371 : : "no memory");
3372 : 0 : return FALSE;
3373 : : }
3374 : :
3375 : 0 : blob = blob->next;
3376 : : }
3377 : :
3378 [ # # # # ]: 0 : if (!dbus_message_iter_close_container(&variant_iter, &dict_iter) ||
3379 : 0 : !dbus_message_iter_close_container(iter, &variant_iter)) {
3380 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3381 : 0 : return FALSE;
3382 : : }
3383 : :
3384 : 0 : return TRUE;
3385 : : }
3386 : :
3387 : :
3388 : 0 : static struct wpa_bss * get_bss_helper(struct bss_handler_args *args,
3389 : : DBusError *error, const char *func_name)
3390 : : {
3391 : 0 : struct wpa_bss *res = wpa_bss_get_id(args->wpa_s, args->id);
3392 : :
3393 [ # # ]: 0 : if (!res) {
3394 : 0 : wpa_printf(MSG_ERROR, "%s[dbus]: no bss with id %d found",
3395 : : func_name, args->id);
3396 : 0 : dbus_set_error(error, DBUS_ERROR_FAILED,
3397 : : "%s: BSS %d not found",
3398 : : func_name, args->id);
3399 : : }
3400 : :
3401 : 0 : return res;
3402 : : }
3403 : :
3404 : :
3405 : : /**
3406 : : * wpas_dbus_getter_bss_bssid - Return the BSSID of a BSS
3407 : : * @iter: Pointer to incoming dbus message iter
3408 : : * @error: Location to store error on failure
3409 : : * @user_data: Function specific data
3410 : : * Returns: TRUE on success, FALSE on failure
3411 : : *
3412 : : * Getter for "BSSID" property.
3413 : : */
3414 : 0 : dbus_bool_t wpas_dbus_getter_bss_bssid(DBusMessageIter *iter, DBusError *error,
3415 : : void *user_data)
3416 : : {
3417 : 0 : struct bss_handler_args *args = user_data;
3418 : : struct wpa_bss *res;
3419 : :
3420 : 0 : res = get_bss_helper(args, error, __func__);
3421 [ # # ]: 0 : if (!res)
3422 : 0 : return FALSE;
3423 : :
3424 : 0 : return wpas_dbus_simple_array_property_getter(iter, DBUS_TYPE_BYTE,
3425 : 0 : res->bssid, ETH_ALEN,
3426 : : error);
3427 : : }
3428 : :
3429 : :
3430 : : /**
3431 : : * wpas_dbus_getter_bss_ssid - Return the SSID of a BSS
3432 : : * @iter: Pointer to incoming dbus message iter
3433 : : * @error: Location to store error on failure
3434 : : * @user_data: Function specific data
3435 : : * Returns: TRUE on success, FALSE on failure
3436 : : *
3437 : : * Getter for "SSID" property.
3438 : : */
3439 : 0 : dbus_bool_t wpas_dbus_getter_bss_ssid(DBusMessageIter *iter, DBusError *error,
3440 : : void *user_data)
3441 : : {
3442 : 0 : struct bss_handler_args *args = user_data;
3443 : : struct wpa_bss *res;
3444 : :
3445 : 0 : res = get_bss_helper(args, error, __func__);
3446 [ # # ]: 0 : if (!res)
3447 : 0 : return FALSE;
3448 : :
3449 : 0 : return wpas_dbus_simple_array_property_getter(iter, DBUS_TYPE_BYTE,
3450 : 0 : res->ssid, res->ssid_len,
3451 : : error);
3452 : : }
3453 : :
3454 : :
3455 : : /**
3456 : : * wpas_dbus_getter_bss_privacy - Return the privacy flag of a BSS
3457 : : * @iter: Pointer to incoming dbus message iter
3458 : : * @error: Location to store error on failure
3459 : : * @user_data: Function specific data
3460 : : * Returns: TRUE on success, FALSE on failure
3461 : : *
3462 : : * Getter for "Privacy" property.
3463 : : */
3464 : 0 : dbus_bool_t wpas_dbus_getter_bss_privacy(DBusMessageIter *iter,
3465 : : DBusError *error, void *user_data)
3466 : : {
3467 : 0 : struct bss_handler_args *args = user_data;
3468 : : struct wpa_bss *res;
3469 : : dbus_bool_t privacy;
3470 : :
3471 : 0 : res = get_bss_helper(args, error, __func__);
3472 [ # # ]: 0 : if (!res)
3473 : 0 : return FALSE;
3474 : :
3475 : 0 : privacy = (res->caps & IEEE80211_CAP_PRIVACY) ? TRUE : FALSE;
3476 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
3477 : : &privacy, error);
3478 : : }
3479 : :
3480 : :
3481 : : /**
3482 : : * wpas_dbus_getter_bss_mode - Return the mode of a BSS
3483 : : * @iter: Pointer to incoming dbus message iter
3484 : : * @error: Location to store error on failure
3485 : : * @user_data: Function specific data
3486 : : * Returns: TRUE on success, FALSE on failure
3487 : : *
3488 : : * Getter for "Mode" property.
3489 : : */
3490 : 0 : dbus_bool_t wpas_dbus_getter_bss_mode(DBusMessageIter *iter, DBusError *error,
3491 : : void *user_data)
3492 : : {
3493 : 0 : struct bss_handler_args *args = user_data;
3494 : : struct wpa_bss *res;
3495 : : const char *mode;
3496 : :
3497 : 0 : res = get_bss_helper(args, error, __func__);
3498 [ # # ]: 0 : if (!res)
3499 : 0 : return FALSE;
3500 : :
3501 [ # # ]: 0 : if (res->caps & IEEE80211_CAP_IBSS)
3502 : 0 : mode = "ad-hoc";
3503 : : else
3504 : 0 : mode = "infrastructure";
3505 : :
3506 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_STRING,
3507 : : &mode, error);
3508 : : }
3509 : :
3510 : :
3511 : : /**
3512 : : * wpas_dbus_getter_bss_level - Return the signal strength of a BSS
3513 : : * @iter: Pointer to incoming dbus message iter
3514 : : * @error: Location to store error on failure
3515 : : * @user_data: Function specific data
3516 : : * Returns: TRUE on success, FALSE on failure
3517 : : *
3518 : : * Getter for "Level" property.
3519 : : */
3520 : 0 : dbus_bool_t wpas_dbus_getter_bss_signal(DBusMessageIter *iter,
3521 : : DBusError *error, void *user_data)
3522 : : {
3523 : 0 : struct bss_handler_args *args = user_data;
3524 : : struct wpa_bss *res;
3525 : : s16 level;
3526 : :
3527 : 0 : res = get_bss_helper(args, error, __func__);
3528 [ # # ]: 0 : if (!res)
3529 : 0 : return FALSE;
3530 : :
3531 : 0 : level = (s16) res->level;
3532 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_INT16,
3533 : : &level, error);
3534 : : }
3535 : :
3536 : :
3537 : : /**
3538 : : * wpas_dbus_getter_bss_frequency - Return the frequency of a BSS
3539 : : * @iter: Pointer to incoming dbus message iter
3540 : : * @error: Location to store error on failure
3541 : : * @user_data: Function specific data
3542 : : * Returns: TRUE on success, FALSE on failure
3543 : : *
3544 : : * Getter for "Frequency" property.
3545 : : */
3546 : 0 : dbus_bool_t wpas_dbus_getter_bss_frequency(DBusMessageIter *iter,
3547 : : DBusError *error, void *user_data)
3548 : : {
3549 : 0 : struct bss_handler_args *args = user_data;
3550 : : struct wpa_bss *res;
3551 : : u16 freq;
3552 : :
3553 : 0 : res = get_bss_helper(args, error, __func__);
3554 [ # # ]: 0 : if (!res)
3555 : 0 : return FALSE;
3556 : :
3557 : 0 : freq = (u16) res->freq;
3558 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_UINT16,
3559 : : &freq, error);
3560 : : }
3561 : :
3562 : :
3563 : 0 : static int cmp_u8s_desc(const void *a, const void *b)
3564 : : {
3565 : 0 : return (*(u8 *) b - *(u8 *) a);
3566 : : }
3567 : :
3568 : :
3569 : : /**
3570 : : * wpas_dbus_getter_bss_rates - Return available bit rates of a BSS
3571 : : * @iter: Pointer to incoming dbus message iter
3572 : : * @error: Location to store error on failure
3573 : : * @user_data: Function specific data
3574 : : * Returns: TRUE on success, FALSE on failure
3575 : : *
3576 : : * Getter for "Rates" property.
3577 : : */
3578 : 0 : dbus_bool_t wpas_dbus_getter_bss_rates(DBusMessageIter *iter,
3579 : : DBusError *error, void *user_data)
3580 : : {
3581 : 0 : struct bss_handler_args *args = user_data;
3582 : : struct wpa_bss *res;
3583 : 0 : u8 *ie_rates = NULL;
3584 : : u32 *real_rates;
3585 : : int rates_num, i;
3586 : 0 : dbus_bool_t success = FALSE;
3587 : :
3588 : 0 : res = get_bss_helper(args, error, __func__);
3589 [ # # ]: 0 : if (!res)
3590 : 0 : return FALSE;
3591 : :
3592 : 0 : rates_num = wpa_bss_get_bit_rates(res, &ie_rates);
3593 [ # # ]: 0 : if (rates_num < 0)
3594 : 0 : return FALSE;
3595 : :
3596 : 0 : qsort(ie_rates, rates_num, 1, cmp_u8s_desc);
3597 : :
3598 : 0 : real_rates = os_malloc(sizeof(u32) * rates_num);
3599 [ # # ]: 0 : if (!real_rates) {
3600 : 0 : os_free(ie_rates);
3601 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3602 : 0 : return FALSE;
3603 : : }
3604 : :
3605 [ # # ]: 0 : for (i = 0; i < rates_num; i++)
3606 : 0 : real_rates[i] = ie_rates[i] * 500000;
3607 : :
3608 : 0 : success = wpas_dbus_simple_array_property_getter(iter, DBUS_TYPE_UINT32,
3609 : : real_rates, rates_num,
3610 : : error);
3611 : :
3612 : 0 : os_free(ie_rates);
3613 : 0 : os_free(real_rates);
3614 : 0 : return success;
3615 : : }
3616 : :
3617 : :
3618 : 0 : static dbus_bool_t wpas_dbus_get_bss_security_prop(DBusMessageIter *iter,
3619 : : struct wpa_ie_data *ie_data,
3620 : : DBusError *error)
3621 : : {
3622 : : DBusMessageIter iter_dict, variant_iter;
3623 : : const char *group;
3624 : : const char *pairwise[5]; /* max 5 pairwise ciphers is supported */
3625 : : const char *key_mgmt[7]; /* max 7 key managements may be supported */
3626 : : int n;
3627 : :
3628 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
3629 : : "a{sv}", &variant_iter))
3630 : 0 : goto nomem;
3631 : :
3632 [ # # ]: 0 : if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
3633 : 0 : goto nomem;
3634 : :
3635 : : /* KeyMgmt */
3636 : 0 : n = 0;
3637 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_PSK)
3638 : 0 : key_mgmt[n++] = "wpa-psk";
3639 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_FT_PSK)
3640 : 0 : key_mgmt[n++] = "wpa-ft-psk";
3641 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_PSK_SHA256)
3642 : 0 : key_mgmt[n++] = "wpa-psk-sha256";
3643 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_IEEE8021X)
3644 : 0 : key_mgmt[n++] = "wpa-eap";
3645 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X)
3646 : 0 : key_mgmt[n++] = "wpa-ft-eap";
3647 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256)
3648 : 0 : key_mgmt[n++] = "wpa-eap-sha256";
3649 [ # # ]: 0 : if (ie_data->key_mgmt & WPA_KEY_MGMT_NONE)
3650 : 0 : key_mgmt[n++] = "wpa-none";
3651 : :
3652 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(&iter_dict, "KeyMgmt",
3653 : : key_mgmt, n))
3654 : 0 : goto nomem;
3655 : :
3656 : : /* Group */
3657 [ # # # # : 0 : switch (ie_data->group_cipher) {
# # # # ]
3658 : : case WPA_CIPHER_WEP40:
3659 : 0 : group = "wep40";
3660 : 0 : break;
3661 : : case WPA_CIPHER_TKIP:
3662 : 0 : group = "tkip";
3663 : 0 : break;
3664 : : case WPA_CIPHER_CCMP:
3665 : 0 : group = "ccmp";
3666 : 0 : break;
3667 : : case WPA_CIPHER_GCMP:
3668 : 0 : group = "gcmp";
3669 : 0 : break;
3670 : : case WPA_CIPHER_WEP104:
3671 : 0 : group = "wep104";
3672 : 0 : break;
3673 : : case WPA_CIPHER_CCMP_256:
3674 : 0 : group = "ccmp-256";
3675 : 0 : break;
3676 : : case WPA_CIPHER_GCMP_256:
3677 : 0 : group = "gcmp-256";
3678 : 0 : break;
3679 : : default:
3680 : 0 : group = "";
3681 : 0 : break;
3682 : : }
3683 : :
3684 [ # # ]: 0 : if (!wpa_dbus_dict_append_string(&iter_dict, "Group", group))
3685 : 0 : goto nomem;
3686 : :
3687 : : /* Pairwise */
3688 : 0 : n = 0;
3689 [ # # ]: 0 : if (ie_data->pairwise_cipher & WPA_CIPHER_TKIP)
3690 : 0 : pairwise[n++] = "tkip";
3691 [ # # ]: 0 : if (ie_data->pairwise_cipher & WPA_CIPHER_CCMP)
3692 : 0 : pairwise[n++] = "ccmp";
3693 [ # # ]: 0 : if (ie_data->pairwise_cipher & WPA_CIPHER_GCMP)
3694 : 0 : pairwise[n++] = "gcmp";
3695 [ # # ]: 0 : if (ie_data->pairwise_cipher & WPA_CIPHER_CCMP_256)
3696 : 0 : pairwise[n++] = "ccmp-256";
3697 [ # # ]: 0 : if (ie_data->pairwise_cipher & WPA_CIPHER_GCMP_256)
3698 : 0 : pairwise[n++] = "gcmp-256";
3699 : :
3700 [ # # ]: 0 : if (!wpa_dbus_dict_append_string_array(&iter_dict, "Pairwise",
3701 : : pairwise, n))
3702 : 0 : goto nomem;
3703 : :
3704 : : /* Management group (RSN only) */
3705 [ # # ]: 0 : if (ie_data->proto == WPA_PROTO_RSN) {
3706 [ # # ]: 0 : switch (ie_data->mgmt_group_cipher) {
3707 : : #ifdef CONFIG_IEEE80211W
3708 : : case WPA_CIPHER_AES_128_CMAC:
3709 : 0 : group = "aes128cmac";
3710 : 0 : break;
3711 : : #endif /* CONFIG_IEEE80211W */
3712 : : default:
3713 : 0 : group = "";
3714 : 0 : break;
3715 : : }
3716 : :
3717 [ # # ]: 0 : if (!wpa_dbus_dict_append_string(&iter_dict, "MgmtGroup",
3718 : : group))
3719 : 0 : goto nomem;
3720 : : }
3721 : :
3722 [ # # ]: 0 : if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
3723 : 0 : goto nomem;
3724 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter))
3725 : 0 : goto nomem;
3726 : :
3727 : 0 : return TRUE;
3728 : :
3729 : : nomem:
3730 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3731 : 0 : return FALSE;
3732 : : }
3733 : :
3734 : :
3735 : : /**
3736 : : * wpas_dbus_getter_bss_wpa - Return the WPA options of a BSS
3737 : : * @iter: Pointer to incoming dbus message iter
3738 : : * @error: Location to store error on failure
3739 : : * @user_data: Function specific data
3740 : : * Returns: TRUE on success, FALSE on failure
3741 : : *
3742 : : * Getter for "WPA" property.
3743 : : */
3744 : 0 : dbus_bool_t wpas_dbus_getter_bss_wpa(DBusMessageIter *iter, DBusError *error,
3745 : : void *user_data)
3746 : : {
3747 : 0 : struct bss_handler_args *args = user_data;
3748 : : struct wpa_bss *res;
3749 : : struct wpa_ie_data wpa_data;
3750 : : const u8 *ie;
3751 : :
3752 : 0 : res = get_bss_helper(args, error, __func__);
3753 [ # # ]: 0 : if (!res)
3754 : 0 : return FALSE;
3755 : :
3756 : 0 : os_memset(&wpa_data, 0, sizeof(wpa_data));
3757 : 0 : ie = wpa_bss_get_vendor_ie(res, WPA_IE_VENDOR_TYPE);
3758 [ # # ]: 0 : if (ie) {
3759 [ # # ]: 0 : if (wpa_parse_wpa_ie(ie, 2 + ie[1], &wpa_data) < 0) {
3760 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
3761 : : "failed to parse WPA IE");
3762 : 0 : return FALSE;
3763 : : }
3764 : : }
3765 : :
3766 : 0 : return wpas_dbus_get_bss_security_prop(iter, &wpa_data, error);
3767 : : }
3768 : :
3769 : :
3770 : : /**
3771 : : * wpas_dbus_getter_bss_rsn - Return the RSN options of a BSS
3772 : : * @iter: Pointer to incoming dbus message iter
3773 : : * @error: Location to store error on failure
3774 : : * @user_data: Function specific data
3775 : : * Returns: TRUE on success, FALSE on failure
3776 : : *
3777 : : * Getter for "RSN" property.
3778 : : */
3779 : 0 : dbus_bool_t wpas_dbus_getter_bss_rsn(DBusMessageIter *iter, DBusError *error,
3780 : : void *user_data)
3781 : : {
3782 : 0 : struct bss_handler_args *args = user_data;
3783 : : struct wpa_bss *res;
3784 : : struct wpa_ie_data wpa_data;
3785 : : const u8 *ie;
3786 : :
3787 : 0 : res = get_bss_helper(args, error, __func__);
3788 [ # # ]: 0 : if (!res)
3789 : 0 : return FALSE;
3790 : :
3791 : 0 : os_memset(&wpa_data, 0, sizeof(wpa_data));
3792 : 0 : ie = wpa_bss_get_ie(res, WLAN_EID_RSN);
3793 [ # # ]: 0 : if (ie) {
3794 [ # # ]: 0 : if (wpa_parse_wpa_ie(ie, 2 + ie[1], &wpa_data) < 0) {
3795 : 0 : dbus_set_error_const(error, DBUS_ERROR_FAILED,
3796 : : "failed to parse RSN IE");
3797 : 0 : return FALSE;
3798 : : }
3799 : : }
3800 : :
3801 : 0 : return wpas_dbus_get_bss_security_prop(iter, &wpa_data, error);
3802 : : }
3803 : :
3804 : :
3805 : : /**
3806 : : * wpas_dbus_getter_bss_wps - Return the WPS options of a BSS
3807 : : * @iter: Pointer to incoming dbus message iter
3808 : : * @error: Location to store error on failure
3809 : : * @user_data: Function specific data
3810 : : * Returns: TRUE on success, FALSE on failure
3811 : : *
3812 : : * Getter for "WPS" property.
3813 : : */
3814 : 0 : dbus_bool_t wpas_dbus_getter_bss_wps(DBusMessageIter *iter, DBusError *error,
3815 : : void *user_data)
3816 : : {
3817 : 0 : struct bss_handler_args *args = user_data;
3818 : : struct wpa_bss *res;
3819 : : #ifdef CONFIG_WPS
3820 : : struct wpabuf *wps_ie;
3821 : : #endif /* CONFIG_WPS */
3822 : : DBusMessageIter iter_dict, variant_iter;
3823 : 0 : const char *type = "";
3824 : :
3825 : 0 : res = get_bss_helper(args, error, __func__);
3826 [ # # ]: 0 : if (!res)
3827 : 0 : return FALSE;
3828 : :
3829 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT,
3830 : : "a{sv}", &variant_iter))
3831 : 0 : goto nomem;
3832 : :
3833 [ # # ]: 0 : if (!wpa_dbus_dict_open_write(&variant_iter, &iter_dict))
3834 : 0 : goto nomem;
3835 : :
3836 : : #ifdef CONFIG_WPS
3837 : 0 : wps_ie = wpa_bss_get_vendor_ie_multi(res, WPS_IE_VENDOR_TYPE);
3838 [ # # ]: 0 : if (wps_ie) {
3839 [ # # ]: 0 : if (wps_is_selected_pbc_registrar(wps_ie))
3840 : 0 : type = "pbc";
3841 [ # # ]: 0 : else if (wps_is_selected_pin_registrar(wps_ie))
3842 : 0 : type = "pin";
3843 : : }
3844 : : #endif /* CONFIG_WPS */
3845 : :
3846 [ # # ]: 0 : if (!wpa_dbus_dict_append_string(&iter_dict, "Type", type))
3847 : 0 : goto nomem;
3848 : :
3849 [ # # ]: 0 : if (!wpa_dbus_dict_close_write(&variant_iter, &iter_dict))
3850 : 0 : goto nomem;
3851 [ # # ]: 0 : if (!dbus_message_iter_close_container(iter, &variant_iter))
3852 : 0 : goto nomem;
3853 : :
3854 : 0 : return TRUE;
3855 : :
3856 : : nomem:
3857 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3858 : 0 : return FALSE;
3859 : : }
3860 : :
3861 : :
3862 : : /**
3863 : : * wpas_dbus_getter_bss_ies - Return all IEs of a BSS
3864 : : * @iter: Pointer to incoming dbus message iter
3865 : : * @error: Location to store error on failure
3866 : : * @user_data: Function specific data
3867 : : * Returns: TRUE on success, FALSE on failure
3868 : : *
3869 : : * Getter for "IEs" property.
3870 : : */
3871 : 0 : dbus_bool_t wpas_dbus_getter_bss_ies(DBusMessageIter *iter, DBusError *error,
3872 : : void *user_data)
3873 : : {
3874 : 0 : struct bss_handler_args *args = user_data;
3875 : : struct wpa_bss *res;
3876 : :
3877 : 0 : res = get_bss_helper(args, error, __func__);
3878 [ # # ]: 0 : if (!res)
3879 : 0 : return FALSE;
3880 : :
3881 : 0 : return wpas_dbus_simple_array_property_getter(iter, DBUS_TYPE_BYTE,
3882 : : res + 1, res->ie_len,
3883 : : error);
3884 : : }
3885 : :
3886 : :
3887 : : /**
3888 : : * wpas_dbus_getter_enabled - Check whether network is enabled or disabled
3889 : : * @iter: Pointer to incoming dbus message iter
3890 : : * @error: Location to store error on failure
3891 : : * @user_data: Function specific data
3892 : : * Returns: TRUE on success, FALSE on failure
3893 : : *
3894 : : * Getter for "enabled" property of a configured network.
3895 : : */
3896 : 0 : dbus_bool_t wpas_dbus_getter_enabled(DBusMessageIter *iter, DBusError *error,
3897 : : void *user_data)
3898 : : {
3899 : 0 : struct network_handler_args *net = user_data;
3900 : 0 : dbus_bool_t enabled = net->ssid->disabled ? FALSE : TRUE;
3901 : :
3902 : 0 : return wpas_dbus_simple_property_getter(iter, DBUS_TYPE_BOOLEAN,
3903 : : &enabled, error);
3904 : : }
3905 : :
3906 : :
3907 : : /**
3908 : : * wpas_dbus_setter_enabled - Mark a configured network as enabled or disabled
3909 : : * @iter: Pointer to incoming dbus message iter
3910 : : * @error: Location to store error on failure
3911 : : * @user_data: Function specific data
3912 : : * Returns: TRUE on success, FALSE on failure
3913 : : *
3914 : : * Setter for "Enabled" property of a configured network.
3915 : : */
3916 : 0 : dbus_bool_t wpas_dbus_setter_enabled(DBusMessageIter *iter, DBusError *error,
3917 : : void *user_data)
3918 : : {
3919 : 0 : struct network_handler_args *net = user_data;
3920 : : struct wpa_supplicant *wpa_s;
3921 : : struct wpa_ssid *ssid;
3922 : : dbus_bool_t enable;
3923 : :
3924 [ # # ]: 0 : if (!wpas_dbus_simple_property_setter(iter, error, DBUS_TYPE_BOOLEAN,
3925 : : &enable))
3926 : 0 : return FALSE;
3927 : :
3928 : 0 : wpa_s = net->wpa_s;
3929 : 0 : ssid = net->ssid;
3930 : :
3931 [ # # ]: 0 : if (enable)
3932 : 0 : wpa_supplicant_enable_network(wpa_s, ssid);
3933 : : else
3934 : 0 : wpa_supplicant_disable_network(wpa_s, ssid);
3935 : :
3936 : 0 : return TRUE;
3937 : : }
3938 : :
3939 : :
3940 : : /**
3941 : : * wpas_dbus_getter_network_properties - Get options for a configured network
3942 : : * @iter: Pointer to incoming dbus message iter
3943 : : * @error: Location to store error on failure
3944 : : * @user_data: Function specific data
3945 : : * Returns: TRUE on success, FALSE on failure
3946 : : *
3947 : : * Getter for "Properties" property of a configured network.
3948 : : */
3949 : 0 : dbus_bool_t wpas_dbus_getter_network_properties(DBusMessageIter *iter,
3950 : : DBusError *error,
3951 : : void *user_data)
3952 : : {
3953 : 0 : struct network_handler_args *net = user_data;
3954 : : DBusMessageIter variant_iter, dict_iter;
3955 : : char **iterator;
3956 : 0 : char **props = wpa_config_get_all(net->ssid, 1);
3957 : 0 : dbus_bool_t success = FALSE;
3958 : :
3959 [ # # ]: 0 : if (!props) {
3960 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3961 : 0 : return FALSE;
3962 : : }
3963 : :
3964 [ # # ]: 0 : if (!dbus_message_iter_open_container(iter, DBUS_TYPE_VARIANT, "a{sv}",
3965 [ # # ]: 0 : &variant_iter) ||
3966 : 0 : !wpa_dbus_dict_open_write(&variant_iter, &dict_iter)) {
3967 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3968 : 0 : goto out;
3969 : : }
3970 : :
3971 : 0 : iterator = props;
3972 [ # # ]: 0 : while (*iterator) {
3973 [ # # ]: 0 : if (!wpa_dbus_dict_append_string(&dict_iter, *iterator,
3974 : 0 : *(iterator + 1))) {
3975 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY,
3976 : : "no memory");
3977 : 0 : goto out;
3978 : : }
3979 : 0 : iterator += 2;
3980 : : }
3981 : :
3982 : :
3983 [ # # # # ]: 0 : if (!wpa_dbus_dict_close_write(&variant_iter, &dict_iter) ||
3984 : 0 : !dbus_message_iter_close_container(iter, &variant_iter)) {
3985 : 0 : dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, "no memory");
3986 : 0 : goto out;
3987 : : }
3988 : :
3989 : 0 : success = TRUE;
3990 : :
3991 : : out:
3992 : 0 : iterator = props;
3993 [ # # ]: 0 : while (*iterator) {
3994 : 0 : os_free(*iterator);
3995 : 0 : iterator++;
3996 : : }
3997 : 0 : os_free(props);
3998 : 0 : return success;
3999 : : }
4000 : :
4001 : :
4002 : : /**
4003 : : * wpas_dbus_setter_network_properties - Set options for a configured network
4004 : : * @iter: Pointer to incoming dbus message iter
4005 : : * @error: Location to store error on failure
4006 : : * @user_data: Function specific data
4007 : : * Returns: TRUE on success, FALSE on failure
4008 : : *
4009 : : * Setter for "Properties" property of a configured network.
4010 : : */
4011 : 0 : dbus_bool_t wpas_dbus_setter_network_properties(DBusMessageIter *iter,
4012 : : DBusError *error,
4013 : : void *user_data)
4014 : : {
4015 : 0 : struct network_handler_args *net = user_data;
4016 : 0 : struct wpa_ssid *ssid = net->ssid;
4017 : : DBusMessageIter variant_iter;
4018 : :
4019 : 0 : dbus_message_iter_recurse(iter, &variant_iter);
4020 : 0 : return set_network_properties(net->wpa_s, ssid, &variant_iter, error);
4021 : : }
4022 : :
4023 : :
4024 : : #ifdef CONFIG_AP
4025 : :
4026 : 0 : DBusMessage * wpas_dbus_handler_subscribe_preq(
4027 : : DBusMessage *message, struct wpa_supplicant *wpa_s)
4028 : : {
4029 : 0 : struct wpas_dbus_priv *priv = wpa_s->global->dbus;
4030 : : char *name;
4031 : :
4032 [ # # ]: 0 : if (wpa_s->preq_notify_peer != NULL) {
4033 [ # # ]: 0 : if (os_strcmp(dbus_message_get_sender(message),
4034 : : wpa_s->preq_notify_peer) == 0)
4035 : 0 : return NULL;
4036 : :
4037 : 0 : return dbus_message_new_error(message,
4038 : : WPAS_DBUS_ERROR_SUBSCRIPTION_IN_USE,
4039 : : "Another application is already subscribed");
4040 : : }
4041 : :
4042 : 0 : name = os_strdup(dbus_message_get_sender(message));
4043 [ # # ]: 0 : if (!name)
4044 : 0 : return dbus_message_new_error(message, DBUS_ERROR_NO_MEMORY,
4045 : : "out of memory");
4046 : :
4047 : 0 : wpa_s->preq_notify_peer = name;
4048 : :
4049 : : /* Subscribe to clean up if application closes socket */
4050 : 0 : wpas_dbus_subscribe_noc(priv);
4051 : :
4052 : : /*
4053 : : * Double-check it's still alive to make sure that we didn't
4054 : : * miss the NameOwnerChanged signal, e.g. while strdup'ing.
4055 : : */
4056 [ # # ]: 0 : if (!dbus_bus_name_has_owner(priv->con, name, NULL)) {
4057 : : /*
4058 : : * Application no longer exists, clean up.
4059 : : * The return value is irrelevant now.
4060 : : *
4061 : : * Need to check if the NameOwnerChanged handling
4062 : : * already cleaned up because we have processed
4063 : : * DBus messages while checking if the name still
4064 : : * has an owner.
4065 : : */
4066 [ # # ]: 0 : if (!wpa_s->preq_notify_peer)
4067 : 0 : return NULL;
4068 : 0 : os_free(wpa_s->preq_notify_peer);
4069 : 0 : wpa_s->preq_notify_peer = NULL;
4070 : 0 : wpas_dbus_unsubscribe_noc(priv);
4071 : : }
4072 : :
4073 : 0 : return NULL;
4074 : : }
4075 : :
4076 : :
4077 : 0 : DBusMessage * wpas_dbus_handler_unsubscribe_preq(
4078 : : DBusMessage *message, struct wpa_supplicant *wpa_s)
4079 : : {
4080 : 0 : struct wpas_dbus_priv *priv = wpa_s->global->dbus;
4081 : :
4082 [ # # ]: 0 : if (!wpa_s->preq_notify_peer)
4083 : 0 : return dbus_message_new_error(message,
4084 : : WPAS_DBUS_ERROR_NO_SUBSCRIPTION,
4085 : : "Not subscribed");
4086 : :
4087 [ # # ]: 0 : if (os_strcmp(wpa_s->preq_notify_peer,
4088 : : dbus_message_get_sender(message)))
4089 : 0 : return dbus_message_new_error(message,
4090 : : WPAS_DBUS_ERROR_SUBSCRIPTION_EPERM,
4091 : : "Can't unsubscribe others");
4092 : :
4093 : 0 : os_free(wpa_s->preq_notify_peer);
4094 : 0 : wpa_s->preq_notify_peer = NULL;
4095 : 0 : wpas_dbus_unsubscribe_noc(priv);
4096 : 0 : return NULL;
4097 : : }
4098 : :
4099 : :
4100 : 105 : void wpas_dbus_signal_preq(struct wpa_supplicant *wpa_s,
4101 : : const u8 *addr, const u8 *dst, const u8 *bssid,
4102 : : const u8 *ie, size_t ie_len, u32 ssi_signal)
4103 : : {
4104 : : DBusMessage *msg;
4105 : : DBusMessageIter iter, dict_iter;
4106 : 105 : struct wpas_dbus_priv *priv = wpa_s->global->dbus;
4107 : :
4108 : : /* Do nothing if the control interface is not turned on */
4109 [ + - ]: 105 : if (priv == NULL)
4110 : 105 : return;
4111 : :
4112 [ # # ]: 0 : if (wpa_s->preq_notify_peer == NULL)
4113 : 0 : return;
4114 : :
4115 : 0 : msg = dbus_message_new_signal(wpa_s->dbus_new_path,
4116 : : WPAS_DBUS_NEW_IFACE_INTERFACE,
4117 : : "ProbeRequest");
4118 [ # # ]: 0 : if (msg == NULL)
4119 : 0 : return;
4120 : :
4121 : 0 : dbus_message_set_destination(msg, wpa_s->preq_notify_peer);
4122 : :
4123 : 0 : dbus_message_iter_init_append(msg, &iter);
4124 : :
4125 [ # # ]: 0 : if (!wpa_dbus_dict_open_write(&iter, &dict_iter))
4126 : 0 : goto fail;
4127 [ # # ][ # # ]: 0 : if (addr && !wpa_dbus_dict_append_byte_array(&dict_iter, "addr",
4128 : : (const char *) addr,
4129 : : ETH_ALEN))
4130 : 0 : goto fail;
4131 [ # # ][ # # ]: 0 : if (dst && !wpa_dbus_dict_append_byte_array(&dict_iter, "dst",
4132 : : (const char *) dst,
4133 : : ETH_ALEN))
4134 : 0 : goto fail;
4135 [ # # ][ # # ]: 0 : if (bssid && !wpa_dbus_dict_append_byte_array(&dict_iter, "bssid",
4136 : : (const char *) bssid,
4137 : : ETH_ALEN))
4138 : 0 : goto fail;
4139 [ # # ][ # # ]: 0 : if (ie && ie_len && !wpa_dbus_dict_append_byte_array(&dict_iter, "ies",
[ # # ]
4140 : : (const char *) ie,
4141 : : ie_len))
4142 : 0 : goto fail;
4143 [ # # ][ # # ]: 0 : if (ssi_signal && !wpa_dbus_dict_append_int32(&dict_iter, "signal",
4144 : : ssi_signal))
4145 : 0 : goto fail;
4146 [ # # ]: 0 : if (!wpa_dbus_dict_close_write(&iter, &dict_iter))
4147 : 0 : goto fail;
4148 : :
4149 : 0 : dbus_connection_send(priv->con, msg, NULL);
4150 : 0 : goto out;
4151 : : fail:
4152 : 0 : wpa_printf(MSG_ERROR, "dbus: Failed to construct signal");
4153 : : out:
4154 : 105 : dbus_message_unref(msg);
4155 : : }
4156 : :
4157 : : #endif /* CONFIG_AP */
|