blob: b3d62466db20ac4bb931633e96a38a71a557f63b [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Control interface (shared code for all backends)
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003 * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080010#ifdef CONFIG_TESTING_OPTIONS
11#include <net/ethernet.h>
12#include <netinet/ip.h>
13#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070014
15#include "utils/common.h"
16#include "utils/eloop.h"
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080017#include "utils/uuid.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "common/version.h"
19#include "common/ieee802_11_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070020#include "common/ieee802_11_common.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070021#include "common/wpa_ctrl.h"
Dmitry Shmidtff787d52015-01-12 13:01:47 -080022#include "crypto/tls.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080023#include "ap/hostapd.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024#include "eap_peer/eap.h"
25#include "eapol_supp/eapol_supp_sm.h"
26#include "rsn_supp/wpa.h"
27#include "rsn_supp/preauth.h"
28#include "rsn_supp/pmksa_cache.h"
29#include "l2_packet/l2_packet.h"
30#include "wps/wps.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080031#include "fst/fst.h"
32#include "fst/fst_ctrl_iface.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070033#include "config.h"
34#include "wpa_supplicant_i.h"
35#include "driver_i.h"
36#include "wps_supplicant.h"
37#include "ibss_rsn.h"
38#include "ap.h"
39#include "p2p_supplicant.h"
40#include "p2p/p2p.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070041#include "hs20_supplicant.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070042#include "wifi_display.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070043#include "notify.h"
44#include "bss.h"
45#include "scan.h"
46#include "ctrl_iface.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080047#include "interworking.h"
Dmitry Shmidte19501d2011-03-16 14:32:18 -070048#include "blacklist.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070049#include "autoscan.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080050#include "wnm_sta.h"
Dmitry Shmidt818ea482014-03-10 13:15:21 -070051#include "offchannel.h"
Dmitry Shmidt661b4f72014-09-29 14:58:27 -070052#include "drivers/driver.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080053#include "mesh.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070054
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070055static int wpa_supplicant_global_iface_list(struct wpa_global *global,
56 char *buf, int len);
57static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
58 char *buf, int len);
Dmitry Shmidtd11f0192014-03-24 12:09:47 -070059static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s,
60 char *val);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070061
Dmitry Shmidt04949592012-07-19 12:16:46 -070062static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
63{
64 char *pos;
65 u8 addr[ETH_ALEN], *filter = NULL, *n;
66 size_t count = 0;
67
68 pos = val;
69 while (pos) {
70 if (*pos == '\0')
71 break;
72 if (hwaddr_aton(pos, addr)) {
73 os_free(filter);
74 return -1;
75 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070076 n = os_realloc_array(filter, count + 1, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -070077 if (n == NULL) {
78 os_free(filter);
79 return -1;
80 }
81 filter = n;
82 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
83 count++;
84
85 pos = os_strchr(pos, ' ');
86 if (pos)
87 pos++;
88 }
89
90 wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
91 os_free(wpa_s->bssid_filter);
92 wpa_s->bssid_filter = filter;
93 wpa_s->bssid_filter_count = count;
94
95 return 0;
96}
97
98
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080099static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
100{
101 char *pos;
102 u8 addr[ETH_ALEN], *bssid = NULL, *n;
103 struct wpa_ssid_value *ssid = NULL, *ns;
104 size_t count = 0, ssid_count = 0;
105 struct wpa_ssid *c;
106
107 /*
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800108 * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | ""
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800109 * SSID_SPEC ::= ssid <SSID_HEX>
110 * BSSID_SPEC ::= bssid <BSSID_HEX>
111 */
112
113 pos = val;
114 while (pos) {
115 if (*pos == '\0')
116 break;
117 if (os_strncmp(pos, "bssid ", 6) == 0) {
118 int res;
119 pos += 6;
120 res = hwaddr_aton2(pos, addr);
121 if (res < 0) {
122 os_free(ssid);
123 os_free(bssid);
124 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
125 "BSSID value '%s'", pos);
126 return -1;
127 }
128 pos += res;
129 n = os_realloc_array(bssid, count + 1, ETH_ALEN);
130 if (n == NULL) {
131 os_free(ssid);
132 os_free(bssid);
133 return -1;
134 }
135 bssid = n;
136 os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
137 count++;
138 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
139 char *end;
140 pos += 5;
141
142 end = pos;
143 while (*end) {
144 if (*end == '\0' || *end == ' ')
145 break;
146 end++;
147 }
148
149 ns = os_realloc_array(ssid, ssid_count + 1,
150 sizeof(struct wpa_ssid_value));
151 if (ns == NULL) {
152 os_free(ssid);
153 os_free(bssid);
154 return -1;
155 }
156 ssid = ns;
157
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700158 if ((end - pos) & 0x01 ||
159 end - pos > 2 * SSID_MAX_LEN ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800160 hexstr2bin(pos, ssid[ssid_count].ssid,
161 (end - pos) / 2) < 0) {
162 os_free(ssid);
163 os_free(bssid);
164 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
165 "SSID value '%s'", pos);
166 return -1;
167 }
168 ssid[ssid_count].ssid_len = (end - pos) / 2;
169 wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
170 ssid[ssid_count].ssid,
171 ssid[ssid_count].ssid_len);
172 ssid_count++;
173 pos = end;
174 } else {
175 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
176 "'%s'", pos);
177 os_free(ssid);
178 os_free(bssid);
179 return -1;
180 }
181
182 pos = os_strchr(pos, ' ');
183 if (pos)
184 pos++;
185 }
186
187 wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
188 os_free(wpa_s->disallow_aps_bssid);
189 wpa_s->disallow_aps_bssid = bssid;
190 wpa_s->disallow_aps_bssid_count = count;
191
192 wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
193 os_free(wpa_s->disallow_aps_ssid);
194 wpa_s->disallow_aps_ssid = ssid;
195 wpa_s->disallow_aps_ssid_count = ssid_count;
196
197 if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
198 return 0;
199
200 c = wpa_s->current_ssid;
201 if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
202 return 0;
203
204 if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
205 !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
206 return 0;
207
208 wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
209 "because current AP was marked disallowed");
210
211#ifdef CONFIG_SME
212 wpa_s->sme.prev_bssid_set = 0;
213#endif /* CONFIG_SME */
214 wpa_s->reassociate = 1;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800215 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800216 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
217 wpa_supplicant_req_scan(wpa_s, 0, 0);
218
219 return 0;
220}
221
222
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700223#ifndef CONFIG_NO_CONFIG_BLOBS
224static int wpas_ctrl_set_blob(struct wpa_supplicant *wpa_s, char *pos)
225{
226 char *name = pos;
227 struct wpa_config_blob *blob;
228 size_t len;
229
230 pos = os_strchr(pos, ' ');
231 if (pos == NULL)
232 return -1;
233 *pos++ = '\0';
234 len = os_strlen(pos);
235 if (len & 1)
236 return -1;
237
238 wpa_printf(MSG_DEBUG, "CTRL: Set blob '%s'", name);
239 blob = os_zalloc(sizeof(*blob));
240 if (blob == NULL)
241 return -1;
242 blob->name = os_strdup(name);
243 blob->data = os_malloc(len / 2);
244 if (blob->name == NULL || blob->data == NULL) {
245 wpa_config_free_blob(blob);
246 return -1;
247 }
248
249 if (hexstr2bin(pos, blob->data, len / 2) < 0) {
250 wpa_printf(MSG_DEBUG, "CTRL: Invalid blob hex data");
251 wpa_config_free_blob(blob);
252 return -1;
253 }
254 blob->len = len / 2;
255
256 wpa_config_set_blob(wpa_s->conf, blob);
257
258 return 0;
259}
260#endif /* CONFIG_NO_CONFIG_BLOBS */
261
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700262
263static int wpas_ctrl_pno(struct wpa_supplicant *wpa_s, char *cmd)
264{
265 char *params;
266 char *pos;
267 int *freqs = NULL;
268 int ret;
269
270 if (atoi(cmd)) {
271 params = os_strchr(cmd, ' ');
272 os_free(wpa_s->manual_sched_scan_freqs);
273 if (params) {
274 params++;
275 pos = os_strstr(params, "freq=");
276 if (pos)
277 freqs = freq_range_to_channel_list(wpa_s,
278 pos + 5);
279 }
280 wpa_s->manual_sched_scan_freqs = freqs;
281 ret = wpas_start_pno(wpa_s);
282 } else {
283 ret = wpas_stop_pno(wpa_s);
284 }
285 return ret;
286}
287
288
Ravi Joshie6ccb162015-07-16 17:45:41 -0700289static int wpas_ctrl_set_band(struct wpa_supplicant *wpa_s, char *band)
290{
291 union wpa_event_data event;
292
293 if (os_strcmp(band, "AUTO") == 0)
294 wpa_s->setband = WPA_SETBAND_AUTO;
295 else if (os_strcmp(band, "5G") == 0)
296 wpa_s->setband = WPA_SETBAND_5G;
297 else if (os_strcmp(band, "2G") == 0)
298 wpa_s->setband = WPA_SETBAND_2G;
299 else
300 return -1;
301
302 if (wpa_drv_setband(wpa_s, wpa_s->setband) == 0) {
303 os_memset(&event, 0, sizeof(event));
304 event.channel_list_changed.initiator = REGDOM_SET_BY_USER;
305 event.channel_list_changed.type = REGDOM_TYPE_UNKNOWN;
306 wpa_supplicant_event(wpa_s, EVENT_CHANNEL_LIST_CHANGED, &event);
307 }
308
309 return 0;
310}
311
312
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700313static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
314 char *cmd)
315{
316 char *value;
317 int ret = 0;
318
319 value = os_strchr(cmd, ' ');
320 if (value == NULL)
321 return -1;
322 *value++ = '\0';
323
324 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
325 if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
326 eapol_sm_configure(wpa_s->eapol,
327 atoi(value), -1, -1, -1);
328 } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
329 eapol_sm_configure(wpa_s->eapol,
330 -1, atoi(value), -1, -1);
331 } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
332 eapol_sm_configure(wpa_s->eapol,
333 -1, -1, atoi(value), -1);
334 } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
335 eapol_sm_configure(wpa_s->eapol,
336 -1, -1, -1, atoi(value));
337 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
338 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
339 atoi(value)))
340 ret = -1;
341 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
342 0) {
343 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
344 atoi(value)))
345 ret = -1;
346 } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
347 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
348 ret = -1;
349 } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
350 wpa_s->wps_fragment_size = atoi(value);
351#ifdef CONFIG_WPS_TESTING
352 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
353 long int val;
354 val = strtol(value, NULL, 0);
355 if (val < 0 || val > 0xff) {
356 ret = -1;
357 wpa_printf(MSG_DEBUG, "WPS: Invalid "
358 "wps_version_number %ld", val);
359 } else {
360 wps_version_number = val;
361 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
362 "version %u.%u",
363 (wps_version_number & 0xf0) >> 4,
364 wps_version_number & 0x0f);
365 }
366 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
367 wps_testing_dummy_cred = atoi(value);
368 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
369 wps_testing_dummy_cred);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800370 } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
371 wps_corrupt_pkhash = atoi(value);
372 wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
373 wps_corrupt_pkhash);
Dmitry Shmidtde47be72016-01-07 12:52:55 -0800374 } else if (os_strcasecmp(cmd, "wps_force_auth_types") == 0) {
375 if (value[0] == '\0') {
376 wps_force_auth_types_in_use = 0;
377 } else {
378 wps_force_auth_types = strtol(value, NULL, 0);
379 wps_force_auth_types_in_use = 1;
380 }
381 } else if (os_strcasecmp(cmd, "wps_force_encr_types") == 0) {
382 if (value[0] == '\0') {
383 wps_force_encr_types_in_use = 0;
384 } else {
385 wps_force_encr_types = strtol(value, NULL, 0);
386 wps_force_encr_types_in_use = 1;
387 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388#endif /* CONFIG_WPS_TESTING */
389 } else if (os_strcasecmp(cmd, "ampdu") == 0) {
390 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
391 ret = -1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800392#ifdef CONFIG_TDLS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700393#ifdef CONFIG_TDLS_TESTING
394 } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
395 extern unsigned int tdls_testing;
396 tdls_testing = strtol(value, NULL, 0);
397 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
398#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700399 } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
400 int disabled = atoi(value);
401 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
402 if (disabled) {
403 if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
404 ret = -1;
405 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
406 ret = -1;
407 wpa_tdls_enable(wpa_s->wpa, !disabled);
408#endif /* CONFIG_TDLS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800409 } else if (os_strcasecmp(cmd, "pno") == 0) {
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700410 ret = wpas_ctrl_pno(wpa_s, value);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700411 } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
412 int disabled = atoi(value);
413 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
414 ret = -1;
415 else if (disabled)
416 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
417 } else if (os_strcasecmp(cmd, "uapsd") == 0) {
418 if (os_strcmp(value, "disable") == 0)
419 wpa_s->set_sta_uapsd = 0;
420 else {
421 int be, bk, vi, vo;
422 char *pos;
423 /* format: BE,BK,VI,VO;max SP Length */
424 be = atoi(value);
425 pos = os_strchr(value, ',');
426 if (pos == NULL)
427 return -1;
428 pos++;
429 bk = atoi(pos);
430 pos = os_strchr(pos, ',');
431 if (pos == NULL)
432 return -1;
433 pos++;
434 vi = atoi(pos);
435 pos = os_strchr(pos, ',');
436 if (pos == NULL)
437 return -1;
438 pos++;
439 vo = atoi(pos);
440 /* ignore max SP Length for now */
441
442 wpa_s->set_sta_uapsd = 1;
443 wpa_s->sta_uapsd = 0;
444 if (be)
445 wpa_s->sta_uapsd |= BIT(0);
446 if (bk)
447 wpa_s->sta_uapsd |= BIT(1);
448 if (vi)
449 wpa_s->sta_uapsd |= BIT(2);
450 if (vo)
451 wpa_s->sta_uapsd |= BIT(3);
452 }
Jouni Malinen21d6bc82012-04-10 16:17:59 -0700453 } else if (os_strcasecmp(cmd, "ps") == 0) {
454 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700455#ifdef CONFIG_WIFI_DISPLAY
456 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800457 int enabled = !!atoi(value);
458 if (enabled && !wpa_s->global->p2p)
459 ret = -1;
460 else
461 wifi_display_enable(wpa_s->global, enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700462#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700463 } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
464 ret = set_bssid_filter(wpa_s, value);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800465 } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
466 ret = set_disallow_aps(wpa_s, value);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800467 } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
468 wpa_s->no_keep_alive = !!atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700469#ifdef CONFIG_TESTING_OPTIONS
470 } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
471 wpa_s->ext_mgmt_frame_handling = !!atoi(value);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800472 } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
473 wpa_s->ext_eapol_frame_io = !!atoi(value);
474#ifdef CONFIG_AP
475 if (wpa_s->ap_iface) {
476 wpa_s->ap_iface->bss[0]->ext_eapol_frame_io =
477 wpa_s->ext_eapol_frame_io;
478 }
479#endif /* CONFIG_AP */
480 } else if (os_strcasecmp(cmd, "extra_roc_dur") == 0) {
481 wpa_s->extra_roc_dur = atoi(value);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800482 } else if (os_strcasecmp(cmd, "test_failure") == 0) {
483 wpa_s->test_failure = atoi(value);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800484 } else if (os_strcasecmp(cmd, "p2p_go_csa_on_inv") == 0) {
485 wpa_s->p2p_go_csa_on_inv = !!atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700486#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700487#ifndef CONFIG_NO_CONFIG_BLOBS
488 } else if (os_strcmp(cmd, "blob") == 0) {
489 ret = wpas_ctrl_set_blob(wpa_s, value);
490#endif /* CONFIG_NO_CONFIG_BLOBS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800491 } else if (os_strcasecmp(cmd, "setband") == 0) {
Ravi Joshie6ccb162015-07-16 17:45:41 -0700492 ret = wpas_ctrl_set_band(wpa_s, value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700493 } else {
494 value[-1] = '=';
495 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
496 if (ret == 0)
497 wpa_supplicant_update_config(wpa_s);
498 }
499
500 return ret;
501}
502
503
504static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
505 char *cmd, char *buf, size_t buflen)
506{
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700507 int res = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700508
509 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
510
511 if (os_strcmp(cmd, "version") == 0) {
512 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700513 } else if (os_strcasecmp(cmd, "country") == 0) {
514 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
515 res = os_snprintf(buf, buflen, "%c%c",
516 wpa_s->conf->country[0],
517 wpa_s->conf->country[1]);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700518#ifdef CONFIG_WIFI_DISPLAY
519 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800520 int enabled;
521 if (wpa_s->global->p2p == NULL ||
522 wpa_s->global->p2p_disabled)
523 enabled = 0;
524 else
525 enabled = wpa_s->global->wifi_display;
526 res = os_snprintf(buf, buflen, "%d", enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700527#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700528#ifdef CONFIG_TESTING_GET_GTK
529 } else if (os_strcmp(cmd, "gtk") == 0) {
530 if (wpa_s->last_gtk_len == 0)
531 return -1;
532 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
533 wpa_s->last_gtk_len);
534 return res;
535#endif /* CONFIG_TESTING_GET_GTK */
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800536 } else if (os_strcmp(cmd, "tls_library") == 0) {
537 res = tls_get_library_version(buf, buflen);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800538 } else {
539 res = wpa_config_get_value(cmd, wpa_s->conf, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700540 }
541
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800542 if (os_snprintf_error(buflen, res))
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700543 return -1;
544 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700545}
546
547
548#ifdef IEEE8021X_EAPOL
549static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
550 char *addr)
551{
552 u8 bssid[ETH_ALEN];
553 struct wpa_ssid *ssid = wpa_s->current_ssid;
554
555 if (hwaddr_aton(addr, bssid)) {
556 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
557 "'%s'", addr);
558 return -1;
559 }
560
561 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
562 rsn_preauth_deinit(wpa_s->wpa);
563 if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
564 return -1;
565
566 return 0;
567}
568#endif /* IEEE8021X_EAPOL */
569
570
571#ifdef CONFIG_PEERKEY
572/* MLME-STKSTART.request(peer) */
573static int wpa_supplicant_ctrl_iface_stkstart(
574 struct wpa_supplicant *wpa_s, char *addr)
575{
576 u8 peer[ETH_ALEN];
577
578 if (hwaddr_aton(addr, peer)) {
579 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
580 "address '%s'", addr);
581 return -1;
582 }
583
584 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
585 MAC2STR(peer));
586
587 return wpa_sm_stkstart(wpa_s->wpa, peer);
588}
589#endif /* CONFIG_PEERKEY */
590
591
592#ifdef CONFIG_TDLS
593
594static int wpa_supplicant_ctrl_iface_tdls_discover(
595 struct wpa_supplicant *wpa_s, char *addr)
596{
597 u8 peer[ETH_ALEN];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800598 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700599
600 if (hwaddr_aton(addr, peer)) {
601 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
602 "address '%s'", addr);
603 return -1;
604 }
605
606 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
607 MAC2STR(peer));
608
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800609 if (wpa_tdls_is_external_setup(wpa_s->wpa))
610 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
611 else
612 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
613
614 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700615}
616
617
618static int wpa_supplicant_ctrl_iface_tdls_setup(
619 struct wpa_supplicant *wpa_s, char *addr)
620{
621 u8 peer[ETH_ALEN];
622 int ret;
623
624 if (hwaddr_aton(addr, peer)) {
625 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
626 "address '%s'", addr);
627 return -1;
628 }
629
630 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
631 MAC2STR(peer));
632
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800633 if ((wpa_s->conf->tdls_external_control) &&
634 wpa_tdls_is_external_setup(wpa_s->wpa))
635 return wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
636
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800637 wpa_tdls_remove(wpa_s->wpa, peer);
638
639 if (wpa_tdls_is_external_setup(wpa_s->wpa))
640 ret = wpa_tdls_start(wpa_s->wpa, peer);
641 else
642 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800643
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700644 return ret;
645}
646
647
648static int wpa_supplicant_ctrl_iface_tdls_teardown(
649 struct wpa_supplicant *wpa_s, char *addr)
650{
651 u8 peer[ETH_ALEN];
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700652 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700653
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700654 if (os_strcmp(addr, "*") == 0) {
655 /* remove everyone */
656 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN *");
657 wpa_tdls_teardown_peers(wpa_s->wpa);
658 return 0;
659 }
660
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700661 if (hwaddr_aton(addr, peer)) {
662 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
663 "address '%s'", addr);
664 return -1;
665 }
666
667 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
668 MAC2STR(peer));
669
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800670 if ((wpa_s->conf->tdls_external_control) &&
671 wpa_tdls_is_external_setup(wpa_s->wpa))
672 return wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
673
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700674 if (wpa_tdls_is_external_setup(wpa_s->wpa))
675 ret = wpa_tdls_teardown_link(
676 wpa_s->wpa, peer,
677 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
678 else
679 ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
680
681 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700682}
683
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700684
685static int ctrl_iface_get_capability_tdls(
686 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
687{
688 int ret;
689
690 ret = os_snprintf(buf, buflen, "%s\n",
691 wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT ?
692 (wpa_s->drv_flags &
693 WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP ?
694 "EXTERNAL" : "INTERNAL") : "UNSUPPORTED");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800695 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700696 return -1;
697 return ret;
698}
699
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800700
701static int wpa_supplicant_ctrl_iface_tdls_chan_switch(
702 struct wpa_supplicant *wpa_s, char *cmd)
703{
704 u8 peer[ETH_ALEN];
705 struct hostapd_freq_params freq_params;
706 u8 oper_class;
707 char *pos, *end;
708
709 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
710 wpa_printf(MSG_INFO,
711 "tdls_chanswitch: Only supported with external setup");
712 return -1;
713 }
714
715 os_memset(&freq_params, 0, sizeof(freq_params));
716
717 pos = os_strchr(cmd, ' ');
718 if (pos == NULL)
719 return -1;
720 *pos++ = '\0';
721
722 oper_class = strtol(pos, &end, 10);
723 if (pos == end) {
724 wpa_printf(MSG_INFO,
725 "tdls_chanswitch: Invalid op class provided");
726 return -1;
727 }
728
729 pos = end;
730 freq_params.freq = atoi(pos);
731 if (freq_params.freq == 0) {
732 wpa_printf(MSG_INFO, "tdls_chanswitch: Invalid freq provided");
733 return -1;
734 }
735
736#define SET_FREQ_SETTING(str) \
737 do { \
738 const char *pos2 = os_strstr(pos, " " #str "="); \
739 if (pos2) { \
740 pos2 += sizeof(" " #str "=") - 1; \
741 freq_params.str = atoi(pos2); \
742 } \
743 } while (0)
744
745 SET_FREQ_SETTING(center_freq1);
746 SET_FREQ_SETTING(center_freq2);
747 SET_FREQ_SETTING(bandwidth);
748 SET_FREQ_SETTING(sec_channel_offset);
749#undef SET_FREQ_SETTING
750
751 freq_params.ht_enabled = !!os_strstr(pos, " ht");
752 freq_params.vht_enabled = !!os_strstr(pos, " vht");
753
754 if (hwaddr_aton(cmd, peer)) {
755 wpa_printf(MSG_DEBUG,
756 "CTRL_IFACE TDLS_CHAN_SWITCH: Invalid address '%s'",
757 cmd);
758 return -1;
759 }
760
761 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CHAN_SWITCH " MACSTR
762 " OP CLASS %d FREQ %d CENTER1 %d CENTER2 %d BW %d SEC_OFFSET %d%s%s",
763 MAC2STR(peer), oper_class, freq_params.freq,
764 freq_params.center_freq1, freq_params.center_freq2,
765 freq_params.bandwidth, freq_params.sec_channel_offset,
766 freq_params.ht_enabled ? " HT" : "",
767 freq_params.vht_enabled ? " VHT" : "");
768
769 return wpa_tdls_enable_chan_switch(wpa_s->wpa, peer, oper_class,
770 &freq_params);
771}
772
773
774static int wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(
775 struct wpa_supplicant *wpa_s, char *cmd)
776{
777 u8 peer[ETH_ALEN];
778
779 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
780 wpa_printf(MSG_INFO,
781 "tdls_chanswitch: Only supported with external setup");
782 return -1;
783 }
784
785 if (hwaddr_aton(cmd, peer)) {
786 wpa_printf(MSG_DEBUG,
787 "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH: Invalid address '%s'",
788 cmd);
789 return -1;
790 }
791
792 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH " MACSTR,
793 MAC2STR(peer));
794
795 return wpa_tdls_disable_chan_switch(wpa_s->wpa, peer);
796}
797
Dmitry Shmidtcc00d5d2015-05-04 10:34:12 -0700798
799static int wpa_supplicant_ctrl_iface_tdls_link_status(
800 struct wpa_supplicant *wpa_s, const char *addr,
801 char *buf, size_t buflen)
802{
803 u8 peer[ETH_ALEN];
804 const char *tdls_status;
805 int ret;
806
807 if (hwaddr_aton(addr, peer)) {
808 wpa_printf(MSG_DEBUG,
809 "CTRL_IFACE TDLS_LINK_STATUS: Invalid address '%s'",
810 addr);
811 return -1;
812 }
813 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS " MACSTR,
814 MAC2STR(peer));
815
816 tdls_status = wpa_tdls_get_link_status(wpa_s->wpa, peer);
817 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS: %s", tdls_status);
818 ret = os_snprintf(buf, buflen, "TDLS link status: %s\n", tdls_status);
819 if (os_snprintf_error(buflen, ret))
820 return -1;
821
822 return ret;
823}
824
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700825#endif /* CONFIG_TDLS */
826
827
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800828static int wmm_ac_ctrl_addts(struct wpa_supplicant *wpa_s, char *cmd)
829{
830 char *token, *context = NULL;
831 struct wmm_ac_ts_setup_params params = {
832 .tsid = 0xff,
833 .direction = 0xff,
834 };
835
836 while ((token = str_token(cmd, " ", &context))) {
837 if (sscanf(token, "tsid=%i", &params.tsid) == 1 ||
838 sscanf(token, "up=%i", &params.user_priority) == 1 ||
839 sscanf(token, "nominal_msdu_size=%i",
840 &params.nominal_msdu_size) == 1 ||
841 sscanf(token, "mean_data_rate=%i",
842 &params.mean_data_rate) == 1 ||
843 sscanf(token, "min_phy_rate=%i",
844 &params.minimum_phy_rate) == 1 ||
845 sscanf(token, "sba=%i",
846 &params.surplus_bandwidth_allowance) == 1)
847 continue;
848
849 if (os_strcasecmp(token, "downlink") == 0) {
850 params.direction = WMM_TSPEC_DIRECTION_DOWNLINK;
851 } else if (os_strcasecmp(token, "uplink") == 0) {
852 params.direction = WMM_TSPEC_DIRECTION_UPLINK;
853 } else if (os_strcasecmp(token, "bidi") == 0) {
854 params.direction = WMM_TSPEC_DIRECTION_BI_DIRECTIONAL;
855 } else if (os_strcasecmp(token, "fixed_nominal_msdu") == 0) {
856 params.fixed_nominal_msdu = 1;
857 } else {
858 wpa_printf(MSG_DEBUG,
859 "CTRL: Invalid WMM_AC_ADDTS parameter: '%s'",
860 token);
861 return -1;
862 }
863
864 }
865
866 return wpas_wmm_ac_addts(wpa_s, &params);
867}
868
869
870static int wmm_ac_ctrl_delts(struct wpa_supplicant *wpa_s, char *cmd)
871{
872 u8 tsid = atoi(cmd);
873
874 return wpas_wmm_ac_delts(wpa_s, tsid);
875}
876
877
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700878#ifdef CONFIG_IEEE80211R
879static int wpa_supplicant_ctrl_iface_ft_ds(
880 struct wpa_supplicant *wpa_s, char *addr)
881{
882 u8 target_ap[ETH_ALEN];
883 struct wpa_bss *bss;
884 const u8 *mdie;
885
886 if (hwaddr_aton(addr, target_ap)) {
887 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
888 "address '%s'", addr);
889 return -1;
890 }
891
892 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
893
894 bss = wpa_bss_get_bssid(wpa_s, target_ap);
895 if (bss)
896 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
897 else
898 mdie = NULL;
899
900 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
901}
902#endif /* CONFIG_IEEE80211R */
903
904
905#ifdef CONFIG_WPS
906static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
907 char *cmd)
908{
909 u8 bssid[ETH_ALEN], *_bssid = bssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700910#ifdef CONFIG_P2P
911 u8 p2p_dev_addr[ETH_ALEN];
912#endif /* CONFIG_P2P */
913#ifdef CONFIG_AP
914 u8 *_p2p_dev_addr = NULL;
915#endif /* CONFIG_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800916
Dmitry Shmidtc0a8db02013-11-08 11:18:33 -0800917 if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700918 _bssid = NULL;
919#ifdef CONFIG_P2P
920 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
921 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
922 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
923 "P2P Device Address '%s'",
924 cmd + 13);
925 return -1;
926 }
927 _p2p_dev_addr = p2p_dev_addr;
928#endif /* CONFIG_P2P */
929 } else if (hwaddr_aton(cmd, bssid)) {
930 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
931 cmd);
932 return -1;
933 }
934
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800935#ifdef CONFIG_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700936 if (wpa_s->ap_iface)
937 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
938#endif /* CONFIG_AP */
939
940 return wpas_wps_start_pbc(wpa_s, _bssid, 0);
941}
942
943
944static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
945 char *cmd, char *buf,
946 size_t buflen)
947{
948 u8 bssid[ETH_ALEN], *_bssid = bssid;
949 char *pin;
950 int ret;
951
952 pin = os_strchr(cmd, ' ');
953 if (pin)
954 *pin++ = '\0';
955
956 if (os_strcmp(cmd, "any") == 0)
957 _bssid = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800958 else if (os_strcmp(cmd, "get") == 0) {
959 ret = wps_generate_pin();
960 goto done;
961 } else if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700962 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
963 cmd);
964 return -1;
965 }
966
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800967#ifdef CONFIG_AP
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800968 if (wpa_s->ap_iface) {
969 int timeout = 0;
970 char *pos;
971
972 if (pin) {
973 pos = os_strchr(pin, ' ');
974 if (pos) {
975 *pos++ = '\0';
976 timeout = atoi(pos);
977 }
978 }
979
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700980 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800981 buf, buflen, timeout);
982 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700983#endif /* CONFIG_AP */
984
985 if (pin) {
986 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
987 DEV_PW_DEFAULT);
988 if (ret < 0)
989 return -1;
990 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800991 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700992 return -1;
993 return ret;
994 }
995
996 ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
997 if (ret < 0)
998 return -1;
999
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001000done:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001001 /* Return the generated PIN */
1002 ret = os_snprintf(buf, buflen, "%08d", ret);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001003 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001004 return -1;
1005 return ret;
1006}
1007
1008
1009static int wpa_supplicant_ctrl_iface_wps_check_pin(
1010 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
1011{
1012 char pin[9];
1013 size_t len;
1014 char *pos;
1015 int ret;
1016
1017 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
1018 (u8 *) cmd, os_strlen(cmd));
1019 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
1020 if (*pos < '0' || *pos > '9')
1021 continue;
1022 pin[len++] = *pos;
1023 if (len == 9) {
1024 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
1025 return -1;
1026 }
1027 }
1028 if (len != 4 && len != 8) {
1029 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
1030 return -1;
1031 }
1032 pin[len] = '\0';
1033
1034 if (len == 8) {
1035 unsigned int pin_val;
1036 pin_val = atoi(pin);
1037 if (!wps_pin_valid(pin_val)) {
1038 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
1039 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001040 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001041 return -1;
1042 return ret;
1043 }
1044 }
1045
1046 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001047 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001048 return -1;
1049
1050 return ret;
1051}
1052
1053
Dmitry Shmidt04949592012-07-19 12:16:46 -07001054#ifdef CONFIG_WPS_NFC
1055
1056static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
1057 char *cmd)
1058{
1059 u8 bssid[ETH_ALEN], *_bssid = bssid;
1060
1061 if (cmd == NULL || cmd[0] == '\0')
1062 _bssid = NULL;
1063 else if (hwaddr_aton(cmd, bssid))
1064 return -1;
1065
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001066 return wpas_wps_start_nfc(wpa_s, NULL, _bssid, NULL, 0, 0, NULL, NULL,
1067 0, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001068}
1069
1070
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001071static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
1072 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1073{
1074 int ndef;
1075 struct wpabuf *buf;
1076 int res;
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001077 char *pos;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001078
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001079 pos = os_strchr(cmd, ' ');
1080 if (pos)
1081 *pos++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001082 if (os_strcmp(cmd, "WPS") == 0)
1083 ndef = 0;
1084 else if (os_strcmp(cmd, "NDEF") == 0)
1085 ndef = 1;
1086 else
1087 return -1;
1088
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001089 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001090 if (buf == NULL)
1091 return -1;
1092
1093 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1094 wpabuf_len(buf));
1095 reply[res++] = '\n';
1096 reply[res] = '\0';
1097
1098 wpabuf_free(buf);
1099
1100 return res;
1101}
1102
1103
Dmitry Shmidt04949592012-07-19 12:16:46 -07001104static int wpa_supplicant_ctrl_iface_wps_nfc_token(
1105 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1106{
1107 int ndef;
1108 struct wpabuf *buf;
1109 int res;
1110
1111 if (os_strcmp(cmd, "WPS") == 0)
1112 ndef = 0;
1113 else if (os_strcmp(cmd, "NDEF") == 0)
1114 ndef = 1;
1115 else
1116 return -1;
1117
1118 buf = wpas_wps_nfc_token(wpa_s, ndef);
1119 if (buf == NULL)
1120 return -1;
1121
1122 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1123 wpabuf_len(buf));
1124 reply[res++] = '\n';
1125 reply[res] = '\0';
1126
1127 wpabuf_free(buf);
1128
1129 return res;
1130}
1131
1132
1133static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
1134 struct wpa_supplicant *wpa_s, char *pos)
1135{
1136 size_t len;
1137 struct wpabuf *buf;
1138 int ret;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001139 char *freq;
1140 int forced_freq = 0;
1141
1142 freq = strstr(pos, " freq=");
1143 if (freq) {
1144 *freq = '\0';
1145 freq += 6;
1146 forced_freq = atoi(freq);
1147 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001148
1149 len = os_strlen(pos);
1150 if (len & 0x01)
1151 return -1;
1152 len /= 2;
1153
1154 buf = wpabuf_alloc(len);
1155 if (buf == NULL)
1156 return -1;
1157 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
1158 wpabuf_free(buf);
1159 return -1;
1160 }
1161
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001162 ret = wpas_wps_nfc_tag_read(wpa_s, buf, forced_freq);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001163 wpabuf_free(buf);
1164
1165 return ret;
1166}
1167
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001168
1169static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001170 char *reply, size_t max_len,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001171 int ndef)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001172{
1173 struct wpabuf *buf;
1174 int res;
1175
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001176 buf = wpas_wps_nfc_handover_req(wpa_s, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001177 if (buf == NULL)
1178 return -1;
1179
1180 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1181 wpabuf_len(buf));
1182 reply[res++] = '\n';
1183 reply[res] = '\0';
1184
1185 wpabuf_free(buf);
1186
1187 return res;
1188}
1189
1190
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001191#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001192static int wpas_ctrl_nfc_get_handover_req_p2p(struct wpa_supplicant *wpa_s,
1193 char *reply, size_t max_len,
1194 int ndef)
1195{
1196 struct wpabuf *buf;
1197 int res;
1198
1199 buf = wpas_p2p_nfc_handover_req(wpa_s, ndef);
1200 if (buf == NULL) {
1201 wpa_printf(MSG_DEBUG, "P2P: Could not generate NFC handover request");
1202 return -1;
1203 }
1204
1205 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1206 wpabuf_len(buf));
1207 reply[res++] = '\n';
1208 reply[res] = '\0';
1209
1210 wpabuf_free(buf);
1211
1212 return res;
1213}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001214#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001215
1216
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001217static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
1218 char *cmd, char *reply,
1219 size_t max_len)
1220{
1221 char *pos;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001222 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001223
1224 pos = os_strchr(cmd, ' ');
1225 if (pos == NULL)
1226 return -1;
1227 *pos++ = '\0';
1228
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001229 if (os_strcmp(cmd, "WPS") == 0)
1230 ndef = 0;
1231 else if (os_strcmp(cmd, "NDEF") == 0)
1232 ndef = 1;
1233 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001234 return -1;
1235
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001236 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001237 if (!ndef)
1238 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001239 return wpas_ctrl_nfc_get_handover_req_wps(
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001240 wpa_s, reply, max_len, ndef);
1241 }
1242
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001243#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001244 if (os_strcmp(pos, "P2P-CR") == 0) {
1245 return wpas_ctrl_nfc_get_handover_req_p2p(
1246 wpa_s, reply, max_len, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001247 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001248#endif /* CONFIG_P2P */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001249
1250 return -1;
1251}
1252
1253
1254static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001255 char *reply, size_t max_len,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001256 int ndef, int cr, char *uuid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001257{
1258 struct wpabuf *buf;
1259 int res;
1260
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001261 buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001262 if (buf == NULL)
1263 return -1;
1264
1265 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1266 wpabuf_len(buf));
1267 reply[res++] = '\n';
1268 reply[res] = '\0';
1269
1270 wpabuf_free(buf);
1271
1272 return res;
1273}
1274
1275
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001276#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001277static int wpas_ctrl_nfc_get_handover_sel_p2p(struct wpa_supplicant *wpa_s,
1278 char *reply, size_t max_len,
1279 int ndef, int tag)
1280{
1281 struct wpabuf *buf;
1282 int res;
1283
1284 buf = wpas_p2p_nfc_handover_sel(wpa_s, ndef, tag);
1285 if (buf == NULL)
1286 return -1;
1287
1288 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1289 wpabuf_len(buf));
1290 reply[res++] = '\n';
1291 reply[res] = '\0';
1292
1293 wpabuf_free(buf);
1294
1295 return res;
1296}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001297#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001298
1299
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001300static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
1301 char *cmd, char *reply,
1302 size_t max_len)
1303{
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001304 char *pos, *pos2;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001305 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001306
1307 pos = os_strchr(cmd, ' ');
1308 if (pos == NULL)
1309 return -1;
1310 *pos++ = '\0';
1311
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001312 if (os_strcmp(cmd, "WPS") == 0)
1313 ndef = 0;
1314 else if (os_strcmp(cmd, "NDEF") == 0)
1315 ndef = 1;
1316 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001317 return -1;
1318
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001319 pos2 = os_strchr(pos, ' ');
1320 if (pos2)
1321 *pos2++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001322 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001323 if (!ndef)
1324 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001325 return wpas_ctrl_nfc_get_handover_sel_wps(
1326 wpa_s, reply, max_len, ndef,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001327 os_strcmp(pos, "WPS-CR") == 0, pos2);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001328 }
1329
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001330#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001331 if (os_strcmp(pos, "P2P-CR") == 0) {
1332 return wpas_ctrl_nfc_get_handover_sel_p2p(
1333 wpa_s, reply, max_len, ndef, 0);
1334 }
1335
1336 if (os_strcmp(pos, "P2P-CR-TAG") == 0) {
1337 return wpas_ctrl_nfc_get_handover_sel_p2p(
1338 wpa_s, reply, max_len, ndef, 1);
1339 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001340#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001341
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001342 return -1;
1343}
1344
1345
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001346static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1347 char *cmd)
1348{
1349 size_t len;
1350 struct wpabuf *req, *sel;
1351 int ret;
1352 char *pos, *role, *type, *pos2;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001353#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001354 char *freq;
1355 int forced_freq = 0;
1356
1357 freq = strstr(cmd, " freq=");
1358 if (freq) {
1359 *freq = '\0';
1360 freq += 6;
1361 forced_freq = atoi(freq);
1362 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001363#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001364
1365 role = cmd;
1366 pos = os_strchr(role, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001367 if (pos == NULL) {
1368 wpa_printf(MSG_DEBUG, "NFC: Missing type in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001369 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001370 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001371 *pos++ = '\0';
1372
1373 type = pos;
1374 pos = os_strchr(type, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001375 if (pos == NULL) {
1376 wpa_printf(MSG_DEBUG, "NFC: Missing request message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001377 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001378 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001379 *pos++ = '\0';
1380
1381 pos2 = os_strchr(pos, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001382 if (pos2 == NULL) {
1383 wpa_printf(MSG_DEBUG, "NFC: Missing select message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001384 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001385 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001386 *pos2++ = '\0';
1387
1388 len = os_strlen(pos);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001389 if (len & 0x01) {
1390 wpa_printf(MSG_DEBUG, "NFC: Invalid request message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001391 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001392 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001393 len /= 2;
1394
1395 req = wpabuf_alloc(len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001396 if (req == NULL) {
1397 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for request message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001398 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001399 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001400 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001401 wpa_printf(MSG_DEBUG, "NFC: Invalid request message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001402 wpabuf_free(req);
1403 return -1;
1404 }
1405
1406 len = os_strlen(pos2);
1407 if (len & 0x01) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001408 wpa_printf(MSG_DEBUG, "NFC: Invalid select message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001409 wpabuf_free(req);
1410 return -1;
1411 }
1412 len /= 2;
1413
1414 sel = wpabuf_alloc(len);
1415 if (sel == NULL) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001416 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for select message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001417 wpabuf_free(req);
1418 return -1;
1419 }
1420 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001421 wpa_printf(MSG_DEBUG, "NFC: Invalid select message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001422 wpabuf_free(req);
1423 wpabuf_free(sel);
1424 return -1;
1425 }
1426
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001427 wpa_printf(MSG_DEBUG, "NFC: Connection handover reported - role=%s type=%s req_len=%d sel_len=%d",
1428 role, type, (int) wpabuf_len(req), (int) wpabuf_len(sel));
1429
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001430 if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1431 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001432#ifdef CONFIG_AP
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001433 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0)
1434 {
1435 ret = wpas_ap_wps_nfc_report_handover(wpa_s, req, sel);
1436 if (ret < 0)
1437 ret = wpas_er_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001438#endif /* CONFIG_AP */
1439#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001440 } else if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "P2P") == 0)
1441 {
1442 ret = wpas_p2p_nfc_report_handover(wpa_s, 1, req, sel, 0);
1443 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "P2P") == 0)
1444 {
1445 ret = wpas_p2p_nfc_report_handover(wpa_s, 0, req, sel,
1446 forced_freq);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001447#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001448 } else {
1449 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1450 "reported: role=%s type=%s", role, type);
1451 ret = -1;
1452 }
1453 wpabuf_free(req);
1454 wpabuf_free(sel);
1455
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001456 if (ret)
1457 wpa_printf(MSG_DEBUG, "NFC: Failed to process reported handover messages");
1458
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001459 return ret;
1460}
1461
Dmitry Shmidt04949592012-07-19 12:16:46 -07001462#endif /* CONFIG_WPS_NFC */
1463
1464
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001465static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1466 char *cmd)
1467{
1468 u8 bssid[ETH_ALEN];
1469 char *pin;
1470 char *new_ssid;
1471 char *new_auth;
1472 char *new_encr;
1473 char *new_key;
1474 struct wps_new_ap_settings ap;
1475
1476 pin = os_strchr(cmd, ' ');
1477 if (pin == NULL)
1478 return -1;
1479 *pin++ = '\0';
1480
1481 if (hwaddr_aton(cmd, bssid)) {
1482 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1483 cmd);
1484 return -1;
1485 }
1486
1487 new_ssid = os_strchr(pin, ' ');
1488 if (new_ssid == NULL)
1489 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1490 *new_ssid++ = '\0';
1491
1492 new_auth = os_strchr(new_ssid, ' ');
1493 if (new_auth == NULL)
1494 return -1;
1495 *new_auth++ = '\0';
1496
1497 new_encr = os_strchr(new_auth, ' ');
1498 if (new_encr == NULL)
1499 return -1;
1500 *new_encr++ = '\0';
1501
1502 new_key = os_strchr(new_encr, ' ');
1503 if (new_key == NULL)
1504 return -1;
1505 *new_key++ = '\0';
1506
1507 os_memset(&ap, 0, sizeof(ap));
1508 ap.ssid_hex = new_ssid;
1509 ap.auth = new_auth;
1510 ap.encr = new_encr;
1511 ap.key_hex = new_key;
1512 return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1513}
1514
1515
1516#ifdef CONFIG_AP
1517static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1518 char *cmd, char *buf,
1519 size_t buflen)
1520{
1521 int timeout = 300;
1522 char *pos;
1523 const char *pin_txt;
1524
1525 if (!wpa_s->ap_iface)
1526 return -1;
1527
1528 pos = os_strchr(cmd, ' ');
1529 if (pos)
1530 *pos++ = '\0';
1531
1532 if (os_strcmp(cmd, "disable") == 0) {
1533 wpas_wps_ap_pin_disable(wpa_s);
1534 return os_snprintf(buf, buflen, "OK\n");
1535 }
1536
1537 if (os_strcmp(cmd, "random") == 0) {
1538 if (pos)
1539 timeout = atoi(pos);
1540 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1541 if (pin_txt == NULL)
1542 return -1;
1543 return os_snprintf(buf, buflen, "%s", pin_txt);
1544 }
1545
1546 if (os_strcmp(cmd, "get") == 0) {
1547 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1548 if (pin_txt == NULL)
1549 return -1;
1550 return os_snprintf(buf, buflen, "%s", pin_txt);
1551 }
1552
1553 if (os_strcmp(cmd, "set") == 0) {
1554 char *pin;
1555 if (pos == NULL)
1556 return -1;
1557 pin = pos;
1558 pos = os_strchr(pos, ' ');
1559 if (pos) {
1560 *pos++ = '\0';
1561 timeout = atoi(pos);
1562 }
1563 if (os_strlen(pin) > buflen)
1564 return -1;
1565 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1566 return -1;
1567 return os_snprintf(buf, buflen, "%s", pin);
1568 }
1569
1570 return -1;
1571}
1572#endif /* CONFIG_AP */
1573
1574
1575#ifdef CONFIG_WPS_ER
1576static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1577 char *cmd)
1578{
1579 char *uuid = cmd, *pin, *pos;
1580 u8 addr_buf[ETH_ALEN], *addr = NULL;
1581 pin = os_strchr(uuid, ' ');
1582 if (pin == NULL)
1583 return -1;
1584 *pin++ = '\0';
1585 pos = os_strchr(pin, ' ');
1586 if (pos) {
1587 *pos++ = '\0';
1588 if (hwaddr_aton(pos, addr_buf) == 0)
1589 addr = addr_buf;
1590 }
1591 return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1592}
1593
1594
1595static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1596 char *cmd)
1597{
1598 char *uuid = cmd, *pin;
1599 pin = os_strchr(uuid, ' ');
1600 if (pin == NULL)
1601 return -1;
1602 *pin++ = '\0';
1603 return wpas_wps_er_learn(wpa_s, uuid, pin);
1604}
1605
1606
1607static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1608 struct wpa_supplicant *wpa_s, char *cmd)
1609{
1610 char *uuid = cmd, *id;
1611 id = os_strchr(uuid, ' ');
1612 if (id == NULL)
1613 return -1;
1614 *id++ = '\0';
1615 return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1616}
1617
1618
1619static int wpa_supplicant_ctrl_iface_wps_er_config(
1620 struct wpa_supplicant *wpa_s, char *cmd)
1621{
1622 char *pin;
1623 char *new_ssid;
1624 char *new_auth;
1625 char *new_encr;
1626 char *new_key;
1627 struct wps_new_ap_settings ap;
1628
1629 pin = os_strchr(cmd, ' ');
1630 if (pin == NULL)
1631 return -1;
1632 *pin++ = '\0';
1633
1634 new_ssid = os_strchr(pin, ' ');
1635 if (new_ssid == NULL)
1636 return -1;
1637 *new_ssid++ = '\0';
1638
1639 new_auth = os_strchr(new_ssid, ' ');
1640 if (new_auth == NULL)
1641 return -1;
1642 *new_auth++ = '\0';
1643
1644 new_encr = os_strchr(new_auth, ' ');
1645 if (new_encr == NULL)
1646 return -1;
1647 *new_encr++ = '\0';
1648
1649 new_key = os_strchr(new_encr, ' ');
1650 if (new_key == NULL)
1651 return -1;
1652 *new_key++ = '\0';
1653
1654 os_memset(&ap, 0, sizeof(ap));
1655 ap.ssid_hex = new_ssid;
1656 ap.auth = new_auth;
1657 ap.encr = new_encr;
1658 ap.key_hex = new_key;
1659 return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1660}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001661
1662
1663#ifdef CONFIG_WPS_NFC
1664static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1665 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1666{
1667 int ndef;
1668 struct wpabuf *buf;
1669 int res;
1670 char *uuid;
1671
1672 uuid = os_strchr(cmd, ' ');
1673 if (uuid == NULL)
1674 return -1;
1675 *uuid++ = '\0';
1676
1677 if (os_strcmp(cmd, "WPS") == 0)
1678 ndef = 0;
1679 else if (os_strcmp(cmd, "NDEF") == 0)
1680 ndef = 1;
1681 else
1682 return -1;
1683
1684 buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1685 if (buf == NULL)
1686 return -1;
1687
1688 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1689 wpabuf_len(buf));
1690 reply[res++] = '\n';
1691 reply[res] = '\0';
1692
1693 wpabuf_free(buf);
1694
1695 return res;
1696}
1697#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001698#endif /* CONFIG_WPS_ER */
1699
1700#endif /* CONFIG_WPS */
1701
1702
1703#ifdef CONFIG_IBSS_RSN
1704static int wpa_supplicant_ctrl_iface_ibss_rsn(
1705 struct wpa_supplicant *wpa_s, char *addr)
1706{
1707 u8 peer[ETH_ALEN];
1708
1709 if (hwaddr_aton(addr, peer)) {
1710 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1711 "address '%s'", addr);
1712 return -1;
1713 }
1714
1715 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1716 MAC2STR(peer));
1717
1718 return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1719}
1720#endif /* CONFIG_IBSS_RSN */
1721
1722
1723static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1724 char *rsp)
1725{
1726#ifdef IEEE8021X_EAPOL
1727 char *pos, *id_pos;
1728 int id;
1729 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001730
1731 pos = os_strchr(rsp, '-');
1732 if (pos == NULL)
1733 return -1;
1734 *pos++ = '\0';
1735 id_pos = pos;
1736 pos = os_strchr(pos, ':');
1737 if (pos == NULL)
1738 return -1;
1739 *pos++ = '\0';
1740 id = atoi(id_pos);
1741 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1742 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1743 (u8 *) pos, os_strlen(pos));
1744
1745 ssid = wpa_config_get_network(wpa_s->conf, id);
1746 if (ssid == NULL) {
1747 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1748 "to update", id);
1749 return -1;
1750 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001751
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001752 return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1753 pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001754#else /* IEEE8021X_EAPOL */
1755 wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1756 return -1;
1757#endif /* IEEE8021X_EAPOL */
1758}
1759
1760
1761static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1762 const char *params,
1763 char *buf, size_t buflen)
1764{
1765 char *pos, *end, tmp[30];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001766 int res, verbose, wps, ret;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001767#ifdef CONFIG_HS20
1768 const u8 *hs20;
1769#endif /* CONFIG_HS20 */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001770 const u8 *sess_id;
1771 size_t sess_id_len;
Dmitry Shmidt44da0252011-08-23 12:30:30 -07001772
Dmitry Shmidt56052862013-10-04 10:23:25 -07001773 if (os_strcmp(params, "-DRIVER") == 0)
1774 return wpa_drv_status(wpa_s, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001775 verbose = os_strcmp(params, "-VERBOSE") == 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001776 wps = os_strcmp(params, "-WPS") == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001777 pos = buf;
1778 end = buf + buflen;
1779 if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1780 struct wpa_ssid *ssid = wpa_s->current_ssid;
1781 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1782 MAC2STR(wpa_s->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001783 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001784 return pos - buf;
1785 pos += ret;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001786 ret = os_snprintf(pos, end - pos, "freq=%u\n",
1787 wpa_s->assoc_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001788 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001789 return pos - buf;
1790 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001791 if (ssid) {
1792 u8 *_ssid = ssid->ssid;
1793 size_t ssid_len = ssid->ssid_len;
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07001794 u8 ssid_buf[SSID_MAX_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001795 if (ssid_len == 0) {
1796 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1797 if (_res < 0)
1798 ssid_len = 0;
1799 else
1800 ssid_len = _res;
1801 _ssid = ssid_buf;
1802 }
1803 ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1804 wpa_ssid_txt(_ssid, ssid_len),
1805 ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001806 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001807 return pos - buf;
1808 pos += ret;
1809
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001810 if (wps && ssid->passphrase &&
1811 wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1812 (ssid->mode == WPAS_MODE_AP ||
1813 ssid->mode == WPAS_MODE_P2P_GO)) {
1814 ret = os_snprintf(pos, end - pos,
1815 "passphrase=%s\n",
1816 ssid->passphrase);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001817 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001818 return pos - buf;
1819 pos += ret;
1820 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001821 if (ssid->id_str) {
1822 ret = os_snprintf(pos, end - pos,
1823 "id_str=%s\n",
1824 ssid->id_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001825 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001826 return pos - buf;
1827 pos += ret;
1828 }
1829
1830 switch (ssid->mode) {
1831 case WPAS_MODE_INFRA:
1832 ret = os_snprintf(pos, end - pos,
1833 "mode=station\n");
1834 break;
1835 case WPAS_MODE_IBSS:
1836 ret = os_snprintf(pos, end - pos,
1837 "mode=IBSS\n");
1838 break;
1839 case WPAS_MODE_AP:
1840 ret = os_snprintf(pos, end - pos,
1841 "mode=AP\n");
1842 break;
1843 case WPAS_MODE_P2P_GO:
1844 ret = os_snprintf(pos, end - pos,
1845 "mode=P2P GO\n");
1846 break;
1847 case WPAS_MODE_P2P_GROUP_FORMATION:
1848 ret = os_snprintf(pos, end - pos,
1849 "mode=P2P GO - group "
1850 "formation\n");
1851 break;
1852 default:
1853 ret = 0;
1854 break;
1855 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001856 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001857 return pos - buf;
1858 pos += ret;
1859 }
1860
1861#ifdef CONFIG_AP
1862 if (wpa_s->ap_iface) {
1863 pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1864 end - pos,
1865 verbose);
1866 } else
1867#endif /* CONFIG_AP */
1868 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1869 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001870#ifdef CONFIG_SAE
1871 if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001872#ifdef CONFIG_AP
1873 !wpa_s->ap_iface &&
1874#endif /* CONFIG_AP */
1875 wpa_s->sme.sae.state == SAE_ACCEPTED) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001876 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1877 wpa_s->sme.sae.group);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001878 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001879 return pos - buf;
1880 pos += ret;
1881 }
1882#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001883 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1884 wpa_supplicant_state_txt(wpa_s->wpa_state));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001885 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001886 return pos - buf;
1887 pos += ret;
1888
1889 if (wpa_s->l2 &&
1890 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1891 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001892 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001893 return pos - buf;
1894 pos += ret;
1895 }
1896
1897#ifdef CONFIG_P2P
1898 if (wpa_s->global->p2p) {
1899 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1900 "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001901 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001902 return pos - buf;
1903 pos += ret;
1904 }
1905#endif /* CONFIG_P2P */
1906
1907 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1908 MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001909 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001910 return pos - buf;
1911 pos += ret;
1912
Dmitry Shmidt04949592012-07-19 12:16:46 -07001913#ifdef CONFIG_HS20
1914 if (wpa_s->current_bss &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001915 (hs20 = wpa_bss_get_vendor_ie(wpa_s->current_bss,
1916 HS20_IE_VENDOR_TYPE)) &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001917 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1918 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001919 int release = 1;
1920 if (hs20[1] >= 5) {
1921 u8 rel_num = (hs20[6] & 0xf0) >> 4;
1922 release = rel_num + 1;
1923 }
1924 ret = os_snprintf(pos, end - pos, "hs20=%d\n", release);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001925 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07001926 return pos - buf;
1927 pos += ret;
1928 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001929
1930 if (wpa_s->current_ssid) {
1931 struct wpa_cred *cred;
1932 char *type;
1933
1934 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001935 size_t i;
1936
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001937 if (wpa_s->current_ssid->parent_cred != cred)
1938 continue;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001939
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001940 if (cred->provisioning_sp) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001941 ret = os_snprintf(pos, end - pos,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001942 "provisioning_sp=%s\n",
1943 cred->provisioning_sp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001944 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt051af732013-10-22 13:52:46 -07001945 return pos - buf;
1946 pos += ret;
1947 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001948
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001949 if (!cred->domain)
1950 goto no_domain;
1951
1952 i = 0;
1953 if (wpa_s->current_bss && wpa_s->current_bss->anqp) {
1954 struct wpabuf *names =
1955 wpa_s->current_bss->anqp->domain_name;
1956 for (i = 0; names && i < cred->num_domain; i++)
1957 {
1958 if (domain_name_list_contains(
1959 names, cred->domain[i], 1))
1960 break;
1961 }
1962 if (i == cred->num_domain)
1963 i = 0; /* show first entry by default */
1964 }
1965 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1966 cred->domain[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001967 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001968 return pos - buf;
1969 pos += ret;
1970
1971 no_domain:
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001972 if (wpa_s->current_bss == NULL ||
1973 wpa_s->current_bss->anqp == NULL)
1974 res = -1;
1975 else
1976 res = interworking_home_sp_cred(
1977 wpa_s, cred,
1978 wpa_s->current_bss->anqp->domain_name);
1979 if (res > 0)
1980 type = "home";
1981 else if (res == 0)
1982 type = "roaming";
1983 else
1984 type = "unknown";
1985
1986 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001987 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001988 return pos - buf;
1989 pos += ret;
1990
1991 break;
1992 }
1993 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001994#endif /* CONFIG_HS20 */
1995
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001996 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
1997 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
1998 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
1999 verbose);
2000 if (res >= 0)
2001 pos += res;
2002 }
2003
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002004 sess_id = eapol_sm_get_session_id(wpa_s->eapol, &sess_id_len);
2005 if (sess_id) {
2006 char *start = pos;
2007
2008 ret = os_snprintf(pos, end - pos, "eap_session_id=");
2009 if (os_snprintf_error(end - pos, ret))
2010 return start - buf;
2011 pos += ret;
2012 ret = wpa_snprintf_hex(pos, end - pos, sess_id, sess_id_len);
2013 if (ret <= 0)
2014 return start - buf;
2015 pos += ret;
2016 ret = os_snprintf(pos, end - pos, "\n");
2017 if (os_snprintf_error(end - pos, ret))
2018 return start - buf;
2019 pos += ret;
2020 }
2021
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002022 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
2023 if (res >= 0)
2024 pos += res;
2025
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002026#ifdef CONFIG_WPS
2027 {
2028 char uuid_str[100];
2029 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
2030 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002031 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002032 return pos - buf;
2033 pos += ret;
2034 }
2035#endif /* CONFIG_WPS */
2036
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08002037#ifdef ANDROID
vandwalleffc70182014-09-11 11:40:14 -07002038 /*
2039 * Allow using the STATUS command with default behavior, say for debug,
2040 * i.e., don't generate a "fake" CONNECTION and SUPPLICANT_STATE_CHANGE
2041 * events with STATUS-NO_EVENTS.
2042 */
2043 if (os_strcmp(params, "-NO_EVENTS")) {
2044 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
2045 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
2046 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
2047 wpa_s->wpa_state,
2048 MAC2STR(wpa_s->bssid),
2049 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
2050 wpa_ssid_txt(wpa_s->current_ssid->ssid,
2051 wpa_s->current_ssid->ssid_len) : "");
2052 if (wpa_s->wpa_state == WPA_COMPLETED) {
2053 struct wpa_ssid *ssid = wpa_s->current_ssid;
2054 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED
2055 "- connection to " MACSTR
2056 " completed %s [id=%d id_str=%s]",
2057 MAC2STR(wpa_s->bssid), "(auth)",
2058 ssid ? ssid->id : -1,
2059 ssid && ssid->id_str ? ssid->id_str : "");
2060 }
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08002061 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08002062#endif /* ANDROID */
2063
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002064 return pos - buf;
2065}
2066
2067
2068static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
2069 char *cmd)
2070{
2071 char *pos;
2072 int id;
2073 struct wpa_ssid *ssid;
2074 u8 bssid[ETH_ALEN];
2075
2076 /* cmd: "<network id> <BSSID>" */
2077 pos = os_strchr(cmd, ' ');
2078 if (pos == NULL)
2079 return -1;
2080 *pos++ = '\0';
2081 id = atoi(cmd);
2082 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
2083 if (hwaddr_aton(pos, bssid)) {
2084 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
2085 return -1;
2086 }
2087
2088 ssid = wpa_config_get_network(wpa_s->conf, id);
2089 if (ssid == NULL) {
2090 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
2091 "to update", id);
2092 return -1;
2093 }
2094
2095 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
2096 ssid->bssid_set = !is_zero_ether_addr(bssid);
2097
2098 return 0;
2099}
2100
2101
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002102static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002103 char *cmd, char *buf,
2104 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002105{
2106 u8 bssid[ETH_ALEN];
2107 struct wpa_blacklist *e;
2108 char *pos, *end;
2109 int ret;
2110
2111 /* cmd: "BLACKLIST [<BSSID>]" */
2112 if (*cmd == '\0') {
2113 pos = buf;
2114 end = buf + buflen;
2115 e = wpa_s->blacklist;
2116 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002117 ret = os_snprintf(pos, end - pos, MACSTR "\n",
2118 MAC2STR(e->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002119 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002120 return pos - buf;
2121 pos += ret;
2122 e = e->next;
2123 }
2124 return pos - buf;
2125 }
2126
2127 cmd++;
2128 if (os_strncmp(cmd, "clear", 5) == 0) {
2129 wpa_blacklist_clear(wpa_s);
2130 os_memcpy(buf, "OK\n", 3);
2131 return 3;
2132 }
2133
2134 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
2135 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002136 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002137 return -1;
2138 }
2139
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002140 /*
2141 * Add the BSSID twice, so its count will be 2, causing it to be
2142 * skipped when processing scan results.
2143 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002144 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002145 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002146 return -1;
2147 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002148 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002149 return -1;
2150 os_memcpy(buf, "OK\n", 3);
2151 return 3;
2152}
2153
2154
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002155static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
2156 char *cmd, char *buf,
2157 size_t buflen)
2158{
2159 char *pos, *end, *stamp;
2160 int ret;
2161
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002162 /* cmd: "LOG_LEVEL [<level>]" */
2163 if (*cmd == '\0') {
2164 pos = buf;
2165 end = buf + buflen;
2166 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
2167 "Timestamp: %d\n",
2168 debug_level_str(wpa_debug_level),
2169 wpa_debug_timestamp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002170 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002171 ret = 0;
2172
2173 return ret;
2174 }
2175
2176 while (*cmd == ' ')
2177 cmd++;
2178
2179 stamp = os_strchr(cmd, ' ');
2180 if (stamp) {
2181 *stamp++ = '\0';
2182 while (*stamp == ' ') {
2183 stamp++;
2184 }
2185 }
2186
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002187 if (os_strlen(cmd)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002188 int level = str_to_debug_level(cmd);
2189 if (level < 0)
2190 return -1;
2191 wpa_debug_level = level;
2192 }
2193
2194 if (stamp && os_strlen(stamp))
2195 wpa_debug_timestamp = atoi(stamp);
2196
2197 os_memcpy(buf, "OK\n", 3);
2198 return 3;
2199}
2200
2201
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002202static int wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002203 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002204{
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002205 char *pos, *end, *prev;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002206 struct wpa_ssid *ssid;
2207 int ret;
2208
2209 pos = buf;
2210 end = buf + buflen;
2211 ret = os_snprintf(pos, end - pos,
2212 "network id / ssid / bssid / flags\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002213 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002214 return pos - buf;
2215 pos += ret;
2216
2217 ssid = wpa_s->conf->ssid;
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002218
2219 /* skip over ssids until we find next one */
2220 if (cmd != NULL && os_strncmp(cmd, "LAST_ID=", 8) == 0) {
2221 int last_id = atoi(cmd + 8);
2222 if (last_id != -1) {
2223 while (ssid != NULL && ssid->id <= last_id) {
2224 ssid = ssid->next;
2225 }
2226 }
2227 }
2228
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002229 while (ssid) {
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002230 prev = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002231 ret = os_snprintf(pos, end - pos, "%d\t%s",
2232 ssid->id,
2233 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002234 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002235 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002236 pos += ret;
2237 if (ssid->bssid_set) {
2238 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
2239 MAC2STR(ssid->bssid));
2240 } else {
2241 ret = os_snprintf(pos, end - pos, "\tany");
2242 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002243 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002244 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002245 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002246 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002247 ssid == wpa_s->current_ssid ?
2248 "[CURRENT]" : "",
2249 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002250 ssid->disabled_until.sec ?
2251 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002252 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
2253 "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002254 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002255 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002256 pos += ret;
2257 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002258 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002259 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002260 pos += ret;
2261
2262 ssid = ssid->next;
2263 }
2264
2265 return pos - buf;
2266}
2267
2268
2269static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
2270{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002271 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002272 ret = os_snprintf(pos, end - pos, "-");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002273 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002274 return pos;
2275 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002276 ret = wpa_write_ciphers(pos, end, cipher, "+");
2277 if (ret < 0)
2278 return pos;
2279 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002280 return pos;
2281}
2282
2283
2284static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
2285 const u8 *ie, size_t ie_len)
2286{
2287 struct wpa_ie_data data;
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002288 char *start;
2289 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002290
2291 ret = os_snprintf(pos, end - pos, "[%s-", proto);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002292 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002293 return pos;
2294 pos += ret;
2295
2296 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
2297 ret = os_snprintf(pos, end - pos, "?]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002298 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002299 return pos;
2300 pos += ret;
2301 return pos;
2302 }
2303
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002304 start = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002305 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002306 ret = os_snprintf(pos, end - pos, "%sEAP",
2307 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002308 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002309 return pos;
2310 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002311 }
2312 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002313 ret = os_snprintf(pos, end - pos, "%sPSK",
2314 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002315 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002316 return pos;
2317 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002318 }
2319 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002320 ret = os_snprintf(pos, end - pos, "%sNone",
2321 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002322 if (os_snprintf_error(end - pos, ret))
2323 return pos;
2324 pos += ret;
2325 }
2326 if (data.key_mgmt & WPA_KEY_MGMT_SAE) {
2327 ret = os_snprintf(pos, end - pos, "%sSAE",
2328 pos == start ? "" : "+");
2329 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002330 return pos;
2331 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002332 }
2333#ifdef CONFIG_IEEE80211R
2334 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
2335 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002336 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002337 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002338 return pos;
2339 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002340 }
2341 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
2342 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002343 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002344 if (os_snprintf_error(end - pos, ret))
2345 return pos;
2346 pos += ret;
2347 }
2348 if (data.key_mgmt & WPA_KEY_MGMT_FT_SAE) {
2349 ret = os_snprintf(pos, end - pos, "%sFT/SAE",
2350 pos == start ? "" : "+");
2351 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002352 return pos;
2353 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002354 }
2355#endif /* CONFIG_IEEE80211R */
2356#ifdef CONFIG_IEEE80211W
2357 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
2358 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002359 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002360 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002361 return pos;
2362 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002363 }
2364 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
2365 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002366 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002367 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002368 return pos;
2369 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002370 }
2371#endif /* CONFIG_IEEE80211W */
2372
Dmitry Shmidt807291d2015-01-27 13:40:23 -08002373#ifdef CONFIG_SUITEB
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002374 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
2375 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B",
2376 pos == start ? "" : "+");
2377 if (os_snprintf_error(end - pos, ret))
2378 return pos;
2379 pos += ret;
2380 }
Dmitry Shmidt807291d2015-01-27 13:40:23 -08002381#endif /* CONFIG_SUITEB */
2382
2383#ifdef CONFIG_SUITEB192
2384 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
2385 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B-192",
2386 pos == start ? "" : "+");
2387 if (os_snprintf_error(end - pos, ret))
2388 return pos;
2389 pos += ret;
2390 }
2391#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002392
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002393 if (data.key_mgmt & WPA_KEY_MGMT_OSEN) {
2394 ret = os_snprintf(pos, end - pos, "%sOSEN",
2395 pos == start ? "" : "+");
2396 if (os_snprintf_error(end - pos, ret))
2397 return pos;
2398 pos += ret;
2399 }
2400
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002401 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
2402
2403 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
2404 ret = os_snprintf(pos, end - pos, "-preauth");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002405 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002406 return pos;
2407 pos += ret;
2408 }
2409
2410 ret = os_snprintf(pos, end - pos, "]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002411 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002412 return pos;
2413 pos += ret;
2414
2415 return pos;
2416}
2417
2418
2419#ifdef CONFIG_WPS
2420static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
2421 char *pos, char *end,
2422 struct wpabuf *wps_ie)
2423{
2424 int ret;
2425 const char *txt;
2426
2427 if (wps_ie == NULL)
2428 return pos;
2429 if (wps_is_selected_pbc_registrar(wps_ie))
2430 txt = "[WPS-PBC]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002431 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
2432 txt = "[WPS-AUTH]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002433 else if (wps_is_selected_pin_registrar(wps_ie))
2434 txt = "[WPS-PIN]";
2435 else
2436 txt = "[WPS]";
2437
2438 ret = os_snprintf(pos, end - pos, "%s", txt);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002439 if (!os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002440 pos += ret;
2441 wpabuf_free(wps_ie);
2442 return pos;
2443}
2444#endif /* CONFIG_WPS */
2445
2446
2447static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2448 char *pos, char *end,
2449 const struct wpa_bss *bss)
2450{
2451#ifdef CONFIG_WPS
2452 struct wpabuf *wps_ie;
2453 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2454 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2455#else /* CONFIG_WPS */
2456 return pos;
2457#endif /* CONFIG_WPS */
2458}
2459
2460
2461/* Format one result on one text line into a buffer. */
2462static int wpa_supplicant_ctrl_iface_scan_result(
2463 struct wpa_supplicant *wpa_s,
2464 const struct wpa_bss *bss, char *buf, size_t buflen)
2465{
2466 char *pos, *end;
2467 int ret;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002468 const u8 *ie, *ie2, *osen_ie, *p2p, *mesh;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002469
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002470 mesh = wpa_bss_get_ie(bss, WLAN_EID_MESH_ID);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002471 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt96571392013-10-14 12:54:46 -07002472 if (!p2p)
2473 p2p = wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002474 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2475 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2476 0)
2477 return 0; /* Do not show P2P listen discovery results here */
2478
2479 pos = buf;
2480 end = buf + buflen;
2481
2482 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2483 MAC2STR(bss->bssid), bss->freq, bss->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002484 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002485 return -1;
2486 pos += ret;
2487 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2488 if (ie)
2489 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2490 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002491 if (ie2) {
2492 pos = wpa_supplicant_ie_txt(pos, end, mesh ? "RSN" : "WPA2",
2493 ie2, 2 + ie2[1]);
2494 }
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002495 osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
2496 if (osen_ie)
2497 pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
2498 osen_ie, 2 + osen_ie[1]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002499 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002500 if (!ie && !ie2 && !osen_ie && (bss->caps & IEEE80211_CAP_PRIVACY)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002501 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002502 if (os_snprintf_error(end - pos, ret))
2503 return -1;
2504 pos += ret;
2505 }
2506 if (mesh) {
2507 ret = os_snprintf(pos, end - pos, "[MESH]");
2508 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002509 return -1;
2510 pos += ret;
2511 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002512 if (bss_is_dmg(bss)) {
2513 const char *s;
2514 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002515 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002516 return -1;
2517 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002518 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
2519 case IEEE80211_CAP_DMG_IBSS:
2520 s = "[IBSS]";
2521 break;
2522 case IEEE80211_CAP_DMG_AP:
2523 s = "[ESS]";
2524 break;
2525 case IEEE80211_CAP_DMG_PBSS:
2526 s = "[PBSS]";
2527 break;
2528 default:
2529 s = "";
2530 break;
2531 }
2532 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002533 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002534 return -1;
2535 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002536 } else {
2537 if (bss->caps & IEEE80211_CAP_IBSS) {
2538 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002539 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002540 return -1;
2541 pos += ret;
2542 }
2543 if (bss->caps & IEEE80211_CAP_ESS) {
2544 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002545 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002546 return -1;
2547 pos += ret;
2548 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002549 }
2550 if (p2p) {
2551 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002552 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002553 return -1;
2554 pos += ret;
2555 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002556#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002557 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002558 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002559 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07002560 return -1;
2561 pos += ret;
2562 }
2563#endif /* CONFIG_HS20 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002564#ifdef CONFIG_FST
2565 if (wpa_bss_get_ie(bss, WLAN_EID_MULTI_BAND)) {
2566 ret = os_snprintf(pos, end - pos, "[FST]");
2567 if (os_snprintf_error(end - pos, ret))
2568 return -1;
2569 pos += ret;
2570 }
2571#endif /* CONFIG_FST */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002572
2573 ret = os_snprintf(pos, end - pos, "\t%s",
2574 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002575 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002576 return -1;
2577 pos += ret;
2578
2579 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002580 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002581 return -1;
2582 pos += ret;
2583
2584 return pos - buf;
2585}
2586
2587
2588static int wpa_supplicant_ctrl_iface_scan_results(
2589 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2590{
2591 char *pos, *end;
2592 struct wpa_bss *bss;
2593 int ret;
2594
2595 pos = buf;
2596 end = buf + buflen;
2597 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2598 "flags / ssid\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002599 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002600 return pos - buf;
2601 pos += ret;
2602
2603 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2604 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2605 end - pos);
2606 if (ret < 0 || ret >= end - pos)
2607 return pos - buf;
2608 pos += ret;
2609 }
2610
2611 return pos - buf;
2612}
2613
2614
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002615#ifdef CONFIG_MESH
2616
2617static int wpa_supplicant_ctrl_iface_mesh_interface_add(
2618 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
2619{
2620 char *pos, ifname[IFNAMSIZ + 1];
2621
2622 ifname[0] = '\0';
2623
2624 pos = os_strstr(cmd, "ifname=");
2625 if (pos) {
2626 pos += 7;
2627 os_strlcpy(ifname, pos, sizeof(ifname));
2628 }
2629
2630 if (wpas_mesh_add_interface(wpa_s, ifname, sizeof(ifname)) < 0)
2631 return -1;
2632
2633 os_strlcpy(reply, ifname, max_len);
2634 return os_strlen(ifname);
2635}
2636
2637
2638static int wpa_supplicant_ctrl_iface_mesh_group_add(
2639 struct wpa_supplicant *wpa_s, char *cmd)
2640{
2641 int id;
2642 struct wpa_ssid *ssid;
2643
2644 id = atoi(cmd);
2645 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_ADD id=%d", id);
2646
2647 ssid = wpa_config_get_network(wpa_s->conf, id);
2648 if (ssid == NULL) {
2649 wpa_printf(MSG_DEBUG,
2650 "CTRL_IFACE: Could not find network id=%d", id);
2651 return -1;
2652 }
2653 if (ssid->mode != WPAS_MODE_MESH) {
2654 wpa_printf(MSG_DEBUG,
2655 "CTRL_IFACE: Cannot use MESH_GROUP_ADD on a non mesh network");
2656 return -1;
2657 }
2658 if (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
2659 ssid->key_mgmt != WPA_KEY_MGMT_SAE) {
2660 wpa_printf(MSG_ERROR,
2661 "CTRL_IFACE: key_mgmt for mesh network should be open or SAE");
2662 return -1;
2663 }
2664
2665 /*
2666 * TODO: If necessary write our own group_add function,
2667 * for now we can reuse select_network
2668 */
2669 wpa_supplicant_select_network(wpa_s, ssid);
2670
2671 return 0;
2672}
2673
2674
2675static int wpa_supplicant_ctrl_iface_mesh_group_remove(
2676 struct wpa_supplicant *wpa_s, char *cmd)
2677{
2678 struct wpa_supplicant *orig;
2679 struct wpa_global *global;
2680 int found = 0;
2681
2682 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s", cmd);
2683
2684 global = wpa_s->global;
2685 orig = wpa_s;
2686
2687 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2688 if (os_strcmp(wpa_s->ifname, cmd) == 0) {
2689 found = 1;
2690 break;
2691 }
2692 }
2693 if (!found) {
2694 wpa_printf(MSG_ERROR,
2695 "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s not found",
2696 cmd);
2697 return -1;
2698 }
2699 if (wpa_s->mesh_if_created && wpa_s == orig) {
2700 wpa_printf(MSG_ERROR,
2701 "CTRL_IFACE: MESH_GROUP_REMOVE can't remove itself");
2702 return -1;
2703 }
2704
2705 wpa_s->reassociate = 0;
2706 wpa_s->disconnected = 1;
2707 wpa_supplicant_cancel_sched_scan(wpa_s);
2708 wpa_supplicant_cancel_scan(wpa_s);
2709
2710 /*
2711 * TODO: If necessary write our own group_remove function,
2712 * for now we can reuse deauthenticate
2713 */
2714 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2715
2716 if (wpa_s->mesh_if_created)
2717 wpa_supplicant_remove_iface(global, wpa_s, 0);
2718
2719 return 0;
2720}
2721
2722#endif /* CONFIG_MESH */
2723
2724
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002725static int wpa_supplicant_ctrl_iface_select_network(
2726 struct wpa_supplicant *wpa_s, char *cmd)
2727{
2728 int id;
2729 struct wpa_ssid *ssid;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002730 char *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002731
2732 /* cmd: "<network id>" or "any" */
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002733 if (os_strncmp(cmd, "any", 3) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002734 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2735 ssid = NULL;
2736 } else {
2737 id = atoi(cmd);
2738 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2739
2740 ssid = wpa_config_get_network(wpa_s->conf, id);
2741 if (ssid == NULL) {
2742 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2743 "network id=%d", id);
2744 return -1;
2745 }
2746 if (ssid->disabled == 2) {
2747 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2748 "SELECT_NETWORK with persistent P2P group");
2749 return -1;
2750 }
2751 }
2752
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002753 pos = os_strstr(cmd, " freq=");
2754 if (pos) {
2755 int *freqs = freq_range_to_channel_list(wpa_s, pos + 6);
2756 if (freqs) {
2757 wpa_s->scan_req = MANUAL_SCAN_REQ;
2758 os_free(wpa_s->manual_scan_freqs);
2759 wpa_s->manual_scan_freqs = freqs;
2760 }
2761 }
2762
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002763 wpa_s->scan_min_time.sec = 0;
2764 wpa_s->scan_min_time.usec = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002765 wpa_supplicant_select_network(wpa_s, ssid);
2766
2767 return 0;
2768}
2769
2770
2771static int wpa_supplicant_ctrl_iface_enable_network(
2772 struct wpa_supplicant *wpa_s, char *cmd)
2773{
2774 int id;
2775 struct wpa_ssid *ssid;
2776
2777 /* cmd: "<network id>" or "all" */
2778 if (os_strcmp(cmd, "all") == 0) {
2779 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2780 ssid = NULL;
2781 } else {
2782 id = atoi(cmd);
2783 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2784
2785 ssid = wpa_config_get_network(wpa_s->conf, id);
2786 if (ssid == NULL) {
2787 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2788 "network id=%d", id);
2789 return -1;
2790 }
2791 if (ssid->disabled == 2) {
2792 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2793 "ENABLE_NETWORK with persistent P2P group");
2794 return -1;
2795 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002796
2797 if (os_strstr(cmd, " no-connect")) {
2798 ssid->disabled = 0;
2799 return 0;
2800 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002801 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002802 wpa_s->scan_min_time.sec = 0;
2803 wpa_s->scan_min_time.usec = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002804 wpa_supplicant_enable_network(wpa_s, ssid);
2805
2806 return 0;
2807}
2808
2809
2810static int wpa_supplicant_ctrl_iface_disable_network(
2811 struct wpa_supplicant *wpa_s, char *cmd)
2812{
2813 int id;
2814 struct wpa_ssid *ssid;
2815
2816 /* cmd: "<network id>" or "all" */
2817 if (os_strcmp(cmd, "all") == 0) {
2818 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2819 ssid = NULL;
2820 } else {
2821 id = atoi(cmd);
2822 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2823
2824 ssid = wpa_config_get_network(wpa_s->conf, id);
2825 if (ssid == NULL) {
2826 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2827 "network id=%d", id);
2828 return -1;
2829 }
2830 if (ssid->disabled == 2) {
2831 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2832 "DISABLE_NETWORK with persistent P2P "
2833 "group");
2834 return -1;
2835 }
2836 }
2837 wpa_supplicant_disable_network(wpa_s, ssid);
2838
2839 return 0;
2840}
2841
2842
2843static int wpa_supplicant_ctrl_iface_add_network(
2844 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2845{
2846 struct wpa_ssid *ssid;
2847 int ret;
2848
2849 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2850
2851 ssid = wpa_config_add_network(wpa_s->conf);
2852 if (ssid == NULL)
2853 return -1;
2854
2855 wpas_notify_network_added(wpa_s, ssid);
2856
2857 ssid->disabled = 1;
2858 wpa_config_set_network_defaults(ssid);
2859
2860 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002861 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002862 return -1;
2863 return ret;
2864}
2865
2866
2867static int wpa_supplicant_ctrl_iface_remove_network(
2868 struct wpa_supplicant *wpa_s, char *cmd)
2869{
2870 int id;
2871 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002872 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002873
2874 /* cmd: "<network id>" or "all" */
2875 if (os_strcmp(cmd, "all") == 0) {
2876 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002877 if (wpa_s->sched_scanning)
2878 wpa_supplicant_cancel_sched_scan(wpa_s);
2879
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002880 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002881 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002882#ifdef CONFIG_SME
2883 wpa_s->sme.prev_bssid_set = 0;
2884#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002885 wpa_sm_set_config(wpa_s->wpa, NULL);
2886 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002887 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2888 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002889 wpa_supplicant_deauthenticate(
2890 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002891 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002892 ssid = wpa_s->conf->ssid;
2893 while (ssid) {
2894 struct wpa_ssid *remove_ssid = ssid;
2895 id = ssid->id;
2896 ssid = ssid->next;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002897 if (wpa_s->last_ssid == remove_ssid)
2898 wpa_s->last_ssid = NULL;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002899 wpas_notify_network_removed(wpa_s, remove_ssid);
2900 wpa_config_remove_network(wpa_s->conf, id);
2901 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002902 return 0;
2903 }
2904
2905 id = atoi(cmd);
2906 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2907
2908 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002909 if (ssid)
2910 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002911 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002912 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2913 "id=%d", id);
2914 return -1;
2915 }
2916
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002917 if (wpa_s->last_ssid == ssid)
2918 wpa_s->last_ssid = NULL;
2919
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002920 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002921#ifdef CONFIG_SME
2922 wpa_s->sme.prev_bssid_set = 0;
2923#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002924 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002925 * Invalidate the EAP session cache if the current or
2926 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002927 */
2928 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002929 }
2930
2931 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002932 wpa_sm_set_config(wpa_s->wpa, NULL);
2933 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002934
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002935 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2936 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002937 wpa_supplicant_deauthenticate(wpa_s,
2938 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002939 }
2940
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002941 was_disabled = ssid->disabled;
2942
Deepthi Gowria831d782012-09-03 11:55:38 +03002943 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2944 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2945 "network id=%d", id);
2946 return -1;
2947 }
2948
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002949 if (!was_disabled && wpa_s->sched_scanning) {
2950 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2951 "network from filters");
2952 wpa_supplicant_cancel_sched_scan(wpa_s);
2953 wpa_supplicant_req_scan(wpa_s, 0, 0);
2954 }
2955
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002956 return 0;
2957}
2958
2959
Dmitry Shmidt684785c2014-05-12 13:34:29 -07002960static int wpa_supplicant_ctrl_iface_update_network(
2961 struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2962 char *name, char *value)
2963{
2964 if (wpa_config_set(ssid, name, value, 0) < 0) {
2965 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2966 "variable '%s'", name);
2967 return -1;
2968 }
2969
2970 if (os_strcmp(name, "bssid") != 0 &&
2971 os_strcmp(name, "priority") != 0)
2972 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
2973
2974 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
2975 /*
2976 * Invalidate the EAP session cache if anything in the current
2977 * or previously used configuration changes.
2978 */
2979 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2980 }
2981
2982 if ((os_strcmp(name, "psk") == 0 &&
2983 value[0] == '"' && ssid->ssid_len) ||
2984 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2985 wpa_config_update_psk(ssid);
2986 else if (os_strcmp(name, "priority") == 0)
2987 wpa_config_update_prio_list(wpa_s->conf);
2988
2989 return 0;
2990}
2991
2992
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002993static int wpa_supplicant_ctrl_iface_set_network(
2994 struct wpa_supplicant *wpa_s, char *cmd)
2995{
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002996 int id, ret, prev_bssid_set, prev_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002997 struct wpa_ssid *ssid;
2998 char *name, *value;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002999 u8 prev_bssid[ETH_ALEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003000
3001 /* cmd: "<network id> <variable name> <value>" */
3002 name = os_strchr(cmd, ' ');
3003 if (name == NULL)
3004 return -1;
3005 *name++ = '\0';
3006
3007 value = os_strchr(name, ' ');
3008 if (value == NULL)
3009 return -1;
3010 *value++ = '\0';
3011
3012 id = atoi(cmd);
3013 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
3014 id, name);
3015 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3016 (u8 *) value, os_strlen(value));
3017
3018 ssid = wpa_config_get_network(wpa_s->conf, id);
3019 if (ssid == NULL) {
3020 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
3021 "id=%d", id);
3022 return -1;
3023 }
3024
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003025 prev_bssid_set = ssid->bssid_set;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003026 prev_disabled = ssid->disabled;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003027 os_memcpy(prev_bssid, ssid->bssid, ETH_ALEN);
3028 ret = wpa_supplicant_ctrl_iface_update_network(wpa_s, ssid, name,
3029 value);
3030 if (ret == 0 &&
3031 (ssid->bssid_set != prev_bssid_set ||
3032 os_memcmp(ssid->bssid, prev_bssid, ETH_ALEN) != 0))
3033 wpas_notify_network_bssid_set_changed(wpa_s, ssid);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003034
3035 if (prev_disabled != ssid->disabled &&
3036 (prev_disabled == 2 || ssid->disabled == 2))
3037 wpas_notify_network_type_changed(wpa_s, ssid);
3038
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003039 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003040}
3041
3042
3043static int wpa_supplicant_ctrl_iface_get_network(
3044 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
3045{
3046 int id;
3047 size_t res;
3048 struct wpa_ssid *ssid;
3049 char *name, *value;
3050
3051 /* cmd: "<network id> <variable name>" */
3052 name = os_strchr(cmd, ' ');
3053 if (name == NULL || buflen == 0)
3054 return -1;
3055 *name++ = '\0';
3056
3057 id = atoi(cmd);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003058 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003059 id, name);
3060
3061 ssid = wpa_config_get_network(wpa_s->conf, id);
3062 if (ssid == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003063 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Could not find network "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003064 "id=%d", id);
3065 return -1;
3066 }
3067
3068 value = wpa_config_get_no_key(ssid, name);
3069 if (value == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003070 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Failed to get network "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003071 "variable '%s'", name);
3072 return -1;
3073 }
3074
3075 res = os_strlcpy(buf, value, buflen);
3076 if (res >= buflen) {
3077 os_free(value);
3078 return -1;
3079 }
3080
3081 os_free(value);
3082
3083 return res;
3084}
3085
3086
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003087static int wpa_supplicant_ctrl_iface_dup_network(
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003088 struct wpa_supplicant *wpa_s, char *cmd,
3089 struct wpa_supplicant *dst_wpa_s)
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003090{
3091 struct wpa_ssid *ssid_s, *ssid_d;
3092 char *name, *id, *value;
3093 int id_s, id_d, ret;
3094
3095 /* cmd: "<src network id> <dst network id> <variable name>" */
3096 id = os_strchr(cmd, ' ');
3097 if (id == NULL)
3098 return -1;
3099 *id++ = '\0';
3100
3101 name = os_strchr(id, ' ');
3102 if (name == NULL)
3103 return -1;
3104 *name++ = '\0';
3105
3106 id_s = atoi(cmd);
3107 id_d = atoi(id);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003108
3109 wpa_printf(MSG_DEBUG,
3110 "CTRL_IFACE: DUP_NETWORK ifname=%s->%s id=%d->%d name='%s'",
3111 wpa_s->ifname, dst_wpa_s->ifname, id_s, id_d, name);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003112
3113 ssid_s = wpa_config_get_network(wpa_s->conf, id_s);
3114 if (ssid_s == NULL) {
3115 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3116 "network id=%d", id_s);
3117 return -1;
3118 }
3119
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003120 ssid_d = wpa_config_get_network(dst_wpa_s->conf, id_d);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003121 if (ssid_d == NULL) {
3122 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003123 "network id=%d", id_d);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003124 return -1;
3125 }
3126
3127 value = wpa_config_get(ssid_s, name);
3128 if (value == NULL) {
3129 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
3130 "variable '%s'", name);
3131 return -1;
3132 }
3133
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003134 ret = wpa_supplicant_ctrl_iface_update_network(dst_wpa_s, ssid_d, name,
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003135 value);
3136
3137 os_free(value);
3138
3139 return ret;
3140}
3141
3142
Dmitry Shmidt04949592012-07-19 12:16:46 -07003143static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
3144 char *buf, size_t buflen)
3145{
3146 char *pos, *end;
3147 struct wpa_cred *cred;
3148 int ret;
3149
3150 pos = buf;
3151 end = buf + buflen;
3152 ret = os_snprintf(pos, end - pos,
3153 "cred id / realm / username / domain / imsi\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003154 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003155 return pos - buf;
3156 pos += ret;
3157
3158 cred = wpa_s->conf->cred;
3159 while (cred) {
3160 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
3161 cred->id, cred->realm ? cred->realm : "",
3162 cred->username ? cred->username : "",
Dmitry Shmidt051af732013-10-22 13:52:46 -07003163 cred->domain ? cred->domain[0] : "",
Dmitry Shmidt04949592012-07-19 12:16:46 -07003164 cred->imsi ? cred->imsi : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003165 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003166 return pos - buf;
3167 pos += ret;
3168
3169 cred = cred->next;
3170 }
3171
3172 return pos - buf;
3173}
3174
3175
3176static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
3177 char *buf, size_t buflen)
3178{
3179 struct wpa_cred *cred;
3180 int ret;
3181
3182 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
3183
3184 cred = wpa_config_add_cred(wpa_s->conf);
3185 if (cred == NULL)
3186 return -1;
3187
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003188 wpa_msg(wpa_s, MSG_INFO, CRED_ADDED "%d", cred->id);
3189
Dmitry Shmidt04949592012-07-19 12:16:46 -07003190 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003191 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003192 return -1;
3193 return ret;
3194}
3195
3196
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003197static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
3198 struct wpa_cred *cred)
3199{
3200 struct wpa_ssid *ssid;
3201 char str[20];
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003202 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003203
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003204 if (cred == NULL) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003205 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3206 return -1;
3207 }
3208
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003209 id = cred->id;
3210 if (wpa_config_remove_cred(wpa_s->conf, id) < 0) {
3211 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3212 return -1;
3213 }
3214
3215 wpa_msg(wpa_s, MSG_INFO, CRED_REMOVED "%d", id);
3216
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003217 /* Remove any network entry created based on the removed credential */
3218 ssid = wpa_s->conf->ssid;
3219 while (ssid) {
3220 if (ssid->parent_cred == cred) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003221 int res;
3222
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003223 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
3224 "used the removed credential", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003225 res = os_snprintf(str, sizeof(str), "%d", ssid->id);
3226 if (os_snprintf_error(sizeof(str), res))
3227 str[sizeof(str) - 1] = '\0';
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003228 ssid = ssid->next;
3229 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
3230 } else
3231 ssid = ssid->next;
3232 }
3233
3234 return 0;
3235}
3236
3237
Dmitry Shmidt04949592012-07-19 12:16:46 -07003238static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
3239 char *cmd)
3240{
3241 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003242 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003243
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003244 /* cmd: "<cred id>", "all", "sp_fqdn=<FQDN>", or
3245 * "provisioning_sp=<FQDN> */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003246 if (os_strcmp(cmd, "all") == 0) {
3247 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
3248 cred = wpa_s->conf->cred;
3249 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003250 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003251 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003252 wpas_ctrl_remove_cred(wpa_s, prev);
3253 }
3254 return 0;
3255 }
3256
3257 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
3258 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
3259 cmd + 8);
3260 cred = wpa_s->conf->cred;
3261 while (cred) {
3262 prev = cred;
3263 cred = cred->next;
Dmitry Shmidt051af732013-10-22 13:52:46 -07003264 if (prev->domain) {
3265 size_t i;
3266 for (i = 0; i < prev->num_domain; i++) {
3267 if (os_strcmp(prev->domain[i], cmd + 8)
3268 != 0)
3269 continue;
3270 wpas_ctrl_remove_cred(wpa_s, prev);
3271 break;
3272 }
3273 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003274 }
3275 return 0;
3276 }
3277
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003278 if (os_strncmp(cmd, "provisioning_sp=", 16) == 0) {
3279 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED provisioning SP FQDN '%s'",
3280 cmd + 16);
3281 cred = wpa_s->conf->cred;
3282 while (cred) {
3283 prev = cred;
3284 cred = cred->next;
3285 if (prev->provisioning_sp &&
3286 os_strcmp(prev->provisioning_sp, cmd + 16) == 0)
3287 wpas_ctrl_remove_cred(wpa_s, prev);
3288 }
3289 return 0;
3290 }
3291
Dmitry Shmidt04949592012-07-19 12:16:46 -07003292 id = atoi(cmd);
3293 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
3294
3295 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003296 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003297}
3298
3299
3300static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
3301 char *cmd)
3302{
3303 int id;
3304 struct wpa_cred *cred;
3305 char *name, *value;
3306
3307 /* cmd: "<cred id> <variable name> <value>" */
3308 name = os_strchr(cmd, ' ');
3309 if (name == NULL)
3310 return -1;
3311 *name++ = '\0';
3312
3313 value = os_strchr(name, ' ');
3314 if (value == NULL)
3315 return -1;
3316 *value++ = '\0';
3317
3318 id = atoi(cmd);
3319 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
3320 id, name);
3321 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3322 (u8 *) value, os_strlen(value));
3323
3324 cred = wpa_config_get_cred(wpa_s->conf, id);
3325 if (cred == NULL) {
3326 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3327 id);
3328 return -1;
3329 }
3330
3331 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
3332 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
3333 "variable '%s'", name);
3334 return -1;
3335 }
3336
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003337 wpa_msg(wpa_s, MSG_INFO, CRED_MODIFIED "%d %s", cred->id, name);
3338
Dmitry Shmidt04949592012-07-19 12:16:46 -07003339 return 0;
3340}
3341
3342
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003343static int wpa_supplicant_ctrl_iface_get_cred(struct wpa_supplicant *wpa_s,
3344 char *cmd, char *buf,
3345 size_t buflen)
3346{
3347 int id;
3348 size_t res;
3349 struct wpa_cred *cred;
3350 char *name, *value;
3351
3352 /* cmd: "<cred id> <variable name>" */
3353 name = os_strchr(cmd, ' ');
3354 if (name == NULL)
3355 return -1;
3356 *name++ = '\0';
3357
3358 id = atoi(cmd);
3359 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CRED id=%d name='%s'",
3360 id, name);
3361
3362 cred = wpa_config_get_cred(wpa_s->conf, id);
3363 if (cred == NULL) {
3364 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3365 id);
3366 return -1;
3367 }
3368
3369 value = wpa_config_get_cred_no_key(cred, name);
3370 if (value == NULL) {
3371 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get cred variable '%s'",
3372 name);
3373 return -1;
3374 }
3375
3376 res = os_strlcpy(buf, value, buflen);
3377 if (res >= buflen) {
3378 os_free(value);
3379 return -1;
3380 }
3381
3382 os_free(value);
3383
3384 return res;
3385}
3386
3387
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003388#ifndef CONFIG_NO_CONFIG_WRITE
3389static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
3390{
3391 int ret;
3392
3393 if (!wpa_s->conf->update_config) {
3394 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
3395 "to update configuration (update_config=0)");
3396 return -1;
3397 }
3398
3399 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
3400 if (ret) {
3401 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
3402 "update configuration");
3403 } else {
3404 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
3405 " updated");
3406 }
3407
3408 return ret;
3409}
3410#endif /* CONFIG_NO_CONFIG_WRITE */
3411
3412
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003413struct cipher_info {
3414 unsigned int capa;
3415 const char *name;
3416 int group_only;
3417};
3418
3419static const struct cipher_info ciphers[] = {
3420 { WPA_DRIVER_CAPA_ENC_CCMP_256, "CCMP-256", 0 },
3421 { WPA_DRIVER_CAPA_ENC_GCMP_256, "GCMP-256", 0 },
3422 { WPA_DRIVER_CAPA_ENC_CCMP, "CCMP", 0 },
3423 { WPA_DRIVER_CAPA_ENC_GCMP, "GCMP", 0 },
3424 { WPA_DRIVER_CAPA_ENC_TKIP, "TKIP", 0 },
3425 { WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE, "NONE", 0 },
3426 { WPA_DRIVER_CAPA_ENC_WEP104, "WEP104", 1 },
3427 { WPA_DRIVER_CAPA_ENC_WEP40, "WEP40", 1 }
3428};
3429
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003430static const struct cipher_info ciphers_group_mgmt[] = {
3431 { WPA_DRIVER_CAPA_ENC_BIP, "AES-128-CMAC", 1 },
3432 { WPA_DRIVER_CAPA_ENC_BIP_GMAC_128, "BIP-GMAC-128", 1 },
3433 { WPA_DRIVER_CAPA_ENC_BIP_GMAC_256, "BIP-GMAC-256", 1 },
3434 { WPA_DRIVER_CAPA_ENC_BIP_CMAC_256, "BIP-CMAC-256", 1 },
3435};
3436
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003437
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003438static int ctrl_iface_get_capability_pairwise(int res, char *strict,
3439 struct wpa_driver_capa *capa,
3440 char *buf, size_t buflen)
3441{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003442 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003443 char *pos, *end;
3444 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003445 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003446
3447 pos = buf;
3448 end = pos + buflen;
3449
3450 if (res < 0) {
3451 if (strict)
3452 return 0;
3453 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
3454 if (len >= buflen)
3455 return -1;
3456 return len;
3457 }
3458
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003459 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3460 if (!ciphers[i].group_only && capa->enc & ciphers[i].capa) {
3461 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003462 pos == buf ? "" : " ",
3463 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003464 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003465 return pos - buf;
3466 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003467 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003468 }
3469
3470 return pos - buf;
3471}
3472
3473
3474static int ctrl_iface_get_capability_group(int res, char *strict,
3475 struct wpa_driver_capa *capa,
3476 char *buf, size_t buflen)
3477{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003478 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003479 char *pos, *end;
3480 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003481 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003482
3483 pos = buf;
3484 end = pos + buflen;
3485
3486 if (res < 0) {
3487 if (strict)
3488 return 0;
3489 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
3490 if (len >= buflen)
3491 return -1;
3492 return len;
3493 }
3494
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003495 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3496 if (capa->enc & ciphers[i].capa) {
3497 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003498 pos == buf ? "" : " ",
3499 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003500 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003501 return pos - buf;
3502 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003503 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003504 }
3505
3506 return pos - buf;
3507}
3508
3509
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003510static int ctrl_iface_get_capability_group_mgmt(int res, char *strict,
3511 struct wpa_driver_capa *capa,
3512 char *buf, size_t buflen)
3513{
3514 int ret;
3515 char *pos, *end;
3516 unsigned int i;
3517
3518 pos = buf;
3519 end = pos + buflen;
3520
3521 if (res < 0)
3522 return 0;
3523
3524 for (i = 0; i < ARRAY_SIZE(ciphers_group_mgmt); i++) {
3525 if (capa->enc & ciphers_group_mgmt[i].capa) {
3526 ret = os_snprintf(pos, end - pos, "%s%s",
3527 pos == buf ? "" : " ",
3528 ciphers_group_mgmt[i].name);
3529 if (os_snprintf_error(end - pos, ret))
3530 return pos - buf;
3531 pos += ret;
3532 }
3533 }
3534
3535 return pos - buf;
3536}
3537
3538
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003539static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
3540 struct wpa_driver_capa *capa,
3541 char *buf, size_t buflen)
3542{
3543 int ret;
3544 char *pos, *end;
3545 size_t len;
3546
3547 pos = buf;
3548 end = pos + buflen;
3549
3550 if (res < 0) {
3551 if (strict)
3552 return 0;
3553 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
3554 "NONE", buflen);
3555 if (len >= buflen)
3556 return -1;
3557 return len;
3558 }
3559
3560 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003561 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003562 return pos - buf;
3563 pos += ret;
3564
3565 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3566 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
3567 ret = os_snprintf(pos, end - pos, " WPA-EAP");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003568 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003569 return pos - buf;
3570 pos += ret;
3571 }
3572
3573 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
3574 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
3575 ret = os_snprintf(pos, end - pos, " WPA-PSK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003576 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003577 return pos - buf;
3578 pos += ret;
3579 }
3580
3581 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
3582 ret = os_snprintf(pos, end - pos, " WPA-NONE");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003583 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003584 return pos - buf;
3585 pos += ret;
3586 }
3587
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003588#ifdef CONFIG_SUITEB
3589 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B) {
3590 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B");
3591 if (os_snprintf_error(end - pos, ret))
3592 return pos - buf;
3593 pos += ret;
3594 }
3595#endif /* CONFIG_SUITEB */
3596#ifdef CONFIG_SUITEB192
3597 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192) {
3598 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B-192");
3599 if (os_snprintf_error(end - pos, ret))
3600 return pos - buf;
3601 pos += ret;
3602 }
3603#endif /* CONFIG_SUITEB192 */
3604
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003605 return pos - buf;
3606}
3607
3608
3609static int ctrl_iface_get_capability_proto(int res, char *strict,
3610 struct wpa_driver_capa *capa,
3611 char *buf, size_t buflen)
3612{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003613 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003614 char *pos, *end;
3615 size_t len;
3616
3617 pos = buf;
3618 end = pos + buflen;
3619
3620 if (res < 0) {
3621 if (strict)
3622 return 0;
3623 len = os_strlcpy(buf, "RSN WPA", buflen);
3624 if (len >= buflen)
3625 return -1;
3626 return len;
3627 }
3628
3629 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3630 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003631 ret = os_snprintf(pos, end - pos, "%sRSN",
3632 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003633 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003634 return pos - buf;
3635 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003636 }
3637
3638 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3639 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003640 ret = os_snprintf(pos, end - pos, "%sWPA",
3641 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003642 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003643 return pos - buf;
3644 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003645 }
3646
3647 return pos - buf;
3648}
3649
3650
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003651static int ctrl_iface_get_capability_auth_alg(struct wpa_supplicant *wpa_s,
3652 int res, char *strict,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003653 struct wpa_driver_capa *capa,
3654 char *buf, size_t buflen)
3655{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003656 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003657 char *pos, *end;
3658 size_t len;
3659
3660 pos = buf;
3661 end = pos + buflen;
3662
3663 if (res < 0) {
3664 if (strict)
3665 return 0;
3666 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
3667 if (len >= buflen)
3668 return -1;
3669 return len;
3670 }
3671
3672 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003673 ret = os_snprintf(pos, end - pos, "%sOPEN",
3674 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003675 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003676 return pos - buf;
3677 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003678 }
3679
3680 if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
3681 ret = os_snprintf(pos, end - pos, "%sSHARED",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003682 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003683 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003684 return pos - buf;
3685 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003686 }
3687
3688 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003689 ret = os_snprintf(pos, end - pos, "%sLEAP",
3690 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003691 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003692 return pos - buf;
3693 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003694 }
3695
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003696#ifdef CONFIG_SAE
3697 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE) {
3698 ret = os_snprintf(pos, end - pos, "%sSAE",
3699 pos == buf ? "" : " ");
3700 if (os_snprintf_error(end - pos, ret))
3701 return pos - buf;
3702 pos += ret;
3703 }
3704#endif /* CONFIG_SAE */
3705
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003706 return pos - buf;
3707}
3708
3709
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003710static int ctrl_iface_get_capability_modes(int res, char *strict,
3711 struct wpa_driver_capa *capa,
3712 char *buf, size_t buflen)
3713{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003714 int ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003715 char *pos, *end;
3716 size_t len;
3717
3718 pos = buf;
3719 end = pos + buflen;
3720
3721 if (res < 0) {
3722 if (strict)
3723 return 0;
3724 len = os_strlcpy(buf, "IBSS AP", buflen);
3725 if (len >= buflen)
3726 return -1;
3727 return len;
3728 }
3729
3730 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003731 ret = os_snprintf(pos, end - pos, "%sIBSS",
3732 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003733 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003734 return pos - buf;
3735 pos += ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003736 }
3737
3738 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003739 ret = os_snprintf(pos, end - pos, "%sAP",
3740 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003741 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003742 return pos - buf;
3743 pos += ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003744 }
3745
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003746#ifdef CONFIG_MESH
3747 if (capa->flags & WPA_DRIVER_FLAGS_MESH) {
3748 ret = os_snprintf(pos, end - pos, "%sMESH",
3749 pos == buf ? "" : " ");
3750 if (os_snprintf_error(end - pos, ret))
3751 return pos - buf;
3752 pos += ret;
3753 }
3754#endif /* CONFIG_MESH */
3755
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003756 return pos - buf;
3757}
3758
3759
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003760static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
3761 char *buf, size_t buflen)
3762{
3763 struct hostapd_channel_data *chnl;
3764 int ret, i, j;
3765 char *pos, *end, *hmode;
3766
3767 pos = buf;
3768 end = pos + buflen;
3769
3770 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3771 switch (wpa_s->hw.modes[j].mode) {
3772 case HOSTAPD_MODE_IEEE80211B:
3773 hmode = "B";
3774 break;
3775 case HOSTAPD_MODE_IEEE80211G:
3776 hmode = "G";
3777 break;
3778 case HOSTAPD_MODE_IEEE80211A:
3779 hmode = "A";
3780 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003781 case HOSTAPD_MODE_IEEE80211AD:
3782 hmode = "AD";
3783 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003784 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003785 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003786 }
3787 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003788 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003789 return pos - buf;
3790 pos += ret;
3791 chnl = wpa_s->hw.modes[j].channels;
3792 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003793 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3794 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003795 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003796 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003797 return pos - buf;
3798 pos += ret;
3799 }
3800 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003801 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003802 return pos - buf;
3803 pos += ret;
3804 }
3805
3806 return pos - buf;
3807}
3808
3809
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003810static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
3811 char *buf, size_t buflen)
3812{
3813 struct hostapd_channel_data *chnl;
3814 int ret, i, j;
3815 char *pos, *end, *hmode;
3816
3817 pos = buf;
3818 end = pos + buflen;
3819
3820 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3821 switch (wpa_s->hw.modes[j].mode) {
3822 case HOSTAPD_MODE_IEEE80211B:
3823 hmode = "B";
3824 break;
3825 case HOSTAPD_MODE_IEEE80211G:
3826 hmode = "G";
3827 break;
3828 case HOSTAPD_MODE_IEEE80211A:
3829 hmode = "A";
3830 break;
3831 case HOSTAPD_MODE_IEEE80211AD:
3832 hmode = "AD";
3833 break;
3834 default:
3835 continue;
3836 }
3837 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3838 hmode);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003839 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003840 return pos - buf;
3841 pos += ret;
3842 chnl = wpa_s->hw.modes[j].channels;
3843 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3844 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3845 continue;
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003846 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s%s\n",
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003847 chnl[i].chan, chnl[i].freq,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003848 chnl[i].flag & HOSTAPD_CHAN_NO_IR ?
3849 " (NO_IR)" : "",
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003850 chnl[i].flag & HOSTAPD_CHAN_RADAR ?
3851 " (DFS)" : "");
3852
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003853 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003854 return pos - buf;
3855 pos += ret;
3856 }
3857 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003858 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003859 return pos - buf;
3860 pos += ret;
3861 }
3862
3863 return pos - buf;
3864}
3865
3866
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003867static int wpa_supplicant_ctrl_iface_get_capability(
3868 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3869 size_t buflen)
3870{
3871 struct wpa_driver_capa capa;
3872 int res;
3873 char *strict;
3874 char field[30];
3875 size_t len;
3876
3877 /* Determine whether or not strict checking was requested */
3878 len = os_strlcpy(field, _field, sizeof(field));
3879 if (len >= sizeof(field))
3880 return -1;
3881 strict = os_strchr(field, ' ');
3882 if (strict != NULL) {
3883 *strict++ = '\0';
3884 if (os_strcmp(strict, "strict") != 0)
3885 return -1;
3886 }
3887
3888 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3889 field, strict ? strict : "");
3890
3891 if (os_strcmp(field, "eap") == 0) {
3892 return eap_get_names(buf, buflen);
3893 }
3894
3895 res = wpa_drv_get_capa(wpa_s, &capa);
3896
3897 if (os_strcmp(field, "pairwise") == 0)
3898 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3899 buf, buflen);
3900
3901 if (os_strcmp(field, "group") == 0)
3902 return ctrl_iface_get_capability_group(res, strict, &capa,
3903 buf, buflen);
3904
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003905 if (os_strcmp(field, "group_mgmt") == 0)
3906 return ctrl_iface_get_capability_group_mgmt(res, strict, &capa,
3907 buf, buflen);
3908
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003909 if (os_strcmp(field, "key_mgmt") == 0)
3910 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3911 buf, buflen);
3912
3913 if (os_strcmp(field, "proto") == 0)
3914 return ctrl_iface_get_capability_proto(res, strict, &capa,
3915 buf, buflen);
3916
3917 if (os_strcmp(field, "auth_alg") == 0)
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003918 return ctrl_iface_get_capability_auth_alg(wpa_s, res, strict,
3919 &capa, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003920
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003921 if (os_strcmp(field, "modes") == 0)
3922 return ctrl_iface_get_capability_modes(res, strict, &capa,
3923 buf, buflen);
3924
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003925 if (os_strcmp(field, "channels") == 0)
3926 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3927
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003928 if (os_strcmp(field, "freq") == 0)
3929 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3930
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07003931#ifdef CONFIG_TDLS
3932 if (os_strcmp(field, "tdls") == 0)
3933 return ctrl_iface_get_capability_tdls(wpa_s, buf, buflen);
3934#endif /* CONFIG_TDLS */
3935
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003936#ifdef CONFIG_ERP
3937 if (os_strcmp(field, "erp") == 0) {
3938 res = os_snprintf(buf, buflen, "ERP");
3939 if (os_snprintf_error(buflen, res))
3940 return -1;
3941 return res;
3942 }
3943#endif /* CONFIG_EPR */
3944
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003945#ifdef CONFIG_FIPS
3946 if (os_strcmp(field, "fips") == 0) {
3947 res = os_snprintf(buf, buflen, "FIPS");
3948 if (os_snprintf_error(buflen, res))
3949 return -1;
3950 return res;
3951 }
3952#endif /* CONFIG_FIPS */
3953
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -08003954#ifdef CONFIG_ACS
3955 if (os_strcmp(field, "acs") == 0) {
3956 res = os_snprintf(buf, buflen, "ACS");
3957 if (os_snprintf_error(buflen, res))
3958 return -1;
3959 return res;
3960 }
3961#endif /* CONFIG_ACS */
3962
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003963 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3964 field);
3965
3966 return -1;
3967}
3968
3969
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003970#ifdef CONFIG_INTERWORKING
3971static char * anqp_add_hex(char *pos, char *end, const char *title,
3972 struct wpabuf *data)
3973{
3974 char *start = pos;
3975 size_t i;
3976 int ret;
3977 const u8 *d;
3978
3979 if (data == NULL)
3980 return start;
3981
3982 ret = os_snprintf(pos, end - pos, "%s=", title);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003983 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003984 return start;
3985 pos += ret;
3986
3987 d = wpabuf_head_u8(data);
3988 for (i = 0; i < wpabuf_len(data); i++) {
3989 ret = os_snprintf(pos, end - pos, "%02x", *d++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003990 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003991 return start;
3992 pos += ret;
3993 }
3994
3995 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003996 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003997 return start;
3998 pos += ret;
3999
4000 return pos;
4001}
4002#endif /* CONFIG_INTERWORKING */
4003
4004
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004005static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
4006 unsigned long mask, char *buf, size_t buflen)
4007{
4008 size_t i;
4009 int ret;
4010 char *pos, *end;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004011 const u8 *ie, *ie2, *osen_ie;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004012
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004013 pos = buf;
4014 end = buf + buflen;
4015
4016 if (mask & WPA_BSS_MASK_ID) {
4017 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004018 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004019 return 0;
4020 pos += ret;
4021 }
4022
4023 if (mask & WPA_BSS_MASK_BSSID) {
4024 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
4025 MAC2STR(bss->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004026 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004027 return 0;
4028 pos += ret;
4029 }
4030
4031 if (mask & WPA_BSS_MASK_FREQ) {
4032 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004033 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004034 return 0;
4035 pos += ret;
4036 }
4037
4038 if (mask & WPA_BSS_MASK_BEACON_INT) {
4039 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
4040 bss->beacon_int);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004041 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004042 return 0;
4043 pos += ret;
4044 }
4045
4046 if (mask & WPA_BSS_MASK_CAPABILITIES) {
4047 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
4048 bss->caps);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004049 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004050 return 0;
4051 pos += ret;
4052 }
4053
4054 if (mask & WPA_BSS_MASK_QUAL) {
4055 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004056 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004057 return 0;
4058 pos += ret;
4059 }
4060
4061 if (mask & WPA_BSS_MASK_NOISE) {
4062 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004063 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004064 return 0;
4065 pos += ret;
4066 }
4067
4068 if (mask & WPA_BSS_MASK_LEVEL) {
4069 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004070 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004071 return 0;
4072 pos += ret;
4073 }
4074
4075 if (mask & WPA_BSS_MASK_TSF) {
4076 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
4077 (unsigned long long) bss->tsf);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004078 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004079 return 0;
4080 pos += ret;
4081 }
4082
4083 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004084 struct os_reltime now;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004085
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004086 os_get_reltime(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004087 ret = os_snprintf(pos, end - pos, "age=%d\n",
4088 (int) (now.sec - bss->last_update.sec));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004089 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004090 return 0;
4091 pos += ret;
4092 }
4093
4094 if (mask & WPA_BSS_MASK_IE) {
4095 ret = os_snprintf(pos, end - pos, "ie=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004096 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004097 return 0;
4098 pos += ret;
4099
4100 ie = (const u8 *) (bss + 1);
4101 for (i = 0; i < bss->ie_len; i++) {
4102 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004103 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004104 return 0;
4105 pos += ret;
4106 }
4107
4108 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004109 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004110 return 0;
4111 pos += ret;
4112 }
4113
4114 if (mask & WPA_BSS_MASK_FLAGS) {
4115 ret = os_snprintf(pos, end - pos, "flags=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004116 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004117 return 0;
4118 pos += ret;
4119
4120 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
4121 if (ie)
4122 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
4123 2 + ie[1]);
4124 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
4125 if (ie2)
4126 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
4127 2 + ie2[1]);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004128 osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
4129 if (osen_ie)
4130 pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
4131 osen_ie, 2 + osen_ie[1]);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004132 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004133 if (!ie && !ie2 && !osen_ie &&
4134 (bss->caps & IEEE80211_CAP_PRIVACY)) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004135 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004136 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004137 return 0;
4138 pos += ret;
4139 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004140 if (bss_is_dmg(bss)) {
4141 const char *s;
4142 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004143 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004144 return 0;
4145 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004146 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
4147 case IEEE80211_CAP_DMG_IBSS:
4148 s = "[IBSS]";
4149 break;
4150 case IEEE80211_CAP_DMG_AP:
4151 s = "[ESS]";
4152 break;
4153 case IEEE80211_CAP_DMG_PBSS:
4154 s = "[PBSS]";
4155 break;
4156 default:
4157 s = "";
4158 break;
4159 }
4160 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004161 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004162 return 0;
4163 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004164 } else {
4165 if (bss->caps & IEEE80211_CAP_IBSS) {
4166 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004167 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004168 return 0;
4169 pos += ret;
4170 }
4171 if (bss->caps & IEEE80211_CAP_ESS) {
4172 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004173 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004174 return 0;
4175 pos += ret;
4176 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004177 }
Dmitry Shmidt96571392013-10-14 12:54:46 -07004178 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
4179 wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004180 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004181 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004182 return 0;
4183 pos += ret;
4184 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004185#ifdef CONFIG_HS20
4186 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
4187 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004188 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004189 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004190 pos += ret;
4191 }
4192#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004193
4194 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004195 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004196 return 0;
4197 pos += ret;
4198 }
4199
4200 if (mask & WPA_BSS_MASK_SSID) {
4201 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
4202 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004203 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004204 return 0;
4205 pos += ret;
4206 }
4207
4208#ifdef CONFIG_WPS
4209 if (mask & WPA_BSS_MASK_WPS_SCAN) {
4210 ie = (const u8 *) (bss + 1);
4211 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004212 if (ret >= end - pos)
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004213 return 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004214 if (ret > 0)
4215 pos += ret;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004216 }
4217#endif /* CONFIG_WPS */
4218
4219#ifdef CONFIG_P2P
4220 if (mask & WPA_BSS_MASK_P2P_SCAN) {
4221 ie = (const u8 *) (bss + 1);
4222 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
4223 if (ret < 0 || ret >= end - pos)
4224 return 0;
4225 pos += ret;
4226 }
4227#endif /* CONFIG_P2P */
4228
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004229#ifdef CONFIG_WIFI_DISPLAY
4230 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
4231 struct wpabuf *wfd;
4232 ie = (const u8 *) (bss + 1);
4233 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
4234 WFD_IE_VENDOR_TYPE);
4235 if (wfd) {
4236 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004237 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004238 wpabuf_free(wfd);
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004239 return 0;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004240 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004241 pos += ret;
4242
4243 pos += wpa_snprintf_hex(pos, end - pos,
4244 wpabuf_head(wfd),
4245 wpabuf_len(wfd));
4246 wpabuf_free(wfd);
4247
4248 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004249 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004250 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004251 pos += ret;
4252 }
4253 }
4254#endif /* CONFIG_WIFI_DISPLAY */
4255
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004256#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004257 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
4258 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004259 struct wpa_bss_anqp_elem *elem;
4260
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004261 pos = anqp_add_hex(pos, end, "anqp_capability_list",
4262 anqp->capability_list);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004263 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004264 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004265 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004266 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004267 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004268 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004269 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004270 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004271 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004272 anqp->nai_realm);
4273 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004274 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004275 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004276#ifdef CONFIG_HS20
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004277 pos = anqp_add_hex(pos, end, "hs20_capability_list",
4278 anqp->hs20_capability_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004279 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004280 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004281 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004282 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004283 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004284 anqp->hs20_connection_capability);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08004285 pos = anqp_add_hex(pos, end, "hs20_operating_class",
4286 anqp->hs20_operating_class);
4287 pos = anqp_add_hex(pos, end, "hs20_osu_providers_list",
4288 anqp->hs20_osu_providers_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004289#endif /* CONFIG_HS20 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004290
4291 dl_list_for_each(elem, &anqp->anqp_elems,
4292 struct wpa_bss_anqp_elem, list) {
4293 char title[20];
4294
4295 os_snprintf(title, sizeof(title), "anqp[%u]",
4296 elem->infoid);
4297 pos = anqp_add_hex(pos, end, title, elem->payload);
4298 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004299 }
4300#endif /* CONFIG_INTERWORKING */
4301
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004302#ifdef CONFIG_MESH
4303 if (mask & WPA_BSS_MASK_MESH_SCAN) {
4304 ie = (const u8 *) (bss + 1);
4305 ret = wpas_mesh_scan_result_text(ie, bss->ie_len, pos, end);
4306 if (ret < 0 || ret >= end - pos)
4307 return 0;
4308 pos += ret;
4309 }
4310#endif /* CONFIG_MESH */
4311
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004312 if (mask & WPA_BSS_MASK_SNR) {
4313 ret = os_snprintf(pos, end - pos, "snr=%d\n", bss->snr);
4314 if (os_snprintf_error(end - pos, ret))
4315 return 0;
4316 pos += ret;
4317 }
4318
4319 if (mask & WPA_BSS_MASK_EST_THROUGHPUT) {
4320 ret = os_snprintf(pos, end - pos, "est_throughput=%d\n",
4321 bss->est_throughput);
4322 if (os_snprintf_error(end - pos, ret))
4323 return 0;
4324 pos += ret;
4325 }
4326
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004327#ifdef CONFIG_FST
4328 if (mask & WPA_BSS_MASK_FST) {
4329 ret = fst_ctrl_iface_mb_info(bss->bssid, pos, end - pos);
4330 if (ret < 0 || ret >= end - pos)
4331 return 0;
4332 pos += ret;
4333 }
4334#endif /* CONFIG_FST */
4335
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004336 if (mask & WPA_BSS_MASK_DELIM) {
4337 ret = os_snprintf(pos, end - pos, "====\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004338 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004339 return 0;
4340 pos += ret;
4341 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07004342
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004343 return pos - buf;
4344}
4345
Dmitry Shmidt04949592012-07-19 12:16:46 -07004346
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004347static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
4348 const char *cmd, char *buf,
4349 size_t buflen)
4350{
4351 u8 bssid[ETH_ALEN];
4352 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004353 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004354 struct wpa_bss *bsslast = NULL;
4355 struct dl_list *next;
4356 int ret = 0;
4357 int len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004358 char *ctmp, *end = buf + buflen;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004359 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004360
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004361 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
4362 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
4363 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004364 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004365 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
4366 list_id);
4367 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004368 unsigned int id1, id2;
4369
4370 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
4371 wpa_printf(MSG_INFO, "Wrong BSS range "
4372 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004373 return 0;
4374 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004375
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004376 if (*(cmd + 6) == '-')
4377 id1 = 0;
4378 else
4379 id1 = atoi(cmd + 6);
4380 ctmp++;
4381 if (*ctmp >= '0' && *ctmp <= '9')
4382 id2 = atoi(ctmp);
4383 else
4384 id2 = (unsigned int) -1;
4385 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
4386 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004387 bsslast = dl_list_last(&wpa_s->bss_id,
4388 struct wpa_bss,
4389 list_id);
4390 else {
4391 bsslast = wpa_bss_get_id(wpa_s, id2);
4392 if (bsslast == NULL && bss && id2 > id1) {
4393 struct wpa_bss *tmp = bss;
4394 for (;;) {
4395 next = tmp->list_id.next;
4396 if (next == &wpa_s->bss_id)
4397 break;
4398 tmp = dl_list_entry(
4399 next, struct wpa_bss,
4400 list_id);
4401 if (tmp->id > id2)
4402 break;
4403 bsslast = tmp;
4404 }
4405 }
4406 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004407 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004408 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004409 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004410 else if (os_strncmp(cmd, "LAST", 4) == 0)
4411 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004412 else if (os_strncmp(cmd, "ID-", 3) == 0) {
4413 i = atoi(cmd + 3);
4414 bss = wpa_bss_get_id(wpa_s, i);
4415 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4416 i = atoi(cmd + 5);
4417 bss = wpa_bss_get_id(wpa_s, i);
4418 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004419 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004420 if (next == &wpa_s->bss_id)
4421 bss = NULL;
4422 else
4423 bss = dl_list_entry(next, struct wpa_bss,
4424 list_id);
4425 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004426#ifdef CONFIG_P2P
4427 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
4428 if (hwaddr_aton(cmd + 13, bssid) == 0)
4429 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
4430 else
4431 bss = NULL;
4432#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004433 } else if (hwaddr_aton(cmd, bssid) == 0)
4434 bss = wpa_bss_get_bssid(wpa_s, bssid);
4435 else {
4436 struct wpa_bss *tmp;
4437 i = atoi(cmd);
4438 bss = NULL;
4439 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
4440 {
4441 if (i-- == 0) {
4442 bss = tmp;
4443 break;
4444 }
4445 }
4446 }
4447
Dmitry Shmidt04949592012-07-19 12:16:46 -07004448 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
4449 mask = strtoul(ctmp + 5, NULL, 0x10);
4450 if (mask == 0)
4451 mask = WPA_BSS_MASK_ALL;
4452 }
4453
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004454 if (bss == NULL)
4455 return 0;
4456
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004457 if (bsslast == NULL)
4458 bsslast = bss;
4459 do {
4460 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
4461 ret += len;
4462 buf += len;
4463 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004464 if (bss == bsslast) {
4465 if ((mask & WPA_BSS_MASK_DELIM) && len &&
4466 (bss == dl_list_last(&wpa_s->bss_id,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004467 struct wpa_bss, list_id))) {
4468 int res;
4469
4470 res = os_snprintf(buf - 5, end - buf + 5,
4471 "####\n");
4472 if (os_snprintf_error(end - buf + 5, res)) {
4473 wpa_printf(MSG_DEBUG,
4474 "Could not add end delim");
4475 }
4476 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004477 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004478 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004479 next = bss->list_id.next;
4480 if (next == &wpa_s->bss_id)
4481 break;
4482 bss = dl_list_entry(next, struct wpa_bss, list_id);
4483 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004484
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004485 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004486}
4487
4488
4489static int wpa_supplicant_ctrl_iface_ap_scan(
4490 struct wpa_supplicant *wpa_s, char *cmd)
4491{
4492 int ap_scan = atoi(cmd);
4493 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
4494}
4495
4496
4497static int wpa_supplicant_ctrl_iface_scan_interval(
4498 struct wpa_supplicant *wpa_s, char *cmd)
4499{
4500 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004501 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004502}
4503
4504
4505static int wpa_supplicant_ctrl_iface_bss_expire_age(
4506 struct wpa_supplicant *wpa_s, char *cmd)
4507{
4508 int expire_age = atoi(cmd);
4509 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
4510}
4511
4512
4513static int wpa_supplicant_ctrl_iface_bss_expire_count(
4514 struct wpa_supplicant *wpa_s, char *cmd)
4515{
4516 int expire_count = atoi(cmd);
4517 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
4518}
4519
4520
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004521static void wpa_supplicant_ctrl_iface_bss_flush(
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004522 struct wpa_supplicant *wpa_s, char *cmd)
4523{
4524 int flush_age = atoi(cmd);
4525
4526 if (flush_age == 0)
4527 wpa_bss_flush(wpa_s);
4528 else
4529 wpa_bss_flush_by_age(wpa_s, flush_age);
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004530}
4531
4532
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004533#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004534static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
4535{
4536 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
4537 /* MLME-DELETEKEYS.request */
4538 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
4539 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
4540 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
4541 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
4542#ifdef CONFIG_IEEE80211W
4543 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
4544 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
4545#endif /* CONFIG_IEEE80211W */
4546
4547 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
4548 0);
4549 /* MLME-SETPROTECTION.request(None) */
4550 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
4551 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
4552 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
4553 wpa_sm_drop_sa(wpa_s->wpa);
4554}
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004555#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004556
4557
4558static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
4559 char *addr)
4560{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004561#ifdef CONFIG_NO_SCAN_PROCESSING
4562 return -1;
4563#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004564 u8 bssid[ETH_ALEN];
4565 struct wpa_bss *bss;
4566 struct wpa_ssid *ssid = wpa_s->current_ssid;
4567
4568 if (hwaddr_aton(addr, bssid)) {
4569 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
4570 "address '%s'", addr);
4571 return -1;
4572 }
4573
4574 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
4575
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004576 if (!ssid) {
4577 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
4578 "configuration known for the target AP");
4579 return -1;
4580 }
4581
4582 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004583 if (!bss) {
4584 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
4585 "from BSS table");
4586 return -1;
4587 }
4588
4589 /*
4590 * TODO: Find best network configuration block from configuration to
4591 * allow roaming to other networks
4592 */
4593
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004594 wpa_s->reassociate = 1;
4595 wpa_supplicant_connect(wpa_s, bss, ssid);
4596
4597 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004598#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004599}
4600
4601
4602#ifdef CONFIG_P2P
4603static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
4604{
4605 unsigned int timeout = atoi(cmd);
4606 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004607 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004608 u8 dev_type[WPS_DEV_TYPE_LEN], *_dev_type = NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004609 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004610 unsigned int search_delay;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004611 const char *_seek[P2P_MAX_QUERY_HASH + 1], **seek = NULL;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004612 u8 seek_count = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004613 int freq = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004614
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07004615 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
4616 wpa_dbg(wpa_s, MSG_INFO,
4617 "Reject P2P_FIND since interface is disabled");
4618 return -1;
4619 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004620 if (os_strstr(cmd, "type=social"))
4621 type = P2P_FIND_ONLY_SOCIAL;
4622 else if (os_strstr(cmd, "type=progressive"))
4623 type = P2P_FIND_PROGRESSIVE;
4624
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004625 pos = os_strstr(cmd, "dev_id=");
4626 if (pos) {
4627 pos += 7;
4628 if (hwaddr_aton(pos, dev_id))
4629 return -1;
4630 _dev_id = dev_id;
4631 }
4632
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004633 pos = os_strstr(cmd, "dev_type=");
4634 if (pos) {
4635 pos += 9;
4636 if (wps_dev_type_str2bin(pos, dev_type) < 0)
4637 return -1;
4638 _dev_type = dev_type;
4639 }
4640
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004641 pos = os_strstr(cmd, "delay=");
4642 if (pos) {
4643 pos += 6;
4644 search_delay = atoi(pos);
4645 } else
4646 search_delay = wpas_p2p_search_delay(wpa_s);
4647
Dmitry Shmidt41712582015-06-29 11:02:15 -07004648 pos = os_strstr(cmd, "freq=");
4649 if (pos) {
4650 pos += 5;
4651 freq = atoi(pos);
4652 if (freq <= 0)
4653 return -1;
4654 }
4655
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004656 /* Must be searched for last, because it adds nul termination */
4657 pos = os_strstr(cmd, " seek=");
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004658 if (pos)
4659 pos += 6;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004660 while (pos && seek_count < P2P_MAX_QUERY_HASH + 1) {
4661 char *term;
4662
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004663 _seek[seek_count++] = pos;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004664 seek = _seek;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004665 term = os_strchr(pos, ' ');
4666 if (!term)
4667 break;
4668 *term = '\0';
4669 pos = os_strstr(term + 1, "seek=");
4670 if (pos)
4671 pos += 5;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004672 }
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004673 if (seek_count > P2P_MAX_QUERY_HASH) {
4674 seek[0] = NULL;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004675 seek_count = 1;
4676 }
4677
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004678 return wpas_p2p_find(wpa_s, timeout, type, _dev_type != NULL, _dev_type,
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004679 _dev_id, search_delay, seek_count, seek, freq);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004680}
4681
4682
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004683static int p2ps_ctrl_parse_cpt_priority(const char *pos, u8 *cpt)
4684{
4685 const char *last = NULL;
4686 const char *token;
4687 long int token_len;
4688 unsigned int i;
4689
4690 /* Expected predefined CPT names delimited by ':' */
4691 for (i = 0; (token = cstr_token(pos, ": \t", &last)); i++) {
4692 if (i >= P2PS_FEATURE_CAPAB_CPT_MAX) {
4693 wpa_printf(MSG_ERROR,
4694 "P2PS: CPT name list is too long, expected up to %d names",
4695 P2PS_FEATURE_CAPAB_CPT_MAX);
4696 cpt[0] = 0;
4697 return -1;
4698 }
4699
4700 token_len = last - token;
4701
4702 if (token_len == 3 &&
4703 os_memcmp(token, "UDP", token_len) == 0) {
4704 cpt[i] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4705 } else if (token_len == 3 &&
4706 os_memcmp(token, "MAC", token_len) == 0) {
4707 cpt[i] = P2PS_FEATURE_CAPAB_MAC_TRANSPORT;
4708 } else {
4709 wpa_printf(MSG_ERROR,
4710 "P2PS: Unsupported CPT name '%s'", token);
4711 cpt[0] = 0;
4712 return -1;
4713 }
4714
4715 if (isblank(*last)) {
4716 i++;
4717 break;
4718 }
4719 }
4720 cpt[i] = 0;
4721 return 0;
4722}
4723
4724
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004725static struct p2ps_provision * p2p_parse_asp_provision_cmd(const char *cmd)
4726{
4727 struct p2ps_provision *p2ps_prov;
4728 char *pos;
4729 size_t info_len = 0;
4730 char *info = NULL;
4731 u8 role = P2PS_SETUP_NONE;
4732 long long unsigned val;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004733 int i;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004734
4735 pos = os_strstr(cmd, "info=");
4736 if (pos) {
4737 pos += 5;
4738 info_len = os_strlen(pos);
4739
4740 if (info_len) {
4741 info = os_malloc(info_len + 1);
4742 if (info) {
4743 info_len = utf8_unescape(pos, info_len,
4744 info, info_len + 1);
4745 } else
4746 info_len = 0;
4747 }
4748 }
4749
4750 p2ps_prov = os_zalloc(sizeof(struct p2ps_provision) + info_len + 1);
4751 if (p2ps_prov == NULL) {
4752 os_free(info);
4753 return NULL;
4754 }
4755
4756 if (info) {
4757 os_memcpy(p2ps_prov->info, info, info_len);
4758 p2ps_prov->info[info_len] = '\0';
4759 os_free(info);
4760 }
4761
4762 pos = os_strstr(cmd, "status=");
4763 if (pos)
4764 p2ps_prov->status = atoi(pos + 7);
4765 else
4766 p2ps_prov->status = -1;
4767
4768 pos = os_strstr(cmd, "adv_id=");
4769 if (!pos || sscanf(pos + 7, "%llx", &val) != 1 || val > 0xffffffffULL)
4770 goto invalid_args;
4771 p2ps_prov->adv_id = val;
4772
4773 pos = os_strstr(cmd, "method=");
4774 if (pos)
4775 p2ps_prov->method = strtol(pos + 7, NULL, 16);
4776 else
4777 p2ps_prov->method = 0;
4778
4779 pos = os_strstr(cmd, "session=");
4780 if (!pos || sscanf(pos + 8, "%llx", &val) != 1 || val > 0xffffffffULL)
4781 goto invalid_args;
4782 p2ps_prov->session_id = val;
4783
4784 pos = os_strstr(cmd, "adv_mac=");
4785 if (!pos || hwaddr_aton(pos + 8, p2ps_prov->adv_mac))
4786 goto invalid_args;
4787
4788 pos = os_strstr(cmd, "session_mac=");
4789 if (!pos || hwaddr_aton(pos + 12, p2ps_prov->session_mac))
4790 goto invalid_args;
4791
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004792 pos = os_strstr(cmd, "cpt=");
4793 if (pos) {
4794 if (p2ps_ctrl_parse_cpt_priority(pos + 4,
4795 p2ps_prov->cpt_priority))
4796 goto invalid_args;
4797 } else {
4798 p2ps_prov->cpt_priority[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4799 }
4800
4801 for (i = 0; p2ps_prov->cpt_priority[i]; i++)
4802 p2ps_prov->cpt_mask |= p2ps_prov->cpt_priority[i];
4803
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004804 /* force conncap with tstCap (no sanity checks) */
4805 pos = os_strstr(cmd, "tstCap=");
4806 if (pos) {
4807 role = strtol(pos + 7, NULL, 16);
4808 } else {
4809 pos = os_strstr(cmd, "role=");
4810 if (pos) {
4811 role = strtol(pos + 5, NULL, 16);
4812 if (role != P2PS_SETUP_CLIENT &&
4813 role != P2PS_SETUP_GROUP_OWNER)
4814 role = P2PS_SETUP_NONE;
4815 }
4816 }
4817 p2ps_prov->role = role;
4818
4819 return p2ps_prov;
4820
4821invalid_args:
4822 os_free(p2ps_prov);
4823 return NULL;
4824}
4825
4826
4827static int p2p_ctrl_asp_provision_resp(struct wpa_supplicant *wpa_s, char *cmd)
4828{
4829 u8 addr[ETH_ALEN];
4830 struct p2ps_provision *p2ps_prov;
4831 char *pos;
4832
4833 /* <addr> id=<adv_id> [role=<conncap>] [info=<infodata>] */
4834
4835 wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4836
4837 if (hwaddr_aton(cmd, addr))
4838 return -1;
4839
4840 pos = cmd + 17;
4841 if (*pos != ' ')
4842 return -1;
4843
4844 p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4845 if (!p2ps_prov)
4846 return -1;
4847
4848 if (p2ps_prov->status < 0) {
4849 os_free(p2ps_prov);
4850 return -1;
4851 }
4852
4853 return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4854 p2ps_prov);
4855}
4856
4857
4858static int p2p_ctrl_asp_provision(struct wpa_supplicant *wpa_s, char *cmd)
4859{
4860 u8 addr[ETH_ALEN];
4861 struct p2ps_provision *p2ps_prov;
4862 char *pos;
4863
4864 /* <addr> id=<adv_id> adv_mac=<adv_mac> conncap=<conncap>
4865 * session=<ses_id> mac=<ses_mac> [info=<infodata>]
4866 */
4867
4868 wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4869 if (hwaddr_aton(cmd, addr))
4870 return -1;
4871
4872 pos = cmd + 17;
4873 if (*pos != ' ')
4874 return -1;
4875
4876 p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4877 if (!p2ps_prov)
4878 return -1;
4879
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004880 p2ps_prov->pd_seeker = 1;
4881
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004882 return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4883 p2ps_prov);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004884}
4885
4886
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004887static int parse_freq(int chwidth, int freq2)
4888{
4889 if (freq2 < 0)
4890 return -1;
4891 if (freq2)
4892 return VHT_CHANWIDTH_80P80MHZ;
4893
4894 switch (chwidth) {
4895 case 0:
4896 case 20:
4897 case 40:
4898 return VHT_CHANWIDTH_USE_HT;
4899 case 80:
4900 return VHT_CHANWIDTH_80MHZ;
4901 case 160:
4902 return VHT_CHANWIDTH_160MHZ;
4903 default:
4904 wpa_printf(MSG_DEBUG, "Unknown max oper bandwidth: %d",
4905 chwidth);
4906 return -1;
4907 }
4908}
4909
4910
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004911static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
4912 char *buf, size_t buflen)
4913{
4914 u8 addr[ETH_ALEN];
4915 char *pos, *pos2;
4916 char *pin = NULL;
4917 enum p2p_wps_method wps_method;
4918 int new_pin;
4919 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004920 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004921 int join;
4922 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004923 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004924 int go_intent = -1;
4925 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004926 int pd;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004927 int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004928 u8 _group_ssid[SSID_MAX_LEN], *group_ssid = NULL;
4929 size_t group_ssid_len = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004930
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004931 if (!wpa_s->global->p2p_init_wpa_s)
4932 return -1;
4933 if (wpa_s->global->p2p_init_wpa_s != wpa_s) {
4934 wpa_dbg(wpa_s, MSG_DEBUG, "Direct P2P_CONNECT command to %s",
4935 wpa_s->global->p2p_init_wpa_s->ifname);
4936 wpa_s = wpa_s->global->p2p_init_wpa_s;
4937 }
4938
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004939 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad|p2ps]
Dmitry Shmidt04949592012-07-19 12:16:46 -07004940 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004941 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004942 * [ht40] [vht] [auto] [ssid=<hexdump>] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004943
4944 if (hwaddr_aton(cmd, addr))
4945 return -1;
4946
4947 pos = cmd + 17;
4948 if (*pos != ' ')
4949 return -1;
4950 pos++;
4951
4952 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004953 pos2 = os_strstr(pos, " persistent=");
4954 if (pos2) {
4955 struct wpa_ssid *ssid;
4956 persistent_id = atoi(pos2 + 12);
4957 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
4958 if (ssid == NULL || ssid->disabled != 2 ||
4959 ssid->mode != WPAS_MODE_P2P_GO) {
4960 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
4961 "SSID id=%d for persistent P2P group (GO)",
4962 persistent_id);
4963 return -1;
4964 }
4965 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004966 join = os_strstr(pos, " join") != NULL;
4967 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004968 automatic = os_strstr(pos, " auto") != NULL;
4969 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004970 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
4971 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
4972 vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004973
4974 pos2 = os_strstr(pos, " go_intent=");
4975 if (pos2) {
4976 pos2 += 11;
4977 go_intent = atoi(pos2);
4978 if (go_intent < 0 || go_intent > 15)
4979 return -1;
4980 }
4981
4982 pos2 = os_strstr(pos, " freq=");
4983 if (pos2) {
4984 pos2 += 6;
4985 freq = atoi(pos2);
4986 if (freq <= 0)
4987 return -1;
4988 }
4989
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004990 pos2 = os_strstr(pos, " freq2=");
4991 if (pos2)
4992 freq2 = atoi(pos2 + 7);
4993
4994 pos2 = os_strstr(pos, " max_oper_chwidth=");
4995 if (pos2)
4996 chwidth = atoi(pos2 + 18);
4997
4998 max_oper_chwidth = parse_freq(chwidth, freq2);
4999 if (max_oper_chwidth < 0)
5000 return -1;
5001
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005002 pos2 = os_strstr(pos, " ssid=");
5003 if (pos2) {
5004 char *end;
5005
5006 pos2 += 6;
5007 end = os_strchr(pos2, ' ');
5008 if (!end)
5009 group_ssid_len = os_strlen(pos2) / 2;
5010 else
5011 group_ssid_len = (end - pos2) / 2;
5012 if (group_ssid_len == 0 || group_ssid_len > SSID_MAX_LEN ||
5013 hexstr2bin(pos2, _group_ssid, group_ssid_len) < 0)
5014 return -1;
5015 group_ssid = _group_ssid;
5016 }
5017
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005018 if (os_strncmp(pos, "pin", 3) == 0) {
5019 /* Request random PIN (to be displayed) and enable the PIN */
5020 wps_method = WPS_PIN_DISPLAY;
5021 } else if (os_strncmp(pos, "pbc", 3) == 0) {
5022 wps_method = WPS_PBC;
5023 } else {
5024 pin = pos;
5025 pos = os_strchr(pin, ' ');
5026 wps_method = WPS_PIN_KEYPAD;
5027 if (pos) {
5028 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005029 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005030 wps_method = WPS_PIN_DISPLAY;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005031 else if (os_strncmp(pos, "p2ps", 4) == 0)
5032 wps_method = WPS_P2PS;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005033 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005034 if (!wps_pin_str_valid(pin)) {
5035 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
5036 return 17;
5037 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005038 }
5039
5040 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005041 persistent_group, automatic, join,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005042 auth, go_intent, freq, freq2, persistent_id,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005043 pd, ht40, vht, max_oper_chwidth,
5044 group_ssid, group_ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005045 if (new_pin == -2) {
5046 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
5047 return 25;
5048 }
5049 if (new_pin == -3) {
5050 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
5051 return 25;
5052 }
5053 if (new_pin < 0)
5054 return -1;
5055 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
5056 ret = os_snprintf(buf, buflen, "%08d", new_pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005057 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005058 return -1;
5059 return ret;
5060 }
5061
5062 os_memcpy(buf, "OK\n", 3);
5063 return 3;
5064}
5065
5066
5067static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
5068{
5069 unsigned int timeout = atoi(cmd);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07005070 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
5071 wpa_dbg(wpa_s, MSG_INFO,
5072 "Reject P2P_LISTEN since interface is disabled");
5073 return -1;
5074 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005075 return wpas_p2p_listen(wpa_s, timeout);
5076}
5077
5078
5079static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
5080{
5081 u8 addr[ETH_ALEN];
5082 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005083 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005084
Dmitry Shmidt04949592012-07-19 12:16:46 -07005085 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005086
5087 if (hwaddr_aton(cmd, addr))
5088 return -1;
5089
5090 pos = cmd + 17;
5091 if (*pos != ' ')
5092 return -1;
5093 pos++;
5094
Dmitry Shmidt04949592012-07-19 12:16:46 -07005095 if (os_strstr(pos, " join") != NULL)
5096 use = WPAS_P2P_PD_FOR_JOIN;
5097 else if (os_strstr(pos, " auto") != NULL)
5098 use = WPAS_P2P_PD_AUTO;
5099
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005100 return wpas_p2p_prov_disc(wpa_s, addr, pos, use, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005101}
5102
5103
5104static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
5105 size_t buflen)
5106{
5107 struct wpa_ssid *ssid = wpa_s->current_ssid;
5108
5109 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
5110 ssid->passphrase == NULL)
5111 return -1;
5112
5113 os_strlcpy(buf, ssid->passphrase, buflen);
5114 return os_strlen(buf);
5115}
5116
5117
5118static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
5119 char *buf, size_t buflen)
5120{
5121 u64 ref;
5122 int res;
5123 u8 dst_buf[ETH_ALEN], *dst;
5124 struct wpabuf *tlvs;
5125 char *pos;
5126 size_t len;
5127
5128 if (hwaddr_aton(cmd, dst_buf))
5129 return -1;
5130 dst = dst_buf;
5131 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
5132 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
5133 dst = NULL;
5134 pos = cmd + 17;
5135 if (*pos != ' ')
5136 return -1;
5137 pos++;
5138
5139 if (os_strncmp(pos, "upnp ", 5) == 0) {
5140 u8 version;
5141 pos += 5;
5142 if (hexstr2bin(pos, &version, 1) < 0)
5143 return -1;
5144 pos += 2;
5145 if (*pos != ' ')
5146 return -1;
5147 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005148 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005149#ifdef CONFIG_WIFI_DISPLAY
5150 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
5151 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
5152#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005153 } else if (os_strncmp(pos, "asp ", 4) == 0) {
5154 char *svc_str;
5155 char *svc_info = NULL;
5156 u32 id;
5157
5158 pos += 4;
5159 if (sscanf(pos, "%x", &id) != 1 || id > 0xff)
5160 return -1;
5161
5162 pos = os_strchr(pos, ' ');
5163 if (pos == NULL || pos[1] == '\0' || pos[1] == ' ')
5164 return -1;
5165
5166 svc_str = pos + 1;
5167
5168 pos = os_strchr(svc_str, ' ');
5169
5170 if (pos)
5171 *pos++ = '\0';
5172
5173 /* All remaining data is the svc_info string */
5174 if (pos && pos[0] && pos[0] != ' ') {
5175 len = os_strlen(pos);
5176
5177 /* Unescape in place */
5178 len = utf8_unescape(pos, len, pos, len);
5179 if (len > 0xff)
5180 return -1;
5181
5182 svc_info = pos;
5183 }
5184
5185 ref = wpas_p2p_sd_request_asp(wpa_s, dst, (u8) id,
5186 svc_str, svc_info);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005187 } else {
5188 len = os_strlen(pos);
5189 if (len & 1)
5190 return -1;
5191 len /= 2;
5192 tlvs = wpabuf_alloc(len);
5193 if (tlvs == NULL)
5194 return -1;
5195 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
5196 wpabuf_free(tlvs);
5197 return -1;
5198 }
5199
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005200 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005201 wpabuf_free(tlvs);
5202 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005203 if (ref == 0)
5204 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005205 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005206 if (os_snprintf_error(buflen, res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005207 return -1;
5208 return res;
5209}
5210
5211
5212static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
5213 char *cmd)
5214{
5215 long long unsigned val;
5216 u64 req;
5217 if (sscanf(cmd, "%llx", &val) != 1)
5218 return -1;
5219 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005220 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005221}
5222
5223
5224static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
5225{
5226 int freq;
5227 u8 dst[ETH_ALEN];
5228 u8 dialog_token;
5229 struct wpabuf *resp_tlvs;
5230 char *pos, *pos2;
5231 size_t len;
5232
5233 pos = os_strchr(cmd, ' ');
5234 if (pos == NULL)
5235 return -1;
5236 *pos++ = '\0';
5237 freq = atoi(cmd);
5238 if (freq == 0)
5239 return -1;
5240
5241 if (hwaddr_aton(pos, dst))
5242 return -1;
5243 pos += 17;
5244 if (*pos != ' ')
5245 return -1;
5246 pos++;
5247
5248 pos2 = os_strchr(pos, ' ');
5249 if (pos2 == NULL)
5250 return -1;
5251 *pos2++ = '\0';
5252 dialog_token = atoi(pos);
5253
5254 len = os_strlen(pos2);
5255 if (len & 1)
5256 return -1;
5257 len /= 2;
5258 resp_tlvs = wpabuf_alloc(len);
5259 if (resp_tlvs == NULL)
5260 return -1;
5261 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
5262 wpabuf_free(resp_tlvs);
5263 return -1;
5264 }
5265
5266 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
5267 wpabuf_free(resp_tlvs);
5268 return 0;
5269}
5270
5271
5272static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
5273 char *cmd)
5274{
Dmitry Shmidt04949592012-07-19 12:16:46 -07005275 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
5276 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005277 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
5278 return 0;
5279}
5280
5281
5282static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
5283 char *cmd)
5284{
5285 char *pos;
5286 size_t len;
5287 struct wpabuf *query, *resp;
5288
5289 pos = os_strchr(cmd, ' ');
5290 if (pos == NULL)
5291 return -1;
5292 *pos++ = '\0';
5293
5294 len = os_strlen(cmd);
5295 if (len & 1)
5296 return -1;
5297 len /= 2;
5298 query = wpabuf_alloc(len);
5299 if (query == NULL)
5300 return -1;
5301 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5302 wpabuf_free(query);
5303 return -1;
5304 }
5305
5306 len = os_strlen(pos);
5307 if (len & 1) {
5308 wpabuf_free(query);
5309 return -1;
5310 }
5311 len /= 2;
5312 resp = wpabuf_alloc(len);
5313 if (resp == NULL) {
5314 wpabuf_free(query);
5315 return -1;
5316 }
5317 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
5318 wpabuf_free(query);
5319 wpabuf_free(resp);
5320 return -1;
5321 }
5322
5323 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
5324 wpabuf_free(query);
5325 wpabuf_free(resp);
5326 return -1;
5327 }
5328 return 0;
5329}
5330
5331
5332static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5333{
5334 char *pos;
5335 u8 version;
5336
5337 pos = os_strchr(cmd, ' ');
5338 if (pos == NULL)
5339 return -1;
5340 *pos++ = '\0';
5341
5342 if (hexstr2bin(cmd, &version, 1) < 0)
5343 return -1;
5344
5345 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
5346}
5347
5348
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005349static int p2p_ctrl_service_add_asp(struct wpa_supplicant *wpa_s,
5350 u8 replace, char *cmd)
5351{
5352 char *pos;
5353 char *adv_str;
5354 u32 auto_accept, adv_id, svc_state, config_methods;
5355 char *svc_info = NULL;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005356 char *cpt_prio_str;
5357 u8 cpt_prio[P2PS_FEATURE_CAPAB_CPT_MAX + 1];
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005358
5359 pos = os_strchr(cmd, ' ');
5360 if (pos == NULL)
5361 return -1;
5362 *pos++ = '\0';
5363
5364 /* Auto-Accept value is mandatory, and must be one of the
5365 * single values (0, 1, 2, 4) */
5366 auto_accept = atoi(cmd);
5367 switch (auto_accept) {
5368 case P2PS_SETUP_NONE: /* No auto-accept */
5369 case P2PS_SETUP_NEW:
5370 case P2PS_SETUP_CLIENT:
5371 case P2PS_SETUP_GROUP_OWNER:
5372 break;
5373 default:
5374 return -1;
5375 }
5376
5377 /* Advertisement ID is mandatory */
5378 cmd = pos;
5379 pos = os_strchr(cmd, ' ');
5380 if (pos == NULL)
5381 return -1;
5382 *pos++ = '\0';
5383
5384 /* Handle Adv_ID == 0 (wildcard "org.wi-fi.wfds") internally. */
5385 if (sscanf(cmd, "%x", &adv_id) != 1 || adv_id == 0)
5386 return -1;
5387
5388 /* Only allow replacements if exist, and adds if not */
5389 if (wpas_p2p_service_p2ps_id_exists(wpa_s, adv_id)) {
5390 if (!replace)
5391 return -1;
5392 } else {
5393 if (replace)
5394 return -1;
5395 }
5396
5397 /* svc_state between 0 - 0xff is mandatory */
5398 if (sscanf(pos, "%x", &svc_state) != 1 || svc_state > 0xff)
5399 return -1;
5400
5401 pos = os_strchr(pos, ' ');
5402 if (pos == NULL)
5403 return -1;
5404
5405 /* config_methods is mandatory */
5406 pos++;
5407 if (sscanf(pos, "%x", &config_methods) != 1)
5408 return -1;
5409
5410 if (!(config_methods &
5411 (WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD | WPS_CONFIG_P2PS)))
5412 return -1;
5413
5414 pos = os_strchr(pos, ' ');
5415 if (pos == NULL)
5416 return -1;
5417
5418 pos++;
5419 adv_str = pos;
5420
5421 /* Advertisement string is mandatory */
5422 if (!pos[0] || pos[0] == ' ')
5423 return -1;
5424
5425 /* Terminate svc string */
5426 pos = os_strchr(pos, ' ');
5427 if (pos != NULL)
5428 *pos++ = '\0';
5429
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005430 cpt_prio_str = (pos && pos[0]) ? os_strstr(pos, "cpt=") : NULL;
5431 if (cpt_prio_str) {
5432 pos = os_strchr(pos, ' ');
5433 if (pos != NULL)
5434 *pos++ = '\0';
5435
5436 if (p2ps_ctrl_parse_cpt_priority(cpt_prio_str + 4, cpt_prio))
5437 return -1;
5438 } else {
5439 cpt_prio[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
5440 cpt_prio[1] = 0;
5441 }
5442
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005443 /* Service and Response Information are optional */
5444 if (pos && pos[0]) {
5445 size_t len;
5446
5447 /* Note the bare ' included, which cannot exist legally
5448 * in unescaped string. */
5449 svc_info = os_strstr(pos, "svc_info='");
5450
5451 if (svc_info) {
5452 svc_info += 9;
5453 len = os_strlen(svc_info);
5454 utf8_unescape(svc_info, len, svc_info, len);
5455 }
5456 }
5457
5458 return wpas_p2p_service_add_asp(wpa_s, auto_accept, adv_id, adv_str,
5459 (u8) svc_state, (u16) config_methods,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005460 svc_info, cpt_prio);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005461}
5462
5463
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005464static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
5465{
5466 char *pos;
5467
5468 pos = os_strchr(cmd, ' ');
5469 if (pos == NULL)
5470 return -1;
5471 *pos++ = '\0';
5472
5473 if (os_strcmp(cmd, "bonjour") == 0)
5474 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
5475 if (os_strcmp(cmd, "upnp") == 0)
5476 return p2p_ctrl_service_add_upnp(wpa_s, pos);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005477 if (os_strcmp(cmd, "asp") == 0)
5478 return p2p_ctrl_service_add_asp(wpa_s, 0, pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005479 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5480 return -1;
5481}
5482
5483
5484static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
5485 char *cmd)
5486{
5487 size_t len;
5488 struct wpabuf *query;
5489 int ret;
5490
5491 len = os_strlen(cmd);
5492 if (len & 1)
5493 return -1;
5494 len /= 2;
5495 query = wpabuf_alloc(len);
5496 if (query == NULL)
5497 return -1;
5498 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5499 wpabuf_free(query);
5500 return -1;
5501 }
5502
5503 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
5504 wpabuf_free(query);
5505 return ret;
5506}
5507
5508
5509static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5510{
5511 char *pos;
5512 u8 version;
5513
5514 pos = os_strchr(cmd, ' ');
5515 if (pos == NULL)
5516 return -1;
5517 *pos++ = '\0';
5518
5519 if (hexstr2bin(cmd, &version, 1) < 0)
5520 return -1;
5521
5522 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
5523}
5524
5525
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005526static int p2p_ctrl_service_del_asp(struct wpa_supplicant *wpa_s, char *cmd)
5527{
5528 u32 adv_id;
5529
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07005530 if (os_strcmp(cmd, "all") == 0) {
5531 wpas_p2p_service_flush_asp(wpa_s);
5532 return 0;
5533 }
5534
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005535 if (sscanf(cmd, "%x", &adv_id) != 1)
5536 return -1;
5537
5538 return wpas_p2p_service_del_asp(wpa_s, adv_id);
5539}
5540
5541
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005542static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
5543{
5544 char *pos;
5545
5546 pos = os_strchr(cmd, ' ');
5547 if (pos == NULL)
5548 return -1;
5549 *pos++ = '\0';
5550
5551 if (os_strcmp(cmd, "bonjour") == 0)
5552 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
5553 if (os_strcmp(cmd, "upnp") == 0)
5554 return p2p_ctrl_service_del_upnp(wpa_s, pos);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005555 if (os_strcmp(cmd, "asp") == 0)
5556 return p2p_ctrl_service_del_asp(wpa_s, pos);
5557 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5558 return -1;
5559}
5560
5561
5562static int p2p_ctrl_service_replace(struct wpa_supplicant *wpa_s, char *cmd)
5563{
5564 char *pos;
5565
5566 pos = os_strchr(cmd, ' ');
5567 if (pos == NULL)
5568 return -1;
5569 *pos++ = '\0';
5570
5571 if (os_strcmp(cmd, "asp") == 0)
5572 return p2p_ctrl_service_add_asp(wpa_s, 1, pos);
5573
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005574 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5575 return -1;
5576}
5577
5578
5579static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
5580{
5581 u8 addr[ETH_ALEN];
5582
5583 /* <addr> */
5584
5585 if (hwaddr_aton(cmd, addr))
5586 return -1;
5587
5588 return wpas_p2p_reject(wpa_s, addr);
5589}
5590
5591
5592static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
5593{
5594 char *pos;
5595 int id;
5596 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005597 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005598 int freq = 0, pref_freq = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005599 int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005600
5601 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005602 pos = os_strstr(cmd, " peer=");
5603 if (pos) {
5604 pos += 6;
5605 if (hwaddr_aton(pos, peer))
5606 return -1;
5607 _peer = peer;
5608 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005609 ssid = wpa_config_get_network(wpa_s->conf, id);
5610 if (ssid == NULL || ssid->disabled != 2) {
5611 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5612 "for persistent P2P group",
5613 id);
5614 return -1;
5615 }
5616
Jouni Malinen31be0a42012-08-31 21:20:51 +03005617 pos = os_strstr(cmd, " freq=");
5618 if (pos) {
5619 pos += 6;
5620 freq = atoi(pos);
5621 if (freq <= 0)
5622 return -1;
5623 }
5624
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005625 pos = os_strstr(cmd, " pref=");
5626 if (pos) {
5627 pos += 6;
5628 pref_freq = atoi(pos);
5629 if (pref_freq <= 0)
5630 return -1;
5631 }
5632
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005633 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
5634 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
5635 vht;
Jouni Malinen31be0a42012-08-31 21:20:51 +03005636
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005637 pos = os_strstr(cmd, "freq2=");
5638 if (pos)
5639 freq2 = atoi(pos + 6);
5640
5641 pos = os_strstr(cmd, " max_oper_chwidth=");
5642 if (pos)
5643 chwidth = atoi(pos + 18);
5644
5645 max_oper_chwidth = parse_freq(chwidth, freq2);
5646 if (max_oper_chwidth < 0)
5647 return -1;
5648
5649 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, freq2, ht40, vht,
5650 max_oper_chwidth, pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005651}
5652
5653
5654static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
5655{
5656 char *pos;
5657 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
5658
5659 pos = os_strstr(cmd, " peer=");
5660 if (!pos)
5661 return -1;
5662
5663 *pos = '\0';
5664 pos += 6;
5665 if (hwaddr_aton(pos, peer)) {
5666 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
5667 return -1;
5668 }
5669
5670 pos = os_strstr(pos, " go_dev_addr=");
5671 if (pos) {
5672 pos += 13;
5673 if (hwaddr_aton(pos, go_dev_addr)) {
5674 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
5675 pos);
5676 return -1;
5677 }
5678 go_dev = go_dev_addr;
5679 }
5680
5681 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
5682}
5683
5684
5685static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
5686{
5687 if (os_strncmp(cmd, "persistent=", 11) == 0)
5688 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
5689 if (os_strncmp(cmd, "group=", 6) == 0)
5690 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
5691
5692 return -1;
5693}
5694
5695
5696static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005697 int id, int freq, int vht_center_freq2,
5698 int ht40, int vht, int vht_chwidth)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005699{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005700 struct wpa_ssid *ssid;
5701
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005702 ssid = wpa_config_get_network(wpa_s->conf, id);
5703 if (ssid == NULL || ssid->disabled != 2) {
5704 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5705 "for persistent P2P group",
5706 id);
5707 return -1;
5708 }
5709
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005710 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq,
5711 vht_center_freq2, 0, ht40, vht,
5712 vht_chwidth, NULL, 0, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005713}
5714
5715
5716static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
5717{
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005718 int freq = 0, persistent = 0, group_id = -1;
5719 int vht = wpa_s->conf->p2p_go_vht;
5720 int ht40 = wpa_s->conf->p2p_go_ht40 || vht;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005721 int max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005722 char *token, *context = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005723
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005724 while ((token = str_token(cmd, " ", &context))) {
5725 if (sscanf(token, "freq=%d", &freq) == 1 ||
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005726 sscanf(token, "freq2=%d", &freq2) == 1 ||
5727 sscanf(token, "persistent=%d", &group_id) == 1 ||
5728 sscanf(token, "max_oper_chwidth=%d", &chwidth) == 1) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005729 continue;
5730 } else if (os_strcmp(token, "ht40") == 0) {
5731 ht40 = 1;
5732 } else if (os_strcmp(token, "vht") == 0) {
5733 vht = 1;
5734 ht40 = 1;
5735 } else if (os_strcmp(token, "persistent") == 0) {
5736 persistent = 1;
5737 } else {
5738 wpa_printf(MSG_DEBUG,
5739 "CTRL: Invalid P2P_GROUP_ADD parameter: '%s'",
5740 token);
5741 return -1;
5742 }
5743 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005744
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005745 max_oper_chwidth = parse_freq(chwidth, freq2);
5746 if (max_oper_chwidth < 0)
5747 return -1;
5748
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005749 if (group_id >= 0)
5750 return p2p_ctrl_group_add_persistent(wpa_s, group_id,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005751 freq, freq2, ht40, vht,
5752 max_oper_chwidth);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005753
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005754 return wpas_p2p_group_add(wpa_s, persistent, freq, freq2, ht40, vht,
5755 max_oper_chwidth);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005756}
5757
5758
5759static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
5760 char *buf, size_t buflen)
5761{
5762 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005763 int next, res;
5764 const struct p2p_peer_info *info;
5765 char *pos, *end;
5766 char devtype[WPS_DEV_TYPE_BUFSIZE];
5767 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005768 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005769
5770 if (!wpa_s->global->p2p)
5771 return -1;
5772
5773 if (os_strcmp(cmd, "FIRST") == 0) {
5774 addr_ptr = NULL;
5775 next = 0;
5776 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
5777 if (hwaddr_aton(cmd + 5, addr) < 0)
5778 return -1;
5779 addr_ptr = addr;
5780 next = 1;
5781 } else {
5782 if (hwaddr_aton(cmd, addr) < 0)
5783 return -1;
5784 addr_ptr = addr;
5785 next = 0;
5786 }
5787
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005788 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
5789 if (info == NULL)
5790 return -1;
5791
5792 pos = buf;
5793 end = buf + buflen;
5794
5795 res = os_snprintf(pos, end - pos, MACSTR "\n"
5796 "pri_dev_type=%s\n"
5797 "device_name=%s\n"
5798 "manufacturer=%s\n"
5799 "model_name=%s\n"
5800 "model_number=%s\n"
5801 "serial_number=%s\n"
5802 "config_methods=0x%x\n"
5803 "dev_capab=0x%x\n"
5804 "group_capab=0x%x\n"
5805 "level=%d\n",
5806 MAC2STR(info->p2p_device_addr),
5807 wps_dev_type_bin2str(info->pri_dev_type,
5808 devtype, sizeof(devtype)),
5809 info->device_name,
5810 info->manufacturer,
5811 info->model_name,
5812 info->model_number,
5813 info->serial_number,
5814 info->config_methods,
5815 info->dev_capab,
5816 info->group_capab,
5817 info->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005818 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005819 return pos - buf;
5820 pos += res;
5821
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005822 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
5823 {
5824 const u8 *t;
5825 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
5826 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
5827 wps_dev_type_bin2str(t, devtype,
5828 sizeof(devtype)));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005829 if (os_snprintf_error(end - pos, res))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005830 return pos - buf;
5831 pos += res;
5832 }
5833
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005834 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005835 if (ssid) {
5836 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005837 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005838 return pos - buf;
5839 pos += res;
5840 }
5841
5842 res = p2p_get_peer_info_txt(info, pos, end - pos);
5843 if (res < 0)
5844 return pos - buf;
5845 pos += res;
5846
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005847 if (info->vendor_elems) {
5848 res = os_snprintf(pos, end - pos, "vendor_elems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005849 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005850 return pos - buf;
5851 pos += res;
5852
5853 pos += wpa_snprintf_hex(pos, end - pos,
5854 wpabuf_head(info->vendor_elems),
5855 wpabuf_len(info->vendor_elems));
5856
5857 res = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005858 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005859 return pos - buf;
5860 pos += res;
5861 }
5862
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005863 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005864}
5865
5866
Dmitry Shmidt04949592012-07-19 12:16:46 -07005867static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
5868 const char *param)
5869{
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005870 unsigned int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005871
5872 if (wpa_s->global->p2p == NULL)
5873 return -1;
5874
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005875 if (freq_range_list_parse(&wpa_s->global->p2p_disallow_freq, param) < 0)
5876 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005877
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005878 for (i = 0; i < wpa_s->global->p2p_disallow_freq.num; i++) {
5879 struct wpa_freq_range *freq;
5880 freq = &wpa_s->global->p2p_disallow_freq.range[i];
Dmitry Shmidt04949592012-07-19 12:16:46 -07005881 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005882 freq->min, freq->max);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005883 }
5884
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005885 wpas_p2p_update_channel_list(wpa_s, WPAS_P2P_CHANNEL_UPDATE_DISALLOW);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005886 return 0;
5887}
5888
5889
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005890static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
5891{
5892 char *param;
5893
5894 if (wpa_s->global->p2p == NULL)
5895 return -1;
5896
5897 param = os_strchr(cmd, ' ');
5898 if (param == NULL)
5899 return -1;
5900 *param++ = '\0';
5901
5902 if (os_strcmp(cmd, "discoverability") == 0) {
5903 p2p_set_client_discoverability(wpa_s->global->p2p,
5904 atoi(param));
5905 return 0;
5906 }
5907
5908 if (os_strcmp(cmd, "managed") == 0) {
5909 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
5910 return 0;
5911 }
5912
5913 if (os_strcmp(cmd, "listen_channel") == 0) {
5914 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07005915 atoi(param), 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005916 }
5917
5918 if (os_strcmp(cmd, "ssid_postfix") == 0) {
5919 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
5920 os_strlen(param));
5921 }
5922
5923 if (os_strcmp(cmd, "noa") == 0) {
5924 char *pos;
5925 int count, start, duration;
5926 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
5927 count = atoi(param);
5928 pos = os_strchr(param, ',');
5929 if (pos == NULL)
5930 return -1;
5931 pos++;
5932 start = atoi(pos);
5933 pos = os_strchr(pos, ',');
5934 if (pos == NULL)
5935 return -1;
5936 pos++;
5937 duration = atoi(pos);
5938 if (count < 0 || count > 255 || start < 0 || duration < 0)
5939 return -1;
5940 if (count == 0 && duration > 0)
5941 return -1;
5942 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
5943 "start=%d duration=%d", count, start, duration);
5944 return wpas_p2p_set_noa(wpa_s, count, start, duration);
5945 }
5946
5947 if (os_strcmp(cmd, "ps") == 0)
5948 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
5949
5950 if (os_strcmp(cmd, "oppps") == 0)
5951 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
5952
5953 if (os_strcmp(cmd, "ctwindow") == 0)
5954 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
5955
5956 if (os_strcmp(cmd, "disabled") == 0) {
5957 wpa_s->global->p2p_disabled = atoi(param);
5958 wpa_printf(MSG_DEBUG, "P2P functionality %s",
5959 wpa_s->global->p2p_disabled ?
5960 "disabled" : "enabled");
5961 if (wpa_s->global->p2p_disabled) {
5962 wpas_p2p_stop_find(wpa_s);
5963 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
5964 p2p_flush(wpa_s->global->p2p);
5965 }
5966 return 0;
5967 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005968
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005969 if (os_strcmp(cmd, "conc_pref") == 0) {
5970 if (os_strcmp(param, "sta") == 0)
5971 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
5972 else if (os_strcmp(param, "p2p") == 0)
5973 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005974 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005975 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005976 return -1;
5977 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005978 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07005979 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005980 return 0;
5981 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005982
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005983 if (os_strcmp(cmd, "force_long_sd") == 0) {
5984 wpa_s->force_long_sd = atoi(param);
5985 return 0;
5986 }
5987
5988 if (os_strcmp(cmd, "peer_filter") == 0) {
5989 u8 addr[ETH_ALEN];
5990 if (hwaddr_aton(param, addr))
5991 return -1;
5992 p2p_set_peer_filter(wpa_s->global->p2p, addr);
5993 return 0;
5994 }
5995
5996 if (os_strcmp(cmd, "cross_connect") == 0)
5997 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
5998
5999 if (os_strcmp(cmd, "go_apsd") == 0) {
6000 if (os_strcmp(param, "disable") == 0)
6001 wpa_s->set_ap_uapsd = 0;
6002 else {
6003 wpa_s->set_ap_uapsd = 1;
6004 wpa_s->ap_uapsd = atoi(param);
6005 }
6006 return 0;
6007 }
6008
6009 if (os_strcmp(cmd, "client_apsd") == 0) {
6010 if (os_strcmp(param, "disable") == 0)
6011 wpa_s->set_sta_uapsd = 0;
6012 else {
6013 int be, bk, vi, vo;
6014 char *pos;
6015 /* format: BE,BK,VI,VO;max SP Length */
6016 be = atoi(param);
6017 pos = os_strchr(param, ',');
6018 if (pos == NULL)
6019 return -1;
6020 pos++;
6021 bk = atoi(pos);
6022 pos = os_strchr(pos, ',');
6023 if (pos == NULL)
6024 return -1;
6025 pos++;
6026 vi = atoi(pos);
6027 pos = os_strchr(pos, ',');
6028 if (pos == NULL)
6029 return -1;
6030 pos++;
6031 vo = atoi(pos);
6032 /* ignore max SP Length for now */
6033
6034 wpa_s->set_sta_uapsd = 1;
6035 wpa_s->sta_uapsd = 0;
6036 if (be)
6037 wpa_s->sta_uapsd |= BIT(0);
6038 if (bk)
6039 wpa_s->sta_uapsd |= BIT(1);
6040 if (vi)
6041 wpa_s->sta_uapsd |= BIT(2);
6042 if (vo)
6043 wpa_s->sta_uapsd |= BIT(3);
6044 }
6045 return 0;
6046 }
6047
Dmitry Shmidt04949592012-07-19 12:16:46 -07006048 if (os_strcmp(cmd, "disallow_freq") == 0)
6049 return p2p_ctrl_disallow_freq(wpa_s, param);
6050
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006051 if (os_strcmp(cmd, "disc_int") == 0) {
6052 int min_disc_int, max_disc_int, max_disc_tu;
6053 char *pos;
6054
6055 pos = param;
6056
6057 min_disc_int = atoi(pos);
6058 pos = os_strchr(pos, ' ');
6059 if (pos == NULL)
6060 return -1;
6061 *pos++ = '\0';
6062
6063 max_disc_int = atoi(pos);
6064 pos = os_strchr(pos, ' ');
6065 if (pos == NULL)
6066 return -1;
6067 *pos++ = '\0';
6068
6069 max_disc_tu = atoi(pos);
6070
6071 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
6072 max_disc_int, max_disc_tu);
6073 }
6074
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006075 if (os_strcmp(cmd, "per_sta_psk") == 0) {
6076 wpa_s->global->p2p_per_sta_psk = !!atoi(param);
6077 return 0;
6078 }
6079
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006080#ifdef CONFIG_WPS_NFC
6081 if (os_strcmp(cmd, "nfc_tag") == 0)
6082 return wpas_p2p_nfc_tag_enabled(wpa_s, !!atoi(param));
6083#endif /* CONFIG_WPS_NFC */
6084
6085 if (os_strcmp(cmd, "disable_ip_addr_req") == 0) {
6086 wpa_s->p2p_disable_ip_addr_req = !!atoi(param);
6087 return 0;
6088 }
6089
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006090 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
6091 cmd);
6092
6093 return -1;
6094}
6095
6096
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006097static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
6098{
6099 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
6100 wpa_s->force_long_sd = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006101 wpas_p2p_stop_find(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006102 wpa_s->parent->p2ps_method_config_any = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006103 if (wpa_s->global->p2p)
6104 p2p_flush(wpa_s->global->p2p);
6105}
6106
6107
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006108static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
6109{
6110 char *pos, *pos2;
6111 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
6112
6113 if (cmd[0]) {
6114 pos = os_strchr(cmd, ' ');
6115 if (pos == NULL)
6116 return -1;
6117 *pos++ = '\0';
6118 dur1 = atoi(cmd);
6119
6120 pos2 = os_strchr(pos, ' ');
6121 if (pos2)
6122 *pos2++ = '\0';
6123 int1 = atoi(pos);
6124 } else
6125 pos2 = NULL;
6126
6127 if (pos2) {
6128 pos = os_strchr(pos2, ' ');
6129 if (pos == NULL)
6130 return -1;
6131 *pos++ = '\0';
6132 dur2 = atoi(pos2);
6133 int2 = atoi(pos);
6134 }
6135
6136 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
6137}
6138
6139
6140static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
6141{
6142 char *pos;
6143 unsigned int period = 0, interval = 0;
6144
6145 if (cmd[0]) {
6146 pos = os_strchr(cmd, ' ');
6147 if (pos == NULL)
6148 return -1;
6149 *pos++ = '\0';
6150 period = atoi(cmd);
6151 interval = atoi(pos);
6152 }
6153
6154 return wpas_p2p_ext_listen(wpa_s, period, interval);
6155}
6156
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006157
6158static int p2p_ctrl_remove_client(struct wpa_supplicant *wpa_s, const char *cmd)
6159{
6160 const char *pos;
6161 u8 peer[ETH_ALEN];
6162 int iface_addr = 0;
6163
6164 pos = cmd;
6165 if (os_strncmp(pos, "iface=", 6) == 0) {
6166 iface_addr = 1;
6167 pos += 6;
6168 }
6169 if (hwaddr_aton(pos, peer))
6170 return -1;
6171
6172 wpas_p2p_remove_client(wpa_s, peer, iface_addr);
6173 return 0;
6174}
6175
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006176#endif /* CONFIG_P2P */
6177
6178
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006179static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s, char *val)
6180{
6181 struct wpa_freq_range_list ranges;
6182 int *freqs = NULL;
6183 struct hostapd_hw_modes *mode;
6184 u16 i;
6185
6186 if (wpa_s->hw.modes == NULL)
6187 return NULL;
6188
6189 os_memset(&ranges, 0, sizeof(ranges));
6190 if (freq_range_list_parse(&ranges, val) < 0)
6191 return NULL;
6192
6193 for (i = 0; i < wpa_s->hw.num_modes; i++) {
6194 int j;
6195
6196 mode = &wpa_s->hw.modes[i];
6197 for (j = 0; j < mode->num_channels; j++) {
6198 unsigned int freq;
6199
6200 if (mode->channels[j].flag & HOSTAPD_CHAN_DISABLED)
6201 continue;
6202
6203 freq = mode->channels[j].freq;
6204 if (!freq_range_list_includes(&ranges, freq))
6205 continue;
6206
6207 int_array_add_unique(&freqs, freq);
6208 }
6209 }
6210
6211 os_free(ranges.range);
6212 return freqs;
6213}
6214
6215
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006216#ifdef CONFIG_INTERWORKING
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006217
6218static int ctrl_interworking_select(struct wpa_supplicant *wpa_s, char *param)
6219{
6220 int auto_sel = 0;
6221 int *freqs = NULL;
6222
6223 if (param) {
6224 char *pos;
6225
6226 auto_sel = os_strstr(param, "auto") != NULL;
6227
6228 pos = os_strstr(param, "freq=");
6229 if (pos) {
6230 freqs = freq_range_to_channel_list(wpa_s, pos + 5);
6231 if (freqs == NULL)
6232 return -1;
6233 }
6234
6235 }
6236
6237 return interworking_select(wpa_s, auto_sel, freqs);
6238}
6239
6240
Dmitry Shmidt7f656022015-02-25 14:36:37 -08006241static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst,
6242 int only_add)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006243{
6244 u8 bssid[ETH_ALEN];
6245 struct wpa_bss *bss;
6246
6247 if (hwaddr_aton(dst, bssid)) {
6248 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
6249 return -1;
6250 }
6251
6252 bss = wpa_bss_get_bssid(wpa_s, bssid);
6253 if (bss == NULL) {
6254 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
6255 MAC2STR(bssid));
6256 return -1;
6257 }
6258
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006259 if (bss->ssid_len == 0) {
6260 int found = 0;
6261
6262 wpa_printf(MSG_DEBUG, "Selected BSS entry for " MACSTR
6263 " does not have SSID information", MAC2STR(bssid));
6264
6265 dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss,
6266 list) {
6267 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
6268 bss->ssid_len > 0) {
6269 found = 1;
6270 break;
6271 }
6272 }
6273
6274 if (!found)
6275 return -1;
6276 wpa_printf(MSG_DEBUG,
6277 "Found another matching BSS entry with SSID");
6278 }
6279
Dmitry Shmidt7f656022015-02-25 14:36:37 -08006280 return interworking_connect(wpa_s, bss, only_add);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006281}
6282
6283
6284static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
6285{
6286 u8 dst_addr[ETH_ALEN];
6287 int used;
6288 char *pos;
6289#define MAX_ANQP_INFO_ID 100
6290 u16 id[MAX_ANQP_INFO_ID];
6291 size_t num_id = 0;
Dmitry Shmidt15907092014-03-25 10:42:57 -07006292 u32 subtypes = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006293
6294 used = hwaddr_aton2(dst, dst_addr);
6295 if (used < 0)
6296 return -1;
6297 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006298 if (*pos == ' ')
6299 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006300 while (num_id < MAX_ANQP_INFO_ID) {
Dmitry Shmidt15907092014-03-25 10:42:57 -07006301 if (os_strncmp(pos, "hs20:", 5) == 0) {
6302#ifdef CONFIG_HS20
6303 int num = atoi(pos + 5);
6304 if (num <= 0 || num > 31)
6305 return -1;
6306 subtypes |= BIT(num);
6307#else /* CONFIG_HS20 */
6308 return -1;
6309#endif /* CONFIG_HS20 */
6310 } else {
6311 id[num_id] = atoi(pos);
6312 if (id[num_id])
6313 num_id++;
6314 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006315 pos = os_strchr(pos + 1, ',');
6316 if (pos == NULL)
6317 break;
6318 pos++;
6319 }
6320
6321 if (num_id == 0)
6322 return -1;
6323
Dmitry Shmidt15907092014-03-25 10:42:57 -07006324 return anqp_send_req(wpa_s, dst_addr, id, num_id, subtypes);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006325}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006326
6327
6328static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
6329{
6330 u8 dst_addr[ETH_ALEN];
6331 struct wpabuf *advproto, *query = NULL;
6332 int used, ret = -1;
6333 char *pos, *end;
6334 size_t len;
6335
6336 used = hwaddr_aton2(cmd, dst_addr);
6337 if (used < 0)
6338 return -1;
6339
6340 pos = cmd + used;
6341 while (*pos == ' ')
6342 pos++;
6343
6344 /* Advertisement Protocol ID */
6345 end = os_strchr(pos, ' ');
6346 if (end)
6347 len = end - pos;
6348 else
6349 len = os_strlen(pos);
6350 if (len & 0x01)
6351 return -1;
6352 len /= 2;
6353 if (len == 0)
6354 return -1;
6355 advproto = wpabuf_alloc(len);
6356 if (advproto == NULL)
6357 return -1;
6358 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
6359 goto fail;
6360
6361 if (end) {
6362 /* Optional Query Request */
6363 pos = end + 1;
6364 while (*pos == ' ')
6365 pos++;
6366
6367 len = os_strlen(pos);
6368 if (len) {
6369 if (len & 0x01)
6370 goto fail;
6371 len /= 2;
6372 if (len == 0)
6373 goto fail;
6374 query = wpabuf_alloc(len);
6375 if (query == NULL)
6376 goto fail;
6377 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
6378 goto fail;
6379 }
6380 }
6381
6382 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
6383
6384fail:
6385 wpabuf_free(advproto);
6386 wpabuf_free(query);
6387
6388 return ret;
6389}
6390
6391
6392static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
6393 size_t buflen)
6394{
6395 u8 addr[ETH_ALEN];
6396 int dialog_token;
6397 int used;
6398 char *pos;
6399 size_t resp_len, start, requested_len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006400 struct wpabuf *resp;
6401 int ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006402
6403 used = hwaddr_aton2(cmd, addr);
6404 if (used < 0)
6405 return -1;
6406
6407 pos = cmd + used;
6408 while (*pos == ' ')
6409 pos++;
6410 dialog_token = atoi(pos);
6411
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006412 if (wpa_s->last_gas_resp &&
6413 os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) == 0 &&
6414 dialog_token == wpa_s->last_gas_dialog_token)
6415 resp = wpa_s->last_gas_resp;
6416 else if (wpa_s->prev_gas_resp &&
6417 os_memcmp(addr, wpa_s->prev_gas_addr, ETH_ALEN) == 0 &&
6418 dialog_token == wpa_s->prev_gas_dialog_token)
6419 resp = wpa_s->prev_gas_resp;
6420 else
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006421 return -1;
6422
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006423 resp_len = wpabuf_len(resp);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006424 start = 0;
6425 requested_len = resp_len;
6426
6427 pos = os_strchr(pos, ' ');
6428 if (pos) {
6429 start = atoi(pos);
6430 if (start > resp_len)
6431 return os_snprintf(buf, buflen, "FAIL-Invalid range");
6432 pos = os_strchr(pos, ',');
6433 if (pos == NULL)
6434 return -1;
6435 pos++;
6436 requested_len = atoi(pos);
6437 if (start + requested_len > resp_len)
6438 return os_snprintf(buf, buflen, "FAIL-Invalid range");
6439 }
6440
6441 if (requested_len * 2 + 1 > buflen)
6442 return os_snprintf(buf, buflen, "FAIL-Too long response");
6443
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006444 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(resp) + start,
6445 requested_len);
6446
6447 if (start + requested_len == resp_len) {
6448 /*
6449 * Free memory by dropping the response after it has been
6450 * fetched.
6451 */
6452 if (resp == wpa_s->prev_gas_resp) {
6453 wpabuf_free(wpa_s->prev_gas_resp);
6454 wpa_s->prev_gas_resp = NULL;
6455 } else {
6456 wpabuf_free(wpa_s->last_gas_resp);
6457 wpa_s->last_gas_resp = NULL;
6458 }
6459 }
6460
6461 return ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006462}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006463#endif /* CONFIG_INTERWORKING */
6464
6465
Dmitry Shmidt04949592012-07-19 12:16:46 -07006466#ifdef CONFIG_HS20
6467
6468static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
6469{
6470 u8 dst_addr[ETH_ALEN];
6471 int used;
6472 char *pos;
6473 u32 subtypes = 0;
6474
6475 used = hwaddr_aton2(dst, dst_addr);
6476 if (used < 0)
6477 return -1;
6478 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006479 if (*pos == ' ')
6480 pos++;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006481 for (;;) {
6482 int num = atoi(pos);
6483 if (num <= 0 || num > 31)
6484 return -1;
6485 subtypes |= BIT(num);
6486 pos = os_strchr(pos + 1, ',');
6487 if (pos == NULL)
6488 break;
6489 pos++;
6490 }
6491
6492 if (subtypes == 0)
6493 return -1;
6494
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006495 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006496}
6497
6498
6499static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6500 const u8 *addr, const char *realm)
6501{
6502 u8 *buf;
6503 size_t rlen, len;
6504 int ret;
6505
6506 rlen = os_strlen(realm);
6507 len = 3 + rlen;
6508 buf = os_malloc(len);
6509 if (buf == NULL)
6510 return -1;
6511 buf[0] = 1; /* NAI Home Realm Count */
6512 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
6513 buf[2] = rlen;
6514 os_memcpy(buf + 3, realm, rlen);
6515
6516 ret = hs20_anqp_send_req(wpa_s, addr,
6517 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006518 buf, len, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006519
6520 os_free(buf);
6521
6522 return ret;
6523}
6524
6525
6526static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6527 char *dst)
6528{
6529 struct wpa_cred *cred = wpa_s->conf->cred;
6530 u8 dst_addr[ETH_ALEN];
6531 int used;
6532 u8 *buf;
6533 size_t len;
6534 int ret;
6535
6536 used = hwaddr_aton2(dst, dst_addr);
6537 if (used < 0)
6538 return -1;
6539
6540 while (dst[used] == ' ')
6541 used++;
6542 if (os_strncmp(dst + used, "realm=", 6) == 0)
6543 return hs20_nai_home_realm_list(wpa_s, dst_addr,
6544 dst + used + 6);
6545
6546 len = os_strlen(dst + used);
6547
6548 if (len == 0 && cred && cred->realm)
6549 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
6550
Dmitry Shmidt623d63a2014-06-13 11:05:14 -07006551 if (len & 1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07006552 return -1;
6553 len /= 2;
6554 buf = os_malloc(len);
6555 if (buf == NULL)
6556 return -1;
6557 if (hexstr2bin(dst + used, buf, len) < 0) {
6558 os_free(buf);
6559 return -1;
6560 }
6561
6562 ret = hs20_anqp_send_req(wpa_s, dst_addr,
6563 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006564 buf, len, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006565 os_free(buf);
6566
6567 return ret;
6568}
6569
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006570
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006571static int get_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd, char *reply,
6572 int buflen)
6573{
6574 u8 dst_addr[ETH_ALEN];
6575 int used;
6576 char *ctx = NULL, *icon, *poffset, *psize;
6577
6578 used = hwaddr_aton2(cmd, dst_addr);
6579 if (used < 0)
6580 return -1;
6581 cmd += used;
6582
6583 icon = str_token(cmd, " ", &ctx);
6584 poffset = str_token(cmd, " ", &ctx);
6585 psize = str_token(cmd, " ", &ctx);
6586 if (!icon || !poffset || !psize)
6587 return -1;
6588
6589 wpa_s->fetch_osu_icon_in_progress = 0;
6590 return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize),
6591 reply, buflen);
6592}
6593
6594
6595static int del_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd)
6596{
6597 u8 dst_addr[ETH_ALEN];
6598 int used;
6599 char *icon;
6600
6601 if (!cmd[0])
6602 return hs20_del_icon(wpa_s, NULL, NULL);
6603
6604 used = hwaddr_aton2(cmd, dst_addr);
6605 if (used < 0)
6606 return -1;
6607
6608 while (cmd[used] == ' ')
6609 used++;
6610 icon = cmd[used] ? &cmd[used] : NULL;
6611
6612 return hs20_del_icon(wpa_s, dst_addr, icon);
6613}
6614
6615
6616static int hs20_icon_request(struct wpa_supplicant *wpa_s, char *cmd, int inmem)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006617{
6618 u8 dst_addr[ETH_ALEN];
6619 int used;
6620 char *icon;
6621
6622 used = hwaddr_aton2(cmd, dst_addr);
6623 if (used < 0)
6624 return -1;
6625
6626 while (cmd[used] == ' ')
6627 used++;
6628 icon = &cmd[used];
6629
6630 wpa_s->fetch_osu_icon_in_progress = 0;
6631 return hs20_anqp_send_req(wpa_s, dst_addr, BIT(HS20_STYPE_ICON_REQUEST),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006632 (u8 *) icon, os_strlen(icon), inmem);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006633}
6634
Dmitry Shmidt04949592012-07-19 12:16:46 -07006635#endif /* CONFIG_HS20 */
6636
6637
Dmitry Shmidt04949592012-07-19 12:16:46 -07006638#ifdef CONFIG_AUTOSCAN
6639
6640static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
6641 char *cmd)
6642{
6643 enum wpa_states state = wpa_s->wpa_state;
6644 char *new_params = NULL;
6645
6646 if (os_strlen(cmd) > 0) {
6647 new_params = os_strdup(cmd);
6648 if (new_params == NULL)
6649 return -1;
6650 }
6651
6652 os_free(wpa_s->conf->autoscan);
6653 wpa_s->conf->autoscan = new_params;
6654
6655 if (wpa_s->conf->autoscan == NULL)
6656 autoscan_deinit(wpa_s);
6657 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
6658 autoscan_init(wpa_s, 1);
6659 else if (state == WPA_SCANNING)
6660 wpa_supplicant_reinit_autoscan(wpa_s);
6661
6662 return 0;
6663}
6664
6665#endif /* CONFIG_AUTOSCAN */
6666
6667
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006668#ifdef CONFIG_WNM
6669
6670static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
6671{
6672 int enter;
6673 int intval = 0;
6674 char *pos;
6675 int ret;
6676 struct wpabuf *tfs_req = NULL;
6677
6678 if (os_strncmp(cmd, "enter", 5) == 0)
6679 enter = 1;
6680 else if (os_strncmp(cmd, "exit", 4) == 0)
6681 enter = 0;
6682 else
6683 return -1;
6684
6685 pos = os_strstr(cmd, " interval=");
6686 if (pos)
6687 intval = atoi(pos + 10);
6688
6689 pos = os_strstr(cmd, " tfs_req=");
6690 if (pos) {
6691 char *end;
6692 size_t len;
6693 pos += 9;
6694 end = os_strchr(pos, ' ');
6695 if (end)
6696 len = end - pos;
6697 else
6698 len = os_strlen(pos);
6699 if (len & 1)
6700 return -1;
6701 len /= 2;
6702 tfs_req = wpabuf_alloc(len);
6703 if (tfs_req == NULL)
6704 return -1;
6705 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
6706 wpabuf_free(tfs_req);
6707 return -1;
6708 }
6709 }
6710
6711 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
6712 WNM_SLEEP_MODE_EXIT, intval,
6713 tfs_req);
6714 wpabuf_free(tfs_req);
6715
6716 return ret;
6717}
6718
Dmitry Shmidt44c95782013-05-17 09:51:35 -07006719
6720static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
6721{
6722 int query_reason;
6723
6724 query_reason = atoi(cmd);
6725
6726 wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
6727 query_reason);
6728
6729 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
6730}
6731
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006732#endif /* CONFIG_WNM */
6733
6734
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006735static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
6736 size_t buflen)
6737{
6738 struct wpa_signal_info si;
6739 int ret;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006740 char *pos, *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006741
6742 ret = wpa_drv_signal_poll(wpa_s, &si);
6743 if (ret)
6744 return -1;
6745
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006746 pos = buf;
6747 end = buf + buflen;
6748
6749 ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006750 "NOISE=%d\nFREQUENCY=%u\n",
6751 si.current_signal, si.current_txrate / 1000,
6752 si.current_noise, si.frequency);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006753 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006754 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006755 pos += ret;
6756
6757 if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
6758 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07006759 channel_width_to_string(si.chanwidth));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006760 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006761 return -1;
6762 pos += ret;
6763 }
6764
6765 if (si.center_frq1 > 0 && si.center_frq2 > 0) {
6766 ret = os_snprintf(pos, end - pos,
6767 "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
6768 si.center_frq1, si.center_frq2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006769 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006770 return -1;
6771 pos += ret;
6772 }
6773
6774 if (si.avg_signal) {
6775 ret = os_snprintf(pos, end - pos,
6776 "AVG_RSSI=%d\n", si.avg_signal);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006777 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006778 return -1;
6779 pos += ret;
6780 }
6781
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07006782 if (si.avg_beacon_signal) {
6783 ret = os_snprintf(pos, end - pos,
6784 "AVG_BEACON_RSSI=%d\n", si.avg_beacon_signal);
6785 if (os_snprintf_error(end - pos, ret))
6786 return -1;
6787 pos += ret;
6788 }
6789
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006790 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006791}
6792
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006793
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006794static int wpas_ctrl_iface_signal_monitor(struct wpa_supplicant *wpa_s,
6795 const char *cmd)
6796{
6797 const char *pos;
6798 int threshold = 0;
6799 int hysteresis = 0;
6800
6801 if (wpa_s->bgscan && wpa_s->bgscan_priv) {
6802 wpa_printf(MSG_DEBUG,
6803 "Reject SIGNAL_MONITOR command - bgscan is active");
6804 return -1;
6805 }
6806 pos = os_strstr(cmd, "THRESHOLD=");
6807 if (pos)
6808 threshold = atoi(pos + 10);
6809 pos = os_strstr(cmd, "HYSTERESIS=");
6810 if (pos)
6811 hysteresis = atoi(pos + 11);
6812 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis);
6813}
6814
6815
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006816static int wpas_ctrl_iface_get_pref_freq_list(
6817 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
6818{
6819 unsigned int freq_list[100], num = 100, i;
6820 int ret;
6821 enum wpa_driver_if_type iface_type;
6822 char *pos, *end;
6823
6824 pos = buf;
6825 end = buf + buflen;
6826
6827 /* buf: "<interface_type>" */
6828 if (os_strcmp(cmd, "STATION") == 0)
6829 iface_type = WPA_IF_STATION;
6830 else if (os_strcmp(cmd, "AP") == 0)
6831 iface_type = WPA_IF_AP_BSS;
6832 else if (os_strcmp(cmd, "P2P_GO") == 0)
6833 iface_type = WPA_IF_P2P_GO;
6834 else if (os_strcmp(cmd, "P2P_CLIENT") == 0)
6835 iface_type = WPA_IF_P2P_CLIENT;
6836 else if (os_strcmp(cmd, "IBSS") == 0)
6837 iface_type = WPA_IF_IBSS;
6838 else if (os_strcmp(cmd, "TDLS") == 0)
6839 iface_type = WPA_IF_TDLS;
6840 else
6841 return -1;
6842
6843 wpa_printf(MSG_DEBUG,
6844 "CTRL_IFACE: GET_PREF_FREQ_LIST iface_type=%d (%s)",
6845 iface_type, buf);
6846
6847 ret = wpa_drv_get_pref_freq_list(wpa_s, iface_type, &num, freq_list);
6848 if (ret)
6849 return -1;
6850
6851 for (i = 0; i < num; i++) {
6852 ret = os_snprintf(pos, end - pos, "%s%u",
6853 i > 0 ? "," : "", freq_list[i]);
6854 if (os_snprintf_error(end - pos, ret))
6855 return -1;
6856 pos += ret;
6857 }
6858
6859 return pos - buf;
6860}
6861
6862
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006863static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
6864 size_t buflen)
6865{
6866 struct hostap_sta_driver_data sta;
6867 int ret;
6868
6869 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
6870 if (ret)
6871 return -1;
6872
6873 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006874 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006875 if (os_snprintf_error(buflen, ret))
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006876 return -1;
6877 return ret;
6878}
6879
6880
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006881#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006882static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6883 char *buf, size_t buflen)
6884{
6885 int ret;
6886
6887 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006888 if (ret == 0) {
6889 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) {
6890 struct p2p_data *p2p = wpa_s->global->p2p;
6891 if (p2p) {
6892 char country[3];
6893 country[0] = cmd[8];
6894 country[1] = cmd[9];
6895 country[2] = 0x04;
6896 p2p_set_country(p2p, country);
6897 }
6898 }
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006899 ret = os_snprintf(buf, buflen, "%s\n", "OK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006900 if (os_snprintf_error(buflen, ret))
6901 ret = -1;
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006902 }
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006903 return ret;
6904}
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006905#endif /* ANDROID */
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006906
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07006907
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006908static int wpa_supplicant_vendor_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6909 char *buf, size_t buflen)
6910{
6911 int ret;
6912 char *pos;
6913 u8 *data = NULL;
6914 unsigned int vendor_id, subcmd;
6915 struct wpabuf *reply;
6916 size_t data_len = 0;
6917
6918 /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
6919 vendor_id = strtoul(cmd, &pos, 16);
6920 if (!isblank(*pos))
6921 return -EINVAL;
6922
6923 subcmd = strtoul(pos, &pos, 10);
6924
6925 if (*pos != '\0') {
6926 if (!isblank(*pos++))
6927 return -EINVAL;
6928 data_len = os_strlen(pos);
6929 }
6930
6931 if (data_len) {
6932 data_len /= 2;
6933 data = os_malloc(data_len);
6934 if (!data)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006935 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006936
6937 if (hexstr2bin(pos, data, data_len)) {
6938 wpa_printf(MSG_DEBUG,
6939 "Vendor command: wrong parameter format");
6940 os_free(data);
6941 return -EINVAL;
6942 }
6943 }
6944
6945 reply = wpabuf_alloc((buflen - 1) / 2);
6946 if (!reply) {
6947 os_free(data);
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006948 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006949 }
6950
6951 ret = wpa_drv_vendor_cmd(wpa_s, vendor_id, subcmd, data, data_len,
6952 reply);
6953
6954 if (ret == 0)
6955 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
6956 wpabuf_len(reply));
6957
6958 wpabuf_free(reply);
6959 os_free(data);
6960
6961 return ret;
6962}
6963
6964
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006965static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
6966{
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006967#ifdef CONFIG_P2P
6968 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s ?
6969 wpa_s->global->p2p_init_wpa_s : wpa_s;
6970#endif /* CONFIG_P2P */
6971
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006972 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
6973
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08006974 wpas_abort_ongoing_scan(wpa_s);
6975
Dmitry Shmidtde47be72016-01-07 12:52:55 -08006976 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
6977 /*
6978 * Avoid possible auto connect re-connection on getting
6979 * disconnected due to state flush.
6980 */
6981 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
6982 }
6983
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006984#ifdef CONFIG_P2P
Dmitry Shmidtde47be72016-01-07 12:52:55 -08006985 wpas_p2p_group_remove(p2p_wpa_s, "*");
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006986 wpas_p2p_cancel(p2p_wpa_s);
6987 p2p_ctrl_flush(p2p_wpa_s);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006988 wpas_p2p_service_flush(p2p_wpa_s);
6989 p2p_wpa_s->global->p2p_disabled = 0;
6990 p2p_wpa_s->global->p2p_per_sta_psk = 0;
6991 p2p_wpa_s->conf->num_sec_device_types = 0;
6992 p2p_wpa_s->p2p_disable_ip_addr_req = 0;
6993 os_free(p2p_wpa_s->global->p2p_go_avoid_freq.range);
6994 p2p_wpa_s->global->p2p_go_avoid_freq.range = NULL;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006995 p2p_wpa_s->global->p2p_go_avoid_freq.num = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08006996 p2p_wpa_s->global->pending_p2ps_group = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006997 p2p_wpa_s->global->pending_p2ps_group_freq = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006998#endif /* CONFIG_P2P */
6999
7000#ifdef CONFIG_WPS_TESTING
7001 wps_version_number = 0x20;
7002 wps_testing_dummy_cred = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08007003 wps_corrupt_pkhash = 0;
Dmitry Shmidtde47be72016-01-07 12:52:55 -08007004 wps_force_auth_types_in_use = 0;
7005 wps_force_encr_types_in_use = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007006#endif /* CONFIG_WPS_TESTING */
7007#ifdef CONFIG_WPS
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007008 wpa_s->wps_fragment_size = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007009 wpas_wps_cancel(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007010 wps_registrar_flush(wpa_s->wps->registrar);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007011#endif /* CONFIG_WPS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07007012 wpa_s->after_wps = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007013 wpa_s->known_wps_freq = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007014
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007015#ifdef CONFIG_TDLS
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007016#ifdef CONFIG_TDLS_TESTING
7017 extern unsigned int tdls_testing;
7018 tdls_testing = 0;
7019#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007020 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
7021 wpa_tdls_enable(wpa_s->wpa, 1);
7022#endif /* CONFIG_TDLS */
7023
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07007024 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
7025 wpa_supplicant_stop_countermeasures(wpa_s, NULL);
7026
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007027 wpa_s->no_keep_alive = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08007028 wpa_s->own_disconnect_req = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007029
7030 os_free(wpa_s->disallow_aps_bssid);
7031 wpa_s->disallow_aps_bssid = NULL;
7032 wpa_s->disallow_aps_bssid_count = 0;
7033 os_free(wpa_s->disallow_aps_ssid);
7034 wpa_s->disallow_aps_ssid = NULL;
7035 wpa_s->disallow_aps_ssid_count = 0;
7036
7037 wpa_s->set_sta_uapsd = 0;
7038 wpa_s->sta_uapsd = 0;
7039
7040 wpa_drv_radio_disable(wpa_s, 0);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007041 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07007042 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007043 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
7044 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
Dmitry Shmidt344abd32014-01-14 13:17:00 -08007045 wpa_config_flush_blobs(wpa_s->conf);
Dmitry Shmidt18463232014-01-24 12:29:41 -08007046 wpa_s->conf->auto_interworking = 0;
7047 wpa_s->conf->okc = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007048
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007049 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
7050 rsn_preauth_deinit(wpa_s->wpa);
7051
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007052 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200);
7053 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70);
7054 wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, 60);
7055 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
7056
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08007057 radio_remove_works(wpa_s, NULL, 1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007058 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007059
7060 wpa_s->next_ssid = NULL;
7061
7062#ifdef CONFIG_INTERWORKING
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007063#ifdef CONFIG_HS20
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007064 hs20_cancel_fetch_osu(wpa_s);
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08007065 hs20_del_icon(wpa_s, NULL, NULL);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007066#endif /* CONFIG_HS20 */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007067#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007068
7069 wpa_s->ext_mgmt_frame_handling = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007070 wpa_s->ext_eapol_frame_io = 0;
7071#ifdef CONFIG_TESTING_OPTIONS
7072 wpa_s->extra_roc_dur = 0;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007073 wpa_s->test_failure = WPAS_TEST_FAILURE_NONE;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007074 wpa_s->p2p_go_csa_on_inv = 0;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007075 wpa_sm_set_test_assoc_ie(wpa_s->wpa, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007076#endif /* CONFIG_TESTING_OPTIONS */
7077
7078 wpa_s->disconnected = 0;
7079 os_free(wpa_s->next_scan_freqs);
7080 wpa_s->next_scan_freqs = NULL;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007081
7082 wpa_bss_flush(wpa_s);
7083 if (!dl_list_empty(&wpa_s->bss)) {
7084 wpa_printf(MSG_DEBUG,
7085 "BSS table not empty after flush: %u entries, current_bss=%p bssid="
7086 MACSTR " pending_bssid=" MACSTR,
7087 dl_list_len(&wpa_s->bss), wpa_s->current_bss,
7088 MAC2STR(wpa_s->bssid),
7089 MAC2STR(wpa_s->pending_bssid));
7090 }
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07007091
7092 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
Dmitry Shmidtb70d0bb2015-11-16 10:43:06 -08007093 wpa_s->wnmsleep_used = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007094}
7095
7096
7097static int wpas_ctrl_radio_work_show(struct wpa_supplicant *wpa_s,
7098 char *buf, size_t buflen)
7099{
7100 struct wpa_radio_work *work;
7101 char *pos, *end;
7102 struct os_reltime now, diff;
7103
7104 pos = buf;
7105 end = buf + buflen;
7106
7107 os_get_reltime(&now);
7108
7109 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7110 {
7111 int ret;
7112
7113 os_reltime_sub(&now, &work->time, &diff);
7114 ret = os_snprintf(pos, end - pos, "%s@%s:%u:%u:%ld.%06ld\n",
7115 work->type, work->wpa_s->ifname, work->freq,
7116 work->started, diff.sec, diff.usec);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007117 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007118 break;
7119 pos += ret;
7120 }
7121
7122 return pos - buf;
7123}
7124
7125
7126static void wpas_ctrl_radio_work_timeout(void *eloop_ctx, void *timeout_ctx)
7127{
7128 struct wpa_radio_work *work = eloop_ctx;
7129 struct wpa_external_work *ework = work->ctx;
7130
7131 wpa_dbg(work->wpa_s, MSG_DEBUG,
7132 "Timing out external radio work %u (%s)",
7133 ework->id, work->type);
7134 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_TIMEOUT "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007135 work->wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007136 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07007137 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007138}
7139
7140
7141static void wpas_ctrl_radio_work_cb(struct wpa_radio_work *work, int deinit)
7142{
7143 struct wpa_external_work *ework = work->ctx;
7144
7145 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08007146 if (work->started)
7147 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7148 work, NULL);
7149
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007150 os_free(ework);
7151 return;
7152 }
7153
7154 wpa_dbg(work->wpa_s, MSG_DEBUG, "Starting external radio work %u (%s)",
7155 ework->id, ework->type);
7156 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_START "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007157 work->wpa_s->ext_work_in_progress = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007158 if (!ework->timeout)
7159 ework->timeout = 10;
7160 eloop_register_timeout(ework->timeout, 0, wpas_ctrl_radio_work_timeout,
7161 work, NULL);
7162}
7163
7164
7165static int wpas_ctrl_radio_work_add(struct wpa_supplicant *wpa_s, char *cmd,
7166 char *buf, size_t buflen)
7167{
7168 struct wpa_external_work *ework;
7169 char *pos, *pos2;
7170 size_t type_len;
7171 int ret;
7172 unsigned int freq = 0;
7173
7174 /* format: <name> [freq=<MHz>] [timeout=<seconds>] */
7175
7176 ework = os_zalloc(sizeof(*ework));
7177 if (ework == NULL)
7178 return -1;
7179
7180 pos = os_strchr(cmd, ' ');
7181 if (pos) {
7182 type_len = pos - cmd;
7183 pos++;
7184
7185 pos2 = os_strstr(pos, "freq=");
7186 if (pos2)
7187 freq = atoi(pos2 + 5);
7188
7189 pos2 = os_strstr(pos, "timeout=");
7190 if (pos2)
7191 ework->timeout = atoi(pos2 + 8);
7192 } else {
7193 type_len = os_strlen(cmd);
7194 }
7195 if (4 + type_len >= sizeof(ework->type))
7196 type_len = sizeof(ework->type) - 4 - 1;
7197 os_strlcpy(ework->type, "ext:", sizeof(ework->type));
7198 os_memcpy(ework->type + 4, cmd, type_len);
7199 ework->type[4 + type_len] = '\0';
7200
7201 wpa_s->ext_work_id++;
7202 if (wpa_s->ext_work_id == 0)
7203 wpa_s->ext_work_id++;
7204 ework->id = wpa_s->ext_work_id;
7205
7206 if (radio_add_work(wpa_s, freq, ework->type, 0, wpas_ctrl_radio_work_cb,
7207 ework) < 0) {
7208 os_free(ework);
7209 return -1;
7210 }
7211
7212 ret = os_snprintf(buf, buflen, "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007213 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007214 return -1;
7215 return ret;
7216}
7217
7218
7219static int wpas_ctrl_radio_work_done(struct wpa_supplicant *wpa_s, char *cmd)
7220{
7221 struct wpa_radio_work *work;
7222 unsigned int id = atoi(cmd);
7223
7224 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7225 {
7226 struct wpa_external_work *ework;
7227
7228 if (os_strncmp(work->type, "ext:", 4) != 0)
7229 continue;
7230 ework = work->ctx;
7231 if (id && ework->id != id)
7232 continue;
7233 wpa_dbg(wpa_s, MSG_DEBUG,
7234 "Completed external radio work %u (%s)",
7235 ework->id, ework->type);
7236 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout, work, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007237 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007238 radio_work_done(work);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07007239 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007240 return 3; /* "OK\n" */
7241 }
7242
7243 return -1;
7244}
7245
7246
7247static int wpas_ctrl_radio_work(struct wpa_supplicant *wpa_s, char *cmd,
7248 char *buf, size_t buflen)
7249{
7250 if (os_strcmp(cmd, "show") == 0)
7251 return wpas_ctrl_radio_work_show(wpa_s, buf, buflen);
7252 if (os_strncmp(cmd, "add ", 4) == 0)
7253 return wpas_ctrl_radio_work_add(wpa_s, cmd + 4, buf, buflen);
7254 if (os_strncmp(cmd, "done ", 5) == 0)
7255 return wpas_ctrl_radio_work_done(wpa_s, cmd + 4);
7256 return -1;
7257}
7258
7259
7260void wpas_ctrl_radio_work_flush(struct wpa_supplicant *wpa_s)
7261{
7262 struct wpa_radio_work *work, *tmp;
7263
Dmitry Shmidt18463232014-01-24 12:29:41 -08007264 if (!wpa_s || !wpa_s->radio)
7265 return;
7266
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007267 dl_list_for_each_safe(work, tmp, &wpa_s->radio->work,
7268 struct wpa_radio_work, list) {
7269 struct wpa_external_work *ework;
7270
7271 if (os_strncmp(work->type, "ext:", 4) != 0)
7272 continue;
7273 ework = work->ctx;
7274 wpa_dbg(wpa_s, MSG_DEBUG,
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07007275 "Flushing%s external radio work %u (%s)",
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007276 work->started ? " started" : "", ework->id,
7277 ework->type);
7278 if (work->started)
7279 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7280 work, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007281 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07007282 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007283 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007284}
7285
7286
Dmitry Shmidt051af732013-10-22 13:52:46 -07007287static void wpas_ctrl_eapol_response(void *eloop_ctx, void *timeout_ctx)
7288{
7289 struct wpa_supplicant *wpa_s = eloop_ctx;
7290 eapol_sm_notify_ctrl_response(wpa_s->eapol);
7291}
7292
7293
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007294static int scan_id_list_parse(struct wpa_supplicant *wpa_s, const char *value,
7295 unsigned int *scan_id_count, int scan_id[])
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007296{
7297 const char *pos = value;
7298
7299 while (pos) {
7300 if (*pos == ' ' || *pos == '\0')
7301 break;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007302 if (*scan_id_count == MAX_SCAN_ID)
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007303 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007304 scan_id[(*scan_id_count)++] = atoi(pos);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007305 pos = os_strchr(pos, ',');
7306 if (pos)
7307 pos++;
7308 }
7309
7310 return 0;
7311}
7312
7313
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007314static void wpas_ctrl_scan(struct wpa_supplicant *wpa_s, char *params,
7315 char *reply, int reply_size, int *reply_len)
7316{
7317 char *pos;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007318 unsigned int manual_scan_passive = 0;
7319 unsigned int manual_scan_use_id = 0;
7320 unsigned int manual_scan_only_new = 0;
7321 unsigned int scan_only = 0;
7322 unsigned int scan_id_count = 0;
7323 int scan_id[MAX_SCAN_ID];
7324 void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
7325 struct wpa_scan_results *scan_res);
7326 int *manual_scan_freqs = NULL;
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007327 struct wpa_ssid_value *ssid = NULL, *ns;
7328 unsigned int ssid_count = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007329
7330 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
7331 *reply_len = -1;
7332 return;
7333 }
7334
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007335 if (radio_work_pending(wpa_s, "scan")) {
7336 wpa_printf(MSG_DEBUG,
7337 "Pending scan scheduled - reject new request");
7338 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7339 return;
7340 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007341
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07007342#ifdef CONFIG_INTERWORKING
7343 if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select) {
7344 wpa_printf(MSG_DEBUG,
7345 "Interworking select in progress - reject new scan");
7346 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7347 return;
7348 }
7349#endif /* CONFIG_INTERWORKING */
7350
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007351 if (params) {
7352 if (os_strncasecmp(params, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007353 scan_only = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007354
7355 pos = os_strstr(params, "freq=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007356 if (pos) {
7357 manual_scan_freqs = freq_range_to_channel_list(wpa_s,
7358 pos + 5);
7359 if (manual_scan_freqs == NULL) {
7360 *reply_len = -1;
7361 goto done;
7362 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007363 }
7364
7365 pos = os_strstr(params, "passive=");
7366 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007367 manual_scan_passive = !!atoi(pos + 8);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007368
7369 pos = os_strstr(params, "use_id=");
7370 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007371 manual_scan_use_id = atoi(pos + 7);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007372
7373 pos = os_strstr(params, "only_new=1");
7374 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007375 manual_scan_only_new = 1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007376
7377 pos = os_strstr(params, "scan_id=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007378 if (pos && scan_id_list_parse(wpa_s, pos + 8, &scan_id_count,
7379 scan_id) < 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007380 *reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007381 goto done;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007382 }
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007383
7384 pos = params;
7385 while (pos && *pos != '\0') {
7386 if (os_strncmp(pos, "ssid ", 5) == 0) {
7387 char *end;
7388
7389 pos += 5;
7390 end = pos;
7391 while (*end) {
7392 if (*end == '\0' || *end == ' ')
7393 break;
7394 end++;
7395 }
7396
7397 ns = os_realloc_array(
7398 ssid, ssid_count + 1,
7399 sizeof(struct wpa_ssid_value));
7400 if (ns == NULL) {
7401 *reply_len = -1;
7402 goto done;
7403 }
7404 ssid = ns;
7405
7406 if ((end - pos) & 0x01 ||
7407 end - pos > 2 * SSID_MAX_LEN ||
7408 hexstr2bin(pos, ssid[ssid_count].ssid,
7409 (end - pos) / 2) < 0) {
7410 wpa_printf(MSG_DEBUG,
7411 "Invalid SSID value '%s'",
7412 pos);
7413 *reply_len = -1;
7414 goto done;
7415 }
7416 ssid[ssid_count].ssid_len = (end - pos) / 2;
7417 wpa_hexdump_ascii(MSG_DEBUG, "scan SSID",
7418 ssid[ssid_count].ssid,
7419 ssid[ssid_count].ssid_len);
7420 ssid_count++;
7421 pos = end;
7422 }
7423
7424 pos = os_strchr(pos, ' ');
7425 if (pos)
7426 pos++;
7427 }
7428 }
7429
7430 wpa_s->num_ssids_from_scan_req = ssid_count;
7431 os_free(wpa_s->ssids_from_scan_req);
7432 if (ssid_count) {
7433 wpa_s->ssids_from_scan_req = ssid;
7434 ssid = NULL;
7435 } else {
7436 wpa_s->ssids_from_scan_req = NULL;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007437 }
7438
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007439 if (scan_only)
7440 scan_res_handler = scan_only_handler;
7441 else if (wpa_s->scan_res_handler == scan_only_handler)
7442 scan_res_handler = NULL;
7443 else
7444 scan_res_handler = wpa_s->scan_res_handler;
7445
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007446 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
7447 ((wpa_s->wpa_state <= WPA_SCANNING) ||
7448 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007449 wpa_s->manual_scan_passive = manual_scan_passive;
7450 wpa_s->manual_scan_use_id = manual_scan_use_id;
7451 wpa_s->manual_scan_only_new = manual_scan_only_new;
7452 wpa_s->scan_id_count = scan_id_count;
7453 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
7454 wpa_s->scan_res_handler = scan_res_handler;
7455 os_free(wpa_s->manual_scan_freqs);
7456 wpa_s->manual_scan_freqs = manual_scan_freqs;
7457 manual_scan_freqs = NULL;
7458
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007459 wpa_s->normal_scans = 0;
7460 wpa_s->scan_req = MANUAL_SCAN_REQ;
7461 wpa_s->after_wps = 0;
7462 wpa_s->known_wps_freq = 0;
7463 wpa_supplicant_req_scan(wpa_s, 0, 0);
7464 if (wpa_s->manual_scan_use_id) {
7465 wpa_s->manual_scan_id++;
7466 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7467 wpa_s->manual_scan_id);
7468 *reply_len = os_snprintf(reply, reply_size, "%u\n",
7469 wpa_s->manual_scan_id);
7470 }
7471 } else if (wpa_s->sched_scanning) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007472 wpa_s->manual_scan_passive = manual_scan_passive;
7473 wpa_s->manual_scan_use_id = manual_scan_use_id;
7474 wpa_s->manual_scan_only_new = manual_scan_only_new;
7475 wpa_s->scan_id_count = scan_id_count;
7476 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
7477 wpa_s->scan_res_handler = scan_res_handler;
7478 os_free(wpa_s->manual_scan_freqs);
7479 wpa_s->manual_scan_freqs = manual_scan_freqs;
7480 manual_scan_freqs = NULL;
7481
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007482 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to allow requested full scan to proceed");
7483 wpa_supplicant_cancel_sched_scan(wpa_s);
7484 wpa_s->scan_req = MANUAL_SCAN_REQ;
7485 wpa_supplicant_req_scan(wpa_s, 0, 0);
7486 if (wpa_s->manual_scan_use_id) {
7487 wpa_s->manual_scan_id++;
7488 *reply_len = os_snprintf(reply, reply_size, "%u\n",
7489 wpa_s->manual_scan_id);
7490 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7491 wpa_s->manual_scan_id);
7492 }
7493 } else {
7494 wpa_printf(MSG_DEBUG, "Ongoing scan action - reject new request");
7495 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7496 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007497
7498done:
7499 os_free(manual_scan_freqs);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007500 os_free(ssid);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007501}
7502
7503
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007504#ifdef CONFIG_TESTING_OPTIONS
7505
7506static void wpas_ctrl_iface_mgmt_tx_cb(struct wpa_supplicant *wpa_s,
7507 unsigned int freq, const u8 *dst,
7508 const u8 *src, const u8 *bssid,
7509 const u8 *data, size_t data_len,
7510 enum offchannel_send_action_result
7511 result)
7512{
7513 wpa_msg(wpa_s, MSG_INFO, "MGMT-TX-STATUS freq=%u dst=" MACSTR
7514 " src=" MACSTR " bssid=" MACSTR " result=%s",
7515 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
7516 result == OFFCHANNEL_SEND_ACTION_SUCCESS ?
7517 "SUCCESS" : (result == OFFCHANNEL_SEND_ACTION_NO_ACK ?
7518 "NO_ACK" : "FAILED"));
7519}
7520
7521
7522static int wpas_ctrl_iface_mgmt_tx(struct wpa_supplicant *wpa_s, char *cmd)
7523{
7524 char *pos, *param;
7525 size_t len;
7526 u8 *buf, da[ETH_ALEN], bssid[ETH_ALEN];
7527 int res, used;
7528 int freq = 0, no_cck = 0, wait_time = 0;
7529
7530 /* <DA> <BSSID> [freq=<MHz>] [wait_time=<ms>] [no_cck=1]
7531 * <action=Action frame payload> */
7532
7533 wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
7534
7535 pos = cmd;
7536 used = hwaddr_aton2(pos, da);
7537 if (used < 0)
7538 return -1;
7539 pos += used;
7540 while (*pos == ' ')
7541 pos++;
7542 used = hwaddr_aton2(pos, bssid);
7543 if (used < 0)
7544 return -1;
7545 pos += used;
7546
7547 param = os_strstr(pos, " freq=");
7548 if (param) {
7549 param += 6;
7550 freq = atoi(param);
7551 }
7552
7553 param = os_strstr(pos, " no_cck=");
7554 if (param) {
7555 param += 8;
7556 no_cck = atoi(param);
7557 }
7558
7559 param = os_strstr(pos, " wait_time=");
7560 if (param) {
7561 param += 11;
7562 wait_time = atoi(param);
7563 }
7564
7565 param = os_strstr(pos, " action=");
7566 if (param == NULL)
7567 return -1;
7568 param += 8;
7569
7570 len = os_strlen(param);
7571 if (len & 1)
7572 return -1;
7573 len /= 2;
7574
7575 buf = os_malloc(len);
7576 if (buf == NULL)
7577 return -1;
7578
7579 if (hexstr2bin(param, buf, len) < 0) {
7580 os_free(buf);
7581 return -1;
7582 }
7583
7584 res = offchannel_send_action(wpa_s, freq, da, wpa_s->own_addr, bssid,
7585 buf, len, wait_time,
7586 wpas_ctrl_iface_mgmt_tx_cb, no_cck);
7587 os_free(buf);
7588 return res;
7589}
7590
7591
7592static void wpas_ctrl_iface_mgmt_tx_done(struct wpa_supplicant *wpa_s)
7593{
7594 wpa_printf(MSG_DEBUG, "External MGMT TX - done waiting");
7595 offchannel_send_action_done(wpa_s);
7596}
7597
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07007598
7599static int wpas_ctrl_iface_driver_event(struct wpa_supplicant *wpa_s, char *cmd)
7600{
7601 char *pos, *param;
7602 union wpa_event_data event;
7603 enum wpa_event_type ev;
7604
7605 /* <event name> [parameters..] */
7606
7607 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - external driver event: %s", cmd);
7608
7609 pos = cmd;
7610 param = os_strchr(pos, ' ');
7611 if (param)
7612 *param++ = '\0';
7613
7614 os_memset(&event, 0, sizeof(event));
7615
7616 if (os_strcmp(cmd, "INTERFACE_ENABLED") == 0) {
7617 ev = EVENT_INTERFACE_ENABLED;
7618 } else if (os_strcmp(cmd, "INTERFACE_DISABLED") == 0) {
7619 ev = EVENT_INTERFACE_DISABLED;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07007620 } else if (os_strcmp(cmd, "AVOID_FREQUENCIES") == 0) {
7621 ev = EVENT_AVOID_FREQUENCIES;
7622 if (param == NULL)
7623 param = "";
7624 if (freq_range_list_parse(&event.freq_range, param) < 0)
7625 return -1;
7626 wpa_supplicant_event(wpa_s, ev, &event);
7627 os_free(event.freq_range.range);
7628 return 0;
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07007629 } else {
7630 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - unknown driver event: %s",
7631 cmd);
7632 return -1;
7633 }
7634
7635 wpa_supplicant_event(wpa_s, ev, &event);
7636
7637 return 0;
7638}
7639
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007640
7641static int wpas_ctrl_iface_eapol_rx(struct wpa_supplicant *wpa_s, char *cmd)
7642{
7643 char *pos;
7644 u8 src[ETH_ALEN], *buf;
7645 int used;
7646 size_t len;
7647
7648 wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
7649
7650 pos = cmd;
7651 used = hwaddr_aton2(pos, src);
7652 if (used < 0)
7653 return -1;
7654 pos += used;
7655 while (*pos == ' ')
7656 pos++;
7657
7658 len = os_strlen(pos);
7659 if (len & 1)
7660 return -1;
7661 len /= 2;
7662
7663 buf = os_malloc(len);
7664 if (buf == NULL)
7665 return -1;
7666
7667 if (hexstr2bin(pos, buf, len) < 0) {
7668 os_free(buf);
7669 return -1;
7670 }
7671
7672 wpa_supplicant_rx_eapol(wpa_s, src, buf, len);
7673 os_free(buf);
7674
7675 return 0;
7676}
7677
7678
7679static u16 ipv4_hdr_checksum(const void *buf, size_t len)
7680{
7681 size_t i;
7682 u32 sum = 0;
7683 const u16 *pos = buf;
7684
7685 for (i = 0; i < len / 2; i++)
7686 sum += *pos++;
7687
7688 while (sum >> 16)
7689 sum = (sum & 0xffff) + (sum >> 16);
7690
7691 return sum ^ 0xffff;
7692}
7693
7694
7695#define HWSIM_PACKETLEN 1500
7696#define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
7697
7698void wpas_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf, size_t len)
7699{
7700 struct wpa_supplicant *wpa_s = ctx;
7701 const struct ether_header *eth;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007702 struct iphdr ip;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007703 const u8 *pos;
7704 unsigned int i;
7705
7706 if (len != HWSIM_PACKETLEN)
7707 return;
7708
7709 eth = (const struct ether_header *) buf;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007710 os_memcpy(&ip, eth + 1, sizeof(ip));
7711 pos = &buf[sizeof(*eth) + sizeof(ip)];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007712
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007713 if (ip.ihl != 5 || ip.version != 4 ||
7714 ntohs(ip.tot_len) != HWSIM_IP_LEN)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007715 return;
7716
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007717 for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007718 if (*pos != (u8) i)
7719 return;
7720 pos++;
7721 }
7722
7723 wpa_msg(wpa_s, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
7724 MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
7725}
7726
7727
7728static int wpas_ctrl_iface_data_test_config(struct wpa_supplicant *wpa_s,
7729 char *cmd)
7730{
7731 int enabled = atoi(cmd);
7732
7733 if (!enabled) {
7734 if (wpa_s->l2_test) {
7735 l2_packet_deinit(wpa_s->l2_test);
7736 wpa_s->l2_test = NULL;
7737 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Disabled");
7738 }
7739 return 0;
7740 }
7741
7742 if (wpa_s->l2_test)
7743 return 0;
7744
7745 wpa_s->l2_test = l2_packet_init(wpa_s->ifname, wpa_s->own_addr,
7746 ETHERTYPE_IP, wpas_data_test_rx,
7747 wpa_s, 1);
7748 if (wpa_s->l2_test == NULL)
7749 return -1;
7750
7751 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Enabled");
7752
7753 return 0;
7754}
7755
7756
7757static int wpas_ctrl_iface_data_test_tx(struct wpa_supplicant *wpa_s, char *cmd)
7758{
7759 u8 dst[ETH_ALEN], src[ETH_ALEN];
7760 char *pos;
7761 int used;
7762 long int val;
7763 u8 tos;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007764 u8 buf[2 + HWSIM_PACKETLEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007765 struct ether_header *eth;
7766 struct iphdr *ip;
7767 u8 *dpos;
7768 unsigned int i;
7769
7770 if (wpa_s->l2_test == NULL)
7771 return -1;
7772
7773 /* format: <dst> <src> <tos> */
7774
7775 pos = cmd;
7776 used = hwaddr_aton2(pos, dst);
7777 if (used < 0)
7778 return -1;
7779 pos += used;
7780 while (*pos == ' ')
7781 pos++;
7782 used = hwaddr_aton2(pos, src);
7783 if (used < 0)
7784 return -1;
7785 pos += used;
7786
7787 val = strtol(pos, NULL, 0);
7788 if (val < 0 || val > 0xff)
7789 return -1;
7790 tos = val;
7791
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007792 eth = (struct ether_header *) &buf[2];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007793 os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
7794 os_memcpy(eth->ether_shost, src, ETH_ALEN);
7795 eth->ether_type = htons(ETHERTYPE_IP);
7796 ip = (struct iphdr *) (eth + 1);
7797 os_memset(ip, 0, sizeof(*ip));
7798 ip->ihl = 5;
7799 ip->version = 4;
7800 ip->ttl = 64;
7801 ip->tos = tos;
7802 ip->tot_len = htons(HWSIM_IP_LEN);
7803 ip->protocol = 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007804 ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
7805 ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007806 ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
7807 dpos = (u8 *) (ip + 1);
7808 for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
7809 *dpos++ = i;
7810
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007811 if (l2_packet_send(wpa_s->l2_test, dst, ETHERTYPE_IP, &buf[2],
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007812 HWSIM_PACKETLEN) < 0)
7813 return -1;
7814
7815 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX dst=" MACSTR " src=" MACSTR
7816 " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
7817
7818 return 0;
7819}
7820
7821
7822static int wpas_ctrl_iface_data_test_frame(struct wpa_supplicant *wpa_s,
7823 char *cmd)
7824{
7825 u8 *buf;
7826 struct ether_header *eth;
7827 struct l2_packet_data *l2 = NULL;
7828 size_t len;
7829 u16 ethertype;
7830 int res = -1;
7831
7832 len = os_strlen(cmd);
7833 if (len & 1 || len < ETH_HLEN * 2)
7834 return -1;
7835 len /= 2;
7836
7837 buf = os_malloc(len);
7838 if (buf == NULL)
7839 return -1;
7840
7841 if (hexstr2bin(cmd, buf, len) < 0)
7842 goto done;
7843
7844 eth = (struct ether_header *) buf;
7845 ethertype = ntohs(eth->ether_type);
7846
7847 l2 = l2_packet_init(wpa_s->ifname, wpa_s->own_addr, ethertype,
7848 wpas_data_test_rx, wpa_s, 1);
7849 if (l2 == NULL)
7850 goto done;
7851
7852 res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
7853 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX frame res=%d", res);
7854done:
7855 if (l2)
7856 l2_packet_deinit(l2);
7857 os_free(buf);
7858
7859 return res < 0 ? -1 : 0;
7860}
7861
Dmitry Shmidtff787d52015-01-12 13:01:47 -08007862
7863static int wpas_ctrl_test_alloc_fail(struct wpa_supplicant *wpa_s, char *cmd)
7864{
7865#ifdef WPA_TRACE_BFD
7866 extern char wpa_trace_fail_func[256];
7867 extern unsigned int wpa_trace_fail_after;
7868 char *pos;
7869
7870 wpa_trace_fail_after = atoi(cmd);
7871 pos = os_strchr(cmd, ':');
7872 if (pos) {
7873 pos++;
7874 os_strlcpy(wpa_trace_fail_func, pos,
7875 sizeof(wpa_trace_fail_func));
7876 } else {
7877 wpa_trace_fail_after = 0;
7878 }
7879 return 0;
7880#else /* WPA_TRACE_BFD */
7881 return -1;
7882#endif /* WPA_TRACE_BFD */
7883}
7884
7885
7886static int wpas_ctrl_get_alloc_fail(struct wpa_supplicant *wpa_s,
7887 char *buf, size_t buflen)
7888{
7889#ifdef WPA_TRACE_BFD
7890 extern char wpa_trace_fail_func[256];
7891 extern unsigned int wpa_trace_fail_after;
7892
7893 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
7894 wpa_trace_fail_func);
7895#else /* WPA_TRACE_BFD */
7896 return -1;
7897#endif /* WPA_TRACE_BFD */
7898}
7899
Jouni Malinenc4818362015-10-04 11:45:13 +03007900
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007901static int wpas_ctrl_test_fail(struct wpa_supplicant *wpa_s, char *cmd)
7902{
7903#ifdef WPA_TRACE_BFD
7904 extern char wpa_trace_test_fail_func[256];
7905 extern unsigned int wpa_trace_test_fail_after;
7906 char *pos;
7907
7908 wpa_trace_test_fail_after = atoi(cmd);
7909 pos = os_strchr(cmd, ':');
7910 if (pos) {
7911 pos++;
7912 os_strlcpy(wpa_trace_test_fail_func, pos,
7913 sizeof(wpa_trace_test_fail_func));
7914 } else {
7915 wpa_trace_test_fail_after = 0;
7916 }
7917 return 0;
7918#else /* WPA_TRACE_BFD */
7919 return -1;
7920#endif /* WPA_TRACE_BFD */
7921}
7922
7923
7924static int wpas_ctrl_get_fail(struct wpa_supplicant *wpa_s,
7925 char *buf, size_t buflen)
7926{
7927#ifdef WPA_TRACE_BFD
7928 extern char wpa_trace_test_fail_func[256];
7929 extern unsigned int wpa_trace_test_fail_after;
7930
7931 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
7932 wpa_trace_test_fail_func);
7933#else /* WPA_TRACE_BFD */
7934 return -1;
7935#endif /* WPA_TRACE_BFD */
7936}
7937
7938
Jouni Malinenc4818362015-10-04 11:45:13 +03007939static void wpas_ctrl_event_test_cb(void *eloop_ctx, void *timeout_ctx)
7940{
7941 struct wpa_supplicant *wpa_s = eloop_ctx;
7942 int i, count = (intptr_t) timeout_ctx;
7943
7944 wpa_printf(MSG_DEBUG, "TEST: Send %d control interface event messages",
7945 count);
7946 for (i = 0; i < count; i++) {
7947 wpa_msg_ctrl(wpa_s, MSG_INFO, "TEST-EVENT-MESSAGE %d/%d",
7948 i + 1, count);
7949 }
7950}
7951
7952
7953static int wpas_ctrl_event_test(struct wpa_supplicant *wpa_s, const char *cmd)
7954{
7955 int count;
7956
7957 count = atoi(cmd);
7958 if (count <= 0)
7959 return -1;
7960
7961 return eloop_register_timeout(0, 0, wpas_ctrl_event_test_cb, wpa_s,
7962 (void *) (intptr_t) count);
7963}
7964
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007965
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007966static int wpas_ctrl_test_assoc_ie(struct wpa_supplicant *wpa_s,
7967 const char *cmd)
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007968{
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007969 struct wpabuf *buf;
7970 size_t len;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007971
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007972 len = os_strlen(cmd);
7973 if (len & 1)
7974 return -1;
7975 len /= 2;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007976
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007977 if (len == 0) {
7978 buf = NULL;
7979 } else {
7980 buf = wpabuf_alloc(len);
7981 if (buf == NULL)
7982 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007983
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007984 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
7985 wpabuf_free(buf);
7986 return -1;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007987 }
7988 }
7989
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007990 wpa_sm_set_test_assoc_ie(wpa_s->wpa, buf);
7991 return 0;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007992}
7993
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007994#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07007995
7996
7997static int wpas_ctrl_vendor_elem_add(struct wpa_supplicant *wpa_s, char *cmd)
7998{
7999 char *pos = cmd;
8000 int frame;
8001 size_t len;
8002 struct wpabuf *buf;
8003 struct ieee802_11_elems elems;
8004
8005 frame = atoi(pos);
8006 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8007 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008008 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008009
8010 pos = os_strchr(pos, ' ');
8011 if (pos == NULL)
8012 return -1;
8013 pos++;
8014
8015 len = os_strlen(pos);
8016 if (len == 0)
8017 return 0;
8018 if (len & 1)
8019 return -1;
8020 len /= 2;
8021
8022 buf = wpabuf_alloc(len);
8023 if (buf == NULL)
8024 return -1;
8025
8026 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
8027 wpabuf_free(buf);
8028 return -1;
8029 }
8030
8031 if (ieee802_11_parse_elems(wpabuf_head_u8(buf), len, &elems, 0) ==
8032 ParseFailed) {
8033 wpabuf_free(buf);
8034 return -1;
8035 }
8036
8037 if (wpa_s->vendor_elem[frame] == NULL) {
8038 wpa_s->vendor_elem[frame] = buf;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008039 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008040 return 0;
8041 }
8042
8043 if (wpabuf_resize(&wpa_s->vendor_elem[frame], len) < 0) {
8044 wpabuf_free(buf);
8045 return -1;
8046 }
8047
8048 wpabuf_put_buf(wpa_s->vendor_elem[frame], buf);
8049 wpabuf_free(buf);
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008050 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008051
8052 return 0;
8053}
8054
8055
8056static int wpas_ctrl_vendor_elem_get(struct wpa_supplicant *wpa_s, char *cmd,
8057 char *buf, size_t buflen)
8058{
8059 int frame = atoi(cmd);
8060
8061 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8062 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008063 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008064
8065 if (wpa_s->vendor_elem[frame] == NULL)
8066 return 0;
8067
8068 return wpa_snprintf_hex(buf, buflen,
8069 wpabuf_head_u8(wpa_s->vendor_elem[frame]),
8070 wpabuf_len(wpa_s->vendor_elem[frame]));
8071}
8072
8073
8074static int wpas_ctrl_vendor_elem_remove(struct wpa_supplicant *wpa_s, char *cmd)
8075{
8076 char *pos = cmd;
8077 int frame;
8078 size_t len;
8079 u8 *buf;
8080 struct ieee802_11_elems elems;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008081 int res;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008082
8083 frame = atoi(pos);
8084 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8085 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008086 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008087
8088 pos = os_strchr(pos, ' ');
8089 if (pos == NULL)
8090 return -1;
8091 pos++;
8092
8093 if (*pos == '*') {
8094 wpabuf_free(wpa_s->vendor_elem[frame]);
8095 wpa_s->vendor_elem[frame] = NULL;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008096 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008097 return 0;
8098 }
8099
8100 if (wpa_s->vendor_elem[frame] == NULL)
8101 return -1;
8102
8103 len = os_strlen(pos);
8104 if (len == 0)
8105 return 0;
8106 if (len & 1)
8107 return -1;
8108 len /= 2;
8109
8110 buf = os_malloc(len);
8111 if (buf == NULL)
8112 return -1;
8113
8114 if (hexstr2bin(pos, buf, len) < 0) {
8115 os_free(buf);
8116 return -1;
8117 }
8118
8119 if (ieee802_11_parse_elems(buf, len, &elems, 0) == ParseFailed) {
8120 os_free(buf);
8121 return -1;
8122 }
8123
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008124 res = wpas_vendor_elem_remove(wpa_s, frame, buf, len);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008125 os_free(buf);
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008126 return res;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008127}
8128
8129
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008130static void wpas_ctrl_neighbor_rep_cb(void *ctx, struct wpabuf *neighbor_rep)
8131{
8132 struct wpa_supplicant *wpa_s = ctx;
8133
8134 if (neighbor_rep) {
8135 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_RXED
8136 "length=%u",
8137 (unsigned int) wpabuf_len(neighbor_rep));
8138 wpabuf_free(neighbor_rep);
8139 } else {
8140 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_FAILED);
8141 }
8142}
8143
8144
8145static int wpas_ctrl_iface_send_neigbor_rep(struct wpa_supplicant *wpa_s,
8146 char *cmd)
8147{
8148 struct wpa_ssid ssid;
8149 struct wpa_ssid *ssid_p = NULL;
8150 int ret = 0;
8151
8152 if (os_strncmp(cmd, " ssid=", 6) == 0) {
8153 ssid.ssid_len = os_strlen(cmd + 6);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07008154 if (ssid.ssid_len > SSID_MAX_LEN)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008155 return -1;
8156 ssid.ssid = (u8 *) (cmd + 6);
8157 ssid_p = &ssid;
8158 }
8159
8160 ret = wpas_rrm_send_neighbor_rep_request(wpa_s, ssid_p,
8161 wpas_ctrl_neighbor_rep_cb,
8162 wpa_s);
8163
8164 return ret;
8165}
8166
8167
8168static int wpas_ctrl_iface_erp_flush(struct wpa_supplicant *wpa_s)
8169{
8170 eapol_sm_erp_flush(wpa_s->eapol);
8171 return 0;
8172}
8173
8174
8175static int wpas_ctrl_iface_mac_rand_scan(struct wpa_supplicant *wpa_s,
8176 char *cmd)
8177{
8178 char *token, *context = NULL;
8179 unsigned int enable = ~0, type = 0;
8180 u8 _addr[ETH_ALEN], _mask[ETH_ALEN];
8181 u8 *addr = NULL, *mask = NULL;
8182
8183 while ((token = str_token(cmd, " ", &context))) {
8184 if (os_strcasecmp(token, "scan") == 0) {
8185 type |= MAC_ADDR_RAND_SCAN;
8186 } else if (os_strcasecmp(token, "sched") == 0) {
8187 type |= MAC_ADDR_RAND_SCHED_SCAN;
8188 } else if (os_strcasecmp(token, "pno") == 0) {
8189 type |= MAC_ADDR_RAND_PNO;
8190 } else if (os_strcasecmp(token, "all") == 0) {
8191 type = wpa_s->mac_addr_rand_supported;
8192 } else if (os_strncasecmp(token, "enable=", 7) == 0) {
8193 enable = atoi(token + 7);
8194 } else if (os_strncasecmp(token, "addr=", 5) == 0) {
8195 addr = _addr;
8196 if (hwaddr_aton(token + 5, addr)) {
8197 wpa_printf(MSG_INFO,
8198 "CTRL: Invalid MAC address: %s",
8199 token);
8200 return -1;
8201 }
8202 } else if (os_strncasecmp(token, "mask=", 5) == 0) {
8203 mask = _mask;
8204 if (hwaddr_aton(token + 5, mask)) {
8205 wpa_printf(MSG_INFO,
8206 "CTRL: Invalid MAC address mask: %s",
8207 token);
8208 return -1;
8209 }
8210 } else {
8211 wpa_printf(MSG_INFO,
8212 "CTRL: Invalid MAC_RAND_SCAN parameter: %s",
8213 token);
8214 return -1;
8215 }
8216 }
8217
8218 if (!type) {
8219 wpa_printf(MSG_INFO, "CTRL: MAC_RAND_SCAN no type specified");
8220 return -1;
8221 }
8222
8223 if ((wpa_s->mac_addr_rand_supported & type) != type) {
8224 wpa_printf(MSG_INFO,
8225 "CTRL: MAC_RAND_SCAN types=%u != supported=%u",
8226 type, wpa_s->mac_addr_rand_supported);
8227 return -1;
8228 }
8229
8230 if (enable > 1) {
8231 wpa_printf(MSG_INFO,
8232 "CTRL: MAC_RAND_SCAN enable=<0/1> not specified");
8233 return -1;
8234 }
8235
8236 if (!enable) {
8237 wpas_mac_addr_rand_scan_clear(wpa_s, type);
8238 if (wpa_s->pno) {
8239 if (type & MAC_ADDR_RAND_PNO) {
8240 wpas_stop_pno(wpa_s);
8241 wpas_start_pno(wpa_s);
8242 }
8243 } else if (wpa_s->sched_scanning &&
8244 (type & MAC_ADDR_RAND_SCHED_SCAN)) {
8245 /* simulate timeout to restart the sched scan */
8246 wpa_s->sched_scan_timed_out = 1;
8247 wpa_s->prev_sched_ssid = NULL;
8248 wpa_supplicant_cancel_sched_scan(wpa_s);
8249 }
8250 return 0;
8251 }
8252
8253 if ((addr && !mask) || (!addr && mask)) {
8254 wpa_printf(MSG_INFO,
8255 "CTRL: MAC_RAND_SCAN invalid addr/mask combination");
8256 return -1;
8257 }
8258
8259 if (addr && mask && (!(mask[0] & 0x01) || (addr[0] & 0x01))) {
8260 wpa_printf(MSG_INFO,
8261 "CTRL: MAC_RAND_SCAN cannot allow multicast address");
8262 return -1;
8263 }
8264
8265 if (type & MAC_ADDR_RAND_SCAN) {
8266 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCAN,
8267 addr, mask);
8268 }
8269
8270 if (type & MAC_ADDR_RAND_SCHED_SCAN) {
8271 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCHED_SCAN,
8272 addr, mask);
8273
8274 if (wpa_s->sched_scanning && !wpa_s->pno) {
8275 /* simulate timeout to restart the sched scan */
8276 wpa_s->sched_scan_timed_out = 1;
8277 wpa_s->prev_sched_ssid = NULL;
8278 wpa_supplicant_cancel_sched_scan(wpa_s);
8279 }
8280 }
8281
8282 if (type & MAC_ADDR_RAND_PNO) {
8283 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_PNO,
8284 addr, mask);
8285 if (wpa_s->pno) {
8286 wpas_stop_pno(wpa_s);
8287 wpas_start_pno(wpa_s);
8288 }
8289 }
8290
8291 return 0;
8292}
8293
8294
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008295static int wpas_ctrl_cmd_debug_level(const char *cmd)
8296{
8297 if (os_strcmp(cmd, "PING") == 0 ||
8298 os_strncmp(cmd, "BSS ", 4) == 0 ||
8299 os_strncmp(cmd, "GET_NETWORK ", 12) == 0 ||
8300 os_strncmp(cmd, "STATUS", 6) == 0 ||
8301 os_strncmp(cmd, "STA ", 4) == 0 ||
8302 os_strncmp(cmd, "STA-", 4) == 0)
8303 return MSG_EXCESSIVE;
8304 return MSG_DEBUG;
8305}
8306
8307
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008308char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
8309 char *buf, size_t *resp_len)
8310{
8311 char *reply;
8312 const int reply_size = 4096;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008313 int reply_len;
8314
8315 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008316 os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8317 if (wpa_debug_show_keys)
8318 wpa_dbg(wpa_s, MSG_DEBUG,
8319 "Control interface command '%s'", buf);
8320 else
8321 wpa_dbg(wpa_s, MSG_DEBUG,
8322 "Control interface command '%s [REMOVED]'",
8323 os_strncmp(buf, WPA_CTRL_RSP,
8324 os_strlen(WPA_CTRL_RSP)) == 0 ?
8325 WPA_CTRL_RSP : "SET_NETWORK");
8326 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008327 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008328 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
8329 (const u8 *) buf, os_strlen(buf));
8330 } else {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008331 int level = wpas_ctrl_cmd_debug_level(buf);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07008332 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008333 }
8334
8335 reply = os_malloc(reply_size);
8336 if (reply == NULL) {
8337 *resp_len = 1;
8338 return NULL;
8339 }
8340
8341 os_memcpy(reply, "OK\n", 3);
8342 reply_len = 3;
8343
8344 if (os_strcmp(buf, "PING") == 0) {
8345 os_memcpy(reply, "PONG\n", 5);
8346 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008347 } else if (os_strcmp(buf, "IFNAME") == 0) {
8348 reply_len = os_strlen(wpa_s->ifname);
8349 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008350 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
8351 if (wpa_debug_reopen_file() < 0)
8352 reply_len = -1;
8353 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
8354 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
8355 } else if (os_strcmp(buf, "MIB") == 0) {
8356 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
8357 if (reply_len >= 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008358 reply_len += eapol_sm_get_mib(wpa_s->eapol,
8359 reply + reply_len,
8360 reply_size - reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008361 }
8362 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
8363 reply_len = wpa_supplicant_ctrl_iface_status(
8364 wpa_s, buf + 6, reply, reply_size);
8365 } else if (os_strcmp(buf, "PMKSA") == 0) {
8366 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
8367 reply_size);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07008368 } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
8369 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008370 } else if (os_strncmp(buf, "SET ", 4) == 0) {
8371 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
8372 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008373 } else if (os_strncmp(buf, "DUMP", 4) == 0) {
8374 reply_len = wpa_config_dump_values(wpa_s->conf,
8375 reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008376 } else if (os_strncmp(buf, "GET ", 4) == 0) {
8377 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
8378 reply, reply_size);
8379 } else if (os_strcmp(buf, "LOGON") == 0) {
8380 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
8381 } else if (os_strcmp(buf, "LOGOFF") == 0) {
8382 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
8383 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
8384 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8385 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008386 else
8387 wpas_request_connection(wpa_s);
Dmitry Shmidt98660862014-03-11 17:26:21 -07008388 } else if (os_strcmp(buf, "REATTACH") == 0) {
8389 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED ||
8390 !wpa_s->current_ssid)
8391 reply_len = -1;
8392 else {
8393 wpa_s->reattach = 1;
8394 wpas_request_connection(wpa_s);
8395 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008396 } else if (os_strcmp(buf, "RECONNECT") == 0) {
8397 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8398 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008399 else if (wpa_s->disconnected)
8400 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008401#ifdef IEEE8021X_EAPOL
8402 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
8403 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
8404 reply_len = -1;
8405#endif /* IEEE8021X_EAPOL */
8406#ifdef CONFIG_PEERKEY
8407 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
8408 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
8409 reply_len = -1;
8410#endif /* CONFIG_PEERKEY */
8411#ifdef CONFIG_IEEE80211R
8412 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
8413 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
8414 reply_len = -1;
8415#endif /* CONFIG_IEEE80211R */
8416#ifdef CONFIG_WPS
8417 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
8418 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
8419 if (res == -2) {
8420 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8421 reply_len = 17;
8422 } else if (res)
8423 reply_len = -1;
8424 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
8425 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
8426 if (res == -2) {
8427 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8428 reply_len = 17;
8429 } else if (res)
8430 reply_len = -1;
8431 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
8432 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
8433 reply,
8434 reply_size);
8435 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
8436 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
8437 wpa_s, buf + 14, reply, reply_size);
8438 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
8439 if (wpas_wps_cancel(wpa_s))
8440 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008441#ifdef CONFIG_WPS_NFC
8442 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
8443 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
8444 reply_len = -1;
8445 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
8446 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
8447 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08008448 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
8449 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
8450 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008451 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
8452 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
8453 wpa_s, buf + 14, reply, reply_size);
8454 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
8455 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
8456 buf + 17))
8457 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008458 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
8459 reply_len = wpas_ctrl_nfc_get_handover_req(
8460 wpa_s, buf + 21, reply, reply_size);
8461 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
8462 reply_len = wpas_ctrl_nfc_get_handover_sel(
8463 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08008464 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
8465 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
8466 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008467#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008468 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
8469 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
8470 reply_len = -1;
8471#ifdef CONFIG_AP
8472 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
8473 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
8474 wpa_s, buf + 11, reply, reply_size);
8475#endif /* CONFIG_AP */
8476#ifdef CONFIG_WPS_ER
8477 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
8478 if (wpas_wps_er_start(wpa_s, NULL))
8479 reply_len = -1;
8480 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
8481 if (wpas_wps_er_start(wpa_s, buf + 13))
8482 reply_len = -1;
8483 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008484 wpas_wps_er_stop(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008485 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
8486 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
8487 reply_len = -1;
8488 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
8489 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
8490 if (ret == -2) {
8491 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8492 reply_len = 17;
8493 } else if (ret == -3) {
8494 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
8495 reply_len = 18;
8496 } else if (ret == -4) {
8497 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
8498 reply_len = 20;
8499 } else if (ret)
8500 reply_len = -1;
8501 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
8502 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
8503 reply_len = -1;
8504 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
8505 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
8506 buf + 18))
8507 reply_len = -1;
8508 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
8509 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
8510 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008511#ifdef CONFIG_WPS_NFC
8512 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
8513 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
8514 wpa_s, buf + 24, reply, reply_size);
8515#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008516#endif /* CONFIG_WPS_ER */
8517#endif /* CONFIG_WPS */
8518#ifdef CONFIG_IBSS_RSN
8519 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
8520 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
8521 reply_len = -1;
8522#endif /* CONFIG_IBSS_RSN */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008523#ifdef CONFIG_MESH
8524 } else if (os_strncmp(buf, "MESH_INTERFACE_ADD ", 19) == 0) {
8525 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8526 wpa_s, buf + 19, reply, reply_size);
8527 } else if (os_strcmp(buf, "MESH_INTERFACE_ADD") == 0) {
8528 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8529 wpa_s, "", reply, reply_size);
8530 } else if (os_strncmp(buf, "MESH_GROUP_ADD ", 15) == 0) {
8531 if (wpa_supplicant_ctrl_iface_mesh_group_add(wpa_s, buf + 15))
8532 reply_len = -1;
8533 } else if (os_strncmp(buf, "MESH_GROUP_REMOVE ", 18) == 0) {
8534 if (wpa_supplicant_ctrl_iface_mesh_group_remove(wpa_s,
8535 buf + 18))
8536 reply_len = -1;
8537#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008538#ifdef CONFIG_P2P
8539 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008540 if (p2p_ctrl_find(wpa_s, buf + 8))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008541 reply_len = -1;
8542 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
8543 if (p2p_ctrl_find(wpa_s, ""))
8544 reply_len = -1;
8545 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
8546 wpas_p2p_stop_find(wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008547 } else if (os_strncmp(buf, "P2P_ASP_PROVISION ", 18) == 0) {
8548 if (p2p_ctrl_asp_provision(wpa_s, buf + 18))
8549 reply_len = -1;
8550 } else if (os_strncmp(buf, "P2P_ASP_PROVISION_RESP ", 23) == 0) {
8551 if (p2p_ctrl_asp_provision_resp(wpa_s, buf + 23))
8552 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008553 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
8554 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
8555 reply_size);
8556 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
8557 if (p2p_ctrl_listen(wpa_s, buf + 11))
8558 reply_len = -1;
8559 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
8560 if (p2p_ctrl_listen(wpa_s, ""))
8561 reply_len = -1;
8562 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
8563 if (wpas_p2p_group_remove(wpa_s, buf + 17))
8564 reply_len = -1;
8565 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07008566 if (p2p_ctrl_group_add(wpa_s, ""))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008567 reply_len = -1;
8568 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
8569 if (p2p_ctrl_group_add(wpa_s, buf + 14))
8570 reply_len = -1;
8571 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
8572 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
8573 reply_len = -1;
8574 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
8575 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
8576 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
8577 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
8578 reply_size);
8579 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
8580 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
8581 reply_len = -1;
8582 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
8583 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
8584 reply_len = -1;
8585 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
8586 wpas_p2p_sd_service_update(wpa_s);
8587 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
8588 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
8589 reply_len = -1;
8590 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
8591 wpas_p2p_service_flush(wpa_s);
8592 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
8593 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
8594 reply_len = -1;
8595 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
8596 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
8597 reply_len = -1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008598 } else if (os_strncmp(buf, "P2P_SERVICE_REP ", 16) == 0) {
8599 if (p2p_ctrl_service_replace(wpa_s, buf + 16) < 0)
8600 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008601 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
8602 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
8603 reply_len = -1;
8604 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
8605 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
8606 reply_len = -1;
8607 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
8608 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
8609 reply_size);
8610 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
8611 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
8612 reply_len = -1;
8613 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07008614 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008615 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
8616 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
8617 reply_len = -1;
8618 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
8619 if (wpas_p2p_cancel(wpa_s))
8620 reply_len = -1;
8621 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
8622 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
8623 reply_len = -1;
8624 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
8625 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
8626 reply_len = -1;
8627 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
8628 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
8629 reply_len = -1;
8630 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
8631 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
8632 reply_len = -1;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008633 } else if (os_strncmp(buf, "P2P_REMOVE_CLIENT ", 18) == 0) {
8634 if (p2p_ctrl_remove_client(wpa_s, buf + 18) < 0)
8635 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008636#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008637#ifdef CONFIG_WIFI_DISPLAY
8638 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
8639 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
8640 reply_len = -1;
8641 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
8642 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
8643 reply, reply_size);
8644#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008645#ifdef CONFIG_INTERWORKING
8646 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
8647 if (interworking_fetch_anqp(wpa_s) < 0)
8648 reply_len = -1;
8649 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
8650 interworking_stop_fetch_anqp(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008651 } else if (os_strcmp(buf, "INTERWORKING_SELECT") == 0) {
8652 if (ctrl_interworking_select(wpa_s, NULL) < 0)
8653 reply_len = -1;
8654 } else if (os_strncmp(buf, "INTERWORKING_SELECT ", 20) == 0) {
8655 if (ctrl_interworking_select(wpa_s, buf + 20) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008656 reply_len = -1;
8657 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008658 if (ctrl_interworking_connect(wpa_s, buf + 21, 0) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008659 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008660 } else if (os_strncmp(buf, "INTERWORKING_ADD_NETWORK ", 25) == 0) {
8661 int id;
8662
8663 id = ctrl_interworking_connect(wpa_s, buf + 25, 1);
8664 if (id < 0)
8665 reply_len = -1;
8666 else {
8667 reply_len = os_snprintf(reply, reply_size, "%d\n", id);
8668 if (os_snprintf_error(reply_size, reply_len))
8669 reply_len = -1;
8670 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008671 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
8672 if (get_anqp(wpa_s, buf + 9) < 0)
8673 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008674 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
8675 if (gas_request(wpa_s, buf + 12) < 0)
8676 reply_len = -1;
8677 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
8678 reply_len = gas_response_get(wpa_s, buf + 17, reply,
8679 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008680#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07008681#ifdef CONFIG_HS20
8682 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
8683 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
8684 reply_len = -1;
8685 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
8686 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
8687 reply_len = -1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08008688 } else if (os_strncmp(buf, "HS20_ICON_REQUEST ", 18) == 0) {
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08008689 if (hs20_icon_request(wpa_s, buf + 18, 0) < 0)
8690 reply_len = -1;
8691 } else if (os_strncmp(buf, "REQ_HS20_ICON ", 14) == 0) {
8692 if (hs20_icon_request(wpa_s, buf + 14, 1) < 0)
8693 reply_len = -1;
8694 } else if (os_strncmp(buf, "GET_HS20_ICON ", 14) == 0) {
8695 reply_len = get_hs20_icon(wpa_s, buf + 14, reply, reply_size);
8696 } else if (os_strncmp(buf, "DEL_HS20_ICON ", 14) == 0) {
8697 if (del_hs20_icon(wpa_s, buf + 14) < 0)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08008698 reply_len = -1;
8699 } else if (os_strcmp(buf, "FETCH_OSU") == 0) {
8700 if (hs20_fetch_osu(wpa_s) < 0)
8701 reply_len = -1;
8702 } else if (os_strcmp(buf, "CANCEL_FETCH_OSU") == 0) {
8703 hs20_cancel_fetch_osu(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008704#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008705 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
8706 {
8707 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
8708 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
8709 reply_len = -1;
Dmitry Shmidt051af732013-10-22 13:52:46 -07008710 else {
8711 /*
8712 * Notify response from timeout to allow the control
8713 * interface response to be sent first.
8714 */
8715 eloop_register_timeout(0, 0, wpas_ctrl_eapol_response,
8716 wpa_s, NULL);
8717 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008718 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
8719 if (wpa_supplicant_reload_configuration(wpa_s))
8720 reply_len = -1;
8721 } else if (os_strcmp(buf, "TERMINATE") == 0) {
8722 wpa_supplicant_terminate_proc(wpa_s->global);
8723 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
8724 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
8725 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07008726 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008727 reply_len = wpa_supplicant_ctrl_iface_blacklist(
8728 wpa_s, buf + 9, reply, reply_size);
8729 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
8730 reply_len = wpa_supplicant_ctrl_iface_log_level(
8731 wpa_s, buf + 9, reply, reply_size);
Vinit Deshpandeda134e92014-12-02 10:59:29 -08008732 } else if (os_strncmp(buf, "LIST_NETWORKS ", 14) == 0) {
8733 reply_len = wpa_supplicant_ctrl_iface_list_networks(
8734 wpa_s, buf + 14, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008735 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
8736 reply_len = wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08008737 wpa_s, NULL, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008738 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07008739#ifdef CONFIG_SME
8740 wpa_s->sme.prev_bssid_set = 0;
8741#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008742 wpa_s->reassociate = 0;
8743 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008744 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008745 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008746 wpa_supplicant_deauthenticate(wpa_s,
8747 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07008748 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008749 } else if (os_strcmp(buf, "SCAN") == 0) {
8750 wpas_ctrl_scan(wpa_s, NULL, reply, reply_size, &reply_len);
8751 } else if (os_strncmp(buf, "SCAN ", 5) == 0) {
8752 wpas_ctrl_scan(wpa_s, buf + 5, reply, reply_size, &reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008753 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
8754 reply_len = wpa_supplicant_ctrl_iface_scan_results(
8755 wpa_s, reply, reply_size);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008756 } else if (os_strcmp(buf, "ABORT_SCAN") == 0) {
8757 if (wpas_abort_ongoing_scan(wpa_s) < 0)
8758 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008759 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
8760 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
8761 reply_len = -1;
8762 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
8763 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
8764 reply_len = -1;
8765 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
8766 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
8767 reply_len = -1;
8768 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
8769 reply_len = wpa_supplicant_ctrl_iface_add_network(
8770 wpa_s, reply, reply_size);
8771 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
8772 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
8773 reply_len = -1;
8774 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8775 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
8776 reply_len = -1;
8777 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
8778 reply_len = wpa_supplicant_ctrl_iface_get_network(
8779 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07008780 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008781 if (wpa_supplicant_ctrl_iface_dup_network(wpa_s, buf + 12,
8782 wpa_s))
Dmitry Shmidt684785c2014-05-12 13:34:29 -07008783 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008784 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
8785 reply_len = wpa_supplicant_ctrl_iface_list_creds(
8786 wpa_s, reply, reply_size);
8787 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
8788 reply_len = wpa_supplicant_ctrl_iface_add_cred(
8789 wpa_s, reply, reply_size);
8790 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
8791 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
8792 reply_len = -1;
8793 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
8794 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
8795 reply_len = -1;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07008796 } else if (os_strncmp(buf, "GET_CRED ", 9) == 0) {
8797 reply_len = wpa_supplicant_ctrl_iface_get_cred(wpa_s, buf + 9,
8798 reply,
8799 reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008800#ifndef CONFIG_NO_CONFIG_WRITE
8801 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
8802 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
8803 reply_len = -1;
8804#endif /* CONFIG_NO_CONFIG_WRITE */
8805 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
8806 reply_len = wpa_supplicant_ctrl_iface_get_capability(
8807 wpa_s, buf + 15, reply, reply_size);
8808 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
8809 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
8810 reply_len = -1;
8811 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
8812 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
8813 reply_len = -1;
8814 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
8815 reply_len = wpa_supplicant_global_iface_list(
8816 wpa_s->global, reply, reply_size);
8817 } else if (os_strcmp(buf, "INTERFACES") == 0) {
8818 reply_len = wpa_supplicant_global_iface_interfaces(
8819 wpa_s->global, reply, reply_size);
8820 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
8821 reply_len = wpa_supplicant_ctrl_iface_bss(
8822 wpa_s, buf + 4, reply, reply_size);
8823#ifdef CONFIG_AP
8824 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
8825 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
8826 } else if (os_strncmp(buf, "STA ", 4) == 0) {
8827 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
8828 reply_size);
8829 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
8830 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
8831 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008832 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
8833 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
8834 reply_len = -1;
8835 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
8836 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
8837 reply_len = -1;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08008838 } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
8839 if (ap_ctrl_iface_chanswitch(wpa_s, buf + 12))
8840 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008841 } else if (os_strcmp(buf, "STOP_AP") == 0) {
8842 if (wpas_ap_stop_ap(wpa_s))
8843 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008844#endif /* CONFIG_AP */
8845 } else if (os_strcmp(buf, "SUSPEND") == 0) {
8846 wpas_notify_suspend(wpa_s->global);
8847 } else if (os_strcmp(buf, "RESUME") == 0) {
8848 wpas_notify_resume(wpa_s->global);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008849#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008850 } else if (os_strcmp(buf, "DROP_SA") == 0) {
8851 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008852#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008853 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
8854 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
8855 reply_len = -1;
8856 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008857 wpa_s->auto_reconnect_disabled = atoi(buf + 16) == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008858 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
8859 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
8860 reply_len = -1;
8861 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
8862 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
8863 buf + 17))
8864 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07008865 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008866 wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008867#ifdef CONFIG_TDLS
8868 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
8869 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
8870 reply_len = -1;
8871 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
8872 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
8873 reply_len = -1;
8874 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
8875 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
8876 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008877 } else if (os_strncmp(buf, "TDLS_CHAN_SWITCH ", 17) == 0) {
8878 if (wpa_supplicant_ctrl_iface_tdls_chan_switch(wpa_s,
8879 buf + 17))
8880 reply_len = -1;
8881 } else if (os_strncmp(buf, "TDLS_CANCEL_CHAN_SWITCH ", 24) == 0) {
8882 if (wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(wpa_s,
8883 buf + 24))
8884 reply_len = -1;
Dmitry Shmidtcc00d5d2015-05-04 10:34:12 -07008885 } else if (os_strncmp(buf, "TDLS_LINK_STATUS ", 17) == 0) {
8886 reply_len = wpa_supplicant_ctrl_iface_tdls_link_status(
8887 wpa_s, buf + 17, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008888#endif /* CONFIG_TDLS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008889 } else if (os_strcmp(buf, "WMM_AC_STATUS") == 0) {
8890 reply_len = wpas_wmm_ac_status(wpa_s, reply, reply_size);
8891 } else if (os_strncmp(buf, "WMM_AC_ADDTS ", 13) == 0) {
8892 if (wmm_ac_ctrl_addts(wpa_s, buf + 13))
8893 reply_len = -1;
8894 } else if (os_strncmp(buf, "WMM_AC_DELTS ", 13) == 0) {
8895 if (wmm_ac_ctrl_delts(wpa_s, buf + 13))
8896 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008897 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
8898 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
8899 reply_size);
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08008900 } else if (os_strncmp(buf, "SIGNAL_MONITOR", 14) == 0) {
8901 if (wpas_ctrl_iface_signal_monitor(wpa_s, buf + 14))
8902 reply_len = -1;
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07008903 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
8904 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
8905 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008906#ifdef CONFIG_AUTOSCAN
8907 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
8908 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
8909 reply_len = -1;
8910#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08008911#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07008912 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
8913 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
8914 reply_size);
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08008915#endif /* ANDROID */
Dmitry Shmidta38abf92014-03-06 13:38:44 -08008916 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
8917 reply_len = wpa_supplicant_vendor_cmd(wpa_s, buf + 7, reply,
8918 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008919 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008920 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008921 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08008922#ifdef CONFIG_WNM
8923 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
8924 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
8925 reply_len = -1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08008926 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 14) == 0) {
8927 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 14))
Dmitry Shmidt44c95782013-05-17 09:51:35 -07008928 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08008929#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07008930 } else if (os_strcmp(buf, "FLUSH") == 0) {
8931 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008932 } else if (os_strncmp(buf, "RADIO_WORK ", 11) == 0) {
8933 reply_len = wpas_ctrl_radio_work(wpa_s, buf + 11, reply,
8934 reply_size);
Dmitry Shmidt818ea482014-03-10 13:15:21 -07008935#ifdef CONFIG_TESTING_OPTIONS
8936 } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
8937 if (wpas_ctrl_iface_mgmt_tx(wpa_s, buf + 8) < 0)
8938 reply_len = -1;
8939 } else if (os_strcmp(buf, "MGMT_TX_DONE") == 0) {
8940 wpas_ctrl_iface_mgmt_tx_done(wpa_s);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07008941 } else if (os_strncmp(buf, "DRIVER_EVENT ", 13) == 0) {
8942 if (wpas_ctrl_iface_driver_event(wpa_s, buf + 13) < 0)
8943 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008944 } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
8945 if (wpas_ctrl_iface_eapol_rx(wpa_s, buf + 9) < 0)
8946 reply_len = -1;
8947 } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
8948 if (wpas_ctrl_iface_data_test_config(wpa_s, buf + 17) < 0)
8949 reply_len = -1;
8950 } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
8951 if (wpas_ctrl_iface_data_test_tx(wpa_s, buf + 13) < 0)
8952 reply_len = -1;
8953 } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
8954 if (wpas_ctrl_iface_data_test_frame(wpa_s, buf + 16) < 0)
8955 reply_len = -1;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08008956 } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
8957 if (wpas_ctrl_test_alloc_fail(wpa_s, buf + 16) < 0)
8958 reply_len = -1;
8959 } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
8960 reply_len = wpas_ctrl_get_alloc_fail(wpa_s, reply, reply_size);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008961 } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
8962 if (wpas_ctrl_test_fail(wpa_s, buf + 10) < 0)
8963 reply_len = -1;
8964 } else if (os_strcmp(buf, "GET_FAIL") == 0) {
8965 reply_len = wpas_ctrl_get_fail(wpa_s, reply, reply_size);
Jouni Malinenc4818362015-10-04 11:45:13 +03008966 } else if (os_strncmp(buf, "EVENT_TEST ", 11) == 0) {
8967 if (wpas_ctrl_event_test(wpa_s, buf + 11) < 0)
8968 reply_len = -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008969 } else if (os_strncmp(buf, "TEST_ASSOC_IE ", 14) == 0) {
8970 if (wpas_ctrl_test_assoc_ie(wpa_s, buf + 14) < 0)
8971 reply_len = -1;
Dmitry Shmidt818ea482014-03-10 13:15:21 -07008972#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008973 } else if (os_strncmp(buf, "VENDOR_ELEM_ADD ", 16) == 0) {
8974 if (wpas_ctrl_vendor_elem_add(wpa_s, buf + 16) < 0)
8975 reply_len = -1;
8976 } else if (os_strncmp(buf, "VENDOR_ELEM_GET ", 16) == 0) {
8977 reply_len = wpas_ctrl_vendor_elem_get(wpa_s, buf + 16, reply,
8978 reply_size);
8979 } else if (os_strncmp(buf, "VENDOR_ELEM_REMOVE ", 19) == 0) {
8980 if (wpas_ctrl_vendor_elem_remove(wpa_s, buf + 19) < 0)
8981 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008982 } else if (os_strncmp(buf, "NEIGHBOR_REP_REQUEST", 20) == 0) {
8983 if (wpas_ctrl_iface_send_neigbor_rep(wpa_s, buf + 20))
8984 reply_len = -1;
8985 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
8986 wpas_ctrl_iface_erp_flush(wpa_s);
8987 } else if (os_strncmp(buf, "MAC_RAND_SCAN ", 14) == 0) {
8988 if (wpas_ctrl_iface_mac_rand_scan(wpa_s, buf + 14))
8989 reply_len = -1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008990 } else if (os_strncmp(buf, "GET_PREF_FREQ_LIST ", 19) == 0) {
8991 reply_len = wpas_ctrl_iface_get_pref_freq_list(
8992 wpa_s, buf + 19, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008993 } else {
8994 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
8995 reply_len = 16;
8996 }
8997
8998 if (reply_len < 0) {
8999 os_memcpy(reply, "FAIL\n", 5);
9000 reply_len = 5;
9001 }
9002
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009003 *resp_len = reply_len;
9004 return reply;
9005}
9006
9007
9008static int wpa_supplicant_global_iface_add(struct wpa_global *global,
9009 char *cmd)
9010{
9011 struct wpa_interface iface;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009012 char *pos, *extra;
9013 struct wpa_supplicant *wpa_s;
9014 unsigned int create_iface = 0;
9015 u8 mac_addr[ETH_ALEN];
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009016 enum wpa_driver_if_type type = WPA_IF_STATION;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009017
9018 /*
9019 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009020 * TAB<bridge_ifname>[TAB<create>[TAB<interface_type>]]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009021 */
9022 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
9023
9024 os_memset(&iface, 0, sizeof(iface));
9025
9026 do {
9027 iface.ifname = pos = cmd;
9028 pos = os_strchr(pos, '\t');
9029 if (pos)
9030 *pos++ = '\0';
9031 if (iface.ifname[0] == '\0')
9032 return -1;
9033 if (pos == NULL)
9034 break;
9035
9036 iface.confname = pos;
9037 pos = os_strchr(pos, '\t');
9038 if (pos)
9039 *pos++ = '\0';
9040 if (iface.confname[0] == '\0')
9041 iface.confname = NULL;
9042 if (pos == NULL)
9043 break;
9044
9045 iface.driver = pos;
9046 pos = os_strchr(pos, '\t');
9047 if (pos)
9048 *pos++ = '\0';
9049 if (iface.driver[0] == '\0')
9050 iface.driver = NULL;
9051 if (pos == NULL)
9052 break;
9053
9054 iface.ctrl_interface = pos;
9055 pos = os_strchr(pos, '\t');
9056 if (pos)
9057 *pos++ = '\0';
9058 if (iface.ctrl_interface[0] == '\0')
9059 iface.ctrl_interface = NULL;
9060 if (pos == NULL)
9061 break;
9062
9063 iface.driver_param = pos;
9064 pos = os_strchr(pos, '\t');
9065 if (pos)
9066 *pos++ = '\0';
9067 if (iface.driver_param[0] == '\0')
9068 iface.driver_param = NULL;
9069 if (pos == NULL)
9070 break;
9071
9072 iface.bridge_ifname = pos;
9073 pos = os_strchr(pos, '\t');
9074 if (pos)
9075 *pos++ = '\0';
9076 if (iface.bridge_ifname[0] == '\0')
9077 iface.bridge_ifname = NULL;
9078 if (pos == NULL)
9079 break;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009080
9081 extra = pos;
9082 pos = os_strchr(pos, '\t');
9083 if (pos)
9084 *pos++ = '\0';
Dmitry Shmidt83474442015-04-15 13:47:09 -07009085 if (!extra[0])
9086 break;
9087
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009088 if (os_strcmp(extra, "create") == 0) {
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009089 create_iface = 1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009090 if (!pos)
9091 break;
9092
9093 if (os_strcmp(pos, "sta") == 0) {
9094 type = WPA_IF_STATION;
9095 } else if (os_strcmp(pos, "ap") == 0) {
9096 type = WPA_IF_AP_BSS;
9097 } else {
9098 wpa_printf(MSG_DEBUG,
9099 "INTERFACE_ADD unsupported interface type: '%s'",
9100 pos);
9101 return -1;
9102 }
9103 } else {
Dmitry Shmidt83474442015-04-15 13:47:09 -07009104 wpa_printf(MSG_DEBUG,
9105 "INTERFACE_ADD unsupported extra parameter: '%s'",
9106 extra);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009107 return -1;
Dmitry Shmidt83474442015-04-15 13:47:09 -07009108 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009109 } while (0);
9110
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009111 if (create_iface) {
9112 wpa_printf(MSG_DEBUG, "CTRL_IFACE creating interface '%s'",
9113 iface.ifname);
9114 if (!global->ifaces)
9115 return -1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009116 if (wpa_drv_if_add(global->ifaces, type, iface.ifname,
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009117 NULL, NULL, NULL, mac_addr, NULL) < 0) {
9118 wpa_printf(MSG_ERROR,
9119 "CTRL_IFACE interface creation failed");
9120 return -1;
9121 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009122
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009123 wpa_printf(MSG_DEBUG,
9124 "CTRL_IFACE interface '%s' created with MAC addr: "
9125 MACSTR, iface.ifname, MAC2STR(mac_addr));
9126 }
9127
9128 if (wpa_supplicant_get_iface(global, iface.ifname))
9129 goto fail;
9130
9131 wpa_s = wpa_supplicant_add_iface(global, &iface, NULL);
9132 if (!wpa_s)
9133 goto fail;
9134 wpa_s->added_vif = create_iface;
9135 return 0;
9136
9137fail:
9138 if (create_iface)
9139 wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, iface.ifname);
9140 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009141}
9142
9143
9144static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
9145 char *cmd)
9146{
9147 struct wpa_supplicant *wpa_s;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009148 int ret;
9149 unsigned int delete_iface;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009150
9151 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
9152
9153 wpa_s = wpa_supplicant_get_iface(global, cmd);
9154 if (wpa_s == NULL)
9155 return -1;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009156 delete_iface = wpa_s->added_vif;
9157 ret = wpa_supplicant_remove_iface(global, wpa_s, 0);
9158 if (!ret && delete_iface) {
9159 wpa_printf(MSG_DEBUG, "CTRL_IFACE deleting the interface '%s'",
9160 cmd);
9161 ret = wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, cmd);
9162 }
9163 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009164}
9165
9166
9167static void wpa_free_iface_info(struct wpa_interface_info *iface)
9168{
9169 struct wpa_interface_info *prev;
9170
9171 while (iface) {
9172 prev = iface;
9173 iface = iface->next;
9174
9175 os_free(prev->ifname);
9176 os_free(prev->desc);
9177 os_free(prev);
9178 }
9179}
9180
9181
9182static int wpa_supplicant_global_iface_list(struct wpa_global *global,
9183 char *buf, int len)
9184{
9185 int i, res;
9186 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
9187 char *pos, *end;
9188
9189 for (i = 0; wpa_drivers[i]; i++) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07009190 const struct wpa_driver_ops *drv = wpa_drivers[i];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009191 if (drv->get_interfaces == NULL)
9192 continue;
9193 tmp = drv->get_interfaces(global->drv_priv[i]);
9194 if (tmp == NULL)
9195 continue;
9196
9197 if (last == NULL)
9198 iface = last = tmp;
9199 else
9200 last->next = tmp;
9201 while (last->next)
9202 last = last->next;
9203 }
9204
9205 pos = buf;
9206 end = buf + len;
9207 for (tmp = iface; tmp; tmp = tmp->next) {
9208 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
9209 tmp->drv_name, tmp->ifname,
9210 tmp->desc ? tmp->desc : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009211 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009212 *pos = '\0';
9213 break;
9214 }
9215 pos += res;
9216 }
9217
9218 wpa_free_iface_info(iface);
9219
9220 return pos - buf;
9221}
9222
9223
9224static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
9225 char *buf, int len)
9226{
9227 int res;
9228 char *pos, *end;
9229 struct wpa_supplicant *wpa_s;
9230
9231 wpa_s = global->ifaces;
9232 pos = buf;
9233 end = buf + len;
9234
9235 while (wpa_s) {
9236 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009237 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009238 *pos = '\0';
9239 break;
9240 }
9241 pos += res;
9242 wpa_s = wpa_s->next;
9243 }
9244 return pos - buf;
9245}
9246
9247
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009248static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
9249 const char *ifname,
9250 char *cmd, size_t *resp_len)
9251{
9252 struct wpa_supplicant *wpa_s;
9253
9254 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9255 if (os_strcmp(ifname, wpa_s->ifname) == 0)
9256 break;
9257 }
9258
9259 if (wpa_s == NULL) {
9260 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
9261 if (resp)
9262 *resp_len = os_strlen(resp);
9263 else
9264 *resp_len = 1;
9265 return resp;
9266 }
9267
9268 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
9269}
9270
9271
9272static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
9273 char *buf, size_t *resp_len)
9274{
9275#ifdef CONFIG_P2P
9276 static const char * cmd[] = {
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009277 "LIST_NETWORKS",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009278 "P2P_FIND",
9279 "P2P_STOP_FIND",
9280 "P2P_LISTEN",
9281 "P2P_GROUP_ADD",
9282 "P2P_GET_PASSPHRASE",
9283 "P2P_SERVICE_UPDATE",
9284 "P2P_SERVICE_FLUSH",
9285 "P2P_FLUSH",
9286 "P2P_CANCEL",
9287 "P2P_PRESENCE_REQ",
9288 "P2P_EXT_LISTEN",
9289 NULL
9290 };
9291 static const char * prefix[] = {
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08009292#ifdef ANDROID
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009293 "DRIVER ",
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08009294#endif /* ANDROID */
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009295 "GET_NETWORK ",
9296 "REMOVE_NETWORK ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009297 "P2P_FIND ",
9298 "P2P_CONNECT ",
9299 "P2P_LISTEN ",
9300 "P2P_GROUP_REMOVE ",
9301 "P2P_GROUP_ADD ",
9302 "P2P_PROV_DISC ",
9303 "P2P_SERV_DISC_REQ ",
9304 "P2P_SERV_DISC_CANCEL_REQ ",
9305 "P2P_SERV_DISC_RESP ",
9306 "P2P_SERV_DISC_EXTERNAL ",
9307 "P2P_SERVICE_ADD ",
9308 "P2P_SERVICE_DEL ",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08009309 "P2P_SERVICE_REP ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009310 "P2P_REJECT ",
9311 "P2P_INVITE ",
9312 "P2P_PEER ",
9313 "P2P_SET ",
9314 "P2P_UNAUTHORIZE ",
9315 "P2P_PRESENCE_REQ ",
9316 "P2P_EXT_LISTEN ",
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07009317 "P2P_REMOVE_CLIENT ",
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08009318 "WPS_NFC_TOKEN ",
9319 "WPS_NFC_TAG_READ ",
Dmitry Shmidt413dde72014-04-11 10:23:22 -07009320 "NFC_GET_HANDOVER_SEL ",
9321 "NFC_GET_HANDOVER_REQ ",
9322 "NFC_REPORT_HANDOVER ",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08009323 "P2P_ASP_PROVISION ",
9324 "P2P_ASP_PROVISION_RESP ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009325 NULL
9326 };
9327 int found = 0;
9328 int i;
9329
9330 if (global->p2p_init_wpa_s == NULL)
9331 return NULL;
9332
9333 for (i = 0; !found && cmd[i]; i++) {
9334 if (os_strcmp(buf, cmd[i]) == 0)
9335 found = 1;
9336 }
9337
9338 for (i = 0; !found && prefix[i]; i++) {
9339 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
9340 found = 1;
9341 }
9342
9343 if (found)
9344 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9345 buf, resp_len);
9346#endif /* CONFIG_P2P */
9347 return NULL;
9348}
9349
9350
9351static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
9352 char *buf, size_t *resp_len)
9353{
9354#ifdef CONFIG_WIFI_DISPLAY
9355 if (global->p2p_init_wpa_s == NULL)
9356 return NULL;
9357 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
9358 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
9359 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9360 buf, resp_len);
9361#endif /* CONFIG_WIFI_DISPLAY */
9362 return NULL;
9363}
9364
9365
9366static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
9367 char *buf, size_t *resp_len)
9368{
9369 char *ret;
9370
9371 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
9372 if (ret)
9373 return ret;
9374
9375 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
9376 if (ret)
9377 return ret;
9378
9379 return NULL;
9380}
9381
9382
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009383static int wpas_global_ctrl_iface_set(struct wpa_global *global, char *cmd)
9384{
9385 char *value;
9386
9387 value = os_strchr(cmd, ' ');
9388 if (value == NULL)
9389 return -1;
9390 *value++ = '\0';
9391
9392 wpa_printf(MSG_DEBUG, "GLOBAL_CTRL_IFACE SET '%s'='%s'", cmd, value);
9393
9394#ifdef CONFIG_WIFI_DISPLAY
9395 if (os_strcasecmp(cmd, "wifi_display") == 0) {
9396 wifi_display_enable(global, !!atoi(value));
9397 return 0;
9398 }
9399#endif /* CONFIG_WIFI_DISPLAY */
9400
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009401 /* Restore cmd to its original value to allow redirection */
9402 value[-1] = ' ';
9403
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009404 return -1;
9405}
9406
9407
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009408static int wpas_global_ctrl_iface_dup_network(struct wpa_global *global,
9409 char *cmd)
9410{
9411 struct wpa_supplicant *wpa_s[2]; /* src, dst */
9412 char *p;
9413 unsigned int i;
9414
9415 /* cmd: "<src ifname> <dst ifname> <src network id> <dst network id>
9416 * <variable name> */
9417
9418 for (i = 0; i < ARRAY_SIZE(wpa_s) ; i++) {
9419 p = os_strchr(cmd, ' ');
9420 if (p == NULL)
9421 return -1;
9422 *p = '\0';
9423
9424 wpa_s[i] = global->ifaces;
9425 for (; wpa_s[i]; wpa_s[i] = wpa_s[i]->next) {
9426 if (os_strcmp(cmd, wpa_s[i]->ifname) == 0)
9427 break;
9428 }
9429
9430 if (!wpa_s[i]) {
9431 wpa_printf(MSG_DEBUG,
9432 "CTRL_IFACE: Could not find iface=%s", cmd);
9433 return -1;
9434 }
9435
9436 cmd = p + 1;
9437 }
9438
9439 return wpa_supplicant_ctrl_iface_dup_network(wpa_s[0], cmd, wpa_s[1]);
9440}
9441
9442
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009443#ifndef CONFIG_NO_CONFIG_WRITE
9444static int wpas_global_ctrl_iface_save_config(struct wpa_global *global)
9445{
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009446 int ret = 0, saved = 0;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009447 struct wpa_supplicant *wpa_s;
9448
9449 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9450 if (!wpa_s->conf->update_config) {
9451 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed to update configuration (update_config=0)");
9452 continue;
9453 }
9454
9455 if (wpa_config_write(wpa_s->confname, wpa_s->conf)) {
9456 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to update configuration");
9457 ret = 1;
9458 } else {
9459 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration updated");
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009460 saved++;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009461 }
9462 }
9463
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009464 if (!saved && !ret) {
9465 wpa_dbg(wpa_s, MSG_DEBUG,
9466 "CTRL_IFACE: SAVE_CONFIG - No configuration files could be updated");
9467 ret = 1;
9468 }
9469
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009470 return ret;
9471}
9472#endif /* CONFIG_NO_CONFIG_WRITE */
9473
9474
9475static int wpas_global_ctrl_iface_status(struct wpa_global *global,
9476 char *buf, size_t buflen)
9477{
9478 char *pos, *end;
9479 int ret;
9480 struct wpa_supplicant *wpa_s;
9481
9482 pos = buf;
9483 end = buf + buflen;
9484
9485#ifdef CONFIG_P2P
9486 if (global->p2p && !global->p2p_disabled) {
9487 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
9488 "\n"
9489 "p2p_state=%s\n",
9490 MAC2STR(global->p2p_dev_addr),
9491 p2p_get_state_txt(global->p2p));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009492 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009493 return pos - buf;
9494 pos += ret;
9495 } else if (global->p2p) {
9496 ret = os_snprintf(pos, end - pos, "p2p_state=DISABLED\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009497 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009498 return pos - buf;
9499 pos += ret;
9500 }
9501#endif /* CONFIG_P2P */
9502
9503#ifdef CONFIG_WIFI_DISPLAY
9504 ret = os_snprintf(pos, end - pos, "wifi_display=%d\n",
9505 !!global->wifi_display);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009506 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009507 return pos - buf;
9508 pos += ret;
9509#endif /* CONFIG_WIFI_DISPLAY */
9510
9511 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9512 ret = os_snprintf(pos, end - pos, "ifname=%s\n"
9513 "address=" MACSTR "\n",
9514 wpa_s->ifname, MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009515 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009516 return pos - buf;
9517 pos += ret;
9518 }
9519
9520 return pos - buf;
9521}
9522
9523
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009524#ifdef CONFIG_FST
9525
9526static int wpas_global_ctrl_iface_fst_attach(struct wpa_global *global,
9527 char *cmd, char *buf,
9528 size_t reply_size)
9529{
9530 char ifname[IFNAMSIZ + 1];
9531 struct fst_iface_cfg cfg;
9532 struct wpa_supplicant *wpa_s;
9533 struct fst_wpa_obj iface_obj;
9534
9535 if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
9536 wpa_s = wpa_supplicant_get_iface(global, ifname);
9537 if (wpa_s) {
9538 if (wpa_s->fst) {
9539 wpa_printf(MSG_INFO, "FST: Already attached");
9540 return -1;
9541 }
9542 fst_wpa_supplicant_fill_iface_obj(wpa_s, &iface_obj);
9543 wpa_s->fst = fst_attach(ifname, wpa_s->own_addr,
9544 &iface_obj, &cfg);
9545 if (wpa_s->fst)
9546 return os_snprintf(buf, reply_size, "OK\n");
9547 }
9548 }
9549
9550 return -1;
9551}
9552
9553
9554static int wpas_global_ctrl_iface_fst_detach(struct wpa_global *global,
9555 char *cmd, char *buf,
9556 size_t reply_size)
9557{
9558 char ifname[IFNAMSIZ + 1];
9559 struct wpa_supplicant *wpa_s;
9560
9561 if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
9562 wpa_s = wpa_supplicant_get_iface(global, ifname);
9563 if (wpa_s) {
9564 if (!fst_iface_detach(ifname)) {
9565 wpa_s->fst = NULL;
9566 return os_snprintf(buf, reply_size, "OK\n");
9567 }
9568 }
9569 }
9570
9571 return -1;
9572}
9573
9574#endif /* CONFIG_FST */
9575
9576
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009577char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
9578 char *buf, size_t *resp_len)
9579{
9580 char *reply;
9581 const int reply_size = 2048;
9582 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08009583 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009584
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009585 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
9586 char *pos = os_strchr(buf + 7, ' ');
9587 if (pos) {
9588 *pos++ = '\0';
9589 return wpas_global_ctrl_iface_ifname(global,
9590 buf + 7, pos,
9591 resp_len);
9592 }
9593 }
9594
9595 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
9596 if (reply)
9597 return reply;
9598
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08009599 if (os_strcmp(buf, "PING") == 0)
9600 level = MSG_EXCESSIVE;
9601 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009602 (const u8 *) buf, os_strlen(buf));
9603
9604 reply = os_malloc(reply_size);
9605 if (reply == NULL) {
9606 *resp_len = 1;
9607 return NULL;
9608 }
9609
9610 os_memcpy(reply, "OK\n", 3);
9611 reply_len = 3;
9612
9613 if (os_strcmp(buf, "PING") == 0) {
9614 os_memcpy(reply, "PONG\n", 5);
9615 reply_len = 5;
9616 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
9617 if (wpa_supplicant_global_iface_add(global, buf + 14))
9618 reply_len = -1;
9619 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
9620 if (wpa_supplicant_global_iface_remove(global, buf + 17))
9621 reply_len = -1;
9622 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
9623 reply_len = wpa_supplicant_global_iface_list(
9624 global, reply, reply_size);
9625 } else if (os_strcmp(buf, "INTERFACES") == 0) {
9626 reply_len = wpa_supplicant_global_iface_interfaces(
9627 global, reply, reply_size);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009628#ifdef CONFIG_FST
9629 } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
9630 reply_len = wpas_global_ctrl_iface_fst_attach(global, buf + 11,
9631 reply,
9632 reply_size);
9633 } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
9634 reply_len = wpas_global_ctrl_iface_fst_detach(global, buf + 11,
9635 reply,
9636 reply_size);
9637 } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
9638 reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
9639#endif /* CONFIG_FST */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009640 } else if (os_strcmp(buf, "TERMINATE") == 0) {
9641 wpa_supplicant_terminate_proc(global);
9642 } else if (os_strcmp(buf, "SUSPEND") == 0) {
9643 wpas_notify_suspend(global);
9644 } else if (os_strcmp(buf, "RESUME") == 0) {
9645 wpas_notify_resume(global);
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009646 } else if (os_strncmp(buf, "SET ", 4) == 0) {
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009647 if (wpas_global_ctrl_iface_set(global, buf + 4)) {
9648#ifdef CONFIG_P2P
9649 if (global->p2p_init_wpa_s) {
9650 os_free(reply);
9651 /* Check if P2P redirection would work for this
9652 * command. */
9653 return wpa_supplicant_ctrl_iface_process(
9654 global->p2p_init_wpa_s,
9655 buf, resp_len);
9656 }
9657#endif /* CONFIG_P2P */
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009658 reply_len = -1;
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009659 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009660 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
9661 if (wpas_global_ctrl_iface_dup_network(global, buf + 12))
9662 reply_len = -1;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009663#ifndef CONFIG_NO_CONFIG_WRITE
9664 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
9665 if (wpas_global_ctrl_iface_save_config(global))
9666 reply_len = -1;
9667#endif /* CONFIG_NO_CONFIG_WRITE */
9668 } else if (os_strcmp(buf, "STATUS") == 0) {
9669 reply_len = wpas_global_ctrl_iface_status(global, reply,
9670 reply_size);
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08009671#ifdef CONFIG_MODULE_TESTS
9672 } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
9673 int wpas_module_tests(void);
9674 if (wpas_module_tests() < 0)
9675 reply_len = -1;
9676#endif /* CONFIG_MODULE_TESTS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009677 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
9678 if (wpa_debug_reopen_file() < 0)
9679 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009680 } else {
9681 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
9682 reply_len = 16;
9683 }
9684
9685 if (reply_len < 0) {
9686 os_memcpy(reply, "FAIL\n", 5);
9687 reply_len = 5;
9688 }
9689
9690 *resp_len = reply_len;
9691 return reply;
9692}