blob: 4e16987139d09cbb1c0e37025f04800853d3a36e [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,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080058 const char *input,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070059 char *buf, int len);
Dmitry Shmidtd11f0192014-03-24 12:09:47 -070060static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s,
61 char *val);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070062
Dmitry Shmidt04949592012-07-19 12:16:46 -070063static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
64{
65 char *pos;
66 u8 addr[ETH_ALEN], *filter = NULL, *n;
67 size_t count = 0;
68
69 pos = val;
70 while (pos) {
71 if (*pos == '\0')
72 break;
73 if (hwaddr_aton(pos, addr)) {
74 os_free(filter);
75 return -1;
76 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070077 n = os_realloc_array(filter, count + 1, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -070078 if (n == NULL) {
79 os_free(filter);
80 return -1;
81 }
82 filter = n;
83 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
84 count++;
85
86 pos = os_strchr(pos, ' ');
87 if (pos)
88 pos++;
89 }
90
91 wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
92 os_free(wpa_s->bssid_filter);
93 wpa_s->bssid_filter = filter;
94 wpa_s->bssid_filter_count = count;
95
96 return 0;
97}
98
99
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800100static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
101{
102 char *pos;
103 u8 addr[ETH_ALEN], *bssid = NULL, *n;
104 struct wpa_ssid_value *ssid = NULL, *ns;
105 size_t count = 0, ssid_count = 0;
106 struct wpa_ssid *c;
107
108 /*
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800109 * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | ""
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800110 * SSID_SPEC ::= ssid <SSID_HEX>
111 * BSSID_SPEC ::= bssid <BSSID_HEX>
112 */
113
114 pos = val;
115 while (pos) {
116 if (*pos == '\0')
117 break;
118 if (os_strncmp(pos, "bssid ", 6) == 0) {
119 int res;
120 pos += 6;
121 res = hwaddr_aton2(pos, addr);
122 if (res < 0) {
123 os_free(ssid);
124 os_free(bssid);
125 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
126 "BSSID value '%s'", pos);
127 return -1;
128 }
129 pos += res;
130 n = os_realloc_array(bssid, count + 1, ETH_ALEN);
131 if (n == NULL) {
132 os_free(ssid);
133 os_free(bssid);
134 return -1;
135 }
136 bssid = n;
137 os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
138 count++;
139 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
140 char *end;
141 pos += 5;
142
143 end = pos;
144 while (*end) {
145 if (*end == '\0' || *end == ' ')
146 break;
147 end++;
148 }
149
150 ns = os_realloc_array(ssid, ssid_count + 1,
151 sizeof(struct wpa_ssid_value));
152 if (ns == NULL) {
153 os_free(ssid);
154 os_free(bssid);
155 return -1;
156 }
157 ssid = ns;
158
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700159 if ((end - pos) & 0x01 ||
160 end - pos > 2 * SSID_MAX_LEN ||
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800161 hexstr2bin(pos, ssid[ssid_count].ssid,
162 (end - pos) / 2) < 0) {
163 os_free(ssid);
164 os_free(bssid);
165 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
166 "SSID value '%s'", pos);
167 return -1;
168 }
169 ssid[ssid_count].ssid_len = (end - pos) / 2;
170 wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
171 ssid[ssid_count].ssid,
172 ssid[ssid_count].ssid_len);
173 ssid_count++;
174 pos = end;
175 } else {
176 wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
177 "'%s'", pos);
178 os_free(ssid);
179 os_free(bssid);
180 return -1;
181 }
182
183 pos = os_strchr(pos, ' ');
184 if (pos)
185 pos++;
186 }
187
188 wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
189 os_free(wpa_s->disallow_aps_bssid);
190 wpa_s->disallow_aps_bssid = bssid;
191 wpa_s->disallow_aps_bssid_count = count;
192
193 wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
194 os_free(wpa_s->disallow_aps_ssid);
195 wpa_s->disallow_aps_ssid = ssid;
196 wpa_s->disallow_aps_ssid_count = ssid_count;
197
198 if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
199 return 0;
200
201 c = wpa_s->current_ssid;
202 if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
203 return 0;
204
205 if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
206 !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
207 return 0;
208
209 wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
210 "because current AP was marked disallowed");
211
212#ifdef CONFIG_SME
213 wpa_s->sme.prev_bssid_set = 0;
214#endif /* CONFIG_SME */
215 wpa_s->reassociate = 1;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800216 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800217 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
218 wpa_supplicant_req_scan(wpa_s, 0, 0);
219
220 return 0;
221}
222
223
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700224#ifndef CONFIG_NO_CONFIG_BLOBS
225static int wpas_ctrl_set_blob(struct wpa_supplicant *wpa_s, char *pos)
226{
227 char *name = pos;
228 struct wpa_config_blob *blob;
229 size_t len;
230
231 pos = os_strchr(pos, ' ');
232 if (pos == NULL)
233 return -1;
234 *pos++ = '\0';
235 len = os_strlen(pos);
236 if (len & 1)
237 return -1;
238
239 wpa_printf(MSG_DEBUG, "CTRL: Set blob '%s'", name);
240 blob = os_zalloc(sizeof(*blob));
241 if (blob == NULL)
242 return -1;
243 blob->name = os_strdup(name);
244 blob->data = os_malloc(len / 2);
245 if (blob->name == NULL || blob->data == NULL) {
246 wpa_config_free_blob(blob);
247 return -1;
248 }
249
250 if (hexstr2bin(pos, blob->data, len / 2) < 0) {
251 wpa_printf(MSG_DEBUG, "CTRL: Invalid blob hex data");
252 wpa_config_free_blob(blob);
253 return -1;
254 }
255 blob->len = len / 2;
256
257 wpa_config_set_blob(wpa_s->conf, blob);
258
259 return 0;
260}
261#endif /* CONFIG_NO_CONFIG_BLOBS */
262
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700263
264static int wpas_ctrl_pno(struct wpa_supplicant *wpa_s, char *cmd)
265{
266 char *params;
267 char *pos;
268 int *freqs = NULL;
269 int ret;
270
271 if (atoi(cmd)) {
272 params = os_strchr(cmd, ' ');
273 os_free(wpa_s->manual_sched_scan_freqs);
274 if (params) {
275 params++;
276 pos = os_strstr(params, "freq=");
277 if (pos)
278 freqs = freq_range_to_channel_list(wpa_s,
279 pos + 5);
280 }
281 wpa_s->manual_sched_scan_freqs = freqs;
282 ret = wpas_start_pno(wpa_s);
283 } else {
284 ret = wpas_stop_pno(wpa_s);
285 }
286 return ret;
287}
288
289
Ravi Joshie6ccb162015-07-16 17:45:41 -0700290static int wpas_ctrl_set_band(struct wpa_supplicant *wpa_s, char *band)
291{
292 union wpa_event_data event;
293
294 if (os_strcmp(band, "AUTO") == 0)
295 wpa_s->setband = WPA_SETBAND_AUTO;
296 else if (os_strcmp(band, "5G") == 0)
297 wpa_s->setband = WPA_SETBAND_5G;
298 else if (os_strcmp(band, "2G") == 0)
299 wpa_s->setband = WPA_SETBAND_2G;
300 else
301 return -1;
302
303 if (wpa_drv_setband(wpa_s, wpa_s->setband) == 0) {
304 os_memset(&event, 0, sizeof(event));
305 event.channel_list_changed.initiator = REGDOM_SET_BY_USER;
306 event.channel_list_changed.type = REGDOM_TYPE_UNKNOWN;
307 wpa_supplicant_event(wpa_s, EVENT_CHANNEL_LIST_CHANGED, &event);
308 }
309
310 return 0;
311}
312
313
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700314static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
315 char *cmd)
316{
317 char *value;
318 int ret = 0;
319
320 value = os_strchr(cmd, ' ');
321 if (value == NULL)
322 return -1;
323 *value++ = '\0';
324
325 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
326 if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
327 eapol_sm_configure(wpa_s->eapol,
328 atoi(value), -1, -1, -1);
329 } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
330 eapol_sm_configure(wpa_s->eapol,
331 -1, atoi(value), -1, -1);
332 } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
333 eapol_sm_configure(wpa_s->eapol,
334 -1, -1, atoi(value), -1);
335 } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
336 eapol_sm_configure(wpa_s->eapol,
337 -1, -1, -1, atoi(value));
338 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
339 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
340 atoi(value)))
341 ret = -1;
342 } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
343 0) {
344 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
345 atoi(value)))
346 ret = -1;
347 } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
348 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
349 ret = -1;
350 } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
351 wpa_s->wps_fragment_size = atoi(value);
352#ifdef CONFIG_WPS_TESTING
353 } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
354 long int val;
355 val = strtol(value, NULL, 0);
356 if (val < 0 || val > 0xff) {
357 ret = -1;
358 wpa_printf(MSG_DEBUG, "WPS: Invalid "
359 "wps_version_number %ld", val);
360 } else {
361 wps_version_number = val;
362 wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
363 "version %u.%u",
364 (wps_version_number & 0xf0) >> 4,
365 wps_version_number & 0x0f);
366 }
367 } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
368 wps_testing_dummy_cred = atoi(value);
369 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
370 wps_testing_dummy_cred);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800371 } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
372 wps_corrupt_pkhash = atoi(value);
373 wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
374 wps_corrupt_pkhash);
Dmitry Shmidtde47be72016-01-07 12:52:55 -0800375 } else if (os_strcasecmp(cmd, "wps_force_auth_types") == 0) {
376 if (value[0] == '\0') {
377 wps_force_auth_types_in_use = 0;
378 } else {
379 wps_force_auth_types = strtol(value, NULL, 0);
380 wps_force_auth_types_in_use = 1;
381 }
382 } else if (os_strcasecmp(cmd, "wps_force_encr_types") == 0) {
383 if (value[0] == '\0') {
384 wps_force_encr_types_in_use = 0;
385 } else {
386 wps_force_encr_types = strtol(value, NULL, 0);
387 wps_force_encr_types_in_use = 1;
388 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700389#endif /* CONFIG_WPS_TESTING */
390 } else if (os_strcasecmp(cmd, "ampdu") == 0) {
391 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
392 ret = -1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800393#ifdef CONFIG_TDLS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700394#ifdef CONFIG_TDLS_TESTING
395 } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
396 extern unsigned int tdls_testing;
397 tdls_testing = strtol(value, NULL, 0);
398 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
399#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700400 } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
401 int disabled = atoi(value);
402 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
403 if (disabled) {
404 if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
405 ret = -1;
406 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
407 ret = -1;
408 wpa_tdls_enable(wpa_s->wpa, !disabled);
409#endif /* CONFIG_TDLS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800410 } else if (os_strcasecmp(cmd, "pno") == 0) {
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700411 ret = wpas_ctrl_pno(wpa_s, value);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700412 } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
413 int disabled = atoi(value);
414 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
415 ret = -1;
416 else if (disabled)
417 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
418 } else if (os_strcasecmp(cmd, "uapsd") == 0) {
419 if (os_strcmp(value, "disable") == 0)
420 wpa_s->set_sta_uapsd = 0;
421 else {
422 int be, bk, vi, vo;
423 char *pos;
424 /* format: BE,BK,VI,VO;max SP Length */
425 be = atoi(value);
426 pos = os_strchr(value, ',');
427 if (pos == NULL)
428 return -1;
429 pos++;
430 bk = atoi(pos);
431 pos = os_strchr(pos, ',');
432 if (pos == NULL)
433 return -1;
434 pos++;
435 vi = atoi(pos);
436 pos = os_strchr(pos, ',');
437 if (pos == NULL)
438 return -1;
439 pos++;
440 vo = atoi(pos);
441 /* ignore max SP Length for now */
442
443 wpa_s->set_sta_uapsd = 1;
444 wpa_s->sta_uapsd = 0;
445 if (be)
446 wpa_s->sta_uapsd |= BIT(0);
447 if (bk)
448 wpa_s->sta_uapsd |= BIT(1);
449 if (vi)
450 wpa_s->sta_uapsd |= BIT(2);
451 if (vo)
452 wpa_s->sta_uapsd |= BIT(3);
453 }
Jouni Malinen21d6bc82012-04-10 16:17:59 -0700454 } else if (os_strcasecmp(cmd, "ps") == 0) {
455 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700456#ifdef CONFIG_WIFI_DISPLAY
457 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800458 int enabled = !!atoi(value);
459 if (enabled && !wpa_s->global->p2p)
460 ret = -1;
461 else
462 wifi_display_enable(wpa_s->global, enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700463#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700464 } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
465 ret = set_bssid_filter(wpa_s, value);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800466 } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
467 ret = set_disallow_aps(wpa_s, value);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800468 } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
469 wpa_s->no_keep_alive = !!atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700470#ifdef CONFIG_TESTING_OPTIONS
471 } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
472 wpa_s->ext_mgmt_frame_handling = !!atoi(value);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800473 } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
474 wpa_s->ext_eapol_frame_io = !!atoi(value);
475#ifdef CONFIG_AP
476 if (wpa_s->ap_iface) {
477 wpa_s->ap_iface->bss[0]->ext_eapol_frame_io =
478 wpa_s->ext_eapol_frame_io;
479 }
480#endif /* CONFIG_AP */
481 } else if (os_strcasecmp(cmd, "extra_roc_dur") == 0) {
482 wpa_s->extra_roc_dur = atoi(value);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800483 } else if (os_strcasecmp(cmd, "test_failure") == 0) {
484 wpa_s->test_failure = atoi(value);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800485 } else if (os_strcasecmp(cmd, "p2p_go_csa_on_inv") == 0) {
486 wpa_s->p2p_go_csa_on_inv = !!atoi(value);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700487#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700488#ifndef CONFIG_NO_CONFIG_BLOBS
489 } else if (os_strcmp(cmd, "blob") == 0) {
490 ret = wpas_ctrl_set_blob(wpa_s, value);
491#endif /* CONFIG_NO_CONFIG_BLOBS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800492 } else if (os_strcasecmp(cmd, "setband") == 0) {
Ravi Joshie6ccb162015-07-16 17:45:41 -0700493 ret = wpas_ctrl_set_band(wpa_s, value);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800494#ifdef CONFIG_MBO
495 } else if (os_strcasecmp(cmd, "non_pref_chan") == 0) {
496 ret = wpas_mbo_update_non_pref_chan(wpa_s, value);
497 } else if (os_strcasecmp(cmd, "mbo_cell_capa") == 0) {
498 wpas_mbo_update_cell_capa(wpa_s, atoi(value));
499#endif /* CONFIG_MBO */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700500 } else {
501 value[-1] = '=';
502 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
503 if (ret == 0)
504 wpa_supplicant_update_config(wpa_s);
505 }
506
507 return ret;
508}
509
510
511static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
512 char *cmd, char *buf, size_t buflen)
513{
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700514 int res = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700515
516 wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
517
518 if (os_strcmp(cmd, "version") == 0) {
519 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700520 } else if (os_strcasecmp(cmd, "country") == 0) {
521 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
522 res = os_snprintf(buf, buflen, "%c%c",
523 wpa_s->conf->country[0],
524 wpa_s->conf->country[1]);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700525#ifdef CONFIG_WIFI_DISPLAY
526 } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
Dmitry Shmidted003d22014-02-06 10:09:12 -0800527 int enabled;
528 if (wpa_s->global->p2p == NULL ||
529 wpa_s->global->p2p_disabled)
530 enabled = 0;
531 else
532 enabled = wpa_s->global->wifi_display;
533 res = os_snprintf(buf, buflen, "%d", enabled);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700534#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700535#ifdef CONFIG_TESTING_GET_GTK
536 } else if (os_strcmp(cmd, "gtk") == 0) {
537 if (wpa_s->last_gtk_len == 0)
538 return -1;
539 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
540 wpa_s->last_gtk_len);
541 return res;
542#endif /* CONFIG_TESTING_GET_GTK */
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800543 } else if (os_strcmp(cmd, "tls_library") == 0) {
544 res = tls_get_library_version(buf, buflen);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800545 } else {
546 res = wpa_config_get_value(cmd, wpa_s->conf, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700547 }
548
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800549 if (os_snprintf_error(buflen, res))
Dmitry Shmidt6f3bdcf2011-04-19 16:42:47 -0700550 return -1;
551 return res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700552}
553
554
555#ifdef IEEE8021X_EAPOL
556static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
557 char *addr)
558{
559 u8 bssid[ETH_ALEN];
560 struct wpa_ssid *ssid = wpa_s->current_ssid;
561
562 if (hwaddr_aton(addr, bssid)) {
563 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
564 "'%s'", addr);
565 return -1;
566 }
567
568 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
569 rsn_preauth_deinit(wpa_s->wpa);
570 if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
571 return -1;
572
573 return 0;
574}
575#endif /* IEEE8021X_EAPOL */
576
577
578#ifdef CONFIG_PEERKEY
579/* MLME-STKSTART.request(peer) */
580static int wpa_supplicant_ctrl_iface_stkstart(
581 struct wpa_supplicant *wpa_s, char *addr)
582{
583 u8 peer[ETH_ALEN];
584
585 if (hwaddr_aton(addr, peer)) {
586 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
587 "address '%s'", addr);
588 return -1;
589 }
590
591 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
592 MAC2STR(peer));
593
594 return wpa_sm_stkstart(wpa_s->wpa, peer);
595}
596#endif /* CONFIG_PEERKEY */
597
598
599#ifdef CONFIG_TDLS
600
601static int wpa_supplicant_ctrl_iface_tdls_discover(
602 struct wpa_supplicant *wpa_s, char *addr)
603{
604 u8 peer[ETH_ALEN];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800605 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700606
607 if (hwaddr_aton(addr, peer)) {
608 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
609 "address '%s'", addr);
610 return -1;
611 }
612
613 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
614 MAC2STR(peer));
615
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800616 if (wpa_tdls_is_external_setup(wpa_s->wpa))
617 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
618 else
619 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
620
621 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700622}
623
624
625static int wpa_supplicant_ctrl_iface_tdls_setup(
626 struct wpa_supplicant *wpa_s, char *addr)
627{
628 u8 peer[ETH_ALEN];
629 int ret;
630
631 if (hwaddr_aton(addr, peer)) {
632 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
633 "address '%s'", addr);
634 return -1;
635 }
636
637 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
638 MAC2STR(peer));
639
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800640 if ((wpa_s->conf->tdls_external_control) &&
641 wpa_tdls_is_external_setup(wpa_s->wpa))
642 return wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
643
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800644 wpa_tdls_remove(wpa_s->wpa, peer);
645
646 if (wpa_tdls_is_external_setup(wpa_s->wpa))
647 ret = wpa_tdls_start(wpa_s->wpa, peer);
648 else
649 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800650
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700651 return ret;
652}
653
654
655static int wpa_supplicant_ctrl_iface_tdls_teardown(
656 struct wpa_supplicant *wpa_s, char *addr)
657{
658 u8 peer[ETH_ALEN];
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700659 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700660
Dmitry Shmidt43cb5782014-06-16 16:23:22 -0700661 if (os_strcmp(addr, "*") == 0) {
662 /* remove everyone */
663 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN *");
664 wpa_tdls_teardown_peers(wpa_s->wpa);
665 return 0;
666 }
667
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700668 if (hwaddr_aton(addr, peer)) {
669 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
670 "address '%s'", addr);
671 return -1;
672 }
673
674 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
675 MAC2STR(peer));
676
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800677 if ((wpa_s->conf->tdls_external_control) &&
678 wpa_tdls_is_external_setup(wpa_s->wpa))
679 return wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
680
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700681 if (wpa_tdls_is_external_setup(wpa_s->wpa))
682 ret = wpa_tdls_teardown_link(
683 wpa_s->wpa, peer,
684 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
685 else
686 ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
687
688 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700689}
690
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700691
692static int ctrl_iface_get_capability_tdls(
693 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
694{
695 int ret;
696
697 ret = os_snprintf(buf, buflen, "%s\n",
698 wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT ?
699 (wpa_s->drv_flags &
700 WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP ?
701 "EXTERNAL" : "INTERNAL") : "UNSUPPORTED");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800702 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700703 return -1;
704 return ret;
705}
706
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800707
708static int wpa_supplicant_ctrl_iface_tdls_chan_switch(
709 struct wpa_supplicant *wpa_s, char *cmd)
710{
711 u8 peer[ETH_ALEN];
712 struct hostapd_freq_params freq_params;
713 u8 oper_class;
714 char *pos, *end;
715
716 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
717 wpa_printf(MSG_INFO,
718 "tdls_chanswitch: Only supported with external setup");
719 return -1;
720 }
721
722 os_memset(&freq_params, 0, sizeof(freq_params));
723
724 pos = os_strchr(cmd, ' ');
725 if (pos == NULL)
726 return -1;
727 *pos++ = '\0';
728
729 oper_class = strtol(pos, &end, 10);
730 if (pos == end) {
731 wpa_printf(MSG_INFO,
732 "tdls_chanswitch: Invalid op class provided");
733 return -1;
734 }
735
736 pos = end;
737 freq_params.freq = atoi(pos);
738 if (freq_params.freq == 0) {
739 wpa_printf(MSG_INFO, "tdls_chanswitch: Invalid freq provided");
740 return -1;
741 }
742
743#define SET_FREQ_SETTING(str) \
744 do { \
745 const char *pos2 = os_strstr(pos, " " #str "="); \
746 if (pos2) { \
747 pos2 += sizeof(" " #str "=") - 1; \
748 freq_params.str = atoi(pos2); \
749 } \
750 } while (0)
751
752 SET_FREQ_SETTING(center_freq1);
753 SET_FREQ_SETTING(center_freq2);
754 SET_FREQ_SETTING(bandwidth);
755 SET_FREQ_SETTING(sec_channel_offset);
756#undef SET_FREQ_SETTING
757
758 freq_params.ht_enabled = !!os_strstr(pos, " ht");
759 freq_params.vht_enabled = !!os_strstr(pos, " vht");
760
761 if (hwaddr_aton(cmd, peer)) {
762 wpa_printf(MSG_DEBUG,
763 "CTRL_IFACE TDLS_CHAN_SWITCH: Invalid address '%s'",
764 cmd);
765 return -1;
766 }
767
768 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CHAN_SWITCH " MACSTR
769 " OP CLASS %d FREQ %d CENTER1 %d CENTER2 %d BW %d SEC_OFFSET %d%s%s",
770 MAC2STR(peer), oper_class, freq_params.freq,
771 freq_params.center_freq1, freq_params.center_freq2,
772 freq_params.bandwidth, freq_params.sec_channel_offset,
773 freq_params.ht_enabled ? " HT" : "",
774 freq_params.vht_enabled ? " VHT" : "");
775
776 return wpa_tdls_enable_chan_switch(wpa_s->wpa, peer, oper_class,
777 &freq_params);
778}
779
780
781static int wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(
782 struct wpa_supplicant *wpa_s, char *cmd)
783{
784 u8 peer[ETH_ALEN];
785
786 if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
787 wpa_printf(MSG_INFO,
788 "tdls_chanswitch: Only supported with external setup");
789 return -1;
790 }
791
792 if (hwaddr_aton(cmd, peer)) {
793 wpa_printf(MSG_DEBUG,
794 "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH: Invalid address '%s'",
795 cmd);
796 return -1;
797 }
798
799 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH " MACSTR,
800 MAC2STR(peer));
801
802 return wpa_tdls_disable_chan_switch(wpa_s->wpa, peer);
803}
804
Dmitry Shmidtcc00d5d2015-05-04 10:34:12 -0700805
806static int wpa_supplicant_ctrl_iface_tdls_link_status(
807 struct wpa_supplicant *wpa_s, const char *addr,
808 char *buf, size_t buflen)
809{
810 u8 peer[ETH_ALEN];
811 const char *tdls_status;
812 int ret;
813
814 if (hwaddr_aton(addr, peer)) {
815 wpa_printf(MSG_DEBUG,
816 "CTRL_IFACE TDLS_LINK_STATUS: Invalid address '%s'",
817 addr);
818 return -1;
819 }
820 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS " MACSTR,
821 MAC2STR(peer));
822
823 tdls_status = wpa_tdls_get_link_status(wpa_s->wpa, peer);
824 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS: %s", tdls_status);
825 ret = os_snprintf(buf, buflen, "TDLS link status: %s\n", tdls_status);
826 if (os_snprintf_error(buflen, ret))
827 return -1;
828
829 return ret;
830}
831
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700832#endif /* CONFIG_TDLS */
833
834
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800835static int wmm_ac_ctrl_addts(struct wpa_supplicant *wpa_s, char *cmd)
836{
837 char *token, *context = NULL;
838 struct wmm_ac_ts_setup_params params = {
839 .tsid = 0xff,
840 .direction = 0xff,
841 };
842
843 while ((token = str_token(cmd, " ", &context))) {
844 if (sscanf(token, "tsid=%i", &params.tsid) == 1 ||
845 sscanf(token, "up=%i", &params.user_priority) == 1 ||
846 sscanf(token, "nominal_msdu_size=%i",
847 &params.nominal_msdu_size) == 1 ||
848 sscanf(token, "mean_data_rate=%i",
849 &params.mean_data_rate) == 1 ||
850 sscanf(token, "min_phy_rate=%i",
851 &params.minimum_phy_rate) == 1 ||
852 sscanf(token, "sba=%i",
853 &params.surplus_bandwidth_allowance) == 1)
854 continue;
855
856 if (os_strcasecmp(token, "downlink") == 0) {
857 params.direction = WMM_TSPEC_DIRECTION_DOWNLINK;
858 } else if (os_strcasecmp(token, "uplink") == 0) {
859 params.direction = WMM_TSPEC_DIRECTION_UPLINK;
860 } else if (os_strcasecmp(token, "bidi") == 0) {
861 params.direction = WMM_TSPEC_DIRECTION_BI_DIRECTIONAL;
862 } else if (os_strcasecmp(token, "fixed_nominal_msdu") == 0) {
863 params.fixed_nominal_msdu = 1;
864 } else {
865 wpa_printf(MSG_DEBUG,
866 "CTRL: Invalid WMM_AC_ADDTS parameter: '%s'",
867 token);
868 return -1;
869 }
870
871 }
872
873 return wpas_wmm_ac_addts(wpa_s, &params);
874}
875
876
877static int wmm_ac_ctrl_delts(struct wpa_supplicant *wpa_s, char *cmd)
878{
879 u8 tsid = atoi(cmd);
880
881 return wpas_wmm_ac_delts(wpa_s, tsid);
882}
883
884
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700885#ifdef CONFIG_IEEE80211R
886static int wpa_supplicant_ctrl_iface_ft_ds(
887 struct wpa_supplicant *wpa_s, char *addr)
888{
889 u8 target_ap[ETH_ALEN];
890 struct wpa_bss *bss;
891 const u8 *mdie;
892
893 if (hwaddr_aton(addr, target_ap)) {
894 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
895 "address '%s'", addr);
896 return -1;
897 }
898
899 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
900
901 bss = wpa_bss_get_bssid(wpa_s, target_ap);
902 if (bss)
903 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
904 else
905 mdie = NULL;
906
907 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
908}
909#endif /* CONFIG_IEEE80211R */
910
911
912#ifdef CONFIG_WPS
913static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
914 char *cmd)
915{
916 u8 bssid[ETH_ALEN], *_bssid = bssid;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700917#ifdef CONFIG_P2P
918 u8 p2p_dev_addr[ETH_ALEN];
919#endif /* CONFIG_P2P */
920#ifdef CONFIG_AP
921 u8 *_p2p_dev_addr = NULL;
922#endif /* CONFIG_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800923
Dmitry Shmidtc0a8db02013-11-08 11:18:33 -0800924 if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700925 _bssid = NULL;
926#ifdef CONFIG_P2P
927 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
928 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
929 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
930 "P2P Device Address '%s'",
931 cmd + 13);
932 return -1;
933 }
934 _p2p_dev_addr = p2p_dev_addr;
935#endif /* CONFIG_P2P */
936 } else if (hwaddr_aton(cmd, bssid)) {
937 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
938 cmd);
939 return -1;
940 }
941
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800942#ifdef CONFIG_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700943 if (wpa_s->ap_iface)
944 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
945#endif /* CONFIG_AP */
946
947 return wpas_wps_start_pbc(wpa_s, _bssid, 0);
948}
949
950
951static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
952 char *cmd, char *buf,
953 size_t buflen)
954{
955 u8 bssid[ETH_ALEN], *_bssid = bssid;
956 char *pin;
957 int ret;
958
959 pin = os_strchr(cmd, ' ');
960 if (pin)
961 *pin++ = '\0';
962
963 if (os_strcmp(cmd, "any") == 0)
964 _bssid = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800965 else if (os_strcmp(cmd, "get") == 0) {
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800966 if (wps_generate_pin((unsigned int *) &ret) < 0)
967 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800968 goto done;
969 } else if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700970 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
971 cmd);
972 return -1;
973 }
974
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800975#ifdef CONFIG_AP
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800976 if (wpa_s->ap_iface) {
977 int timeout = 0;
978 char *pos;
979
980 if (pin) {
981 pos = os_strchr(pin, ' ');
982 if (pos) {
983 *pos++ = '\0';
984 timeout = atoi(pos);
985 }
986 }
987
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700988 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800989 buf, buflen, timeout);
990 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700991#endif /* CONFIG_AP */
992
993 if (pin) {
994 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
995 DEV_PW_DEFAULT);
996 if (ret < 0)
997 return -1;
998 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800999 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001000 return -1;
1001 return ret;
1002 }
1003
1004 ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
1005 if (ret < 0)
1006 return -1;
1007
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001008done:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001009 /* Return the generated PIN */
1010 ret = os_snprintf(buf, buflen, "%08d", ret);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001011 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001012 return -1;
1013 return ret;
1014}
1015
1016
1017static int wpa_supplicant_ctrl_iface_wps_check_pin(
1018 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
1019{
1020 char pin[9];
1021 size_t len;
1022 char *pos;
1023 int ret;
1024
1025 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
1026 (u8 *) cmd, os_strlen(cmd));
1027 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
1028 if (*pos < '0' || *pos > '9')
1029 continue;
1030 pin[len++] = *pos;
1031 if (len == 9) {
1032 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
1033 return -1;
1034 }
1035 }
1036 if (len != 4 && len != 8) {
1037 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
1038 return -1;
1039 }
1040 pin[len] = '\0';
1041
1042 if (len == 8) {
1043 unsigned int pin_val;
1044 pin_val = atoi(pin);
1045 if (!wps_pin_valid(pin_val)) {
1046 wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
1047 ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001048 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001049 return -1;
1050 return ret;
1051 }
1052 }
1053
1054 ret = os_snprintf(buf, buflen, "%s", pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001055 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001056 return -1;
1057
1058 return ret;
1059}
1060
1061
Dmitry Shmidt04949592012-07-19 12:16:46 -07001062#ifdef CONFIG_WPS_NFC
1063
1064static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
1065 char *cmd)
1066{
1067 u8 bssid[ETH_ALEN], *_bssid = bssid;
1068
1069 if (cmd == NULL || cmd[0] == '\0')
1070 _bssid = NULL;
1071 else if (hwaddr_aton(cmd, bssid))
1072 return -1;
1073
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001074 return wpas_wps_start_nfc(wpa_s, NULL, _bssid, NULL, 0, 0, NULL, NULL,
1075 0, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001076}
1077
1078
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001079static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
1080 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1081{
1082 int ndef;
1083 struct wpabuf *buf;
1084 int res;
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001085 char *pos;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001086
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001087 pos = os_strchr(cmd, ' ');
1088 if (pos)
1089 *pos++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001090 if (os_strcmp(cmd, "WPS") == 0)
1091 ndef = 0;
1092 else if (os_strcmp(cmd, "NDEF") == 0)
1093 ndef = 1;
1094 else
1095 return -1;
1096
Dmitry Shmidt1e78e762013-04-02 11:05:36 -07001097 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001098 if (buf == NULL)
1099 return -1;
1100
1101 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1102 wpabuf_len(buf));
1103 reply[res++] = '\n';
1104 reply[res] = '\0';
1105
1106 wpabuf_free(buf);
1107
1108 return res;
1109}
1110
1111
Dmitry Shmidt04949592012-07-19 12:16:46 -07001112static int wpa_supplicant_ctrl_iface_wps_nfc_token(
1113 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1114{
1115 int ndef;
1116 struct wpabuf *buf;
1117 int res;
1118
1119 if (os_strcmp(cmd, "WPS") == 0)
1120 ndef = 0;
1121 else if (os_strcmp(cmd, "NDEF") == 0)
1122 ndef = 1;
1123 else
1124 return -1;
1125
1126 buf = wpas_wps_nfc_token(wpa_s, ndef);
1127 if (buf == NULL)
1128 return -1;
1129
1130 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1131 wpabuf_len(buf));
1132 reply[res++] = '\n';
1133 reply[res] = '\0';
1134
1135 wpabuf_free(buf);
1136
1137 return res;
1138}
1139
1140
1141static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
1142 struct wpa_supplicant *wpa_s, char *pos)
1143{
1144 size_t len;
1145 struct wpabuf *buf;
1146 int ret;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001147 char *freq;
1148 int forced_freq = 0;
1149
1150 freq = strstr(pos, " freq=");
1151 if (freq) {
1152 *freq = '\0';
1153 freq += 6;
1154 forced_freq = atoi(freq);
1155 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001156
1157 len = os_strlen(pos);
1158 if (len & 0x01)
1159 return -1;
1160 len /= 2;
1161
1162 buf = wpabuf_alloc(len);
1163 if (buf == NULL)
1164 return -1;
1165 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
1166 wpabuf_free(buf);
1167 return -1;
1168 }
1169
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001170 ret = wpas_wps_nfc_tag_read(wpa_s, buf, forced_freq);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001171 wpabuf_free(buf);
1172
1173 return ret;
1174}
1175
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001176
1177static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001178 char *reply, size_t max_len,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001179 int ndef)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001180{
1181 struct wpabuf *buf;
1182 int res;
1183
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001184 buf = wpas_wps_nfc_handover_req(wpa_s, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001185 if (buf == NULL)
1186 return -1;
1187
1188 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1189 wpabuf_len(buf));
1190 reply[res++] = '\n';
1191 reply[res] = '\0';
1192
1193 wpabuf_free(buf);
1194
1195 return res;
1196}
1197
1198
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001199#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001200static int wpas_ctrl_nfc_get_handover_req_p2p(struct wpa_supplicant *wpa_s,
1201 char *reply, size_t max_len,
1202 int ndef)
1203{
1204 struct wpabuf *buf;
1205 int res;
1206
1207 buf = wpas_p2p_nfc_handover_req(wpa_s, ndef);
1208 if (buf == NULL) {
1209 wpa_printf(MSG_DEBUG, "P2P: Could not generate NFC handover request");
1210 return -1;
1211 }
1212
1213 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1214 wpabuf_len(buf));
1215 reply[res++] = '\n';
1216 reply[res] = '\0';
1217
1218 wpabuf_free(buf);
1219
1220 return res;
1221}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001222#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001223
1224
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001225static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
1226 char *cmd, char *reply,
1227 size_t max_len)
1228{
1229 char *pos;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001230 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001231
1232 pos = os_strchr(cmd, ' ');
1233 if (pos == NULL)
1234 return -1;
1235 *pos++ = '\0';
1236
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001237 if (os_strcmp(cmd, "WPS") == 0)
1238 ndef = 0;
1239 else if (os_strcmp(cmd, "NDEF") == 0)
1240 ndef = 1;
1241 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001242 return -1;
1243
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001244 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001245 if (!ndef)
1246 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001247 return wpas_ctrl_nfc_get_handover_req_wps(
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001248 wpa_s, reply, max_len, ndef);
1249 }
1250
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001251#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001252 if (os_strcmp(pos, "P2P-CR") == 0) {
1253 return wpas_ctrl_nfc_get_handover_req_p2p(
1254 wpa_s, reply, max_len, ndef);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001255 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001256#endif /* CONFIG_P2P */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001257
1258 return -1;
1259}
1260
1261
1262static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001263 char *reply, size_t max_len,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001264 int ndef, int cr, char *uuid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001265{
1266 struct wpabuf *buf;
1267 int res;
1268
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001269 buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001270 if (buf == NULL)
1271 return -1;
1272
1273 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1274 wpabuf_len(buf));
1275 reply[res++] = '\n';
1276 reply[res] = '\0';
1277
1278 wpabuf_free(buf);
1279
1280 return res;
1281}
1282
1283
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001284#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001285static int wpas_ctrl_nfc_get_handover_sel_p2p(struct wpa_supplicant *wpa_s,
1286 char *reply, size_t max_len,
1287 int ndef, int tag)
1288{
1289 struct wpabuf *buf;
1290 int res;
1291
1292 buf = wpas_p2p_nfc_handover_sel(wpa_s, ndef, tag);
1293 if (buf == NULL)
1294 return -1;
1295
1296 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1297 wpabuf_len(buf));
1298 reply[res++] = '\n';
1299 reply[res] = '\0';
1300
1301 wpabuf_free(buf);
1302
1303 return res;
1304}
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001305#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001306
1307
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001308static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
1309 char *cmd, char *reply,
1310 size_t max_len)
1311{
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001312 char *pos, *pos2;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001313 int ndef;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001314
1315 pos = os_strchr(cmd, ' ');
1316 if (pos == NULL)
1317 return -1;
1318 *pos++ = '\0';
1319
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001320 if (os_strcmp(cmd, "WPS") == 0)
1321 ndef = 0;
1322 else if (os_strcmp(cmd, "NDEF") == 0)
1323 ndef = 1;
1324 else
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001325 return -1;
1326
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001327 pos2 = os_strchr(pos, ' ');
1328 if (pos2)
1329 *pos2++ = '\0';
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001330 if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001331 if (!ndef)
1332 return -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001333 return wpas_ctrl_nfc_get_handover_sel_wps(
1334 wpa_s, reply, max_len, ndef,
Dmitry Shmidt33e38bf2013-02-27 12:56:00 -08001335 os_strcmp(pos, "WPS-CR") == 0, pos2);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001336 }
1337
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001338#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001339 if (os_strcmp(pos, "P2P-CR") == 0) {
1340 return wpas_ctrl_nfc_get_handover_sel_p2p(
1341 wpa_s, reply, max_len, ndef, 0);
1342 }
1343
1344 if (os_strcmp(pos, "P2P-CR-TAG") == 0) {
1345 return wpas_ctrl_nfc_get_handover_sel_p2p(
1346 wpa_s, reply, max_len, ndef, 1);
1347 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001348#endif /* CONFIG_P2P */
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001349
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001350 return -1;
1351}
1352
1353
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001354static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1355 char *cmd)
1356{
1357 size_t len;
1358 struct wpabuf *req, *sel;
1359 int ret;
1360 char *pos, *role, *type, *pos2;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001361#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001362 char *freq;
1363 int forced_freq = 0;
1364
1365 freq = strstr(cmd, " freq=");
1366 if (freq) {
1367 *freq = '\0';
1368 freq += 6;
1369 forced_freq = atoi(freq);
1370 }
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001371#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001372
1373 role = cmd;
1374 pos = os_strchr(role, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001375 if (pos == NULL) {
1376 wpa_printf(MSG_DEBUG, "NFC: Missing type 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 type = pos;
1382 pos = os_strchr(type, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001383 if (pos == NULL) {
1384 wpa_printf(MSG_DEBUG, "NFC: Missing request message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001385 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001386 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001387 *pos++ = '\0';
1388
1389 pos2 = os_strchr(pos, ' ');
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001390 if (pos2 == NULL) {
1391 wpa_printf(MSG_DEBUG, "NFC: Missing select message in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001392 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001393 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001394 *pos2++ = '\0';
1395
1396 len = os_strlen(pos);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001397 if (len & 0x01) {
1398 wpa_printf(MSG_DEBUG, "NFC: Invalid request message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001399 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001400 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001401 len /= 2;
1402
1403 req = wpabuf_alloc(len);
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001404 if (req == NULL) {
1405 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for request message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001406 return -1;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001407 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001408 if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001409 wpa_printf(MSG_DEBUG, "NFC: Invalid request message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001410 wpabuf_free(req);
1411 return -1;
1412 }
1413
1414 len = os_strlen(pos2);
1415 if (len & 0x01) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001416 wpa_printf(MSG_DEBUG, "NFC: Invalid select message length in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001417 wpabuf_free(req);
1418 return -1;
1419 }
1420 len /= 2;
1421
1422 sel = wpabuf_alloc(len);
1423 if (sel == NULL) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001424 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for select message");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001425 wpabuf_free(req);
1426 return -1;
1427 }
1428 if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001429 wpa_printf(MSG_DEBUG, "NFC: Invalid select message hexdump in handover report");
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001430 wpabuf_free(req);
1431 wpabuf_free(sel);
1432 return -1;
1433 }
1434
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001435 wpa_printf(MSG_DEBUG, "NFC: Connection handover reported - role=%s type=%s req_len=%d sel_len=%d",
1436 role, type, (int) wpabuf_len(req), (int) wpabuf_len(sel));
1437
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001438 if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1439 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001440#ifdef CONFIG_AP
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001441 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0)
1442 {
1443 ret = wpas_ap_wps_nfc_report_handover(wpa_s, req, sel);
1444 if (ret < 0)
1445 ret = wpas_er_wps_nfc_report_handover(wpa_s, req, sel);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001446#endif /* CONFIG_AP */
1447#ifdef CONFIG_P2P
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001448 } else if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "P2P") == 0)
1449 {
1450 ret = wpas_p2p_nfc_report_handover(wpa_s, 1, req, sel, 0);
1451 } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "P2P") == 0)
1452 {
1453 ret = wpas_p2p_nfc_report_handover(wpa_s, 0, req, sel,
1454 forced_freq);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001455#endif /* CONFIG_P2P */
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001456 } else {
1457 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1458 "reported: role=%s type=%s", role, type);
1459 ret = -1;
1460 }
1461 wpabuf_free(req);
1462 wpabuf_free(sel);
1463
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001464 if (ret)
1465 wpa_printf(MSG_DEBUG, "NFC: Failed to process reported handover messages");
1466
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001467 return ret;
1468}
1469
Dmitry Shmidt04949592012-07-19 12:16:46 -07001470#endif /* CONFIG_WPS_NFC */
1471
1472
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001473static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1474 char *cmd)
1475{
1476 u8 bssid[ETH_ALEN];
1477 char *pin;
1478 char *new_ssid;
1479 char *new_auth;
1480 char *new_encr;
1481 char *new_key;
1482 struct wps_new_ap_settings ap;
1483
1484 pin = os_strchr(cmd, ' ');
1485 if (pin == NULL)
1486 return -1;
1487 *pin++ = '\0';
1488
1489 if (hwaddr_aton(cmd, bssid)) {
1490 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1491 cmd);
1492 return -1;
1493 }
1494
1495 new_ssid = os_strchr(pin, ' ');
1496 if (new_ssid == NULL)
1497 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1498 *new_ssid++ = '\0';
1499
1500 new_auth = os_strchr(new_ssid, ' ');
1501 if (new_auth == NULL)
1502 return -1;
1503 *new_auth++ = '\0';
1504
1505 new_encr = os_strchr(new_auth, ' ');
1506 if (new_encr == NULL)
1507 return -1;
1508 *new_encr++ = '\0';
1509
1510 new_key = os_strchr(new_encr, ' ');
1511 if (new_key == NULL)
1512 return -1;
1513 *new_key++ = '\0';
1514
1515 os_memset(&ap, 0, sizeof(ap));
1516 ap.ssid_hex = new_ssid;
1517 ap.auth = new_auth;
1518 ap.encr = new_encr;
1519 ap.key_hex = new_key;
1520 return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1521}
1522
1523
1524#ifdef CONFIG_AP
1525static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1526 char *cmd, char *buf,
1527 size_t buflen)
1528{
1529 int timeout = 300;
1530 char *pos;
1531 const char *pin_txt;
1532
1533 if (!wpa_s->ap_iface)
1534 return -1;
1535
1536 pos = os_strchr(cmd, ' ');
1537 if (pos)
1538 *pos++ = '\0';
1539
1540 if (os_strcmp(cmd, "disable") == 0) {
1541 wpas_wps_ap_pin_disable(wpa_s);
1542 return os_snprintf(buf, buflen, "OK\n");
1543 }
1544
1545 if (os_strcmp(cmd, "random") == 0) {
1546 if (pos)
1547 timeout = atoi(pos);
1548 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1549 if (pin_txt == NULL)
1550 return -1;
1551 return os_snprintf(buf, buflen, "%s", pin_txt);
1552 }
1553
1554 if (os_strcmp(cmd, "get") == 0) {
1555 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1556 if (pin_txt == NULL)
1557 return -1;
1558 return os_snprintf(buf, buflen, "%s", pin_txt);
1559 }
1560
1561 if (os_strcmp(cmd, "set") == 0) {
1562 char *pin;
1563 if (pos == NULL)
1564 return -1;
1565 pin = pos;
1566 pos = os_strchr(pos, ' ');
1567 if (pos) {
1568 *pos++ = '\0';
1569 timeout = atoi(pos);
1570 }
1571 if (os_strlen(pin) > buflen)
1572 return -1;
1573 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1574 return -1;
1575 return os_snprintf(buf, buflen, "%s", pin);
1576 }
1577
1578 return -1;
1579}
1580#endif /* CONFIG_AP */
1581
1582
1583#ifdef CONFIG_WPS_ER
1584static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1585 char *cmd)
1586{
1587 char *uuid = cmd, *pin, *pos;
1588 u8 addr_buf[ETH_ALEN], *addr = NULL;
1589 pin = os_strchr(uuid, ' ');
1590 if (pin == NULL)
1591 return -1;
1592 *pin++ = '\0';
1593 pos = os_strchr(pin, ' ');
1594 if (pos) {
1595 *pos++ = '\0';
1596 if (hwaddr_aton(pos, addr_buf) == 0)
1597 addr = addr_buf;
1598 }
1599 return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1600}
1601
1602
1603static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1604 char *cmd)
1605{
1606 char *uuid = cmd, *pin;
1607 pin = os_strchr(uuid, ' ');
1608 if (pin == NULL)
1609 return -1;
1610 *pin++ = '\0';
1611 return wpas_wps_er_learn(wpa_s, uuid, pin);
1612}
1613
1614
1615static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1616 struct wpa_supplicant *wpa_s, char *cmd)
1617{
1618 char *uuid = cmd, *id;
1619 id = os_strchr(uuid, ' ');
1620 if (id == NULL)
1621 return -1;
1622 *id++ = '\0';
1623 return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1624}
1625
1626
1627static int wpa_supplicant_ctrl_iface_wps_er_config(
1628 struct wpa_supplicant *wpa_s, char *cmd)
1629{
1630 char *pin;
1631 char *new_ssid;
1632 char *new_auth;
1633 char *new_encr;
1634 char *new_key;
1635 struct wps_new_ap_settings ap;
1636
1637 pin = os_strchr(cmd, ' ');
1638 if (pin == NULL)
1639 return -1;
1640 *pin++ = '\0';
1641
1642 new_ssid = os_strchr(pin, ' ');
1643 if (new_ssid == NULL)
1644 return -1;
1645 *new_ssid++ = '\0';
1646
1647 new_auth = os_strchr(new_ssid, ' ');
1648 if (new_auth == NULL)
1649 return -1;
1650 *new_auth++ = '\0';
1651
1652 new_encr = os_strchr(new_auth, ' ');
1653 if (new_encr == NULL)
1654 return -1;
1655 *new_encr++ = '\0';
1656
1657 new_key = os_strchr(new_encr, ' ');
1658 if (new_key == NULL)
1659 return -1;
1660 *new_key++ = '\0';
1661
1662 os_memset(&ap, 0, sizeof(ap));
1663 ap.ssid_hex = new_ssid;
1664 ap.auth = new_auth;
1665 ap.encr = new_encr;
1666 ap.key_hex = new_key;
1667 return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1668}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001669
1670
1671#ifdef CONFIG_WPS_NFC
1672static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1673 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1674{
1675 int ndef;
1676 struct wpabuf *buf;
1677 int res;
1678 char *uuid;
1679
1680 uuid = os_strchr(cmd, ' ');
1681 if (uuid == NULL)
1682 return -1;
1683 *uuid++ = '\0';
1684
1685 if (os_strcmp(cmd, "WPS") == 0)
1686 ndef = 0;
1687 else if (os_strcmp(cmd, "NDEF") == 0)
1688 ndef = 1;
1689 else
1690 return -1;
1691
1692 buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1693 if (buf == NULL)
1694 return -1;
1695
1696 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1697 wpabuf_len(buf));
1698 reply[res++] = '\n';
1699 reply[res] = '\0';
1700
1701 wpabuf_free(buf);
1702
1703 return res;
1704}
1705#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001706#endif /* CONFIG_WPS_ER */
1707
1708#endif /* CONFIG_WPS */
1709
1710
1711#ifdef CONFIG_IBSS_RSN
1712static int wpa_supplicant_ctrl_iface_ibss_rsn(
1713 struct wpa_supplicant *wpa_s, char *addr)
1714{
1715 u8 peer[ETH_ALEN];
1716
1717 if (hwaddr_aton(addr, peer)) {
1718 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1719 "address '%s'", addr);
1720 return -1;
1721 }
1722
1723 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1724 MAC2STR(peer));
1725
1726 return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1727}
1728#endif /* CONFIG_IBSS_RSN */
1729
1730
1731static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1732 char *rsp)
1733{
1734#ifdef IEEE8021X_EAPOL
1735 char *pos, *id_pos;
1736 int id;
1737 struct wpa_ssid *ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001738
1739 pos = os_strchr(rsp, '-');
1740 if (pos == NULL)
1741 return -1;
1742 *pos++ = '\0';
1743 id_pos = pos;
1744 pos = os_strchr(pos, ':');
1745 if (pos == NULL)
1746 return -1;
1747 *pos++ = '\0';
1748 id = atoi(id_pos);
1749 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1750 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1751 (u8 *) pos, os_strlen(pos));
1752
1753 ssid = wpa_config_get_network(wpa_s->conf, id);
1754 if (ssid == NULL) {
1755 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1756 "to update", id);
1757 return -1;
1758 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001759
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001760 return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1761 pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001762#else /* IEEE8021X_EAPOL */
1763 wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1764 return -1;
1765#endif /* IEEE8021X_EAPOL */
1766}
1767
1768
1769static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1770 const char *params,
1771 char *buf, size_t buflen)
1772{
1773 char *pos, *end, tmp[30];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001774 int res, verbose, wps, ret;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001775#ifdef CONFIG_HS20
1776 const u8 *hs20;
1777#endif /* CONFIG_HS20 */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001778 const u8 *sess_id;
1779 size_t sess_id_len;
Dmitry Shmidt44da0252011-08-23 12:30:30 -07001780
Dmitry Shmidt56052862013-10-04 10:23:25 -07001781 if (os_strcmp(params, "-DRIVER") == 0)
1782 return wpa_drv_status(wpa_s, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001783 verbose = os_strcmp(params, "-VERBOSE") == 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001784 wps = os_strcmp(params, "-WPS") == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001785 pos = buf;
1786 end = buf + buflen;
1787 if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1788 struct wpa_ssid *ssid = wpa_s->current_ssid;
1789 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1790 MAC2STR(wpa_s->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001791 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001792 return pos - buf;
1793 pos += ret;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001794 ret = os_snprintf(pos, end - pos, "freq=%u\n",
1795 wpa_s->assoc_freq);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001796 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001797 return pos - buf;
1798 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001799 if (ssid) {
1800 u8 *_ssid = ssid->ssid;
1801 size_t ssid_len = ssid->ssid_len;
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07001802 u8 ssid_buf[SSID_MAX_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001803 if (ssid_len == 0) {
1804 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1805 if (_res < 0)
1806 ssid_len = 0;
1807 else
1808 ssid_len = _res;
1809 _ssid = ssid_buf;
1810 }
1811 ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1812 wpa_ssid_txt(_ssid, ssid_len),
1813 ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001814 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001815 return pos - buf;
1816 pos += ret;
1817
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001818 if (wps && ssid->passphrase &&
1819 wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1820 (ssid->mode == WPAS_MODE_AP ||
1821 ssid->mode == WPAS_MODE_P2P_GO)) {
1822 ret = os_snprintf(pos, end - pos,
1823 "passphrase=%s\n",
1824 ssid->passphrase);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001825 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001826 return pos - buf;
1827 pos += ret;
1828 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001829 if (ssid->id_str) {
1830 ret = os_snprintf(pos, end - pos,
1831 "id_str=%s\n",
1832 ssid->id_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001833 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001834 return pos - buf;
1835 pos += ret;
1836 }
1837
1838 switch (ssid->mode) {
1839 case WPAS_MODE_INFRA:
1840 ret = os_snprintf(pos, end - pos,
1841 "mode=station\n");
1842 break;
1843 case WPAS_MODE_IBSS:
1844 ret = os_snprintf(pos, end - pos,
1845 "mode=IBSS\n");
1846 break;
1847 case WPAS_MODE_AP:
1848 ret = os_snprintf(pos, end - pos,
1849 "mode=AP\n");
1850 break;
1851 case WPAS_MODE_P2P_GO:
1852 ret = os_snprintf(pos, end - pos,
1853 "mode=P2P GO\n");
1854 break;
1855 case WPAS_MODE_P2P_GROUP_FORMATION:
1856 ret = os_snprintf(pos, end - pos,
1857 "mode=P2P GO - group "
1858 "formation\n");
1859 break;
1860 default:
1861 ret = 0;
1862 break;
1863 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001864 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001865 return pos - buf;
1866 pos += ret;
1867 }
1868
1869#ifdef CONFIG_AP
1870 if (wpa_s->ap_iface) {
1871 pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1872 end - pos,
1873 verbose);
1874 } else
1875#endif /* CONFIG_AP */
1876 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1877 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001878#ifdef CONFIG_SAE
1879 if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001880#ifdef CONFIG_AP
1881 !wpa_s->ap_iface &&
1882#endif /* CONFIG_AP */
1883 wpa_s->sme.sae.state == SAE_ACCEPTED) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001884 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1885 wpa_s->sme.sae.group);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001886 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001887 return pos - buf;
1888 pos += ret;
1889 }
1890#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001891 ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1892 wpa_supplicant_state_txt(wpa_s->wpa_state));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001893 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001894 return pos - buf;
1895 pos += ret;
1896
1897 if (wpa_s->l2 &&
1898 l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1899 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001900 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001901 return pos - buf;
1902 pos += ret;
1903 }
1904
1905#ifdef CONFIG_P2P
1906 if (wpa_s->global->p2p) {
1907 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1908 "\n", MAC2STR(wpa_s->global->p2p_dev_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 }
1913#endif /* CONFIG_P2P */
1914
1915 ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1916 MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001917 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001918 return pos - buf;
1919 pos += ret;
1920
Dmitry Shmidt04949592012-07-19 12:16:46 -07001921#ifdef CONFIG_HS20
1922 if (wpa_s->current_bss &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001923 (hs20 = wpa_bss_get_vendor_ie(wpa_s->current_bss,
1924 HS20_IE_VENDOR_TYPE)) &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001925 wpa_s->wpa_proto == WPA_PROTO_RSN &&
1926 wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001927 int release = 1;
1928 if (hs20[1] >= 5) {
1929 u8 rel_num = (hs20[6] & 0xf0) >> 4;
1930 release = rel_num + 1;
1931 }
1932 ret = os_snprintf(pos, end - pos, "hs20=%d\n", release);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001933 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07001934 return pos - buf;
1935 pos += ret;
1936 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001937
1938 if (wpa_s->current_ssid) {
1939 struct wpa_cred *cred;
1940 char *type;
1941
1942 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001943 size_t i;
1944
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001945 if (wpa_s->current_ssid->parent_cred != cred)
1946 continue;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001947
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001948 if (cred->provisioning_sp) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001949 ret = os_snprintf(pos, end - pos,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001950 "provisioning_sp=%s\n",
1951 cred->provisioning_sp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001952 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt051af732013-10-22 13:52:46 -07001953 return pos - buf;
1954 pos += ret;
1955 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001956
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001957 if (!cred->domain)
1958 goto no_domain;
1959
1960 i = 0;
1961 if (wpa_s->current_bss && wpa_s->current_bss->anqp) {
1962 struct wpabuf *names =
1963 wpa_s->current_bss->anqp->domain_name;
1964 for (i = 0; names && i < cred->num_domain; i++)
1965 {
1966 if (domain_name_list_contains(
1967 names, cred->domain[i], 1))
1968 break;
1969 }
1970 if (i == cred->num_domain)
1971 i = 0; /* show first entry by default */
1972 }
1973 ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1974 cred->domain[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001975 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001976 return pos - buf;
1977 pos += ret;
1978
1979 no_domain:
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001980 if (wpa_s->current_bss == NULL ||
1981 wpa_s->current_bss->anqp == NULL)
1982 res = -1;
1983 else
1984 res = interworking_home_sp_cred(
1985 wpa_s, cred,
1986 wpa_s->current_bss->anqp->domain_name);
1987 if (res > 0)
1988 type = "home";
1989 else if (res == 0)
1990 type = "roaming";
1991 else
1992 type = "unknown";
1993
1994 ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001995 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001996 return pos - buf;
1997 pos += ret;
1998
1999 break;
2000 }
2001 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002002#endif /* CONFIG_HS20 */
2003
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002004 if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
2005 wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
2006 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
2007 verbose);
2008 if (res >= 0)
2009 pos += res;
2010 }
2011
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002012 sess_id = eapol_sm_get_session_id(wpa_s->eapol, &sess_id_len);
2013 if (sess_id) {
2014 char *start = pos;
2015
2016 ret = os_snprintf(pos, end - pos, "eap_session_id=");
2017 if (os_snprintf_error(end - pos, ret))
2018 return start - buf;
2019 pos += ret;
2020 ret = wpa_snprintf_hex(pos, end - pos, sess_id, sess_id_len);
2021 if (ret <= 0)
2022 return start - buf;
2023 pos += ret;
2024 ret = os_snprintf(pos, end - pos, "\n");
2025 if (os_snprintf_error(end - pos, ret))
2026 return start - buf;
2027 pos += ret;
2028 }
2029
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002030 res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
2031 if (res >= 0)
2032 pos += res;
2033
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002034#ifdef CONFIG_WPS
2035 {
2036 char uuid_str[100];
2037 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
2038 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002039 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002040 return pos - buf;
2041 pos += ret;
2042 }
2043#endif /* CONFIG_WPS */
2044
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08002045#ifdef ANDROID
vandwalleffc70182014-09-11 11:40:14 -07002046 /*
2047 * Allow using the STATUS command with default behavior, say for debug,
2048 * i.e., don't generate a "fake" CONNECTION and SUPPLICANT_STATE_CHANGE
2049 * events with STATUS-NO_EVENTS.
2050 */
2051 if (os_strcmp(params, "-NO_EVENTS")) {
2052 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
2053 "id=%d state=%d BSSID=" MACSTR " SSID=%s",
2054 wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
2055 wpa_s->wpa_state,
2056 MAC2STR(wpa_s->bssid),
2057 wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
2058 wpa_ssid_txt(wpa_s->current_ssid->ssid,
2059 wpa_s->current_ssid->ssid_len) : "");
2060 if (wpa_s->wpa_state == WPA_COMPLETED) {
2061 struct wpa_ssid *ssid = wpa_s->current_ssid;
2062 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED
2063 "- connection to " MACSTR
2064 " completed %s [id=%d id_str=%s]",
2065 MAC2STR(wpa_s->bssid), "(auth)",
2066 ssid ? ssid->id : -1,
2067 ssid && ssid->id_str ? ssid->id_str : "");
2068 }
Irfan Sheriffbf5edf42012-01-11 16:54:57 -08002069 }
Dmitry Shmidt2fd7fa62011-12-19 11:19:09 -08002070#endif /* ANDROID */
2071
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002072 return pos - buf;
2073}
2074
2075
2076static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
2077 char *cmd)
2078{
2079 char *pos;
2080 int id;
2081 struct wpa_ssid *ssid;
2082 u8 bssid[ETH_ALEN];
2083
2084 /* cmd: "<network id> <BSSID>" */
2085 pos = os_strchr(cmd, ' ');
2086 if (pos == NULL)
2087 return -1;
2088 *pos++ = '\0';
2089 id = atoi(cmd);
2090 wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
2091 if (hwaddr_aton(pos, bssid)) {
2092 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
2093 return -1;
2094 }
2095
2096 ssid = wpa_config_get_network(wpa_s->conf, id);
2097 if (ssid == NULL) {
2098 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
2099 "to update", id);
2100 return -1;
2101 }
2102
2103 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
2104 ssid->bssid_set = !is_zero_ether_addr(bssid);
2105
2106 return 0;
2107}
2108
2109
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002110static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002111 char *cmd, char *buf,
2112 size_t buflen)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002113{
2114 u8 bssid[ETH_ALEN];
2115 struct wpa_blacklist *e;
2116 char *pos, *end;
2117 int ret;
2118
2119 /* cmd: "BLACKLIST [<BSSID>]" */
2120 if (*cmd == '\0') {
2121 pos = buf;
2122 end = buf + buflen;
2123 e = wpa_s->blacklist;
2124 while (e) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002125 ret = os_snprintf(pos, end - pos, MACSTR "\n",
2126 MAC2STR(e->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002127 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002128 return pos - buf;
2129 pos += ret;
2130 e = e->next;
2131 }
2132 return pos - buf;
2133 }
2134
2135 cmd++;
2136 if (os_strncmp(cmd, "clear", 5) == 0) {
2137 wpa_blacklist_clear(wpa_s);
2138 os_memcpy(buf, "OK\n", 3);
2139 return 3;
2140 }
2141
2142 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
2143 if (hwaddr_aton(cmd, bssid)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002144 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002145 return -1;
2146 }
2147
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002148 /*
2149 * Add the BSSID twice, so its count will be 2, causing it to be
2150 * skipped when processing scan results.
2151 */
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002152 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002153 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002154 return -1;
2155 ret = wpa_blacklist_add(wpa_s, bssid);
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07002156 if (ret < 0)
Dmitry Shmidte19501d2011-03-16 14:32:18 -07002157 return -1;
2158 os_memcpy(buf, "OK\n", 3);
2159 return 3;
2160}
2161
2162
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002163static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
2164 char *cmd, char *buf,
2165 size_t buflen)
2166{
2167 char *pos, *end, *stamp;
2168 int ret;
2169
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002170 /* cmd: "LOG_LEVEL [<level>]" */
2171 if (*cmd == '\0') {
2172 pos = buf;
2173 end = buf + buflen;
2174 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
2175 "Timestamp: %d\n",
2176 debug_level_str(wpa_debug_level),
2177 wpa_debug_timestamp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002178 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002179 ret = 0;
2180
2181 return ret;
2182 }
2183
2184 while (*cmd == ' ')
2185 cmd++;
2186
2187 stamp = os_strchr(cmd, ' ');
2188 if (stamp) {
2189 *stamp++ = '\0';
2190 while (*stamp == ' ') {
2191 stamp++;
2192 }
2193 }
2194
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002195 if (os_strlen(cmd)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002196 int level = str_to_debug_level(cmd);
2197 if (level < 0)
2198 return -1;
2199 wpa_debug_level = level;
2200 }
2201
2202 if (stamp && os_strlen(stamp))
2203 wpa_debug_timestamp = atoi(stamp);
2204
2205 os_memcpy(buf, "OK\n", 3);
2206 return 3;
2207}
2208
2209
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002210static int wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002211 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002212{
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002213 char *pos, *end, *prev;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002214 struct wpa_ssid *ssid;
2215 int ret;
2216
2217 pos = buf;
2218 end = buf + buflen;
2219 ret = os_snprintf(pos, end - pos,
2220 "network id / ssid / bssid / flags\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002221 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002222 return pos - buf;
2223 pos += ret;
2224
2225 ssid = wpa_s->conf->ssid;
Vinit Deshpandeda134e92014-12-02 10:59:29 -08002226
2227 /* skip over ssids until we find next one */
2228 if (cmd != NULL && os_strncmp(cmd, "LAST_ID=", 8) == 0) {
2229 int last_id = atoi(cmd + 8);
2230 if (last_id != -1) {
2231 while (ssid != NULL && ssid->id <= last_id) {
2232 ssid = ssid->next;
2233 }
2234 }
2235 }
2236
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002237 while (ssid) {
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002238 prev = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002239 ret = os_snprintf(pos, end - pos, "%d\t%s",
2240 ssid->id,
2241 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002242 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002243 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002244 pos += ret;
2245 if (ssid->bssid_set) {
2246 ret = os_snprintf(pos, end - pos, "\t" MACSTR,
2247 MAC2STR(ssid->bssid));
2248 } else {
2249 ret = os_snprintf(pos, end - pos, "\tany");
2250 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002251 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002252 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002253 pos += ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002254 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002255 ssid == wpa_s->current_ssid ?
2256 "[CURRENT]" : "",
2257 ssid->disabled ? "[DISABLED]" : "",
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002258 ssid->disabled_until.sec ?
2259 "[TEMP-DISABLED]" : "",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002260 ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
2261 "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002262 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002263 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002264 pos += ret;
2265 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002266 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt9e37fc22014-12-03 11:48:46 -08002267 return prev - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002268 pos += ret;
2269
2270 ssid = ssid->next;
2271 }
2272
2273 return pos - buf;
2274}
2275
2276
2277static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
2278{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002279 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002280 ret = os_snprintf(pos, end - pos, "-");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002281 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002282 return pos;
2283 pos += ret;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002284 ret = wpa_write_ciphers(pos, end, cipher, "+");
2285 if (ret < 0)
2286 return pos;
2287 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002288 return pos;
2289}
2290
2291
2292static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
2293 const u8 *ie, size_t ie_len)
2294{
2295 struct wpa_ie_data data;
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002296 char *start;
2297 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002298
2299 ret = os_snprintf(pos, end - pos, "[%s-", proto);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002300 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002301 return pos;
2302 pos += ret;
2303
2304 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
2305 ret = os_snprintf(pos, end - pos, "?]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002306 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002307 return pos;
2308 pos += ret;
2309 return pos;
2310 }
2311
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002312 start = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002313 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002314 ret = os_snprintf(pos, end - pos, "%sEAP",
2315 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002316 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002317 return pos;
2318 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002319 }
2320 if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002321 ret = os_snprintf(pos, end - pos, "%sPSK",
2322 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002323 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002324 return pos;
2325 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002326 }
2327 if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002328 ret = os_snprintf(pos, end - pos, "%sNone",
2329 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002330 if (os_snprintf_error(end - pos, ret))
2331 return pos;
2332 pos += ret;
2333 }
2334 if (data.key_mgmt & WPA_KEY_MGMT_SAE) {
2335 ret = os_snprintf(pos, end - pos, "%sSAE",
2336 pos == start ? "" : "+");
2337 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#ifdef CONFIG_IEEE80211R
2342 if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
2343 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002344 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002345 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002346 return pos;
2347 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002348 }
2349 if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
2350 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002351 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002352 if (os_snprintf_error(end - pos, ret))
2353 return pos;
2354 pos += ret;
2355 }
2356 if (data.key_mgmt & WPA_KEY_MGMT_FT_SAE) {
2357 ret = os_snprintf(pos, end - pos, "%sFT/SAE",
2358 pos == start ? "" : "+");
2359 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002360 return pos;
2361 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002362 }
2363#endif /* CONFIG_IEEE80211R */
2364#ifdef CONFIG_IEEE80211W
2365 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
2366 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002367 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002368 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002369 return pos;
2370 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002371 }
2372 if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
2373 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002374 pos == start ? "" : "+");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002375 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002376 return pos;
2377 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002378 }
2379#endif /* CONFIG_IEEE80211W */
2380
Dmitry Shmidt807291d2015-01-27 13:40:23 -08002381#ifdef CONFIG_SUITEB
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002382 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
2383 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B",
2384 pos == start ? "" : "+");
2385 if (os_snprintf_error(end - pos, ret))
2386 return pos;
2387 pos += ret;
2388 }
Dmitry Shmidt807291d2015-01-27 13:40:23 -08002389#endif /* CONFIG_SUITEB */
2390
2391#ifdef CONFIG_SUITEB192
2392 if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
2393 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B-192",
2394 pos == start ? "" : "+");
2395 if (os_snprintf_error(end - pos, ret))
2396 return pos;
2397 pos += ret;
2398 }
2399#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002400
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002401 if (data.key_mgmt & WPA_KEY_MGMT_OSEN) {
2402 ret = os_snprintf(pos, end - pos, "%sOSEN",
2403 pos == start ? "" : "+");
2404 if (os_snprintf_error(end - pos, ret))
2405 return pos;
2406 pos += ret;
2407 }
2408
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002409 pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
2410
2411 if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
2412 ret = os_snprintf(pos, end - pos, "-preauth");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002413 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002414 return pos;
2415 pos += ret;
2416 }
2417
2418 ret = os_snprintf(pos, end - pos, "]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002419 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002420 return pos;
2421 pos += ret;
2422
2423 return pos;
2424}
2425
2426
2427#ifdef CONFIG_WPS
2428static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
2429 char *pos, char *end,
2430 struct wpabuf *wps_ie)
2431{
2432 int ret;
2433 const char *txt;
2434
2435 if (wps_ie == NULL)
2436 return pos;
2437 if (wps_is_selected_pbc_registrar(wps_ie))
2438 txt = "[WPS-PBC]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002439 else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
2440 txt = "[WPS-AUTH]";
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002441 else if (wps_is_selected_pin_registrar(wps_ie))
2442 txt = "[WPS-PIN]";
2443 else
2444 txt = "[WPS]";
2445
2446 ret = os_snprintf(pos, end - pos, "%s", txt);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002447 if (!os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002448 pos += ret;
2449 wpabuf_free(wps_ie);
2450 return pos;
2451}
2452#endif /* CONFIG_WPS */
2453
2454
2455static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2456 char *pos, char *end,
2457 const struct wpa_bss *bss)
2458{
2459#ifdef CONFIG_WPS
2460 struct wpabuf *wps_ie;
2461 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2462 return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2463#else /* CONFIG_WPS */
2464 return pos;
2465#endif /* CONFIG_WPS */
2466}
2467
2468
2469/* Format one result on one text line into a buffer. */
2470static int wpa_supplicant_ctrl_iface_scan_result(
2471 struct wpa_supplicant *wpa_s,
2472 const struct wpa_bss *bss, char *buf, size_t buflen)
2473{
2474 char *pos, *end;
2475 int ret;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002476 const u8 *ie, *ie2, *osen_ie, *p2p, *mesh;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002477
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002478 mesh = wpa_bss_get_ie(bss, WLAN_EID_MESH_ID);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002479 p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt96571392013-10-14 12:54:46 -07002480 if (!p2p)
2481 p2p = wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002482 if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2483 os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2484 0)
2485 return 0; /* Do not show P2P listen discovery results here */
2486
2487 pos = buf;
2488 end = buf + buflen;
2489
2490 ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2491 MAC2STR(bss->bssid), bss->freq, bss->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002492 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002493 return -1;
2494 pos += ret;
2495 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2496 if (ie)
2497 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2498 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002499 if (ie2) {
2500 pos = wpa_supplicant_ie_txt(pos, end, mesh ? "RSN" : "WPA2",
2501 ie2, 2 + ie2[1]);
2502 }
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002503 osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
2504 if (osen_ie)
2505 pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
2506 osen_ie, 2 + osen_ie[1]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002507 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002508 if (!ie && !ie2 && !osen_ie && (bss->caps & IEEE80211_CAP_PRIVACY)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002509 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002510 if (os_snprintf_error(end - pos, ret))
2511 return -1;
2512 pos += ret;
2513 }
2514 if (mesh) {
2515 ret = os_snprintf(pos, end - pos, "[MESH]");
2516 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002517 return -1;
2518 pos += ret;
2519 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002520 if (bss_is_dmg(bss)) {
2521 const char *s;
2522 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002523 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002524 return -1;
2525 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002526 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
2527 case IEEE80211_CAP_DMG_IBSS:
2528 s = "[IBSS]";
2529 break;
2530 case IEEE80211_CAP_DMG_AP:
2531 s = "[ESS]";
2532 break;
2533 case IEEE80211_CAP_DMG_PBSS:
2534 s = "[PBSS]";
2535 break;
2536 default:
2537 s = "";
2538 break;
2539 }
2540 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002541 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002542 return -1;
2543 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002544 } else {
2545 if (bss->caps & IEEE80211_CAP_IBSS) {
2546 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002547 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002548 return -1;
2549 pos += ret;
2550 }
2551 if (bss->caps & IEEE80211_CAP_ESS) {
2552 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002553 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07002554 return -1;
2555 pos += ret;
2556 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002557 }
2558 if (p2p) {
2559 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002560 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002561 return -1;
2562 pos += ret;
2563 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002564#ifdef CONFIG_HS20
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002565 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002566 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002567 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07002568 return -1;
2569 pos += ret;
2570 }
2571#endif /* CONFIG_HS20 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002572#ifdef CONFIG_FST
2573 if (wpa_bss_get_ie(bss, WLAN_EID_MULTI_BAND)) {
2574 ret = os_snprintf(pos, end - pos, "[FST]");
2575 if (os_snprintf_error(end - pos, ret))
2576 return -1;
2577 pos += ret;
2578 }
2579#endif /* CONFIG_FST */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002580
2581 ret = os_snprintf(pos, end - pos, "\t%s",
2582 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002583 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002584 return -1;
2585 pos += ret;
2586
2587 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002588 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002589 return -1;
2590 pos += ret;
2591
2592 return pos - buf;
2593}
2594
2595
2596static int wpa_supplicant_ctrl_iface_scan_results(
2597 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2598{
2599 char *pos, *end;
2600 struct wpa_bss *bss;
2601 int ret;
2602
2603 pos = buf;
2604 end = buf + buflen;
2605 ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2606 "flags / ssid\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002607 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002608 return pos - buf;
2609 pos += ret;
2610
2611 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2612 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2613 end - pos);
2614 if (ret < 0 || ret >= end - pos)
2615 return pos - buf;
2616 pos += ret;
2617 }
2618
2619 return pos - buf;
2620}
2621
2622
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002623#ifdef CONFIG_MESH
2624
2625static int wpa_supplicant_ctrl_iface_mesh_interface_add(
2626 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
2627{
2628 char *pos, ifname[IFNAMSIZ + 1];
2629
2630 ifname[0] = '\0';
2631
2632 pos = os_strstr(cmd, "ifname=");
2633 if (pos) {
2634 pos += 7;
2635 os_strlcpy(ifname, pos, sizeof(ifname));
2636 }
2637
2638 if (wpas_mesh_add_interface(wpa_s, ifname, sizeof(ifname)) < 0)
2639 return -1;
2640
2641 os_strlcpy(reply, ifname, max_len);
2642 return os_strlen(ifname);
2643}
2644
2645
2646static int wpa_supplicant_ctrl_iface_mesh_group_add(
2647 struct wpa_supplicant *wpa_s, char *cmd)
2648{
2649 int id;
2650 struct wpa_ssid *ssid;
2651
2652 id = atoi(cmd);
2653 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_ADD id=%d", id);
2654
2655 ssid = wpa_config_get_network(wpa_s->conf, id);
2656 if (ssid == NULL) {
2657 wpa_printf(MSG_DEBUG,
2658 "CTRL_IFACE: Could not find network id=%d", id);
2659 return -1;
2660 }
2661 if (ssid->mode != WPAS_MODE_MESH) {
2662 wpa_printf(MSG_DEBUG,
2663 "CTRL_IFACE: Cannot use MESH_GROUP_ADD on a non mesh network");
2664 return -1;
2665 }
2666 if (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
2667 ssid->key_mgmt != WPA_KEY_MGMT_SAE) {
2668 wpa_printf(MSG_ERROR,
2669 "CTRL_IFACE: key_mgmt for mesh network should be open or SAE");
2670 return -1;
2671 }
2672
2673 /*
2674 * TODO: If necessary write our own group_add function,
2675 * for now we can reuse select_network
2676 */
2677 wpa_supplicant_select_network(wpa_s, ssid);
2678
2679 return 0;
2680}
2681
2682
2683static int wpa_supplicant_ctrl_iface_mesh_group_remove(
2684 struct wpa_supplicant *wpa_s, char *cmd)
2685{
2686 struct wpa_supplicant *orig;
2687 struct wpa_global *global;
2688 int found = 0;
2689
2690 wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s", cmd);
2691
2692 global = wpa_s->global;
2693 orig = wpa_s;
2694
2695 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2696 if (os_strcmp(wpa_s->ifname, cmd) == 0) {
2697 found = 1;
2698 break;
2699 }
2700 }
2701 if (!found) {
2702 wpa_printf(MSG_ERROR,
2703 "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s not found",
2704 cmd);
2705 return -1;
2706 }
2707 if (wpa_s->mesh_if_created && wpa_s == orig) {
2708 wpa_printf(MSG_ERROR,
2709 "CTRL_IFACE: MESH_GROUP_REMOVE can't remove itself");
2710 return -1;
2711 }
2712
2713 wpa_s->reassociate = 0;
2714 wpa_s->disconnected = 1;
2715 wpa_supplicant_cancel_sched_scan(wpa_s);
2716 wpa_supplicant_cancel_scan(wpa_s);
2717
2718 /*
2719 * TODO: If necessary write our own group_remove function,
2720 * for now we can reuse deauthenticate
2721 */
2722 wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2723
2724 if (wpa_s->mesh_if_created)
2725 wpa_supplicant_remove_iface(global, wpa_s, 0);
2726
2727 return 0;
2728}
2729
2730#endif /* CONFIG_MESH */
2731
2732
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002733static int wpa_supplicant_ctrl_iface_select_network(
2734 struct wpa_supplicant *wpa_s, char *cmd)
2735{
2736 int id;
2737 struct wpa_ssid *ssid;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002738 char *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002739
2740 /* cmd: "<network id>" or "any" */
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002741 if (os_strncmp(cmd, "any", 3) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002742 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2743 ssid = NULL;
2744 } else {
2745 id = atoi(cmd);
2746 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2747
2748 ssid = wpa_config_get_network(wpa_s->conf, id);
2749 if (ssid == NULL) {
2750 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2751 "network id=%d", id);
2752 return -1;
2753 }
2754 if (ssid->disabled == 2) {
2755 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2756 "SELECT_NETWORK with persistent P2P group");
2757 return -1;
2758 }
2759 }
2760
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07002761 pos = os_strstr(cmd, " freq=");
2762 if (pos) {
2763 int *freqs = freq_range_to_channel_list(wpa_s, pos + 6);
2764 if (freqs) {
2765 wpa_s->scan_req = MANUAL_SCAN_REQ;
2766 os_free(wpa_s->manual_scan_freqs);
2767 wpa_s->manual_scan_freqs = freqs;
2768 }
2769 }
2770
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002771 wpa_s->scan_min_time.sec = 0;
2772 wpa_s->scan_min_time.usec = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002773 wpa_supplicant_select_network(wpa_s, ssid);
2774
2775 return 0;
2776}
2777
2778
2779static int wpa_supplicant_ctrl_iface_enable_network(
2780 struct wpa_supplicant *wpa_s, char *cmd)
2781{
2782 int id;
2783 struct wpa_ssid *ssid;
2784
2785 /* cmd: "<network id>" or "all" */
2786 if (os_strcmp(cmd, "all") == 0) {
2787 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2788 ssid = NULL;
2789 } else {
2790 id = atoi(cmd);
2791 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2792
2793 ssid = wpa_config_get_network(wpa_s->conf, id);
2794 if (ssid == NULL) {
2795 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2796 "network id=%d", id);
2797 return -1;
2798 }
2799 if (ssid->disabled == 2) {
2800 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2801 "ENABLE_NETWORK with persistent P2P group");
2802 return -1;
2803 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002804
2805 if (os_strstr(cmd, " no-connect")) {
2806 ssid->disabled = 0;
2807 return 0;
2808 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002809 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002810 wpa_s->scan_min_time.sec = 0;
2811 wpa_s->scan_min_time.usec = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002812 wpa_supplicant_enable_network(wpa_s, ssid);
2813
2814 return 0;
2815}
2816
2817
2818static int wpa_supplicant_ctrl_iface_disable_network(
2819 struct wpa_supplicant *wpa_s, char *cmd)
2820{
2821 int id;
2822 struct wpa_ssid *ssid;
2823
2824 /* cmd: "<network id>" or "all" */
2825 if (os_strcmp(cmd, "all") == 0) {
2826 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2827 ssid = NULL;
2828 } else {
2829 id = atoi(cmd);
2830 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2831
2832 ssid = wpa_config_get_network(wpa_s->conf, id);
2833 if (ssid == NULL) {
2834 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2835 "network id=%d", id);
2836 return -1;
2837 }
2838 if (ssid->disabled == 2) {
2839 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2840 "DISABLE_NETWORK with persistent P2P "
2841 "group");
2842 return -1;
2843 }
2844 }
2845 wpa_supplicant_disable_network(wpa_s, ssid);
2846
2847 return 0;
2848}
2849
2850
2851static int wpa_supplicant_ctrl_iface_add_network(
2852 struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2853{
2854 struct wpa_ssid *ssid;
2855 int ret;
2856
2857 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2858
2859 ssid = wpa_config_add_network(wpa_s->conf);
2860 if (ssid == NULL)
2861 return -1;
2862
2863 wpas_notify_network_added(wpa_s, ssid);
2864
2865 ssid->disabled = 1;
2866 wpa_config_set_network_defaults(ssid);
2867
2868 ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002869 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002870 return -1;
2871 return ret;
2872}
2873
2874
2875static int wpa_supplicant_ctrl_iface_remove_network(
2876 struct wpa_supplicant *wpa_s, char *cmd)
2877{
2878 int id;
2879 struct wpa_ssid *ssid;
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002880 int was_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002881
2882 /* cmd: "<network id>" or "all" */
2883 if (os_strcmp(cmd, "all") == 0) {
2884 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002885 if (wpa_s->sched_scanning)
2886 wpa_supplicant_cancel_sched_scan(wpa_s);
2887
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002888 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002889 if (wpa_s->current_ssid) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002890#ifdef CONFIG_SME
2891 wpa_s->sme.prev_bssid_set = 0;
2892#endif /* CONFIG_SME */
Jouni Malinen75ecf522011-06-27 15:19:46 -07002893 wpa_sm_set_config(wpa_s->wpa, NULL);
2894 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002895 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2896 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002897 wpa_supplicant_deauthenticate(
2898 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002899 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002900 ssid = wpa_s->conf->ssid;
2901 while (ssid) {
2902 struct wpa_ssid *remove_ssid = ssid;
2903 id = ssid->id;
2904 ssid = ssid->next;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002905 if (wpa_s->last_ssid == remove_ssid)
2906 wpa_s->last_ssid = NULL;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08002907 wpas_notify_network_removed(wpa_s, remove_ssid);
2908 wpa_config_remove_network(wpa_s->conf, id);
2909 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002910 return 0;
2911 }
2912
2913 id = atoi(cmd);
2914 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2915
2916 ssid = wpa_config_get_network(wpa_s->conf, id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002917 if (ssid)
2918 wpas_notify_network_removed(wpa_s, ssid);
Deepthi Gowria831d782012-09-03 11:55:38 +03002919 if (ssid == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002920 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2921 "id=%d", id);
2922 return -1;
2923 }
2924
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002925 if (wpa_s->last_ssid == ssid)
2926 wpa_s->last_ssid = NULL;
2927
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002928 if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002929#ifdef CONFIG_SME
2930 wpa_s->sme.prev_bssid_set = 0;
2931#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002932 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002933 * Invalidate the EAP session cache if the current or
2934 * previously used network is removed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002935 */
2936 eapol_sm_invalidate_cached_session(wpa_s->eapol);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002937 }
2938
2939 if (ssid == wpa_s->current_ssid) {
Jouni Malinen75ecf522011-06-27 15:19:46 -07002940 wpa_sm_set_config(wpa_s->wpa, NULL);
2941 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002942
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07002943 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2944 wpa_s->own_disconnect_req = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002945 wpa_supplicant_deauthenticate(wpa_s,
2946 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002947 }
2948
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002949 was_disabled = ssid->disabled;
2950
Deepthi Gowria831d782012-09-03 11:55:38 +03002951 if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2952 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2953 "network id=%d", id);
2954 return -1;
2955 }
2956
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002957 if (!was_disabled && wpa_s->sched_scanning) {
2958 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2959 "network from filters");
2960 wpa_supplicant_cancel_sched_scan(wpa_s);
2961 wpa_supplicant_req_scan(wpa_s, 0, 0);
2962 }
2963
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002964 return 0;
2965}
2966
2967
Dmitry Shmidt684785c2014-05-12 13:34:29 -07002968static int wpa_supplicant_ctrl_iface_update_network(
2969 struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2970 char *name, char *value)
2971{
2972 if (wpa_config_set(ssid, name, value, 0) < 0) {
2973 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2974 "variable '%s'", name);
2975 return -1;
2976 }
2977
2978 if (os_strcmp(name, "bssid") != 0 &&
2979 os_strcmp(name, "priority") != 0)
2980 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
2981
2982 if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
2983 /*
2984 * Invalidate the EAP session cache if anything in the current
2985 * or previously used configuration changes.
2986 */
2987 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2988 }
2989
2990 if ((os_strcmp(name, "psk") == 0 &&
2991 value[0] == '"' && ssid->ssid_len) ||
2992 (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2993 wpa_config_update_psk(ssid);
2994 else if (os_strcmp(name, "priority") == 0)
2995 wpa_config_update_prio_list(wpa_s->conf);
2996
2997 return 0;
2998}
2999
3000
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003001static int wpa_supplicant_ctrl_iface_set_network(
3002 struct wpa_supplicant *wpa_s, char *cmd)
3003{
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003004 int id, ret, prev_bssid_set, prev_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003005 struct wpa_ssid *ssid;
3006 char *name, *value;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003007 u8 prev_bssid[ETH_ALEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003008
3009 /* cmd: "<network id> <variable name> <value>" */
3010 name = os_strchr(cmd, ' ');
3011 if (name == NULL)
3012 return -1;
3013 *name++ = '\0';
3014
3015 value = os_strchr(name, ' ');
3016 if (value == NULL)
3017 return -1;
3018 *value++ = '\0';
3019
3020 id = atoi(cmd);
3021 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
3022 id, name);
3023 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3024 (u8 *) value, os_strlen(value));
3025
3026 ssid = wpa_config_get_network(wpa_s->conf, id);
3027 if (ssid == NULL) {
3028 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
3029 "id=%d", id);
3030 return -1;
3031 }
3032
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003033 prev_bssid_set = ssid->bssid_set;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003034 prev_disabled = ssid->disabled;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003035 os_memcpy(prev_bssid, ssid->bssid, ETH_ALEN);
3036 ret = wpa_supplicant_ctrl_iface_update_network(wpa_s, ssid, name,
3037 value);
3038 if (ret == 0 &&
3039 (ssid->bssid_set != prev_bssid_set ||
3040 os_memcmp(ssid->bssid, prev_bssid, ETH_ALEN) != 0))
3041 wpas_notify_network_bssid_set_changed(wpa_s, ssid);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003042
3043 if (prev_disabled != ssid->disabled &&
3044 (prev_disabled == 2 || ssid->disabled == 2))
3045 wpas_notify_network_type_changed(wpa_s, ssid);
3046
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003047 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003048}
3049
3050
3051static int wpa_supplicant_ctrl_iface_get_network(
3052 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
3053{
3054 int id;
3055 size_t res;
3056 struct wpa_ssid *ssid;
3057 char *name, *value;
3058
3059 /* cmd: "<network id> <variable name>" */
3060 name = os_strchr(cmd, ' ');
3061 if (name == NULL || buflen == 0)
3062 return -1;
3063 *name++ = '\0';
3064
3065 id = atoi(cmd);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003066 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003067 id, name);
3068
3069 ssid = wpa_config_get_network(wpa_s->conf, id);
3070 if (ssid == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003071 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Could not find network "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003072 "id=%d", id);
3073 return -1;
3074 }
3075
3076 value = wpa_config_get_no_key(ssid, name);
3077 if (value == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003078 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Failed to get network "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003079 "variable '%s'", name);
3080 return -1;
3081 }
3082
3083 res = os_strlcpy(buf, value, buflen);
3084 if (res >= buflen) {
3085 os_free(value);
3086 return -1;
3087 }
3088
3089 os_free(value);
3090
3091 return res;
3092}
3093
3094
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003095static int wpa_supplicant_ctrl_iface_dup_network(
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003096 struct wpa_supplicant *wpa_s, char *cmd,
3097 struct wpa_supplicant *dst_wpa_s)
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003098{
3099 struct wpa_ssid *ssid_s, *ssid_d;
3100 char *name, *id, *value;
3101 int id_s, id_d, ret;
3102
3103 /* cmd: "<src network id> <dst network id> <variable name>" */
3104 id = os_strchr(cmd, ' ');
3105 if (id == NULL)
3106 return -1;
3107 *id++ = '\0';
3108
3109 name = os_strchr(id, ' ');
3110 if (name == NULL)
3111 return -1;
3112 *name++ = '\0';
3113
3114 id_s = atoi(cmd);
3115 id_d = atoi(id);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003116
3117 wpa_printf(MSG_DEBUG,
3118 "CTRL_IFACE: DUP_NETWORK ifname=%s->%s id=%d->%d name='%s'",
3119 wpa_s->ifname, dst_wpa_s->ifname, id_s, id_d, name);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003120
3121 ssid_s = wpa_config_get_network(wpa_s->conf, id_s);
3122 if (ssid_s == NULL) {
3123 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3124 "network id=%d", id_s);
3125 return -1;
3126 }
3127
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003128 ssid_d = wpa_config_get_network(dst_wpa_s->conf, id_d);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003129 if (ssid_d == NULL) {
3130 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003131 "network id=%d", id_d);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003132 return -1;
3133 }
3134
3135 value = wpa_config_get(ssid_s, name);
3136 if (value == NULL) {
3137 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
3138 "variable '%s'", name);
3139 return -1;
3140 }
3141
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003142 ret = wpa_supplicant_ctrl_iface_update_network(dst_wpa_s, ssid_d, name,
Dmitry Shmidt684785c2014-05-12 13:34:29 -07003143 value);
3144
3145 os_free(value);
3146
3147 return ret;
3148}
3149
3150
Dmitry Shmidt04949592012-07-19 12:16:46 -07003151static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
3152 char *buf, size_t buflen)
3153{
3154 char *pos, *end;
3155 struct wpa_cred *cred;
3156 int ret;
3157
3158 pos = buf;
3159 end = buf + buflen;
3160 ret = os_snprintf(pos, end - pos,
3161 "cred id / realm / username / domain / imsi\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003162 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003163 return pos - buf;
3164 pos += ret;
3165
3166 cred = wpa_s->conf->cred;
3167 while (cred) {
3168 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
3169 cred->id, cred->realm ? cred->realm : "",
3170 cred->username ? cred->username : "",
Dmitry Shmidt051af732013-10-22 13:52:46 -07003171 cred->domain ? cred->domain[0] : "",
Dmitry Shmidt04949592012-07-19 12:16:46 -07003172 cred->imsi ? cred->imsi : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003173 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003174 return pos - buf;
3175 pos += ret;
3176
3177 cred = cred->next;
3178 }
3179
3180 return pos - buf;
3181}
3182
3183
3184static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
3185 char *buf, size_t buflen)
3186{
3187 struct wpa_cred *cred;
3188 int ret;
3189
3190 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
3191
3192 cred = wpa_config_add_cred(wpa_s->conf);
3193 if (cred == NULL)
3194 return -1;
3195
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003196 wpa_msg(wpa_s, MSG_INFO, CRED_ADDED "%d", cred->id);
3197
Dmitry Shmidt04949592012-07-19 12:16:46 -07003198 ret = os_snprintf(buf, buflen, "%d\n", cred->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003199 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt04949592012-07-19 12:16:46 -07003200 return -1;
3201 return ret;
3202}
3203
3204
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003205static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
3206 struct wpa_cred *cred)
3207{
3208 struct wpa_ssid *ssid;
3209 char str[20];
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003210 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003211
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003212 if (cred == NULL) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003213 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3214 return -1;
3215 }
3216
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003217 id = cred->id;
3218 if (wpa_config_remove_cred(wpa_s->conf, id) < 0) {
3219 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3220 return -1;
3221 }
3222
3223 wpa_msg(wpa_s, MSG_INFO, CRED_REMOVED "%d", id);
3224
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003225 /* Remove any network entry created based on the removed credential */
3226 ssid = wpa_s->conf->ssid;
3227 while (ssid) {
3228 if (ssid->parent_cred == cred) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003229 int res;
3230
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003231 wpa_printf(MSG_DEBUG, "Remove network id %d since it "
3232 "used the removed credential", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003233 res = os_snprintf(str, sizeof(str), "%d", ssid->id);
3234 if (os_snprintf_error(sizeof(str), res))
3235 str[sizeof(str) - 1] = '\0';
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003236 ssid = ssid->next;
3237 wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
3238 } else
3239 ssid = ssid->next;
3240 }
3241
3242 return 0;
3243}
3244
3245
Dmitry Shmidt04949592012-07-19 12:16:46 -07003246static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
3247 char *cmd)
3248{
3249 int id;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003250 struct wpa_cred *cred, *prev;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003251
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003252 /* cmd: "<cred id>", "all", "sp_fqdn=<FQDN>", or
3253 * "provisioning_sp=<FQDN> */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003254 if (os_strcmp(cmd, "all") == 0) {
3255 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
3256 cred = wpa_s->conf->cred;
3257 while (cred) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003258 prev = cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003259 cred = cred->next;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003260 wpas_ctrl_remove_cred(wpa_s, prev);
3261 }
3262 return 0;
3263 }
3264
3265 if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
3266 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
3267 cmd + 8);
3268 cred = wpa_s->conf->cred;
3269 while (cred) {
3270 prev = cred;
3271 cred = cred->next;
Dmitry Shmidt051af732013-10-22 13:52:46 -07003272 if (prev->domain) {
3273 size_t i;
3274 for (i = 0; i < prev->num_domain; i++) {
3275 if (os_strcmp(prev->domain[i], cmd + 8)
3276 != 0)
3277 continue;
3278 wpas_ctrl_remove_cred(wpa_s, prev);
3279 break;
3280 }
3281 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07003282 }
3283 return 0;
3284 }
3285
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003286 if (os_strncmp(cmd, "provisioning_sp=", 16) == 0) {
3287 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED provisioning SP FQDN '%s'",
3288 cmd + 16);
3289 cred = wpa_s->conf->cred;
3290 while (cred) {
3291 prev = cred;
3292 cred = cred->next;
3293 if (prev->provisioning_sp &&
3294 os_strcmp(prev->provisioning_sp, cmd + 16) == 0)
3295 wpas_ctrl_remove_cred(wpa_s, prev);
3296 }
3297 return 0;
3298 }
3299
Dmitry Shmidt04949592012-07-19 12:16:46 -07003300 id = atoi(cmd);
3301 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
3302
3303 cred = wpa_config_get_cred(wpa_s->conf, id);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08003304 return wpas_ctrl_remove_cred(wpa_s, cred);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003305}
3306
3307
3308static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
3309 char *cmd)
3310{
3311 int id;
3312 struct wpa_cred *cred;
3313 char *name, *value;
3314
3315 /* cmd: "<cred id> <variable name> <value>" */
3316 name = os_strchr(cmd, ' ');
3317 if (name == NULL)
3318 return -1;
3319 *name++ = '\0';
3320
3321 value = os_strchr(name, ' ');
3322 if (value == NULL)
3323 return -1;
3324 *value++ = '\0';
3325
3326 id = atoi(cmd);
3327 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
3328 id, name);
3329 wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3330 (u8 *) value, os_strlen(value));
3331
3332 cred = wpa_config_get_cred(wpa_s->conf, id);
3333 if (cred == NULL) {
3334 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3335 id);
3336 return -1;
3337 }
3338
3339 if (wpa_config_set_cred(cred, name, value, 0) < 0) {
3340 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
3341 "variable '%s'", name);
3342 return -1;
3343 }
3344
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003345 wpa_msg(wpa_s, MSG_INFO, CRED_MODIFIED "%d %s", cred->id, name);
3346
Dmitry Shmidt04949592012-07-19 12:16:46 -07003347 return 0;
3348}
3349
3350
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003351static int wpa_supplicant_ctrl_iface_get_cred(struct wpa_supplicant *wpa_s,
3352 char *cmd, char *buf,
3353 size_t buflen)
3354{
3355 int id;
3356 size_t res;
3357 struct wpa_cred *cred;
3358 char *name, *value;
3359
3360 /* cmd: "<cred id> <variable name>" */
3361 name = os_strchr(cmd, ' ');
3362 if (name == NULL)
3363 return -1;
3364 *name++ = '\0';
3365
3366 id = atoi(cmd);
3367 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CRED id=%d name='%s'",
3368 id, name);
3369
3370 cred = wpa_config_get_cred(wpa_s->conf, id);
3371 if (cred == NULL) {
3372 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3373 id);
3374 return -1;
3375 }
3376
3377 value = wpa_config_get_cred_no_key(cred, name);
3378 if (value == NULL) {
3379 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get cred variable '%s'",
3380 name);
3381 return -1;
3382 }
3383
3384 res = os_strlcpy(buf, value, buflen);
3385 if (res >= buflen) {
3386 os_free(value);
3387 return -1;
3388 }
3389
3390 os_free(value);
3391
3392 return res;
3393}
3394
3395
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003396#ifndef CONFIG_NO_CONFIG_WRITE
3397static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
3398{
3399 int ret;
3400
3401 if (!wpa_s->conf->update_config) {
3402 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
3403 "to update configuration (update_config=0)");
3404 return -1;
3405 }
3406
3407 ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
3408 if (ret) {
3409 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
3410 "update configuration");
3411 } else {
3412 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
3413 " updated");
3414 }
3415
3416 return ret;
3417}
3418#endif /* CONFIG_NO_CONFIG_WRITE */
3419
3420
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003421struct cipher_info {
3422 unsigned int capa;
3423 const char *name;
3424 int group_only;
3425};
3426
3427static const struct cipher_info ciphers[] = {
3428 { WPA_DRIVER_CAPA_ENC_CCMP_256, "CCMP-256", 0 },
3429 { WPA_DRIVER_CAPA_ENC_GCMP_256, "GCMP-256", 0 },
3430 { WPA_DRIVER_CAPA_ENC_CCMP, "CCMP", 0 },
3431 { WPA_DRIVER_CAPA_ENC_GCMP, "GCMP", 0 },
3432 { WPA_DRIVER_CAPA_ENC_TKIP, "TKIP", 0 },
3433 { WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE, "NONE", 0 },
3434 { WPA_DRIVER_CAPA_ENC_WEP104, "WEP104", 1 },
3435 { WPA_DRIVER_CAPA_ENC_WEP40, "WEP40", 1 }
3436};
3437
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003438static const struct cipher_info ciphers_group_mgmt[] = {
3439 { WPA_DRIVER_CAPA_ENC_BIP, "AES-128-CMAC", 1 },
3440 { WPA_DRIVER_CAPA_ENC_BIP_GMAC_128, "BIP-GMAC-128", 1 },
3441 { WPA_DRIVER_CAPA_ENC_BIP_GMAC_256, "BIP-GMAC-256", 1 },
3442 { WPA_DRIVER_CAPA_ENC_BIP_CMAC_256, "BIP-CMAC-256", 1 },
3443};
3444
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003445
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003446static int ctrl_iface_get_capability_pairwise(int res, char *strict,
3447 struct wpa_driver_capa *capa,
3448 char *buf, size_t buflen)
3449{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003450 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003451 char *pos, *end;
3452 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003453 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003454
3455 pos = buf;
3456 end = pos + buflen;
3457
3458 if (res < 0) {
3459 if (strict)
3460 return 0;
3461 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
3462 if (len >= buflen)
3463 return -1;
3464 return len;
3465 }
3466
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003467 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3468 if (!ciphers[i].group_only && capa->enc & ciphers[i].capa) {
3469 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003470 pos == buf ? "" : " ",
3471 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003472 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003473 return pos - buf;
3474 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003475 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003476 }
3477
3478 return pos - buf;
3479}
3480
3481
3482static int ctrl_iface_get_capability_group(int res, char *strict,
3483 struct wpa_driver_capa *capa,
3484 char *buf, size_t buflen)
3485{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003486 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003487 char *pos, *end;
3488 size_t len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003489 unsigned int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003490
3491 pos = buf;
3492 end = pos + buflen;
3493
3494 if (res < 0) {
3495 if (strict)
3496 return 0;
3497 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
3498 if (len >= buflen)
3499 return -1;
3500 return len;
3501 }
3502
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003503 for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3504 if (capa->enc & ciphers[i].capa) {
3505 ret = os_snprintf(pos, end - pos, "%s%s",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003506 pos == buf ? "" : " ",
3507 ciphers[i].name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003508 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003509 return pos - buf;
3510 pos += ret;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003511 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003512 }
3513
3514 return pos - buf;
3515}
3516
3517
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003518static int ctrl_iface_get_capability_group_mgmt(int res, char *strict,
3519 struct wpa_driver_capa *capa,
3520 char *buf, size_t buflen)
3521{
3522 int ret;
3523 char *pos, *end;
3524 unsigned int i;
3525
3526 pos = buf;
3527 end = pos + buflen;
3528
3529 if (res < 0)
3530 return 0;
3531
3532 for (i = 0; i < ARRAY_SIZE(ciphers_group_mgmt); i++) {
3533 if (capa->enc & ciphers_group_mgmt[i].capa) {
3534 ret = os_snprintf(pos, end - pos, "%s%s",
3535 pos == buf ? "" : " ",
3536 ciphers_group_mgmt[i].name);
3537 if (os_snprintf_error(end - pos, ret))
3538 return pos - buf;
3539 pos += ret;
3540 }
3541 }
3542
3543 return pos - buf;
3544}
3545
3546
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003547static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
3548 struct wpa_driver_capa *capa,
3549 char *buf, size_t buflen)
3550{
3551 int ret;
3552 char *pos, *end;
3553 size_t len;
3554
3555 pos = buf;
3556 end = pos + buflen;
3557
3558 if (res < 0) {
3559 if (strict)
3560 return 0;
3561 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
3562 "NONE", buflen);
3563 if (len >= buflen)
3564 return -1;
3565 return len;
3566 }
3567
3568 ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003569 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003570 return pos - buf;
3571 pos += ret;
3572
3573 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3574 WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
3575 ret = os_snprintf(pos, end - pos, " WPA-EAP");
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_PSK |
3582 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
3583 ret = os_snprintf(pos, end - pos, " WPA-PSK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003584 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003585 return pos - buf;
3586 pos += ret;
3587 }
3588
3589 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
3590 ret = os_snprintf(pos, end - pos, " WPA-NONE");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003591 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003592 return pos - buf;
3593 pos += ret;
3594 }
3595
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003596#ifdef CONFIG_SUITEB
3597 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B) {
3598 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B");
3599 if (os_snprintf_error(end - pos, ret))
3600 return pos - buf;
3601 pos += ret;
3602 }
3603#endif /* CONFIG_SUITEB */
3604#ifdef CONFIG_SUITEB192
3605 if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192) {
3606 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B-192");
3607 if (os_snprintf_error(end - pos, ret))
3608 return pos - buf;
3609 pos += ret;
3610 }
3611#endif /* CONFIG_SUITEB192 */
3612
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003613 return pos - buf;
3614}
3615
3616
3617static int ctrl_iface_get_capability_proto(int res, char *strict,
3618 struct wpa_driver_capa *capa,
3619 char *buf, size_t buflen)
3620{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003621 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003622 char *pos, *end;
3623 size_t len;
3624
3625 pos = buf;
3626 end = pos + buflen;
3627
3628 if (res < 0) {
3629 if (strict)
3630 return 0;
3631 len = os_strlcpy(buf, "RSN WPA", buflen);
3632 if (len >= buflen)
3633 return -1;
3634 return len;
3635 }
3636
3637 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3638 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003639 ret = os_snprintf(pos, end - pos, "%sRSN",
3640 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003641 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003642 return pos - buf;
3643 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003644 }
3645
3646 if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3647 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003648 ret = os_snprintf(pos, end - pos, "%sWPA",
3649 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003650 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003651 return pos - buf;
3652 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003653 }
3654
3655 return pos - buf;
3656}
3657
3658
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003659static int ctrl_iface_get_capability_auth_alg(struct wpa_supplicant *wpa_s,
3660 int res, char *strict,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003661 struct wpa_driver_capa *capa,
3662 char *buf, size_t buflen)
3663{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003664 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003665 char *pos, *end;
3666 size_t len;
3667
3668 pos = buf;
3669 end = pos + buflen;
3670
3671 if (res < 0) {
3672 if (strict)
3673 return 0;
3674 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
3675 if (len >= buflen)
3676 return -1;
3677 return len;
3678 }
3679
3680 if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003681 ret = os_snprintf(pos, end - pos, "%sOPEN",
3682 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_SHARED)) {
3689 ret = os_snprintf(pos, end - pos, "%sSHARED",
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003690 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
3696 if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003697 ret = os_snprintf(pos, end - pos, "%sLEAP",
3698 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003699 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003700 return pos - buf;
3701 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003702 }
3703
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003704#ifdef CONFIG_SAE
3705 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE) {
3706 ret = os_snprintf(pos, end - pos, "%sSAE",
3707 pos == buf ? "" : " ");
3708 if (os_snprintf_error(end - pos, ret))
3709 return pos - buf;
3710 pos += ret;
3711 }
3712#endif /* CONFIG_SAE */
3713
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003714 return pos - buf;
3715}
3716
3717
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003718static int ctrl_iface_get_capability_modes(int res, char *strict,
3719 struct wpa_driver_capa *capa,
3720 char *buf, size_t buflen)
3721{
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003722 int ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003723 char *pos, *end;
3724 size_t len;
3725
3726 pos = buf;
3727 end = pos + buflen;
3728
3729 if (res < 0) {
3730 if (strict)
3731 return 0;
3732 len = os_strlcpy(buf, "IBSS AP", buflen);
3733 if (len >= buflen)
3734 return -1;
3735 return len;
3736 }
3737
3738 if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003739 ret = os_snprintf(pos, end - pos, "%sIBSS",
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
3746 if (capa->flags & WPA_DRIVER_FLAGS_AP) {
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08003747 ret = os_snprintf(pos, end - pos, "%sAP",
3748 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003749 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003750 return pos - buf;
3751 pos += ret;
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003752 }
3753
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003754#ifdef CONFIG_MESH
3755 if (capa->flags & WPA_DRIVER_FLAGS_MESH) {
3756 ret = os_snprintf(pos, end - pos, "%sMESH",
3757 pos == buf ? "" : " ");
3758 if (os_snprintf_error(end - pos, ret))
3759 return pos - buf;
3760 pos += ret;
3761 }
3762#endif /* CONFIG_MESH */
3763
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003764 return pos - buf;
3765}
3766
3767
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003768static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
3769 char *buf, size_t buflen)
3770{
3771 struct hostapd_channel_data *chnl;
3772 int ret, i, j;
3773 char *pos, *end, *hmode;
3774
3775 pos = buf;
3776 end = pos + buflen;
3777
3778 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3779 switch (wpa_s->hw.modes[j].mode) {
3780 case HOSTAPD_MODE_IEEE80211B:
3781 hmode = "B";
3782 break;
3783 case HOSTAPD_MODE_IEEE80211G:
3784 hmode = "G";
3785 break;
3786 case HOSTAPD_MODE_IEEE80211A:
3787 hmode = "A";
3788 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003789 case HOSTAPD_MODE_IEEE80211AD:
3790 hmode = "AD";
3791 break;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003792 default:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003793 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003794 }
3795 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
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 chnl = wpa_s->hw.modes[j].channels;
3800 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003801 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3802 continue;
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003803 ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003804 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003805 return pos - buf;
3806 pos += ret;
3807 }
3808 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003809 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003810 return pos - buf;
3811 pos += ret;
3812 }
3813
3814 return pos - buf;
3815}
3816
3817
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003818static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
3819 char *buf, size_t buflen)
3820{
3821 struct hostapd_channel_data *chnl;
3822 int ret, i, j;
3823 char *pos, *end, *hmode;
3824
3825 pos = buf;
3826 end = pos + buflen;
3827
3828 for (j = 0; j < wpa_s->hw.num_modes; j++) {
3829 switch (wpa_s->hw.modes[j].mode) {
3830 case HOSTAPD_MODE_IEEE80211B:
3831 hmode = "B";
3832 break;
3833 case HOSTAPD_MODE_IEEE80211G:
3834 hmode = "G";
3835 break;
3836 case HOSTAPD_MODE_IEEE80211A:
3837 hmode = "A";
3838 break;
3839 case HOSTAPD_MODE_IEEE80211AD:
3840 hmode = "AD";
3841 break;
3842 default:
3843 continue;
3844 }
3845 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3846 hmode);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003847 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003848 return pos - buf;
3849 pos += ret;
3850 chnl = wpa_s->hw.modes[j].channels;
3851 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3852 if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3853 continue;
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003854 ret = os_snprintf(pos, end - pos, " %d = %d MHz%s%s\n",
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003855 chnl[i].chan, chnl[i].freq,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003856 chnl[i].flag & HOSTAPD_CHAN_NO_IR ?
3857 " (NO_IR)" : "",
Dmitry Shmidt5da5e352014-02-03 13:30:46 -08003858 chnl[i].flag & HOSTAPD_CHAN_RADAR ?
3859 " (DFS)" : "");
3860
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003861 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003862 return pos - buf;
3863 pos += ret;
3864 }
3865 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003866 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003867 return pos - buf;
3868 pos += ret;
3869 }
3870
3871 return pos - buf;
3872}
3873
3874
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003875static int wpa_supplicant_ctrl_iface_get_capability(
3876 struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3877 size_t buflen)
3878{
3879 struct wpa_driver_capa capa;
3880 int res;
3881 char *strict;
3882 char field[30];
3883 size_t len;
3884
3885 /* Determine whether or not strict checking was requested */
3886 len = os_strlcpy(field, _field, sizeof(field));
3887 if (len >= sizeof(field))
3888 return -1;
3889 strict = os_strchr(field, ' ');
3890 if (strict != NULL) {
3891 *strict++ = '\0';
3892 if (os_strcmp(strict, "strict") != 0)
3893 return -1;
3894 }
3895
3896 wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3897 field, strict ? strict : "");
3898
3899 if (os_strcmp(field, "eap") == 0) {
3900 return eap_get_names(buf, buflen);
3901 }
3902
3903 res = wpa_drv_get_capa(wpa_s, &capa);
3904
3905 if (os_strcmp(field, "pairwise") == 0)
3906 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3907 buf, buflen);
3908
3909 if (os_strcmp(field, "group") == 0)
3910 return ctrl_iface_get_capability_group(res, strict, &capa,
3911 buf, buflen);
3912
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003913 if (os_strcmp(field, "group_mgmt") == 0)
3914 return ctrl_iface_get_capability_group_mgmt(res, strict, &capa,
3915 buf, buflen);
3916
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003917 if (os_strcmp(field, "key_mgmt") == 0)
3918 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3919 buf, buflen);
3920
3921 if (os_strcmp(field, "proto") == 0)
3922 return ctrl_iface_get_capability_proto(res, strict, &capa,
3923 buf, buflen);
3924
3925 if (os_strcmp(field, "auth_alg") == 0)
Dmitry Shmidtff787d52015-01-12 13:01:47 -08003926 return ctrl_iface_get_capability_auth_alg(wpa_s, res, strict,
3927 &capa, buf, buflen);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003928
Dmitry Shmidt700a1372013-03-15 14:14:44 -07003929 if (os_strcmp(field, "modes") == 0)
3930 return ctrl_iface_get_capability_modes(res, strict, &capa,
3931 buf, buflen);
3932
Dmitry Shmidt0e6d08e2012-07-10 12:49:30 -07003933 if (os_strcmp(field, "channels") == 0)
3934 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3935
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003936 if (os_strcmp(field, "freq") == 0)
3937 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3938
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07003939#ifdef CONFIG_TDLS
3940 if (os_strcmp(field, "tdls") == 0)
3941 return ctrl_iface_get_capability_tdls(wpa_s, buf, buflen);
3942#endif /* CONFIG_TDLS */
3943
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003944#ifdef CONFIG_ERP
3945 if (os_strcmp(field, "erp") == 0) {
3946 res = os_snprintf(buf, buflen, "ERP");
3947 if (os_snprintf_error(buflen, res))
3948 return -1;
3949 return res;
3950 }
3951#endif /* CONFIG_EPR */
3952
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003953#ifdef CONFIG_FIPS
3954 if (os_strcmp(field, "fips") == 0) {
3955 res = os_snprintf(buf, buflen, "FIPS");
3956 if (os_snprintf_error(buflen, res))
3957 return -1;
3958 return res;
3959 }
3960#endif /* CONFIG_FIPS */
3961
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -08003962#ifdef CONFIG_ACS
3963 if (os_strcmp(field, "acs") == 0) {
3964 res = os_snprintf(buf, buflen, "ACS");
3965 if (os_snprintf_error(buflen, res))
3966 return -1;
3967 return res;
3968 }
3969#endif /* CONFIG_ACS */
3970
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003971 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3972 field);
3973
3974 return -1;
3975}
3976
3977
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003978#ifdef CONFIG_INTERWORKING
3979static char * anqp_add_hex(char *pos, char *end, const char *title,
3980 struct wpabuf *data)
3981{
3982 char *start = pos;
3983 size_t i;
3984 int ret;
3985 const u8 *d;
3986
3987 if (data == NULL)
3988 return start;
3989
3990 ret = os_snprintf(pos, end - pos, "%s=", title);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003991 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003992 return start;
3993 pos += ret;
3994
3995 d = wpabuf_head_u8(data);
3996 for (i = 0; i < wpabuf_len(data); i++) {
3997 ret = os_snprintf(pos, end - pos, "%02x", *d++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003998 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003999 return start;
4000 pos += ret;
4001 }
4002
4003 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004004 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004005 return start;
4006 pos += ret;
4007
4008 return pos;
4009}
4010#endif /* CONFIG_INTERWORKING */
4011
4012
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004013static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
4014 unsigned long mask, char *buf, size_t buflen)
4015{
4016 size_t i;
4017 int ret;
4018 char *pos, *end;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004019 const u8 *ie, *ie2, *osen_ie;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004020
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004021 pos = buf;
4022 end = buf + buflen;
4023
4024 if (mask & WPA_BSS_MASK_ID) {
4025 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
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_BSSID) {
4032 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
4033 MAC2STR(bss->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004034 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004035 return 0;
4036 pos += ret;
4037 }
4038
4039 if (mask & WPA_BSS_MASK_FREQ) {
4040 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
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_BEACON_INT) {
4047 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
4048 bss->beacon_int);
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_CAPABILITIES) {
4055 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
4056 bss->caps);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004057 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004058 return 0;
4059 pos += ret;
4060 }
4061
4062 if (mask & WPA_BSS_MASK_QUAL) {
4063 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004064 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004065 return 0;
4066 pos += ret;
4067 }
4068
4069 if (mask & WPA_BSS_MASK_NOISE) {
4070 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004071 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004072 return 0;
4073 pos += ret;
4074 }
4075
4076 if (mask & WPA_BSS_MASK_LEVEL) {
4077 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
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_TSF) {
4084 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
4085 (unsigned long long) bss->tsf);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004086 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004087 return 0;
4088 pos += ret;
4089 }
4090
4091 if (mask & WPA_BSS_MASK_AGE) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004092 struct os_reltime now;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004093
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004094 os_get_reltime(&now);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004095 ret = os_snprintf(pos, end - pos, "age=%d\n",
4096 (int) (now.sec - bss->last_update.sec));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004097 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004098 return 0;
4099 pos += ret;
4100 }
4101
4102 if (mask & WPA_BSS_MASK_IE) {
4103 ret = os_snprintf(pos, end - pos, "ie=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004104 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004105 return 0;
4106 pos += ret;
4107
4108 ie = (const u8 *) (bss + 1);
4109 for (i = 0; i < bss->ie_len; i++) {
4110 ret = os_snprintf(pos, end - pos, "%02x", *ie++);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004111 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004112 return 0;
4113 pos += ret;
4114 }
4115
4116 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004117 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004118 return 0;
4119 pos += ret;
4120 }
4121
4122 if (mask & WPA_BSS_MASK_FLAGS) {
4123 ret = os_snprintf(pos, end - pos, "flags=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004124 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004125 return 0;
4126 pos += ret;
4127
4128 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
4129 if (ie)
4130 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
4131 2 + ie[1]);
4132 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
4133 if (ie2)
4134 pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
4135 2 + ie2[1]);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004136 osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
4137 if (osen_ie)
4138 pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
4139 osen_ie, 2 + osen_ie[1]);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004140 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07004141 if (!ie && !ie2 && !osen_ie &&
4142 (bss->caps & IEEE80211_CAP_PRIVACY)) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004143 ret = os_snprintf(pos, end - pos, "[WEP]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004144 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004145 return 0;
4146 pos += ret;
4147 }
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004148 if (bss_is_dmg(bss)) {
4149 const char *s;
4150 ret = os_snprintf(pos, end - pos, "[DMG]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004151 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004152 return 0;
4153 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004154 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
4155 case IEEE80211_CAP_DMG_IBSS:
4156 s = "[IBSS]";
4157 break;
4158 case IEEE80211_CAP_DMG_AP:
4159 s = "[ESS]";
4160 break;
4161 case IEEE80211_CAP_DMG_PBSS:
4162 s = "[PBSS]";
4163 break;
4164 default:
4165 s = "";
4166 break;
4167 }
4168 ret = os_snprintf(pos, end - pos, "%s", s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004169 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004170 return 0;
4171 pos += ret;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004172 } else {
4173 if (bss->caps & IEEE80211_CAP_IBSS) {
4174 ret = os_snprintf(pos, end - pos, "[IBSS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004175 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004176 return 0;
4177 pos += ret;
4178 }
4179 if (bss->caps & IEEE80211_CAP_ESS) {
4180 ret = os_snprintf(pos, end - pos, "[ESS]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004181 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07004182 return 0;
4183 pos += ret;
4184 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004185 }
Dmitry Shmidt96571392013-10-14 12:54:46 -07004186 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
4187 wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004188 ret = os_snprintf(pos, end - pos, "[P2P]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004189 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004190 return 0;
4191 pos += ret;
4192 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004193#ifdef CONFIG_HS20
4194 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
4195 ret = os_snprintf(pos, end - pos, "[HS20]");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004196 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004197 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004198 pos += ret;
4199 }
4200#endif /* CONFIG_HS20 */
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004201
4202 ret = os_snprintf(pos, end - pos, "\n");
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 if (mask & WPA_BSS_MASK_SSID) {
4209 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
4210 wpa_ssid_txt(bss->ssid, bss->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004211 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004212 return 0;
4213 pos += ret;
4214 }
4215
4216#ifdef CONFIG_WPS
4217 if (mask & WPA_BSS_MASK_WPS_SCAN) {
4218 ie = (const u8 *) (bss + 1);
4219 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004220 if (ret >= end - pos)
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004221 return 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004222 if (ret > 0)
4223 pos += ret;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004224 }
4225#endif /* CONFIG_WPS */
4226
4227#ifdef CONFIG_P2P
4228 if (mask & WPA_BSS_MASK_P2P_SCAN) {
4229 ie = (const u8 *) (bss + 1);
4230 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
4231 if (ret < 0 || ret >= end - pos)
4232 return 0;
4233 pos += ret;
4234 }
4235#endif /* CONFIG_P2P */
4236
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004237#ifdef CONFIG_WIFI_DISPLAY
4238 if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
4239 struct wpabuf *wfd;
4240 ie = (const u8 *) (bss + 1);
4241 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
4242 WFD_IE_VENDOR_TYPE);
4243 if (wfd) {
4244 ret = os_snprintf(pos, end - pos, "wfd_subelems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004245 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004246 wpabuf_free(wfd);
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004247 return 0;
Dmitry Shmidt96be6222014-02-13 10:16:51 -08004248 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004249 pos += ret;
4250
4251 pos += wpa_snprintf_hex(pos, end - pos,
4252 wpabuf_head(wfd),
4253 wpabuf_len(wfd));
4254 wpabuf_free(wfd);
4255
4256 ret = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004257 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004258 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004259 pos += ret;
4260 }
4261 }
4262#endif /* CONFIG_WIFI_DISPLAY */
4263
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004264#ifdef CONFIG_INTERWORKING
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004265 if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
4266 struct wpa_bss_anqp *anqp = bss->anqp;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004267 struct wpa_bss_anqp_elem *elem;
4268
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004269 pos = anqp_add_hex(pos, end, "anqp_capability_list",
4270 anqp->capability_list);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004271 pos = anqp_add_hex(pos, end, "anqp_venue_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004272 anqp->venue_name);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004273 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004274 anqp->network_auth_type);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004275 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004276 anqp->roaming_consortium);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004277 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004278 anqp->ip_addr_type_availability);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004279 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004280 anqp->nai_realm);
4281 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004282 pos = anqp_add_hex(pos, end, "anqp_domain_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004283 anqp->domain_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004284#ifdef CONFIG_HS20
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004285 pos = anqp_add_hex(pos, end, "hs20_capability_list",
4286 anqp->hs20_capability_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004287 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004288 anqp->hs20_operator_friendly_name);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004289 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004290 anqp->hs20_wan_metrics);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004291 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07004292 anqp->hs20_connection_capability);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08004293 pos = anqp_add_hex(pos, end, "hs20_operating_class",
4294 anqp->hs20_operating_class);
4295 pos = anqp_add_hex(pos, end, "hs20_osu_providers_list",
4296 anqp->hs20_osu_providers_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004297#endif /* CONFIG_HS20 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004298
4299 dl_list_for_each(elem, &anqp->anqp_elems,
4300 struct wpa_bss_anqp_elem, list) {
4301 char title[20];
4302
4303 os_snprintf(title, sizeof(title), "anqp[%u]",
4304 elem->infoid);
4305 pos = anqp_add_hex(pos, end, title, elem->payload);
4306 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004307 }
4308#endif /* CONFIG_INTERWORKING */
4309
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004310#ifdef CONFIG_MESH
4311 if (mask & WPA_BSS_MASK_MESH_SCAN) {
4312 ie = (const u8 *) (bss + 1);
4313 ret = wpas_mesh_scan_result_text(ie, bss->ie_len, pos, end);
4314 if (ret < 0 || ret >= end - pos)
4315 return 0;
4316 pos += ret;
4317 }
4318#endif /* CONFIG_MESH */
4319
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004320 if (mask & WPA_BSS_MASK_SNR) {
4321 ret = os_snprintf(pos, end - pos, "snr=%d\n", bss->snr);
4322 if (os_snprintf_error(end - pos, ret))
4323 return 0;
4324 pos += ret;
4325 }
4326
4327 if (mask & WPA_BSS_MASK_EST_THROUGHPUT) {
4328 ret = os_snprintf(pos, end - pos, "est_throughput=%d\n",
4329 bss->est_throughput);
4330 if (os_snprintf_error(end - pos, ret))
4331 return 0;
4332 pos += ret;
4333 }
4334
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004335#ifdef CONFIG_FST
4336 if (mask & WPA_BSS_MASK_FST) {
4337 ret = fst_ctrl_iface_mb_info(bss->bssid, pos, end - pos);
4338 if (ret < 0 || ret >= end - pos)
4339 return 0;
4340 pos += ret;
4341 }
4342#endif /* CONFIG_FST */
4343
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004344 if (mask & WPA_BSS_MASK_DELIM) {
4345 ret = os_snprintf(pos, end - pos, "====\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004346 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004347 return 0;
4348 pos += ret;
4349 }
Irfan Sheriffe2ea0082012-08-13 10:56:16 -07004350
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004351 return pos - buf;
4352}
4353
Dmitry Shmidt04949592012-07-19 12:16:46 -07004354
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004355static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
4356 const char *cmd, char *buf,
4357 size_t buflen)
4358{
4359 u8 bssid[ETH_ALEN];
4360 size_t i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004361 struct wpa_bss *bss;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004362 struct wpa_bss *bsslast = NULL;
4363 struct dl_list *next;
4364 int ret = 0;
4365 int len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004366 char *ctmp, *end = buf + buflen;
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004367 unsigned long mask = WPA_BSS_MASK_ALL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004368
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004369 if (os_strncmp(cmd, "RANGE=", 6) == 0) {
4370 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
4371 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
Dmitry Shmidt04949592012-07-19 12:16:46 -07004372 list_id);
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004373 bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
4374 list_id);
4375 } else { /* N1-N2 */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004376 unsigned int id1, id2;
4377
4378 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
4379 wpa_printf(MSG_INFO, "Wrong BSS range "
4380 "format");
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004381 return 0;
4382 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07004383
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004384 if (*(cmd + 6) == '-')
4385 id1 = 0;
4386 else
4387 id1 = atoi(cmd + 6);
4388 ctmp++;
4389 if (*ctmp >= '0' && *ctmp <= '9')
4390 id2 = atoi(ctmp);
4391 else
4392 id2 = (unsigned int) -1;
4393 bss = wpa_bss_get_id_range(wpa_s, id1, id2);
4394 if (id2 == (unsigned int) -1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004395 bsslast = dl_list_last(&wpa_s->bss_id,
4396 struct wpa_bss,
4397 list_id);
4398 else {
4399 bsslast = wpa_bss_get_id(wpa_s, id2);
4400 if (bsslast == NULL && bss && id2 > id1) {
4401 struct wpa_bss *tmp = bss;
4402 for (;;) {
4403 next = tmp->list_id.next;
4404 if (next == &wpa_s->bss_id)
4405 break;
4406 tmp = dl_list_entry(
4407 next, struct wpa_bss,
4408 list_id);
4409 if (tmp->id > id2)
4410 break;
4411 bsslast = tmp;
4412 }
4413 }
4414 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004415 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004416 } else if (os_strncmp(cmd, "FIRST", 5) == 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004417 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08004418 else if (os_strncmp(cmd, "LAST", 4) == 0)
4419 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004420 else if (os_strncmp(cmd, "ID-", 3) == 0) {
4421 i = atoi(cmd + 3);
4422 bss = wpa_bss_get_id(wpa_s, i);
4423 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4424 i = atoi(cmd + 5);
4425 bss = wpa_bss_get_id(wpa_s, i);
4426 if (bss) {
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004427 next = bss->list_id.next;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004428 if (next == &wpa_s->bss_id)
4429 bss = NULL;
4430 else
4431 bss = dl_list_entry(next, struct wpa_bss,
4432 list_id);
4433 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004434#ifdef CONFIG_P2P
4435 } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
4436 if (hwaddr_aton(cmd + 13, bssid) == 0)
4437 bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
4438 else
4439 bss = NULL;
4440#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004441 } else if (hwaddr_aton(cmd, bssid) == 0)
4442 bss = wpa_bss_get_bssid(wpa_s, bssid);
4443 else {
4444 struct wpa_bss *tmp;
4445 i = atoi(cmd);
4446 bss = NULL;
4447 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
4448 {
4449 if (i-- == 0) {
4450 bss = tmp;
4451 break;
4452 }
4453 }
4454 }
4455
Dmitry Shmidt04949592012-07-19 12:16:46 -07004456 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
4457 mask = strtoul(ctmp + 5, NULL, 0x10);
4458 if (mask == 0)
4459 mask = WPA_BSS_MASK_ALL;
4460 }
4461
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004462 if (bss == NULL)
4463 return 0;
4464
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004465 if (bsslast == NULL)
4466 bsslast = bss;
4467 do {
4468 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
4469 ret += len;
4470 buf += len;
4471 buflen -= len;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004472 if (bss == bsslast) {
4473 if ((mask & WPA_BSS_MASK_DELIM) && len &&
4474 (bss == dl_list_last(&wpa_s->bss_id,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004475 struct wpa_bss, list_id))) {
4476 int res;
4477
4478 res = os_snprintf(buf - 5, end - buf + 5,
4479 "####\n");
4480 if (os_snprintf_error(end - buf + 5, res)) {
4481 wpa_printf(MSG_DEBUG,
4482 "Could not add end delim");
4483 }
4484 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004485 break;
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08004486 }
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004487 next = bss->list_id.next;
4488 if (next == &wpa_s->bss_id)
4489 break;
4490 bss = dl_list_entry(next, struct wpa_bss, list_id);
4491 } while (bss && len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004492
Dmitry Shmidtf2df2f22012-03-26 12:43:26 -07004493 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004494}
4495
4496
4497static int wpa_supplicant_ctrl_iface_ap_scan(
4498 struct wpa_supplicant *wpa_s, char *cmd)
4499{
4500 int ap_scan = atoi(cmd);
4501 return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
4502}
4503
4504
4505static int wpa_supplicant_ctrl_iface_scan_interval(
4506 struct wpa_supplicant *wpa_s, char *cmd)
4507{
4508 int scan_int = atoi(cmd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07004509 return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004510}
4511
4512
4513static int wpa_supplicant_ctrl_iface_bss_expire_age(
4514 struct wpa_supplicant *wpa_s, char *cmd)
4515{
4516 int expire_age = atoi(cmd);
4517 return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
4518}
4519
4520
4521static int wpa_supplicant_ctrl_iface_bss_expire_count(
4522 struct wpa_supplicant *wpa_s, char *cmd)
4523{
4524 int expire_count = atoi(cmd);
4525 return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
4526}
4527
4528
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004529static void wpa_supplicant_ctrl_iface_bss_flush(
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004530 struct wpa_supplicant *wpa_s, char *cmd)
4531{
4532 int flush_age = atoi(cmd);
4533
4534 if (flush_age == 0)
4535 wpa_bss_flush(wpa_s);
4536 else
4537 wpa_bss_flush_by_age(wpa_s, flush_age);
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07004538}
4539
4540
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004541#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004542static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
4543{
4544 wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
4545 /* MLME-DELETEKEYS.request */
4546 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
4547 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
4548 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
4549 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
4550#ifdef CONFIG_IEEE80211W
4551 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
4552 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
4553#endif /* CONFIG_IEEE80211W */
4554
4555 wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
4556 0);
4557 /* MLME-SETPROTECTION.request(None) */
4558 wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
4559 MLME_SETPROTECTION_PROTECT_TYPE_NONE,
4560 MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
4561 wpa_sm_drop_sa(wpa_s->wpa);
4562}
Dmitry Shmidt21de2142014-04-08 10:50:52 -07004563#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004564
4565
4566static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
4567 char *addr)
4568{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004569#ifdef CONFIG_NO_SCAN_PROCESSING
4570 return -1;
4571#else /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004572 u8 bssid[ETH_ALEN];
4573 struct wpa_bss *bss;
4574 struct wpa_ssid *ssid = wpa_s->current_ssid;
4575
4576 if (hwaddr_aton(addr, bssid)) {
4577 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
4578 "address '%s'", addr);
4579 return -1;
4580 }
4581
4582 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
4583
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004584 if (!ssid) {
4585 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
4586 "configuration known for the target AP");
4587 return -1;
4588 }
4589
4590 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004591 if (!bss) {
4592 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
4593 "from BSS table");
4594 return -1;
4595 }
4596
4597 /*
4598 * TODO: Find best network configuration block from configuration to
4599 * allow roaming to other networks
4600 */
4601
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004602 wpa_s->reassociate = 1;
4603 wpa_supplicant_connect(wpa_s, bss, ssid);
4604
4605 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004606#endif /* CONFIG_NO_SCAN_PROCESSING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004607}
4608
4609
4610#ifdef CONFIG_P2P
4611static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
4612{
4613 unsigned int timeout = atoi(cmd);
4614 enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004615 u8 dev_id[ETH_ALEN], *_dev_id = NULL;
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004616 u8 dev_type[WPS_DEV_TYPE_LEN], *_dev_type = NULL;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004617 char *pos;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004618 unsigned int search_delay;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004619 const char *_seek[P2P_MAX_QUERY_HASH + 1], **seek = NULL;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004620 u8 seek_count = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004621 int freq = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004622
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07004623 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
4624 wpa_dbg(wpa_s, MSG_INFO,
4625 "Reject P2P_FIND since interface is disabled");
4626 return -1;
4627 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004628 if (os_strstr(cmd, "type=social"))
4629 type = P2P_FIND_ONLY_SOCIAL;
4630 else if (os_strstr(cmd, "type=progressive"))
4631 type = P2P_FIND_PROGRESSIVE;
4632
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08004633 pos = os_strstr(cmd, "dev_id=");
4634 if (pos) {
4635 pos += 7;
4636 if (hwaddr_aton(pos, dev_id))
4637 return -1;
4638 _dev_id = dev_id;
4639 }
4640
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004641 pos = os_strstr(cmd, "dev_type=");
4642 if (pos) {
4643 pos += 9;
4644 if (wps_dev_type_str2bin(pos, dev_type) < 0)
4645 return -1;
4646 _dev_type = dev_type;
4647 }
4648
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004649 pos = os_strstr(cmd, "delay=");
4650 if (pos) {
4651 pos += 6;
4652 search_delay = atoi(pos);
4653 } else
4654 search_delay = wpas_p2p_search_delay(wpa_s);
4655
Dmitry Shmidt41712582015-06-29 11:02:15 -07004656 pos = os_strstr(cmd, "freq=");
4657 if (pos) {
4658 pos += 5;
4659 freq = atoi(pos);
4660 if (freq <= 0)
4661 return -1;
4662 }
4663
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004664 /* Must be searched for last, because it adds nul termination */
4665 pos = os_strstr(cmd, " seek=");
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004666 if (pos)
4667 pos += 6;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004668 while (pos && seek_count < P2P_MAX_QUERY_HASH + 1) {
4669 char *term;
4670
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004671 _seek[seek_count++] = pos;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004672 seek = _seek;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004673 term = os_strchr(pos, ' ');
4674 if (!term)
4675 break;
4676 *term = '\0';
4677 pos = os_strstr(term + 1, "seek=");
4678 if (pos)
4679 pos += 5;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004680 }
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004681 if (seek_count > P2P_MAX_QUERY_HASH) {
4682 seek[0] = NULL;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004683 seek_count = 1;
4684 }
4685
Dmitry Shmidt344abd32014-01-14 13:17:00 -08004686 return wpas_p2p_find(wpa_s, timeout, type, _dev_type != NULL, _dev_type,
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004687 _dev_id, search_delay, seek_count, seek, freq);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004688}
4689
4690
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004691static int p2ps_ctrl_parse_cpt_priority(const char *pos, u8 *cpt)
4692{
4693 const char *last = NULL;
4694 const char *token;
4695 long int token_len;
4696 unsigned int i;
4697
4698 /* Expected predefined CPT names delimited by ':' */
4699 for (i = 0; (token = cstr_token(pos, ": \t", &last)); i++) {
4700 if (i >= P2PS_FEATURE_CAPAB_CPT_MAX) {
4701 wpa_printf(MSG_ERROR,
4702 "P2PS: CPT name list is too long, expected up to %d names",
4703 P2PS_FEATURE_CAPAB_CPT_MAX);
4704 cpt[0] = 0;
4705 return -1;
4706 }
4707
4708 token_len = last - token;
4709
4710 if (token_len == 3 &&
4711 os_memcmp(token, "UDP", token_len) == 0) {
4712 cpt[i] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4713 } else if (token_len == 3 &&
4714 os_memcmp(token, "MAC", token_len) == 0) {
4715 cpt[i] = P2PS_FEATURE_CAPAB_MAC_TRANSPORT;
4716 } else {
4717 wpa_printf(MSG_ERROR,
4718 "P2PS: Unsupported CPT name '%s'", token);
4719 cpt[0] = 0;
4720 return -1;
4721 }
4722
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004723 if (isblank((unsigned char) *last)) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004724 i++;
4725 break;
4726 }
4727 }
4728 cpt[i] = 0;
4729 return 0;
4730}
4731
4732
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004733static struct p2ps_provision * p2p_parse_asp_provision_cmd(const char *cmd)
4734{
4735 struct p2ps_provision *p2ps_prov;
4736 char *pos;
4737 size_t info_len = 0;
4738 char *info = NULL;
4739 u8 role = P2PS_SETUP_NONE;
4740 long long unsigned val;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004741 int i;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004742
4743 pos = os_strstr(cmd, "info=");
4744 if (pos) {
4745 pos += 5;
4746 info_len = os_strlen(pos);
4747
4748 if (info_len) {
4749 info = os_malloc(info_len + 1);
4750 if (info) {
4751 info_len = utf8_unescape(pos, info_len,
4752 info, info_len + 1);
4753 } else
4754 info_len = 0;
4755 }
4756 }
4757
4758 p2ps_prov = os_zalloc(sizeof(struct p2ps_provision) + info_len + 1);
4759 if (p2ps_prov == NULL) {
4760 os_free(info);
4761 return NULL;
4762 }
4763
4764 if (info) {
4765 os_memcpy(p2ps_prov->info, info, info_len);
4766 p2ps_prov->info[info_len] = '\0';
4767 os_free(info);
4768 }
4769
4770 pos = os_strstr(cmd, "status=");
4771 if (pos)
4772 p2ps_prov->status = atoi(pos + 7);
4773 else
4774 p2ps_prov->status = -1;
4775
4776 pos = os_strstr(cmd, "adv_id=");
4777 if (!pos || sscanf(pos + 7, "%llx", &val) != 1 || val > 0xffffffffULL)
4778 goto invalid_args;
4779 p2ps_prov->adv_id = val;
4780
4781 pos = os_strstr(cmd, "method=");
4782 if (pos)
4783 p2ps_prov->method = strtol(pos + 7, NULL, 16);
4784 else
4785 p2ps_prov->method = 0;
4786
4787 pos = os_strstr(cmd, "session=");
4788 if (!pos || sscanf(pos + 8, "%llx", &val) != 1 || val > 0xffffffffULL)
4789 goto invalid_args;
4790 p2ps_prov->session_id = val;
4791
4792 pos = os_strstr(cmd, "adv_mac=");
4793 if (!pos || hwaddr_aton(pos + 8, p2ps_prov->adv_mac))
4794 goto invalid_args;
4795
4796 pos = os_strstr(cmd, "session_mac=");
4797 if (!pos || hwaddr_aton(pos + 12, p2ps_prov->session_mac))
4798 goto invalid_args;
4799
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004800 pos = os_strstr(cmd, "cpt=");
4801 if (pos) {
4802 if (p2ps_ctrl_parse_cpt_priority(pos + 4,
4803 p2ps_prov->cpt_priority))
4804 goto invalid_args;
4805 } else {
4806 p2ps_prov->cpt_priority[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4807 }
4808
4809 for (i = 0; p2ps_prov->cpt_priority[i]; i++)
4810 p2ps_prov->cpt_mask |= p2ps_prov->cpt_priority[i];
4811
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004812 /* force conncap with tstCap (no sanity checks) */
4813 pos = os_strstr(cmd, "tstCap=");
4814 if (pos) {
4815 role = strtol(pos + 7, NULL, 16);
4816 } else {
4817 pos = os_strstr(cmd, "role=");
4818 if (pos) {
4819 role = strtol(pos + 5, NULL, 16);
4820 if (role != P2PS_SETUP_CLIENT &&
4821 role != P2PS_SETUP_GROUP_OWNER)
4822 role = P2PS_SETUP_NONE;
4823 }
4824 }
4825 p2ps_prov->role = role;
4826
4827 return p2ps_prov;
4828
4829invalid_args:
4830 os_free(p2ps_prov);
4831 return NULL;
4832}
4833
4834
4835static int p2p_ctrl_asp_provision_resp(struct wpa_supplicant *wpa_s, char *cmd)
4836{
4837 u8 addr[ETH_ALEN];
4838 struct p2ps_provision *p2ps_prov;
4839 char *pos;
4840
4841 /* <addr> id=<adv_id> [role=<conncap>] [info=<infodata>] */
4842
4843 wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4844
4845 if (hwaddr_aton(cmd, addr))
4846 return -1;
4847
4848 pos = cmd + 17;
4849 if (*pos != ' ')
4850 return -1;
4851
4852 p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4853 if (!p2ps_prov)
4854 return -1;
4855
4856 if (p2ps_prov->status < 0) {
4857 os_free(p2ps_prov);
4858 return -1;
4859 }
4860
4861 return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4862 p2ps_prov);
4863}
4864
4865
4866static int p2p_ctrl_asp_provision(struct wpa_supplicant *wpa_s, char *cmd)
4867{
4868 u8 addr[ETH_ALEN];
4869 struct p2ps_provision *p2ps_prov;
4870 char *pos;
4871
4872 /* <addr> id=<adv_id> adv_mac=<adv_mac> conncap=<conncap>
4873 * session=<ses_id> mac=<ses_mac> [info=<infodata>]
4874 */
4875
4876 wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4877 if (hwaddr_aton(cmd, addr))
4878 return -1;
4879
4880 pos = cmd + 17;
4881 if (*pos != ' ')
4882 return -1;
4883
4884 p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4885 if (!p2ps_prov)
4886 return -1;
4887
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004888 p2ps_prov->pd_seeker = 1;
4889
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004890 return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4891 p2ps_prov);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004892}
4893
4894
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004895static int parse_freq(int chwidth, int freq2)
4896{
4897 if (freq2 < 0)
4898 return -1;
4899 if (freq2)
4900 return VHT_CHANWIDTH_80P80MHZ;
4901
4902 switch (chwidth) {
4903 case 0:
4904 case 20:
4905 case 40:
4906 return VHT_CHANWIDTH_USE_HT;
4907 case 80:
4908 return VHT_CHANWIDTH_80MHZ;
4909 case 160:
4910 return VHT_CHANWIDTH_160MHZ;
4911 default:
4912 wpa_printf(MSG_DEBUG, "Unknown max oper bandwidth: %d",
4913 chwidth);
4914 return -1;
4915 }
4916}
4917
4918
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004919static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
4920 char *buf, size_t buflen)
4921{
4922 u8 addr[ETH_ALEN];
4923 char *pos, *pos2;
4924 char *pin = NULL;
4925 enum p2p_wps_method wps_method;
4926 int new_pin;
4927 int ret;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004928 int persistent_group, persistent_id = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004929 int join;
4930 int auth;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004931 int automatic;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004932 int go_intent = -1;
4933 int freq = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004934 int pd;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004935 int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004936 u8 _group_ssid[SSID_MAX_LEN], *group_ssid = NULL;
4937 size_t group_ssid_len = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004938
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08004939 if (!wpa_s->global->p2p_init_wpa_s)
4940 return -1;
4941 if (wpa_s->global->p2p_init_wpa_s != wpa_s) {
4942 wpa_dbg(wpa_s, MSG_DEBUG, "Direct P2P_CONNECT command to %s",
4943 wpa_s->global->p2p_init_wpa_s->ifname);
4944 wpa_s = wpa_s->global->p2p_init_wpa_s;
4945 }
4946
Dmitry Shmidt216983b2015-02-06 10:50:36 -08004947 /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad|p2ps]
Dmitry Shmidt04949592012-07-19 12:16:46 -07004948 * [persistent|persistent=<network id>]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004949 * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
Dmitry Shmidtde47be72016-01-07 12:52:55 -08004950 * [ht40] [vht] [auto] [ssid=<hexdump>] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004951
4952 if (hwaddr_aton(cmd, addr))
4953 return -1;
4954
4955 pos = cmd + 17;
4956 if (*pos != ' ')
4957 return -1;
4958 pos++;
4959
4960 persistent_group = os_strstr(pos, " persistent") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004961 pos2 = os_strstr(pos, " persistent=");
4962 if (pos2) {
4963 struct wpa_ssid *ssid;
4964 persistent_id = atoi(pos2 + 12);
4965 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
4966 if (ssid == NULL || ssid->disabled != 2 ||
4967 ssid->mode != WPAS_MODE_P2P_GO) {
4968 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
4969 "SSID id=%d for persistent P2P group (GO)",
4970 persistent_id);
4971 return -1;
4972 }
4973 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004974 join = os_strstr(pos, " join") != NULL;
4975 auth = os_strstr(pos, " auth") != NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07004976 automatic = os_strstr(pos, " auto") != NULL;
4977 pd = os_strstr(pos, " provdisc") != NULL;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004978 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
4979 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
4980 vht;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004981
4982 pos2 = os_strstr(pos, " go_intent=");
4983 if (pos2) {
4984 pos2 += 11;
4985 go_intent = atoi(pos2);
4986 if (go_intent < 0 || go_intent > 15)
4987 return -1;
4988 }
4989
4990 pos2 = os_strstr(pos, " freq=");
4991 if (pos2) {
4992 pos2 += 6;
4993 freq = atoi(pos2);
4994 if (freq <= 0)
4995 return -1;
4996 }
4997
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004998 pos2 = os_strstr(pos, " freq2=");
4999 if (pos2)
5000 freq2 = atoi(pos2 + 7);
5001
5002 pos2 = os_strstr(pos, " max_oper_chwidth=");
5003 if (pos2)
5004 chwidth = atoi(pos2 + 18);
5005
5006 max_oper_chwidth = parse_freq(chwidth, freq2);
5007 if (max_oper_chwidth < 0)
5008 return -1;
5009
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005010 pos2 = os_strstr(pos, " ssid=");
5011 if (pos2) {
5012 char *end;
5013
5014 pos2 += 6;
5015 end = os_strchr(pos2, ' ');
5016 if (!end)
5017 group_ssid_len = os_strlen(pos2) / 2;
5018 else
5019 group_ssid_len = (end - pos2) / 2;
5020 if (group_ssid_len == 0 || group_ssid_len > SSID_MAX_LEN ||
5021 hexstr2bin(pos2, _group_ssid, group_ssid_len) < 0)
5022 return -1;
5023 group_ssid = _group_ssid;
5024 }
5025
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005026 if (os_strncmp(pos, "pin", 3) == 0) {
5027 /* Request random PIN (to be displayed) and enable the PIN */
5028 wps_method = WPS_PIN_DISPLAY;
5029 } else if (os_strncmp(pos, "pbc", 3) == 0) {
5030 wps_method = WPS_PBC;
5031 } else {
5032 pin = pos;
5033 pos = os_strchr(pin, ' ');
5034 wps_method = WPS_PIN_KEYPAD;
5035 if (pos) {
5036 *pos++ = '\0';
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005037 if (os_strncmp(pos, "display", 7) == 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005038 wps_method = WPS_PIN_DISPLAY;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005039 else if (os_strncmp(pos, "p2ps", 4) == 0)
5040 wps_method = WPS_P2PS;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005041 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005042 if (!wps_pin_str_valid(pin)) {
5043 os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
5044 return 17;
5045 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005046 }
5047
5048 new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
Dmitry Shmidt04949592012-07-19 12:16:46 -07005049 persistent_group, automatic, join,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005050 auth, go_intent, freq, freq2, persistent_id,
Dmitry Shmidtde47be72016-01-07 12:52:55 -08005051 pd, ht40, vht, max_oper_chwidth,
5052 group_ssid, group_ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005053 if (new_pin == -2) {
5054 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
5055 return 25;
5056 }
5057 if (new_pin == -3) {
5058 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
5059 return 25;
5060 }
5061 if (new_pin < 0)
5062 return -1;
5063 if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
5064 ret = os_snprintf(buf, buflen, "%08d", new_pin);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005065 if (os_snprintf_error(buflen, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005066 return -1;
5067 return ret;
5068 }
5069
5070 os_memcpy(buf, "OK\n", 3);
5071 return 3;
5072}
5073
5074
5075static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
5076{
5077 unsigned int timeout = atoi(cmd);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07005078 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
5079 wpa_dbg(wpa_s, MSG_INFO,
5080 "Reject P2P_LISTEN since interface is disabled");
5081 return -1;
5082 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005083 return wpas_p2p_listen(wpa_s, timeout);
5084}
5085
5086
5087static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
5088{
5089 u8 addr[ETH_ALEN];
5090 char *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005091 enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005092
Dmitry Shmidt04949592012-07-19 12:16:46 -07005093 /* <addr> <config method> [join|auto] */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005094
5095 if (hwaddr_aton(cmd, addr))
5096 return -1;
5097
5098 pos = cmd + 17;
5099 if (*pos != ' ')
5100 return -1;
5101 pos++;
5102
Dmitry Shmidt04949592012-07-19 12:16:46 -07005103 if (os_strstr(pos, " join") != NULL)
5104 use = WPAS_P2P_PD_FOR_JOIN;
5105 else if (os_strstr(pos, " auto") != NULL)
5106 use = WPAS_P2P_PD_AUTO;
5107
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005108 return wpas_p2p_prov_disc(wpa_s, addr, pos, use, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005109}
5110
5111
5112static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
5113 size_t buflen)
5114{
5115 struct wpa_ssid *ssid = wpa_s->current_ssid;
5116
5117 if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
5118 ssid->passphrase == NULL)
5119 return -1;
5120
5121 os_strlcpy(buf, ssid->passphrase, buflen);
5122 return os_strlen(buf);
5123}
5124
5125
5126static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
5127 char *buf, size_t buflen)
5128{
5129 u64 ref;
5130 int res;
5131 u8 dst_buf[ETH_ALEN], *dst;
5132 struct wpabuf *tlvs;
5133 char *pos;
5134 size_t len;
5135
5136 if (hwaddr_aton(cmd, dst_buf))
5137 return -1;
5138 dst = dst_buf;
5139 if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
5140 dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
5141 dst = NULL;
5142 pos = cmd + 17;
5143 if (*pos != ' ')
5144 return -1;
5145 pos++;
5146
5147 if (os_strncmp(pos, "upnp ", 5) == 0) {
5148 u8 version;
5149 pos += 5;
5150 if (hexstr2bin(pos, &version, 1) < 0)
5151 return -1;
5152 pos += 2;
5153 if (*pos != ' ')
5154 return -1;
5155 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005156 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005157#ifdef CONFIG_WIFI_DISPLAY
5158 } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
5159 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
5160#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005161 } else if (os_strncmp(pos, "asp ", 4) == 0) {
5162 char *svc_str;
5163 char *svc_info = NULL;
5164 u32 id;
5165
5166 pos += 4;
5167 if (sscanf(pos, "%x", &id) != 1 || id > 0xff)
5168 return -1;
5169
5170 pos = os_strchr(pos, ' ');
5171 if (pos == NULL || pos[1] == '\0' || pos[1] == ' ')
5172 return -1;
5173
5174 svc_str = pos + 1;
5175
5176 pos = os_strchr(svc_str, ' ');
5177
5178 if (pos)
5179 *pos++ = '\0';
5180
5181 /* All remaining data is the svc_info string */
5182 if (pos && pos[0] && pos[0] != ' ') {
5183 len = os_strlen(pos);
5184
5185 /* Unescape in place */
5186 len = utf8_unescape(pos, len, pos, len);
5187 if (len > 0xff)
5188 return -1;
5189
5190 svc_info = pos;
5191 }
5192
5193 ref = wpas_p2p_sd_request_asp(wpa_s, dst, (u8) id,
5194 svc_str, svc_info);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005195 } else {
5196 len = os_strlen(pos);
5197 if (len & 1)
5198 return -1;
5199 len /= 2;
5200 tlvs = wpabuf_alloc(len);
5201 if (tlvs == NULL)
5202 return -1;
5203 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
5204 wpabuf_free(tlvs);
5205 return -1;
5206 }
5207
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005208 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005209 wpabuf_free(tlvs);
5210 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005211 if (ref == 0)
5212 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005213 res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005214 if (os_snprintf_error(buflen, res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005215 return -1;
5216 return res;
5217}
5218
5219
5220static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
5221 char *cmd)
5222{
5223 long long unsigned val;
5224 u64 req;
5225 if (sscanf(cmd, "%llx", &val) != 1)
5226 return -1;
5227 req = val;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005228 return wpas_p2p_sd_cancel_request(wpa_s, req);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005229}
5230
5231
5232static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
5233{
5234 int freq;
5235 u8 dst[ETH_ALEN];
5236 u8 dialog_token;
5237 struct wpabuf *resp_tlvs;
5238 char *pos, *pos2;
5239 size_t len;
5240
5241 pos = os_strchr(cmd, ' ');
5242 if (pos == NULL)
5243 return -1;
5244 *pos++ = '\0';
5245 freq = atoi(cmd);
5246 if (freq == 0)
5247 return -1;
5248
5249 if (hwaddr_aton(pos, dst))
5250 return -1;
5251 pos += 17;
5252 if (*pos != ' ')
5253 return -1;
5254 pos++;
5255
5256 pos2 = os_strchr(pos, ' ');
5257 if (pos2 == NULL)
5258 return -1;
5259 *pos2++ = '\0';
5260 dialog_token = atoi(pos);
5261
5262 len = os_strlen(pos2);
5263 if (len & 1)
5264 return -1;
5265 len /= 2;
5266 resp_tlvs = wpabuf_alloc(len);
5267 if (resp_tlvs == NULL)
5268 return -1;
5269 if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
5270 wpabuf_free(resp_tlvs);
5271 return -1;
5272 }
5273
5274 wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
5275 wpabuf_free(resp_tlvs);
5276 return 0;
5277}
5278
5279
5280static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
5281 char *cmd)
5282{
Dmitry Shmidt04949592012-07-19 12:16:46 -07005283 if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
5284 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005285 wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
5286 return 0;
5287}
5288
5289
5290static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
5291 char *cmd)
5292{
5293 char *pos;
5294 size_t len;
5295 struct wpabuf *query, *resp;
5296
5297 pos = os_strchr(cmd, ' ');
5298 if (pos == NULL)
5299 return -1;
5300 *pos++ = '\0';
5301
5302 len = os_strlen(cmd);
5303 if (len & 1)
5304 return -1;
5305 len /= 2;
5306 query = wpabuf_alloc(len);
5307 if (query == NULL)
5308 return -1;
5309 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5310 wpabuf_free(query);
5311 return -1;
5312 }
5313
5314 len = os_strlen(pos);
5315 if (len & 1) {
5316 wpabuf_free(query);
5317 return -1;
5318 }
5319 len /= 2;
5320 resp = wpabuf_alloc(len);
5321 if (resp == NULL) {
5322 wpabuf_free(query);
5323 return -1;
5324 }
5325 if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
5326 wpabuf_free(query);
5327 wpabuf_free(resp);
5328 return -1;
5329 }
5330
5331 if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
5332 wpabuf_free(query);
5333 wpabuf_free(resp);
5334 return -1;
5335 }
5336 return 0;
5337}
5338
5339
5340static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5341{
5342 char *pos;
5343 u8 version;
5344
5345 pos = os_strchr(cmd, ' ');
5346 if (pos == NULL)
5347 return -1;
5348 *pos++ = '\0';
5349
5350 if (hexstr2bin(cmd, &version, 1) < 0)
5351 return -1;
5352
5353 return wpas_p2p_service_add_upnp(wpa_s, version, pos);
5354}
5355
5356
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005357static int p2p_ctrl_service_add_asp(struct wpa_supplicant *wpa_s,
5358 u8 replace, char *cmd)
5359{
5360 char *pos;
5361 char *adv_str;
5362 u32 auto_accept, adv_id, svc_state, config_methods;
5363 char *svc_info = NULL;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005364 char *cpt_prio_str;
5365 u8 cpt_prio[P2PS_FEATURE_CAPAB_CPT_MAX + 1];
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005366
5367 pos = os_strchr(cmd, ' ');
5368 if (pos == NULL)
5369 return -1;
5370 *pos++ = '\0';
5371
5372 /* Auto-Accept value is mandatory, and must be one of the
5373 * single values (0, 1, 2, 4) */
5374 auto_accept = atoi(cmd);
5375 switch (auto_accept) {
5376 case P2PS_SETUP_NONE: /* No auto-accept */
5377 case P2PS_SETUP_NEW:
5378 case P2PS_SETUP_CLIENT:
5379 case P2PS_SETUP_GROUP_OWNER:
5380 break;
5381 default:
5382 return -1;
5383 }
5384
5385 /* Advertisement ID is mandatory */
5386 cmd = pos;
5387 pos = os_strchr(cmd, ' ');
5388 if (pos == NULL)
5389 return -1;
5390 *pos++ = '\0';
5391
5392 /* Handle Adv_ID == 0 (wildcard "org.wi-fi.wfds") internally. */
5393 if (sscanf(cmd, "%x", &adv_id) != 1 || adv_id == 0)
5394 return -1;
5395
5396 /* Only allow replacements if exist, and adds if not */
5397 if (wpas_p2p_service_p2ps_id_exists(wpa_s, adv_id)) {
5398 if (!replace)
5399 return -1;
5400 } else {
5401 if (replace)
5402 return -1;
5403 }
5404
5405 /* svc_state between 0 - 0xff is mandatory */
5406 if (sscanf(pos, "%x", &svc_state) != 1 || svc_state > 0xff)
5407 return -1;
5408
5409 pos = os_strchr(pos, ' ');
5410 if (pos == NULL)
5411 return -1;
5412
5413 /* config_methods is mandatory */
5414 pos++;
5415 if (sscanf(pos, "%x", &config_methods) != 1)
5416 return -1;
5417
5418 if (!(config_methods &
5419 (WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD | WPS_CONFIG_P2PS)))
5420 return -1;
5421
5422 pos = os_strchr(pos, ' ');
5423 if (pos == NULL)
5424 return -1;
5425
5426 pos++;
5427 adv_str = pos;
5428
5429 /* Advertisement string is mandatory */
5430 if (!pos[0] || pos[0] == ' ')
5431 return -1;
5432
5433 /* Terminate svc string */
5434 pos = os_strchr(pos, ' ');
5435 if (pos != NULL)
5436 *pos++ = '\0';
5437
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005438 cpt_prio_str = (pos && pos[0]) ? os_strstr(pos, "cpt=") : NULL;
5439 if (cpt_prio_str) {
5440 pos = os_strchr(pos, ' ');
5441 if (pos != NULL)
5442 *pos++ = '\0';
5443
5444 if (p2ps_ctrl_parse_cpt_priority(cpt_prio_str + 4, cpt_prio))
5445 return -1;
5446 } else {
5447 cpt_prio[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
5448 cpt_prio[1] = 0;
5449 }
5450
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005451 /* Service and Response Information are optional */
5452 if (pos && pos[0]) {
5453 size_t len;
5454
5455 /* Note the bare ' included, which cannot exist legally
5456 * in unescaped string. */
5457 svc_info = os_strstr(pos, "svc_info='");
5458
5459 if (svc_info) {
5460 svc_info += 9;
5461 len = os_strlen(svc_info);
5462 utf8_unescape(svc_info, len, svc_info, len);
5463 }
5464 }
5465
5466 return wpas_p2p_service_add_asp(wpa_s, auto_accept, adv_id, adv_str,
5467 (u8) svc_state, (u16) config_methods,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005468 svc_info, cpt_prio);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005469}
5470
5471
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005472static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
5473{
5474 char *pos;
5475
5476 pos = os_strchr(cmd, ' ');
5477 if (pos == NULL)
5478 return -1;
5479 *pos++ = '\0';
5480
5481 if (os_strcmp(cmd, "bonjour") == 0)
5482 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
5483 if (os_strcmp(cmd, "upnp") == 0)
5484 return p2p_ctrl_service_add_upnp(wpa_s, pos);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005485 if (os_strcmp(cmd, "asp") == 0)
5486 return p2p_ctrl_service_add_asp(wpa_s, 0, pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005487 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5488 return -1;
5489}
5490
5491
5492static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
5493 char *cmd)
5494{
5495 size_t len;
5496 struct wpabuf *query;
5497 int ret;
5498
5499 len = os_strlen(cmd);
5500 if (len & 1)
5501 return -1;
5502 len /= 2;
5503 query = wpabuf_alloc(len);
5504 if (query == NULL)
5505 return -1;
5506 if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5507 wpabuf_free(query);
5508 return -1;
5509 }
5510
5511 ret = wpas_p2p_service_del_bonjour(wpa_s, query);
5512 wpabuf_free(query);
5513 return ret;
5514}
5515
5516
5517static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5518{
5519 char *pos;
5520 u8 version;
5521
5522 pos = os_strchr(cmd, ' ');
5523 if (pos == NULL)
5524 return -1;
5525 *pos++ = '\0';
5526
5527 if (hexstr2bin(cmd, &version, 1) < 0)
5528 return -1;
5529
5530 return wpas_p2p_service_del_upnp(wpa_s, version, pos);
5531}
5532
5533
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005534static int p2p_ctrl_service_del_asp(struct wpa_supplicant *wpa_s, char *cmd)
5535{
5536 u32 adv_id;
5537
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07005538 if (os_strcmp(cmd, "all") == 0) {
5539 wpas_p2p_service_flush_asp(wpa_s);
5540 return 0;
5541 }
5542
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005543 if (sscanf(cmd, "%x", &adv_id) != 1)
5544 return -1;
5545
5546 return wpas_p2p_service_del_asp(wpa_s, adv_id);
5547}
5548
5549
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005550static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
5551{
5552 char *pos;
5553
5554 pos = os_strchr(cmd, ' ');
5555 if (pos == NULL)
5556 return -1;
5557 *pos++ = '\0';
5558
5559 if (os_strcmp(cmd, "bonjour") == 0)
5560 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
5561 if (os_strcmp(cmd, "upnp") == 0)
5562 return p2p_ctrl_service_del_upnp(wpa_s, pos);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08005563 if (os_strcmp(cmd, "asp") == 0)
5564 return p2p_ctrl_service_del_asp(wpa_s, pos);
5565 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5566 return -1;
5567}
5568
5569
5570static int p2p_ctrl_service_replace(struct wpa_supplicant *wpa_s, char *cmd)
5571{
5572 char *pos;
5573
5574 pos = os_strchr(cmd, ' ');
5575 if (pos == NULL)
5576 return -1;
5577 *pos++ = '\0';
5578
5579 if (os_strcmp(cmd, "asp") == 0)
5580 return p2p_ctrl_service_add_asp(wpa_s, 1, pos);
5581
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005582 wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5583 return -1;
5584}
5585
5586
5587static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
5588{
5589 u8 addr[ETH_ALEN];
5590
5591 /* <addr> */
5592
5593 if (hwaddr_aton(cmd, addr))
5594 return -1;
5595
5596 return wpas_p2p_reject(wpa_s, addr);
5597}
5598
5599
5600static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
5601{
5602 char *pos;
5603 int id;
5604 struct wpa_ssid *ssid;
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005605 u8 *_peer = NULL, peer[ETH_ALEN];
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005606 int freq = 0, pref_freq = 0;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005607 int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005608
5609 id = atoi(cmd);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07005610 pos = os_strstr(cmd, " peer=");
5611 if (pos) {
5612 pos += 6;
5613 if (hwaddr_aton(pos, peer))
5614 return -1;
5615 _peer = peer;
5616 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005617 ssid = wpa_config_get_network(wpa_s->conf, id);
5618 if (ssid == NULL || ssid->disabled != 2) {
5619 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5620 "for persistent P2P group",
5621 id);
5622 return -1;
5623 }
5624
Jouni Malinen31be0a42012-08-31 21:20:51 +03005625 pos = os_strstr(cmd, " freq=");
5626 if (pos) {
5627 pos += 6;
5628 freq = atoi(pos);
5629 if (freq <= 0)
5630 return -1;
5631 }
5632
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08005633 pos = os_strstr(cmd, " pref=");
5634 if (pos) {
5635 pos += 6;
5636 pref_freq = atoi(pos);
5637 if (pref_freq <= 0)
5638 return -1;
5639 }
5640
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07005641 vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
5642 ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
5643 vht;
Jouni Malinen31be0a42012-08-31 21:20:51 +03005644
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005645 pos = os_strstr(cmd, "freq2=");
5646 if (pos)
5647 freq2 = atoi(pos + 6);
5648
5649 pos = os_strstr(cmd, " max_oper_chwidth=");
5650 if (pos)
5651 chwidth = atoi(pos + 18);
5652
5653 max_oper_chwidth = parse_freq(chwidth, freq2);
5654 if (max_oper_chwidth < 0)
5655 return -1;
5656
5657 return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, freq2, ht40, vht,
5658 max_oper_chwidth, pref_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005659}
5660
5661
5662static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
5663{
5664 char *pos;
5665 u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
5666
5667 pos = os_strstr(cmd, " peer=");
5668 if (!pos)
5669 return -1;
5670
5671 *pos = '\0';
5672 pos += 6;
5673 if (hwaddr_aton(pos, peer)) {
5674 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
5675 return -1;
5676 }
5677
5678 pos = os_strstr(pos, " go_dev_addr=");
5679 if (pos) {
5680 pos += 13;
5681 if (hwaddr_aton(pos, go_dev_addr)) {
5682 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
5683 pos);
5684 return -1;
5685 }
5686 go_dev = go_dev_addr;
5687 }
5688
5689 return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
5690}
5691
5692
5693static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
5694{
5695 if (os_strncmp(cmd, "persistent=", 11) == 0)
5696 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
5697 if (os_strncmp(cmd, "group=", 6) == 0)
5698 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
5699
5700 return -1;
5701}
5702
5703
5704static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005705 int id, int freq, int vht_center_freq2,
5706 int ht40, int vht, int vht_chwidth)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005707{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005708 struct wpa_ssid *ssid;
5709
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005710 ssid = wpa_config_get_network(wpa_s->conf, id);
5711 if (ssid == NULL || ssid->disabled != 2) {
5712 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5713 "for persistent P2P group",
5714 id);
5715 return -1;
5716 }
5717
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005718 return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq,
5719 vht_center_freq2, 0, ht40, vht,
5720 vht_chwidth, NULL, 0, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005721}
5722
5723
5724static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
5725{
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005726 int freq = 0, persistent = 0, group_id = -1;
5727 int vht = wpa_s->conf->p2p_go_vht;
5728 int ht40 = wpa_s->conf->p2p_go_ht40 || vht;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005729 int max_oper_chwidth, chwidth = 0, freq2 = 0;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005730 char *token, *context = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005731
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005732 while ((token = str_token(cmd, " ", &context))) {
5733 if (sscanf(token, "freq=%d", &freq) == 1 ||
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005734 sscanf(token, "freq2=%d", &freq2) == 1 ||
5735 sscanf(token, "persistent=%d", &group_id) == 1 ||
5736 sscanf(token, "max_oper_chwidth=%d", &chwidth) == 1) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005737 continue;
5738 } else if (os_strcmp(token, "ht40") == 0) {
5739 ht40 = 1;
5740 } else if (os_strcmp(token, "vht") == 0) {
5741 vht = 1;
5742 ht40 = 1;
5743 } else if (os_strcmp(token, "persistent") == 0) {
5744 persistent = 1;
5745 } else {
5746 wpa_printf(MSG_DEBUG,
5747 "CTRL: Invalid P2P_GROUP_ADD parameter: '%s'",
5748 token);
5749 return -1;
5750 }
5751 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005752
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005753 max_oper_chwidth = parse_freq(chwidth, freq2);
5754 if (max_oper_chwidth < 0)
5755 return -1;
5756
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07005757 if (group_id >= 0)
5758 return p2p_ctrl_group_add_persistent(wpa_s, group_id,
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005759 freq, freq2, ht40, vht,
5760 max_oper_chwidth);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07005761
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08005762 return wpas_p2p_group_add(wpa_s, persistent, freq, freq2, ht40, vht,
5763 max_oper_chwidth);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005764}
5765
5766
5767static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
5768 char *buf, size_t buflen)
5769{
5770 u8 addr[ETH_ALEN], *addr_ptr;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005771 int next, res;
5772 const struct p2p_peer_info *info;
5773 char *pos, *end;
5774 char devtype[WPS_DEV_TYPE_BUFSIZE];
5775 struct wpa_ssid *ssid;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005776 size_t i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005777
5778 if (!wpa_s->global->p2p)
5779 return -1;
5780
5781 if (os_strcmp(cmd, "FIRST") == 0) {
5782 addr_ptr = NULL;
5783 next = 0;
5784 } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
5785 if (hwaddr_aton(cmd + 5, addr) < 0)
5786 return -1;
5787 addr_ptr = addr;
5788 next = 1;
5789 } else {
5790 if (hwaddr_aton(cmd, addr) < 0)
5791 return -1;
5792 addr_ptr = addr;
5793 next = 0;
5794 }
5795
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005796 info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
5797 if (info == NULL)
5798 return -1;
5799
5800 pos = buf;
5801 end = buf + buflen;
5802
5803 res = os_snprintf(pos, end - pos, MACSTR "\n"
5804 "pri_dev_type=%s\n"
5805 "device_name=%s\n"
5806 "manufacturer=%s\n"
5807 "model_name=%s\n"
5808 "model_number=%s\n"
5809 "serial_number=%s\n"
5810 "config_methods=0x%x\n"
5811 "dev_capab=0x%x\n"
5812 "group_capab=0x%x\n"
5813 "level=%d\n",
5814 MAC2STR(info->p2p_device_addr),
5815 wps_dev_type_bin2str(info->pri_dev_type,
5816 devtype, sizeof(devtype)),
5817 info->device_name,
5818 info->manufacturer,
5819 info->model_name,
5820 info->model_number,
5821 info->serial_number,
5822 info->config_methods,
5823 info->dev_capab,
5824 info->group_capab,
5825 info->level);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005826 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005827 return pos - buf;
5828 pos += res;
5829
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005830 for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
5831 {
5832 const u8 *t;
5833 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
5834 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
5835 wps_dev_type_bin2str(t, devtype,
5836 sizeof(devtype)));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005837 if (os_snprintf_error(end - pos, res))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08005838 return pos - buf;
5839 pos += res;
5840 }
5841
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005842 ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005843 if (ssid) {
5844 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005845 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005846 return pos - buf;
5847 pos += res;
5848 }
5849
5850 res = p2p_get_peer_info_txt(info, pos, end - pos);
5851 if (res < 0)
5852 return pos - buf;
5853 pos += res;
5854
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005855 if (info->vendor_elems) {
5856 res = os_snprintf(pos, end - pos, "vendor_elems=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005857 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005858 return pos - buf;
5859 pos += res;
5860
5861 pos += wpa_snprintf_hex(pos, end - pos,
5862 wpabuf_head(info->vendor_elems),
5863 wpabuf_len(info->vendor_elems));
5864
5865 res = os_snprintf(pos, end - pos, "\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08005866 if (os_snprintf_error(end - pos, res))
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07005867 return pos - buf;
5868 pos += res;
5869 }
5870
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005871 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005872}
5873
5874
Dmitry Shmidt04949592012-07-19 12:16:46 -07005875static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
5876 const char *param)
5877{
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005878 unsigned int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005879
5880 if (wpa_s->global->p2p == NULL)
5881 return -1;
5882
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005883 if (freq_range_list_parse(&wpa_s->global->p2p_disallow_freq, param) < 0)
5884 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07005885
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005886 for (i = 0; i < wpa_s->global->p2p_disallow_freq.num; i++) {
5887 struct wpa_freq_range *freq;
5888 freq = &wpa_s->global->p2p_disallow_freq.range[i];
Dmitry Shmidt04949592012-07-19 12:16:46 -07005889 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -07005890 freq->min, freq->max);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005891 }
5892
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08005893 wpas_p2p_update_channel_list(wpa_s, WPAS_P2P_CHANNEL_UPDATE_DISALLOW);
Dmitry Shmidt04949592012-07-19 12:16:46 -07005894 return 0;
5895}
5896
5897
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005898static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
5899{
5900 char *param;
5901
5902 if (wpa_s->global->p2p == NULL)
5903 return -1;
5904
5905 param = os_strchr(cmd, ' ');
5906 if (param == NULL)
5907 return -1;
5908 *param++ = '\0';
5909
5910 if (os_strcmp(cmd, "discoverability") == 0) {
5911 p2p_set_client_discoverability(wpa_s->global->p2p,
5912 atoi(param));
5913 return 0;
5914 }
5915
5916 if (os_strcmp(cmd, "managed") == 0) {
5917 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
5918 return 0;
5919 }
5920
5921 if (os_strcmp(cmd, "listen_channel") == 0) {
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08005922 char *pos;
5923 u8 channel, op_class;
5924
5925 channel = atoi(param);
5926 pos = os_strchr(param, ' ');
5927 op_class = pos ? atoi(pos) : 81;
5928
5929 return p2p_set_listen_channel(wpa_s->global->p2p, op_class,
5930 channel, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005931 }
5932
5933 if (os_strcmp(cmd, "ssid_postfix") == 0) {
5934 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
5935 os_strlen(param));
5936 }
5937
5938 if (os_strcmp(cmd, "noa") == 0) {
5939 char *pos;
5940 int count, start, duration;
5941 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
5942 count = atoi(param);
5943 pos = os_strchr(param, ',');
5944 if (pos == NULL)
5945 return -1;
5946 pos++;
5947 start = atoi(pos);
5948 pos = os_strchr(pos, ',');
5949 if (pos == NULL)
5950 return -1;
5951 pos++;
5952 duration = atoi(pos);
5953 if (count < 0 || count > 255 || start < 0 || duration < 0)
5954 return -1;
5955 if (count == 0 && duration > 0)
5956 return -1;
5957 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
5958 "start=%d duration=%d", count, start, duration);
5959 return wpas_p2p_set_noa(wpa_s, count, start, duration);
5960 }
5961
5962 if (os_strcmp(cmd, "ps") == 0)
5963 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
5964
5965 if (os_strcmp(cmd, "oppps") == 0)
5966 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
5967
5968 if (os_strcmp(cmd, "ctwindow") == 0)
5969 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
5970
5971 if (os_strcmp(cmd, "disabled") == 0) {
5972 wpa_s->global->p2p_disabled = atoi(param);
5973 wpa_printf(MSG_DEBUG, "P2P functionality %s",
5974 wpa_s->global->p2p_disabled ?
5975 "disabled" : "enabled");
5976 if (wpa_s->global->p2p_disabled) {
5977 wpas_p2p_stop_find(wpa_s);
5978 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
5979 p2p_flush(wpa_s->global->p2p);
5980 }
5981 return 0;
5982 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005983
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005984 if (os_strcmp(cmd, "conc_pref") == 0) {
5985 if (os_strcmp(param, "sta") == 0)
5986 wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
5987 else if (os_strcmp(param, "p2p") == 0)
5988 wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005989 else {
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005990 wpa_printf(MSG_INFO, "Invalid conc_pref value");
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005991 return -1;
5992 }
Dmitry Shmidt2fb777c2012-05-02 12:29:53 -07005993 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
Dmitry Shmidt04949592012-07-19 12:16:46 -07005994 "%s", param);
Dmitry Shmidt687922c2012-03-26 14:02:32 -07005995 return 0;
5996 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07005997
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07005998 if (os_strcmp(cmd, "force_long_sd") == 0) {
5999 wpa_s->force_long_sd = atoi(param);
6000 return 0;
6001 }
6002
6003 if (os_strcmp(cmd, "peer_filter") == 0) {
6004 u8 addr[ETH_ALEN];
6005 if (hwaddr_aton(param, addr))
6006 return -1;
6007 p2p_set_peer_filter(wpa_s->global->p2p, addr);
6008 return 0;
6009 }
6010
6011 if (os_strcmp(cmd, "cross_connect") == 0)
6012 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
6013
6014 if (os_strcmp(cmd, "go_apsd") == 0) {
6015 if (os_strcmp(param, "disable") == 0)
6016 wpa_s->set_ap_uapsd = 0;
6017 else {
6018 wpa_s->set_ap_uapsd = 1;
6019 wpa_s->ap_uapsd = atoi(param);
6020 }
6021 return 0;
6022 }
6023
6024 if (os_strcmp(cmd, "client_apsd") == 0) {
6025 if (os_strcmp(param, "disable") == 0)
6026 wpa_s->set_sta_uapsd = 0;
6027 else {
6028 int be, bk, vi, vo;
6029 char *pos;
6030 /* format: BE,BK,VI,VO;max SP Length */
6031 be = atoi(param);
6032 pos = os_strchr(param, ',');
6033 if (pos == NULL)
6034 return -1;
6035 pos++;
6036 bk = atoi(pos);
6037 pos = os_strchr(pos, ',');
6038 if (pos == NULL)
6039 return -1;
6040 pos++;
6041 vi = atoi(pos);
6042 pos = os_strchr(pos, ',');
6043 if (pos == NULL)
6044 return -1;
6045 pos++;
6046 vo = atoi(pos);
6047 /* ignore max SP Length for now */
6048
6049 wpa_s->set_sta_uapsd = 1;
6050 wpa_s->sta_uapsd = 0;
6051 if (be)
6052 wpa_s->sta_uapsd |= BIT(0);
6053 if (bk)
6054 wpa_s->sta_uapsd |= BIT(1);
6055 if (vi)
6056 wpa_s->sta_uapsd |= BIT(2);
6057 if (vo)
6058 wpa_s->sta_uapsd |= BIT(3);
6059 }
6060 return 0;
6061 }
6062
Dmitry Shmidt04949592012-07-19 12:16:46 -07006063 if (os_strcmp(cmd, "disallow_freq") == 0)
6064 return p2p_ctrl_disallow_freq(wpa_s, param);
6065
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08006066 if (os_strcmp(cmd, "disc_int") == 0) {
6067 int min_disc_int, max_disc_int, max_disc_tu;
6068 char *pos;
6069
6070 pos = param;
6071
6072 min_disc_int = atoi(pos);
6073 pos = os_strchr(pos, ' ');
6074 if (pos == NULL)
6075 return -1;
6076 *pos++ = '\0';
6077
6078 max_disc_int = atoi(pos);
6079 pos = os_strchr(pos, ' ');
6080 if (pos == NULL)
6081 return -1;
6082 *pos++ = '\0';
6083
6084 max_disc_tu = atoi(pos);
6085
6086 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
6087 max_disc_int, max_disc_tu);
6088 }
6089
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006090 if (os_strcmp(cmd, "per_sta_psk") == 0) {
6091 wpa_s->global->p2p_per_sta_psk = !!atoi(param);
6092 return 0;
6093 }
6094
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08006095#ifdef CONFIG_WPS_NFC
6096 if (os_strcmp(cmd, "nfc_tag") == 0)
6097 return wpas_p2p_nfc_tag_enabled(wpa_s, !!atoi(param));
6098#endif /* CONFIG_WPS_NFC */
6099
6100 if (os_strcmp(cmd, "disable_ip_addr_req") == 0) {
6101 wpa_s->p2p_disable_ip_addr_req = !!atoi(param);
6102 return 0;
6103 }
6104
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006105 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
6106 cmd);
6107
6108 return -1;
6109}
6110
6111
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006112static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
6113{
6114 os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
6115 wpa_s->force_long_sd = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006116 wpas_p2p_stop_find(wpa_s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006117 wpa_s->parent->p2ps_method_config_any = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006118 if (wpa_s->global->p2p)
6119 p2p_flush(wpa_s->global->p2p);
6120}
6121
6122
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006123static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
6124{
6125 char *pos, *pos2;
6126 unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
6127
6128 if (cmd[0]) {
6129 pos = os_strchr(cmd, ' ');
6130 if (pos == NULL)
6131 return -1;
6132 *pos++ = '\0';
6133 dur1 = atoi(cmd);
6134
6135 pos2 = os_strchr(pos, ' ');
6136 if (pos2)
6137 *pos2++ = '\0';
6138 int1 = atoi(pos);
6139 } else
6140 pos2 = NULL;
6141
6142 if (pos2) {
6143 pos = os_strchr(pos2, ' ');
6144 if (pos == NULL)
6145 return -1;
6146 *pos++ = '\0';
6147 dur2 = atoi(pos2);
6148 int2 = atoi(pos);
6149 }
6150
6151 return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
6152}
6153
6154
6155static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
6156{
6157 char *pos;
6158 unsigned int period = 0, interval = 0;
6159
6160 if (cmd[0]) {
6161 pos = os_strchr(cmd, ' ');
6162 if (pos == NULL)
6163 return -1;
6164 *pos++ = '\0';
6165 period = atoi(cmd);
6166 interval = atoi(pos);
6167 }
6168
6169 return wpas_p2p_ext_listen(wpa_s, period, interval);
6170}
6171
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07006172
6173static int p2p_ctrl_remove_client(struct wpa_supplicant *wpa_s, const char *cmd)
6174{
6175 const char *pos;
6176 u8 peer[ETH_ALEN];
6177 int iface_addr = 0;
6178
6179 pos = cmd;
6180 if (os_strncmp(pos, "iface=", 6) == 0) {
6181 iface_addr = 1;
6182 pos += 6;
6183 }
6184 if (hwaddr_aton(pos, peer))
6185 return -1;
6186
6187 wpas_p2p_remove_client(wpa_s, peer, iface_addr);
6188 return 0;
6189}
6190
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006191#endif /* CONFIG_P2P */
6192
6193
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006194static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s, char *val)
6195{
6196 struct wpa_freq_range_list ranges;
6197 int *freqs = NULL;
6198 struct hostapd_hw_modes *mode;
6199 u16 i;
6200
6201 if (wpa_s->hw.modes == NULL)
6202 return NULL;
6203
6204 os_memset(&ranges, 0, sizeof(ranges));
6205 if (freq_range_list_parse(&ranges, val) < 0)
6206 return NULL;
6207
6208 for (i = 0; i < wpa_s->hw.num_modes; i++) {
6209 int j;
6210
6211 mode = &wpa_s->hw.modes[i];
6212 for (j = 0; j < mode->num_channels; j++) {
6213 unsigned int freq;
6214
6215 if (mode->channels[j].flag & HOSTAPD_CHAN_DISABLED)
6216 continue;
6217
6218 freq = mode->channels[j].freq;
6219 if (!freq_range_list_includes(&ranges, freq))
6220 continue;
6221
6222 int_array_add_unique(&freqs, freq);
6223 }
6224 }
6225
6226 os_free(ranges.range);
6227 return freqs;
6228}
6229
6230
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006231#ifdef CONFIG_INTERWORKING
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006232
6233static int ctrl_interworking_select(struct wpa_supplicant *wpa_s, char *param)
6234{
6235 int auto_sel = 0;
6236 int *freqs = NULL;
6237
6238 if (param) {
6239 char *pos;
6240
6241 auto_sel = os_strstr(param, "auto") != NULL;
6242
6243 pos = os_strstr(param, "freq=");
6244 if (pos) {
6245 freqs = freq_range_to_channel_list(wpa_s, pos + 5);
6246 if (freqs == NULL)
6247 return -1;
6248 }
6249
6250 }
6251
6252 return interworking_select(wpa_s, auto_sel, freqs);
6253}
6254
6255
Dmitry Shmidt7f656022015-02-25 14:36:37 -08006256static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst,
6257 int only_add)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006258{
6259 u8 bssid[ETH_ALEN];
6260 struct wpa_bss *bss;
6261
6262 if (hwaddr_aton(dst, bssid)) {
6263 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
6264 return -1;
6265 }
6266
6267 bss = wpa_bss_get_bssid(wpa_s, bssid);
6268 if (bss == NULL) {
6269 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
6270 MAC2STR(bssid));
6271 return -1;
6272 }
6273
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006274 if (bss->ssid_len == 0) {
6275 int found = 0;
6276
6277 wpa_printf(MSG_DEBUG, "Selected BSS entry for " MACSTR
6278 " does not have SSID information", MAC2STR(bssid));
6279
6280 dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss,
6281 list) {
6282 if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
6283 bss->ssid_len > 0) {
6284 found = 1;
6285 break;
6286 }
6287 }
6288
6289 if (!found)
6290 return -1;
6291 wpa_printf(MSG_DEBUG,
6292 "Found another matching BSS entry with SSID");
6293 }
6294
Dmitry Shmidt7f656022015-02-25 14:36:37 -08006295 return interworking_connect(wpa_s, bss, only_add);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006296}
6297
6298
6299static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
6300{
6301 u8 dst_addr[ETH_ALEN];
6302 int used;
6303 char *pos;
6304#define MAX_ANQP_INFO_ID 100
6305 u16 id[MAX_ANQP_INFO_ID];
6306 size_t num_id = 0;
Dmitry Shmidt15907092014-03-25 10:42:57 -07006307 u32 subtypes = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006308
6309 used = hwaddr_aton2(dst, dst_addr);
6310 if (used < 0)
6311 return -1;
6312 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006313 if (*pos == ' ')
6314 pos++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006315 while (num_id < MAX_ANQP_INFO_ID) {
Dmitry Shmidt15907092014-03-25 10:42:57 -07006316 if (os_strncmp(pos, "hs20:", 5) == 0) {
6317#ifdef CONFIG_HS20
6318 int num = atoi(pos + 5);
6319 if (num <= 0 || num > 31)
6320 return -1;
6321 subtypes |= BIT(num);
6322#else /* CONFIG_HS20 */
6323 return -1;
6324#endif /* CONFIG_HS20 */
6325 } else {
6326 id[num_id] = atoi(pos);
6327 if (id[num_id])
6328 num_id++;
6329 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006330 pos = os_strchr(pos + 1, ',');
6331 if (pos == NULL)
6332 break;
6333 pos++;
6334 }
6335
6336 if (num_id == 0)
6337 return -1;
6338
Dmitry Shmidt15907092014-03-25 10:42:57 -07006339 return anqp_send_req(wpa_s, dst_addr, id, num_id, subtypes);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006340}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006341
6342
6343static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
6344{
6345 u8 dst_addr[ETH_ALEN];
6346 struct wpabuf *advproto, *query = NULL;
6347 int used, ret = -1;
6348 char *pos, *end;
6349 size_t len;
6350
6351 used = hwaddr_aton2(cmd, dst_addr);
6352 if (used < 0)
6353 return -1;
6354
6355 pos = cmd + used;
6356 while (*pos == ' ')
6357 pos++;
6358
6359 /* Advertisement Protocol ID */
6360 end = os_strchr(pos, ' ');
6361 if (end)
6362 len = end - pos;
6363 else
6364 len = os_strlen(pos);
6365 if (len & 0x01)
6366 return -1;
6367 len /= 2;
6368 if (len == 0)
6369 return -1;
6370 advproto = wpabuf_alloc(len);
6371 if (advproto == NULL)
6372 return -1;
6373 if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
6374 goto fail;
6375
6376 if (end) {
6377 /* Optional Query Request */
6378 pos = end + 1;
6379 while (*pos == ' ')
6380 pos++;
6381
6382 len = os_strlen(pos);
6383 if (len) {
6384 if (len & 0x01)
6385 goto fail;
6386 len /= 2;
6387 if (len == 0)
6388 goto fail;
6389 query = wpabuf_alloc(len);
6390 if (query == NULL)
6391 goto fail;
6392 if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
6393 goto fail;
6394 }
6395 }
6396
6397 ret = gas_send_request(wpa_s, dst_addr, advproto, query);
6398
6399fail:
6400 wpabuf_free(advproto);
6401 wpabuf_free(query);
6402
6403 return ret;
6404}
6405
6406
6407static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
6408 size_t buflen)
6409{
6410 u8 addr[ETH_ALEN];
6411 int dialog_token;
6412 int used;
6413 char *pos;
6414 size_t resp_len, start, requested_len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006415 struct wpabuf *resp;
6416 int ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006417
6418 used = hwaddr_aton2(cmd, addr);
6419 if (used < 0)
6420 return -1;
6421
6422 pos = cmd + used;
6423 while (*pos == ' ')
6424 pos++;
6425 dialog_token = atoi(pos);
6426
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006427 if (wpa_s->last_gas_resp &&
6428 os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) == 0 &&
6429 dialog_token == wpa_s->last_gas_dialog_token)
6430 resp = wpa_s->last_gas_resp;
6431 else if (wpa_s->prev_gas_resp &&
6432 os_memcmp(addr, wpa_s->prev_gas_addr, ETH_ALEN) == 0 &&
6433 dialog_token == wpa_s->prev_gas_dialog_token)
6434 resp = wpa_s->prev_gas_resp;
6435 else
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006436 return -1;
6437
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006438 resp_len = wpabuf_len(resp);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006439 start = 0;
6440 requested_len = resp_len;
6441
6442 pos = os_strchr(pos, ' ');
6443 if (pos) {
6444 start = atoi(pos);
6445 if (start > resp_len)
6446 return os_snprintf(buf, buflen, "FAIL-Invalid range");
6447 pos = os_strchr(pos, ',');
6448 if (pos == NULL)
6449 return -1;
6450 pos++;
6451 requested_len = atoi(pos);
6452 if (start + requested_len > resp_len)
6453 return os_snprintf(buf, buflen, "FAIL-Invalid range");
6454 }
6455
6456 if (requested_len * 2 + 1 > buflen)
6457 return os_snprintf(buf, buflen, "FAIL-Too long response");
6458
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08006459 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(resp) + start,
6460 requested_len);
6461
6462 if (start + requested_len == resp_len) {
6463 /*
6464 * Free memory by dropping the response after it has been
6465 * fetched.
6466 */
6467 if (resp == wpa_s->prev_gas_resp) {
6468 wpabuf_free(wpa_s->prev_gas_resp);
6469 wpa_s->prev_gas_resp = NULL;
6470 } else {
6471 wpabuf_free(wpa_s->last_gas_resp);
6472 wpa_s->last_gas_resp = NULL;
6473 }
6474 }
6475
6476 return ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07006477}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006478#endif /* CONFIG_INTERWORKING */
6479
6480
Dmitry Shmidt04949592012-07-19 12:16:46 -07006481#ifdef CONFIG_HS20
6482
6483static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
6484{
6485 u8 dst_addr[ETH_ALEN];
6486 int used;
6487 char *pos;
6488 u32 subtypes = 0;
6489
6490 used = hwaddr_aton2(dst, dst_addr);
6491 if (used < 0)
6492 return -1;
6493 pos = dst + used;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006494 if (*pos == ' ')
6495 pos++;
Dmitry Shmidt04949592012-07-19 12:16:46 -07006496 for (;;) {
6497 int num = atoi(pos);
6498 if (num <= 0 || num > 31)
6499 return -1;
6500 subtypes |= BIT(num);
6501 pos = os_strchr(pos + 1, ',');
6502 if (pos == NULL)
6503 break;
6504 pos++;
6505 }
6506
6507 if (subtypes == 0)
6508 return -1;
6509
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006510 return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006511}
6512
6513
6514static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6515 const u8 *addr, const char *realm)
6516{
6517 u8 *buf;
6518 size_t rlen, len;
6519 int ret;
6520
6521 rlen = os_strlen(realm);
6522 len = 3 + rlen;
6523 buf = os_malloc(len);
6524 if (buf == NULL)
6525 return -1;
6526 buf[0] = 1; /* NAI Home Realm Count */
6527 buf[1] = 0; /* Formatted in accordance with RFC 4282 */
6528 buf[2] = rlen;
6529 os_memcpy(buf + 3, realm, rlen);
6530
6531 ret = hs20_anqp_send_req(wpa_s, addr,
6532 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006533 buf, len, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006534
6535 os_free(buf);
6536
6537 return ret;
6538}
6539
6540
6541static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6542 char *dst)
6543{
6544 struct wpa_cred *cred = wpa_s->conf->cred;
6545 u8 dst_addr[ETH_ALEN];
6546 int used;
6547 u8 *buf;
6548 size_t len;
6549 int ret;
6550
6551 used = hwaddr_aton2(dst, dst_addr);
6552 if (used < 0)
6553 return -1;
6554
6555 while (dst[used] == ' ')
6556 used++;
6557 if (os_strncmp(dst + used, "realm=", 6) == 0)
6558 return hs20_nai_home_realm_list(wpa_s, dst_addr,
6559 dst + used + 6);
6560
6561 len = os_strlen(dst + used);
6562
6563 if (len == 0 && cred && cred->realm)
6564 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
6565
Dmitry Shmidt623d63a2014-06-13 11:05:14 -07006566 if (len & 1)
Dmitry Shmidt04949592012-07-19 12:16:46 -07006567 return -1;
6568 len /= 2;
6569 buf = os_malloc(len);
6570 if (buf == NULL)
6571 return -1;
6572 if (hexstr2bin(dst + used, buf, len) < 0) {
6573 os_free(buf);
6574 return -1;
6575 }
6576
6577 ret = hs20_anqp_send_req(wpa_s, dst_addr,
6578 BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006579 buf, len, 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07006580 os_free(buf);
6581
6582 return ret;
6583}
6584
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006585
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006586static int get_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd, char *reply,
6587 int buflen)
6588{
6589 u8 dst_addr[ETH_ALEN];
6590 int used;
6591 char *ctx = NULL, *icon, *poffset, *psize;
6592
6593 used = hwaddr_aton2(cmd, dst_addr);
6594 if (used < 0)
6595 return -1;
6596 cmd += used;
6597
6598 icon = str_token(cmd, " ", &ctx);
6599 poffset = str_token(cmd, " ", &ctx);
6600 psize = str_token(cmd, " ", &ctx);
6601 if (!icon || !poffset || !psize)
6602 return -1;
6603
6604 wpa_s->fetch_osu_icon_in_progress = 0;
6605 return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize),
6606 reply, buflen);
6607}
6608
6609
6610static int del_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd)
6611{
6612 u8 dst_addr[ETH_ALEN];
6613 int used;
6614 char *icon;
6615
6616 if (!cmd[0])
6617 return hs20_del_icon(wpa_s, NULL, NULL);
6618
6619 used = hwaddr_aton2(cmd, dst_addr);
6620 if (used < 0)
6621 return -1;
6622
6623 while (cmd[used] == ' ')
6624 used++;
6625 icon = cmd[used] ? &cmd[used] : NULL;
6626
6627 return hs20_del_icon(wpa_s, dst_addr, icon);
6628}
6629
6630
6631static int hs20_icon_request(struct wpa_supplicant *wpa_s, char *cmd, int inmem)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006632{
6633 u8 dst_addr[ETH_ALEN];
6634 int used;
6635 char *icon;
6636
6637 used = hwaddr_aton2(cmd, dst_addr);
6638 if (used < 0)
6639 return -1;
6640
6641 while (cmd[used] == ' ')
6642 used++;
6643 icon = &cmd[used];
6644
6645 wpa_s->fetch_osu_icon_in_progress = 0;
6646 return hs20_anqp_send_req(wpa_s, dst_addr, BIT(HS20_STYPE_ICON_REQUEST),
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006647 (u8 *) icon, os_strlen(icon), inmem);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08006648}
6649
Dmitry Shmidt04949592012-07-19 12:16:46 -07006650#endif /* CONFIG_HS20 */
6651
6652
Dmitry Shmidt04949592012-07-19 12:16:46 -07006653#ifdef CONFIG_AUTOSCAN
6654
6655static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
6656 char *cmd)
6657{
6658 enum wpa_states state = wpa_s->wpa_state;
6659 char *new_params = NULL;
6660
6661 if (os_strlen(cmd) > 0) {
6662 new_params = os_strdup(cmd);
6663 if (new_params == NULL)
6664 return -1;
6665 }
6666
6667 os_free(wpa_s->conf->autoscan);
6668 wpa_s->conf->autoscan = new_params;
6669
6670 if (wpa_s->conf->autoscan == NULL)
6671 autoscan_deinit(wpa_s);
6672 else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
6673 autoscan_init(wpa_s, 1);
6674 else if (state == WPA_SCANNING)
6675 wpa_supplicant_reinit_autoscan(wpa_s);
6676
6677 return 0;
6678}
6679
6680#endif /* CONFIG_AUTOSCAN */
6681
6682
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006683#ifdef CONFIG_WNM
6684
6685static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
6686{
6687 int enter;
6688 int intval = 0;
6689 char *pos;
6690 int ret;
6691 struct wpabuf *tfs_req = NULL;
6692
6693 if (os_strncmp(cmd, "enter", 5) == 0)
6694 enter = 1;
6695 else if (os_strncmp(cmd, "exit", 4) == 0)
6696 enter = 0;
6697 else
6698 return -1;
6699
6700 pos = os_strstr(cmd, " interval=");
6701 if (pos)
6702 intval = atoi(pos + 10);
6703
6704 pos = os_strstr(cmd, " tfs_req=");
6705 if (pos) {
6706 char *end;
6707 size_t len;
6708 pos += 9;
6709 end = os_strchr(pos, ' ');
6710 if (end)
6711 len = end - pos;
6712 else
6713 len = os_strlen(pos);
6714 if (len & 1)
6715 return -1;
6716 len /= 2;
6717 tfs_req = wpabuf_alloc(len);
6718 if (tfs_req == NULL)
6719 return -1;
6720 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
6721 wpabuf_free(tfs_req);
6722 return -1;
6723 }
6724 }
6725
6726 ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
6727 WNM_SLEEP_MODE_EXIT, intval,
6728 tfs_req);
6729 wpabuf_free(tfs_req);
6730
6731 return ret;
6732}
6733
Dmitry Shmidt44c95782013-05-17 09:51:35 -07006734
6735static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
6736{
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08006737 int query_reason, list = 0;
Dmitry Shmidt44c95782013-05-17 09:51:35 -07006738
6739 query_reason = atoi(cmd);
6740
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08006741 cmd = os_strchr(cmd, ' ');
6742 if (cmd) {
6743 cmd++;
6744 if (os_strncmp(cmd, "list", 4) == 0) {
6745 list = 1;
6746 } else {
6747 wpa_printf(MSG_DEBUG, "WNM Query: Invalid option %s",
6748 cmd);
6749 return -1;
6750 }
6751 }
Dmitry Shmidt44c95782013-05-17 09:51:35 -07006752
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08006753 wpa_printf(MSG_DEBUG,
6754 "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d%s",
6755 query_reason, list ? " candidate list" : "");
6756
6757 return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason, list);
Dmitry Shmidt44c95782013-05-17 09:51:35 -07006758}
6759
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08006760#endif /* CONFIG_WNM */
6761
6762
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006763static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
6764 size_t buflen)
6765{
6766 struct wpa_signal_info si;
6767 int ret;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006768 char *pos, *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006769
6770 ret = wpa_drv_signal_poll(wpa_s, &si);
6771 if (ret)
6772 return -1;
6773
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006774 pos = buf;
6775 end = buf + buflen;
6776
6777 ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006778 "NOISE=%d\nFREQUENCY=%u\n",
6779 si.current_signal, si.current_txrate / 1000,
6780 si.current_noise, si.frequency);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006781 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006782 return -1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006783 pos += ret;
6784
6785 if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
6786 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07006787 channel_width_to_string(si.chanwidth));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006788 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006789 return -1;
6790 pos += ret;
6791 }
6792
6793 if (si.center_frq1 > 0 && si.center_frq2 > 0) {
6794 ret = os_snprintf(pos, end - pos,
6795 "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
6796 si.center_frq1, si.center_frq2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006797 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006798 return -1;
6799 pos += ret;
6800 }
6801
6802 if (si.avg_signal) {
6803 ret = os_snprintf(pos, end - pos,
6804 "AVG_RSSI=%d\n", si.avg_signal);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006805 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006806 return -1;
6807 pos += ret;
6808 }
6809
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07006810 if (si.avg_beacon_signal) {
6811 ret = os_snprintf(pos, end - pos,
6812 "AVG_BEACON_RSSI=%d\n", si.avg_beacon_signal);
6813 if (os_snprintf_error(end - pos, ret))
6814 return -1;
6815 pos += ret;
6816 }
6817
Dmitry Shmidt34af3062013-07-11 10:46:32 -07006818 return pos - buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07006819}
6820
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006821
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08006822static int wpas_ctrl_iface_signal_monitor(struct wpa_supplicant *wpa_s,
6823 const char *cmd)
6824{
6825 const char *pos;
6826 int threshold = 0;
6827 int hysteresis = 0;
6828
6829 if (wpa_s->bgscan && wpa_s->bgscan_priv) {
6830 wpa_printf(MSG_DEBUG,
6831 "Reject SIGNAL_MONITOR command - bgscan is active");
6832 return -1;
6833 }
6834 pos = os_strstr(cmd, "THRESHOLD=");
6835 if (pos)
6836 threshold = atoi(pos + 10);
6837 pos = os_strstr(cmd, "HYSTERESIS=");
6838 if (pos)
6839 hysteresis = atoi(pos + 11);
6840 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis);
6841}
6842
6843
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08006844static int wpas_ctrl_iface_get_pref_freq_list(
6845 struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
6846{
6847 unsigned int freq_list[100], num = 100, i;
6848 int ret;
6849 enum wpa_driver_if_type iface_type;
6850 char *pos, *end;
6851
6852 pos = buf;
6853 end = buf + buflen;
6854
6855 /* buf: "<interface_type>" */
6856 if (os_strcmp(cmd, "STATION") == 0)
6857 iface_type = WPA_IF_STATION;
6858 else if (os_strcmp(cmd, "AP") == 0)
6859 iface_type = WPA_IF_AP_BSS;
6860 else if (os_strcmp(cmd, "P2P_GO") == 0)
6861 iface_type = WPA_IF_P2P_GO;
6862 else if (os_strcmp(cmd, "P2P_CLIENT") == 0)
6863 iface_type = WPA_IF_P2P_CLIENT;
6864 else if (os_strcmp(cmd, "IBSS") == 0)
6865 iface_type = WPA_IF_IBSS;
6866 else if (os_strcmp(cmd, "TDLS") == 0)
6867 iface_type = WPA_IF_TDLS;
6868 else
6869 return -1;
6870
6871 wpa_printf(MSG_DEBUG,
6872 "CTRL_IFACE: GET_PREF_FREQ_LIST iface_type=%d (%s)",
6873 iface_type, buf);
6874
6875 ret = wpa_drv_get_pref_freq_list(wpa_s, iface_type, &num, freq_list);
6876 if (ret)
6877 return -1;
6878
6879 for (i = 0; i < num; i++) {
6880 ret = os_snprintf(pos, end - pos, "%s%u",
6881 i > 0 ? "," : "", freq_list[i]);
6882 if (os_snprintf_error(end - pos, ret))
6883 return -1;
6884 pos += ret;
6885 }
6886
6887 return pos - buf;
6888}
6889
6890
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006891static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
6892 size_t buflen)
6893{
6894 struct hostap_sta_driver_data sta;
6895 int ret;
6896
6897 ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
6898 if (ret)
6899 return -1;
6900
6901 ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
Jouni Malinen1e6c57f2012-09-05 17:07:03 +03006902 sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006903 if (os_snprintf_error(buflen, ret))
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07006904 return -1;
6905 return ret;
6906}
6907
6908
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08006909#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006910static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6911 char *buf, size_t buflen)
6912{
6913 int ret;
6914
6915 ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006916 if (ret == 0) {
6917 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) {
6918 struct p2p_data *p2p = wpa_s->global->p2p;
6919 if (p2p) {
6920 char country[3];
6921 country[0] = cmd[8];
6922 country[1] = cmd[9];
6923 country[2] = 0x04;
6924 p2p_set_country(p2p, country);
6925 }
6926 }
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006927 ret = os_snprintf(buf, buflen, "%s\n", "OK");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08006928 if (os_snprintf_error(buflen, ret))
6929 ret = -1;
Dmitry Shmidt9432e122013-09-12 12:39:30 -07006930 }
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006931 return ret;
6932}
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08006933#endif /* ANDROID */
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07006934
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07006935
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006936static int wpa_supplicant_vendor_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6937 char *buf, size_t buflen)
6938{
6939 int ret;
6940 char *pos;
6941 u8 *data = NULL;
6942 unsigned int vendor_id, subcmd;
6943 struct wpabuf *reply;
6944 size_t data_len = 0;
6945
6946 /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
6947 vendor_id = strtoul(cmd, &pos, 16);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08006948 if (!isblank((unsigned char) *pos))
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006949 return -EINVAL;
6950
6951 subcmd = strtoul(pos, &pos, 10);
6952
6953 if (*pos != '\0') {
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08006954 if (!isblank((unsigned char) *pos++))
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006955 return -EINVAL;
6956 data_len = os_strlen(pos);
6957 }
6958
6959 if (data_len) {
6960 data_len /= 2;
6961 data = os_malloc(data_len);
6962 if (!data)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006963 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006964
6965 if (hexstr2bin(pos, data, data_len)) {
6966 wpa_printf(MSG_DEBUG,
6967 "Vendor command: wrong parameter format");
6968 os_free(data);
6969 return -EINVAL;
6970 }
6971 }
6972
6973 reply = wpabuf_alloc((buflen - 1) / 2);
6974 if (!reply) {
6975 os_free(data);
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07006976 return -1;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08006977 }
6978
6979 ret = wpa_drv_vendor_cmd(wpa_s, vendor_id, subcmd, data, data_len,
6980 reply);
6981
6982 if (ret == 0)
6983 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
6984 wpabuf_len(reply));
6985
6986 wpabuf_free(reply);
6987 os_free(data);
6988
6989 return ret;
6990}
6991
6992
Dmitry Shmidt444d5672013-04-01 13:08:44 -07006993static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
6994{
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08006995#ifdef CONFIG_P2P
6996 struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s ?
6997 wpa_s->global->p2p_init_wpa_s : wpa_s;
6998#endif /* CONFIG_P2P */
6999
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007000 wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
7001
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007002 wpas_abort_ongoing_scan(wpa_s);
7003
Dmitry Shmidtde47be72016-01-07 12:52:55 -08007004 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
7005 /*
7006 * Avoid possible auto connect re-connection on getting
7007 * disconnected due to state flush.
7008 */
7009 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
7010 }
7011
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007012#ifdef CONFIG_P2P
Dmitry Shmidtde47be72016-01-07 12:52:55 -08007013 wpas_p2p_group_remove(p2p_wpa_s, "*");
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007014 wpas_p2p_cancel(p2p_wpa_s);
7015 p2p_ctrl_flush(p2p_wpa_s);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007016 wpas_p2p_service_flush(p2p_wpa_s);
7017 p2p_wpa_s->global->p2p_disabled = 0;
7018 p2p_wpa_s->global->p2p_per_sta_psk = 0;
7019 p2p_wpa_s->conf->num_sec_device_types = 0;
7020 p2p_wpa_s->p2p_disable_ip_addr_req = 0;
7021 os_free(p2p_wpa_s->global->p2p_go_avoid_freq.range);
7022 p2p_wpa_s->global->p2p_go_avoid_freq.range = NULL;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007023 p2p_wpa_s->global->p2p_go_avoid_freq.num = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08007024 p2p_wpa_s->global->pending_p2ps_group = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007025 p2p_wpa_s->global->pending_p2ps_group_freq = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007026#endif /* CONFIG_P2P */
7027
7028#ifdef CONFIG_WPS_TESTING
7029 wps_version_number = 0x20;
7030 wps_testing_dummy_cred = 0;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08007031 wps_corrupt_pkhash = 0;
Dmitry Shmidtde47be72016-01-07 12:52:55 -08007032 wps_force_auth_types_in_use = 0;
7033 wps_force_encr_types_in_use = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007034#endif /* CONFIG_WPS_TESTING */
7035#ifdef CONFIG_WPS
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007036 wpa_s->wps_fragment_size = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007037 wpas_wps_cancel(wpa_s);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007038 wps_registrar_flush(wpa_s->wps->registrar);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007039#endif /* CONFIG_WPS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07007040 wpa_s->after_wps = 0;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07007041 wpa_s->known_wps_freq = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007042
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007043#ifdef CONFIG_TDLS
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007044#ifdef CONFIG_TDLS_TESTING
7045 extern unsigned int tdls_testing;
7046 tdls_testing = 0;
7047#endif /* CONFIG_TDLS_TESTING */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007048 wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
7049 wpa_tdls_enable(wpa_s->wpa, 1);
7050#endif /* CONFIG_TDLS */
7051
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07007052 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
7053 wpa_supplicant_stop_countermeasures(wpa_s, NULL);
7054
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007055 wpa_s->no_keep_alive = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08007056 wpa_s->own_disconnect_req = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007057
7058 os_free(wpa_s->disallow_aps_bssid);
7059 wpa_s->disallow_aps_bssid = NULL;
7060 wpa_s->disallow_aps_bssid_count = 0;
7061 os_free(wpa_s->disallow_aps_ssid);
7062 wpa_s->disallow_aps_ssid = NULL;
7063 wpa_s->disallow_aps_ssid_count = 0;
7064
7065 wpa_s->set_sta_uapsd = 0;
7066 wpa_s->sta_uapsd = 0;
7067
7068 wpa_drv_radio_disable(wpa_s, 0);
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007069 wpa_blacklist_clear(wpa_s);
Dmitry Shmidt4b060592013-04-29 16:42:49 -07007070 wpa_s->extra_blacklist_count = 0;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007071 wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
7072 wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
Dmitry Shmidt344abd32014-01-14 13:17:00 -08007073 wpa_config_flush_blobs(wpa_s->conf);
Dmitry Shmidt18463232014-01-24 12:29:41 -08007074 wpa_s->conf->auto_interworking = 0;
7075 wpa_s->conf->okc = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007076
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007077 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
7078 rsn_preauth_deinit(wpa_s->wpa);
7079
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007080 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200);
7081 wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70);
7082 wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, 60);
7083 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
7084
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08007085 radio_remove_works(wpa_s, NULL, 1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007086 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007087
7088 wpa_s->next_ssid = NULL;
7089
7090#ifdef CONFIG_INTERWORKING
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007091#ifdef CONFIG_HS20
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007092 hs20_cancel_fetch_osu(wpa_s);
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08007093 hs20_del_icon(wpa_s, NULL, NULL);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007094#endif /* CONFIG_HS20 */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08007095#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007096
7097 wpa_s->ext_mgmt_frame_handling = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007098 wpa_s->ext_eapol_frame_io = 0;
7099#ifdef CONFIG_TESTING_OPTIONS
7100 wpa_s->extra_roc_dur = 0;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007101 wpa_s->test_failure = WPAS_TEST_FAILURE_NONE;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08007102 wpa_s->p2p_go_csa_on_inv = 0;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08007103 wpa_sm_set_test_assoc_ie(wpa_s->wpa, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007104#endif /* CONFIG_TESTING_OPTIONS */
7105
7106 wpa_s->disconnected = 0;
7107 os_free(wpa_s->next_scan_freqs);
7108 wpa_s->next_scan_freqs = NULL;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08007109
7110 wpa_bss_flush(wpa_s);
7111 if (!dl_list_empty(&wpa_s->bss)) {
7112 wpa_printf(MSG_DEBUG,
7113 "BSS table not empty after flush: %u entries, current_bss=%p bssid="
7114 MACSTR " pending_bssid=" MACSTR,
7115 dl_list_len(&wpa_s->bss), wpa_s->current_bss,
7116 MAC2STR(wpa_s->bssid),
7117 MAC2STR(wpa_s->pending_bssid));
7118 }
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07007119
7120 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
Dmitry Shmidtb70d0bb2015-11-16 10:43:06 -08007121 wpa_s->wnmsleep_used = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007122}
7123
7124
7125static int wpas_ctrl_radio_work_show(struct wpa_supplicant *wpa_s,
7126 char *buf, size_t buflen)
7127{
7128 struct wpa_radio_work *work;
7129 char *pos, *end;
7130 struct os_reltime now, diff;
7131
7132 pos = buf;
7133 end = buf + buflen;
7134
7135 os_get_reltime(&now);
7136
7137 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7138 {
7139 int ret;
7140
7141 os_reltime_sub(&now, &work->time, &diff);
7142 ret = os_snprintf(pos, end - pos, "%s@%s:%u:%u:%ld.%06ld\n",
7143 work->type, work->wpa_s->ifname, work->freq,
7144 work->started, diff.sec, diff.usec);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007145 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007146 break;
7147 pos += ret;
7148 }
7149
7150 return pos - buf;
7151}
7152
7153
7154static void wpas_ctrl_radio_work_timeout(void *eloop_ctx, void *timeout_ctx)
7155{
7156 struct wpa_radio_work *work = eloop_ctx;
7157 struct wpa_external_work *ework = work->ctx;
7158
7159 wpa_dbg(work->wpa_s, MSG_DEBUG,
7160 "Timing out external radio work %u (%s)",
7161 ework->id, work->type);
7162 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_TIMEOUT "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007163 work->wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007164 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07007165 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007166}
7167
7168
7169static void wpas_ctrl_radio_work_cb(struct wpa_radio_work *work, int deinit)
7170{
7171 struct wpa_external_work *ework = work->ctx;
7172
7173 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08007174 if (work->started)
7175 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7176 work, NULL);
7177
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007178 os_free(ework);
7179 return;
7180 }
7181
7182 wpa_dbg(work->wpa_s, MSG_DEBUG, "Starting external radio work %u (%s)",
7183 ework->id, ework->type);
7184 wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_START "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007185 work->wpa_s->ext_work_in_progress = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007186 if (!ework->timeout)
7187 ework->timeout = 10;
7188 eloop_register_timeout(ework->timeout, 0, wpas_ctrl_radio_work_timeout,
7189 work, NULL);
7190}
7191
7192
7193static int wpas_ctrl_radio_work_add(struct wpa_supplicant *wpa_s, char *cmd,
7194 char *buf, size_t buflen)
7195{
7196 struct wpa_external_work *ework;
7197 char *pos, *pos2;
7198 size_t type_len;
7199 int ret;
7200 unsigned int freq = 0;
7201
7202 /* format: <name> [freq=<MHz>] [timeout=<seconds>] */
7203
7204 ework = os_zalloc(sizeof(*ework));
7205 if (ework == NULL)
7206 return -1;
7207
7208 pos = os_strchr(cmd, ' ');
7209 if (pos) {
7210 type_len = pos - cmd;
7211 pos++;
7212
7213 pos2 = os_strstr(pos, "freq=");
7214 if (pos2)
7215 freq = atoi(pos2 + 5);
7216
7217 pos2 = os_strstr(pos, "timeout=");
7218 if (pos2)
7219 ework->timeout = atoi(pos2 + 8);
7220 } else {
7221 type_len = os_strlen(cmd);
7222 }
7223 if (4 + type_len >= sizeof(ework->type))
7224 type_len = sizeof(ework->type) - 4 - 1;
7225 os_strlcpy(ework->type, "ext:", sizeof(ework->type));
7226 os_memcpy(ework->type + 4, cmd, type_len);
7227 ework->type[4 + type_len] = '\0';
7228
7229 wpa_s->ext_work_id++;
7230 if (wpa_s->ext_work_id == 0)
7231 wpa_s->ext_work_id++;
7232 ework->id = wpa_s->ext_work_id;
7233
7234 if (radio_add_work(wpa_s, freq, ework->type, 0, wpas_ctrl_radio_work_cb,
7235 ework) < 0) {
7236 os_free(ework);
7237 return -1;
7238 }
7239
7240 ret = os_snprintf(buf, buflen, "%u", ework->id);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007241 if (os_snprintf_error(buflen, ret))
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007242 return -1;
7243 return ret;
7244}
7245
7246
7247static int wpas_ctrl_radio_work_done(struct wpa_supplicant *wpa_s, char *cmd)
7248{
7249 struct wpa_radio_work *work;
7250 unsigned int id = atoi(cmd);
7251
7252 dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7253 {
7254 struct wpa_external_work *ework;
7255
7256 if (os_strncmp(work->type, "ext:", 4) != 0)
7257 continue;
7258 ework = work->ctx;
7259 if (id && ework->id != id)
7260 continue;
7261 wpa_dbg(wpa_s, MSG_DEBUG,
7262 "Completed external radio work %u (%s)",
7263 ework->id, ework->type);
7264 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout, work, NULL);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007265 wpa_s->ext_work_in_progress = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007266 radio_work_done(work);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07007267 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007268 return 3; /* "OK\n" */
7269 }
7270
7271 return -1;
7272}
7273
7274
7275static int wpas_ctrl_radio_work(struct wpa_supplicant *wpa_s, char *cmd,
7276 char *buf, size_t buflen)
7277{
7278 if (os_strcmp(cmd, "show") == 0)
7279 return wpas_ctrl_radio_work_show(wpa_s, buf, buflen);
7280 if (os_strncmp(cmd, "add ", 4) == 0)
7281 return wpas_ctrl_radio_work_add(wpa_s, cmd + 4, buf, buflen);
7282 if (os_strncmp(cmd, "done ", 5) == 0)
7283 return wpas_ctrl_radio_work_done(wpa_s, cmd + 4);
7284 return -1;
7285}
7286
7287
7288void wpas_ctrl_radio_work_flush(struct wpa_supplicant *wpa_s)
7289{
7290 struct wpa_radio_work *work, *tmp;
7291
Dmitry Shmidt18463232014-01-24 12:29:41 -08007292 if (!wpa_s || !wpa_s->radio)
7293 return;
7294
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007295 dl_list_for_each_safe(work, tmp, &wpa_s->radio->work,
7296 struct wpa_radio_work, list) {
7297 struct wpa_external_work *ework;
7298
7299 if (os_strncmp(work->type, "ext:", 4) != 0)
7300 continue;
7301 ework = work->ctx;
7302 wpa_dbg(wpa_s, MSG_DEBUG,
Dmitry Shmidt7dba0e52014-04-14 10:49:15 -07007303 "Flushing%s external radio work %u (%s)",
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007304 work->started ? " started" : "", ework->id,
7305 ework->type);
7306 if (work->started)
7307 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7308 work, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007309 radio_work_done(work);
Dmitry Shmidt71757432014-06-02 13:50:35 -07007310 os_free(ework);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007311 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07007312}
7313
7314
Dmitry Shmidt051af732013-10-22 13:52:46 -07007315static void wpas_ctrl_eapol_response(void *eloop_ctx, void *timeout_ctx)
7316{
7317 struct wpa_supplicant *wpa_s = eloop_ctx;
7318 eapol_sm_notify_ctrl_response(wpa_s->eapol);
7319}
7320
7321
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007322static int scan_id_list_parse(struct wpa_supplicant *wpa_s, const char *value,
7323 unsigned int *scan_id_count, int scan_id[])
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007324{
7325 const char *pos = value;
7326
7327 while (pos) {
7328 if (*pos == ' ' || *pos == '\0')
7329 break;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007330 if (*scan_id_count == MAX_SCAN_ID)
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007331 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007332 scan_id[(*scan_id_count)++] = atoi(pos);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007333 pos = os_strchr(pos, ',');
7334 if (pos)
7335 pos++;
7336 }
7337
7338 return 0;
7339}
7340
7341
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007342static void wpas_ctrl_scan(struct wpa_supplicant *wpa_s, char *params,
7343 char *reply, int reply_size, int *reply_len)
7344{
7345 char *pos;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007346 unsigned int manual_scan_passive = 0;
7347 unsigned int manual_scan_use_id = 0;
7348 unsigned int manual_scan_only_new = 0;
7349 unsigned int scan_only = 0;
7350 unsigned int scan_id_count = 0;
7351 int scan_id[MAX_SCAN_ID];
7352 void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
7353 struct wpa_scan_results *scan_res);
7354 int *manual_scan_freqs = NULL;
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007355 struct wpa_ssid_value *ssid = NULL, *ns;
7356 unsigned int ssid_count = 0;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007357
7358 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
7359 *reply_len = -1;
7360 return;
7361 }
7362
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007363 if (radio_work_pending(wpa_s, "scan")) {
7364 wpa_printf(MSG_DEBUG,
7365 "Pending scan scheduled - reject new request");
7366 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7367 return;
7368 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007369
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07007370#ifdef CONFIG_INTERWORKING
7371 if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select) {
7372 wpa_printf(MSG_DEBUG,
7373 "Interworking select in progress - reject new scan");
7374 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7375 return;
7376 }
7377#endif /* CONFIG_INTERWORKING */
7378
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007379 if (params) {
7380 if (os_strncasecmp(params, "TYPE=ONLY", 9) == 0)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007381 scan_only = 1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007382
7383 pos = os_strstr(params, "freq=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007384 if (pos) {
7385 manual_scan_freqs = freq_range_to_channel_list(wpa_s,
7386 pos + 5);
7387 if (manual_scan_freqs == NULL) {
7388 *reply_len = -1;
7389 goto done;
7390 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007391 }
7392
7393 pos = os_strstr(params, "passive=");
7394 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007395 manual_scan_passive = !!atoi(pos + 8);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007396
7397 pos = os_strstr(params, "use_id=");
7398 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007399 manual_scan_use_id = atoi(pos + 7);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007400
7401 pos = os_strstr(params, "only_new=1");
7402 if (pos)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007403 manual_scan_only_new = 1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007404
7405 pos = os_strstr(params, "scan_id=");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007406 if (pos && scan_id_list_parse(wpa_s, pos + 8, &scan_id_count,
7407 scan_id) < 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007408 *reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007409 goto done;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07007410 }
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007411
7412 pos = params;
7413 while (pos && *pos != '\0') {
7414 if (os_strncmp(pos, "ssid ", 5) == 0) {
7415 char *end;
7416
7417 pos += 5;
7418 end = pos;
7419 while (*end) {
7420 if (*end == '\0' || *end == ' ')
7421 break;
7422 end++;
7423 }
7424
7425 ns = os_realloc_array(
7426 ssid, ssid_count + 1,
7427 sizeof(struct wpa_ssid_value));
7428 if (ns == NULL) {
7429 *reply_len = -1;
7430 goto done;
7431 }
7432 ssid = ns;
7433
7434 if ((end - pos) & 0x01 ||
7435 end - pos > 2 * SSID_MAX_LEN ||
7436 hexstr2bin(pos, ssid[ssid_count].ssid,
7437 (end - pos) / 2) < 0) {
7438 wpa_printf(MSG_DEBUG,
7439 "Invalid SSID value '%s'",
7440 pos);
7441 *reply_len = -1;
7442 goto done;
7443 }
7444 ssid[ssid_count].ssid_len = (end - pos) / 2;
7445 wpa_hexdump_ascii(MSG_DEBUG, "scan SSID",
7446 ssid[ssid_count].ssid,
7447 ssid[ssid_count].ssid_len);
7448 ssid_count++;
7449 pos = end;
7450 }
7451
7452 pos = os_strchr(pos, ' ');
7453 if (pos)
7454 pos++;
7455 }
7456 }
7457
7458 wpa_s->num_ssids_from_scan_req = ssid_count;
7459 os_free(wpa_s->ssids_from_scan_req);
7460 if (ssid_count) {
7461 wpa_s->ssids_from_scan_req = ssid;
7462 ssid = NULL;
7463 } else {
7464 wpa_s->ssids_from_scan_req = NULL;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007465 }
7466
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007467 if (scan_only)
7468 scan_res_handler = scan_only_handler;
7469 else if (wpa_s->scan_res_handler == scan_only_handler)
7470 scan_res_handler = NULL;
7471 else
7472 scan_res_handler = wpa_s->scan_res_handler;
7473
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007474 if (!wpa_s->sched_scanning && !wpa_s->scanning &&
7475 ((wpa_s->wpa_state <= WPA_SCANNING) ||
7476 (wpa_s->wpa_state == WPA_COMPLETED))) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007477 wpa_s->manual_scan_passive = manual_scan_passive;
7478 wpa_s->manual_scan_use_id = manual_scan_use_id;
7479 wpa_s->manual_scan_only_new = manual_scan_only_new;
7480 wpa_s->scan_id_count = scan_id_count;
7481 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
7482 wpa_s->scan_res_handler = scan_res_handler;
7483 os_free(wpa_s->manual_scan_freqs);
7484 wpa_s->manual_scan_freqs = manual_scan_freqs;
7485 manual_scan_freqs = NULL;
7486
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007487 wpa_s->normal_scans = 0;
7488 wpa_s->scan_req = MANUAL_SCAN_REQ;
7489 wpa_s->after_wps = 0;
7490 wpa_s->known_wps_freq = 0;
7491 wpa_supplicant_req_scan(wpa_s, 0, 0);
7492 if (wpa_s->manual_scan_use_id) {
7493 wpa_s->manual_scan_id++;
7494 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7495 wpa_s->manual_scan_id);
7496 *reply_len = os_snprintf(reply, reply_size, "%u\n",
7497 wpa_s->manual_scan_id);
7498 }
7499 } else if (wpa_s->sched_scanning) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007500 wpa_s->manual_scan_passive = manual_scan_passive;
7501 wpa_s->manual_scan_use_id = manual_scan_use_id;
7502 wpa_s->manual_scan_only_new = manual_scan_only_new;
7503 wpa_s->scan_id_count = scan_id_count;
7504 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
7505 wpa_s->scan_res_handler = scan_res_handler;
7506 os_free(wpa_s->manual_scan_freqs);
7507 wpa_s->manual_scan_freqs = manual_scan_freqs;
7508 manual_scan_freqs = NULL;
7509
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007510 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to allow requested full scan to proceed");
7511 wpa_supplicant_cancel_sched_scan(wpa_s);
7512 wpa_s->scan_req = MANUAL_SCAN_REQ;
7513 wpa_supplicant_req_scan(wpa_s, 0, 0);
7514 if (wpa_s->manual_scan_use_id) {
7515 wpa_s->manual_scan_id++;
7516 *reply_len = os_snprintf(reply, reply_size, "%u\n",
7517 wpa_s->manual_scan_id);
7518 wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7519 wpa_s->manual_scan_id);
7520 }
7521 } else {
7522 wpa_printf(MSG_DEBUG, "Ongoing scan action - reject new request");
7523 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7524 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007525
7526done:
7527 os_free(manual_scan_freqs);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07007528 os_free(ssid);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08007529}
7530
7531
Dmitry Shmidt818ea482014-03-10 13:15:21 -07007532#ifdef CONFIG_TESTING_OPTIONS
7533
7534static void wpas_ctrl_iface_mgmt_tx_cb(struct wpa_supplicant *wpa_s,
7535 unsigned int freq, const u8 *dst,
7536 const u8 *src, const u8 *bssid,
7537 const u8 *data, size_t data_len,
7538 enum offchannel_send_action_result
7539 result)
7540{
7541 wpa_msg(wpa_s, MSG_INFO, "MGMT-TX-STATUS freq=%u dst=" MACSTR
7542 " src=" MACSTR " bssid=" MACSTR " result=%s",
7543 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
7544 result == OFFCHANNEL_SEND_ACTION_SUCCESS ?
7545 "SUCCESS" : (result == OFFCHANNEL_SEND_ACTION_NO_ACK ?
7546 "NO_ACK" : "FAILED"));
7547}
7548
7549
7550static int wpas_ctrl_iface_mgmt_tx(struct wpa_supplicant *wpa_s, char *cmd)
7551{
7552 char *pos, *param;
7553 size_t len;
7554 u8 *buf, da[ETH_ALEN], bssid[ETH_ALEN];
7555 int res, used;
7556 int freq = 0, no_cck = 0, wait_time = 0;
7557
7558 /* <DA> <BSSID> [freq=<MHz>] [wait_time=<ms>] [no_cck=1]
7559 * <action=Action frame payload> */
7560
7561 wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
7562
7563 pos = cmd;
7564 used = hwaddr_aton2(pos, da);
7565 if (used < 0)
7566 return -1;
7567 pos += used;
7568 while (*pos == ' ')
7569 pos++;
7570 used = hwaddr_aton2(pos, bssid);
7571 if (used < 0)
7572 return -1;
7573 pos += used;
7574
7575 param = os_strstr(pos, " freq=");
7576 if (param) {
7577 param += 6;
7578 freq = atoi(param);
7579 }
7580
7581 param = os_strstr(pos, " no_cck=");
7582 if (param) {
7583 param += 8;
7584 no_cck = atoi(param);
7585 }
7586
7587 param = os_strstr(pos, " wait_time=");
7588 if (param) {
7589 param += 11;
7590 wait_time = atoi(param);
7591 }
7592
7593 param = os_strstr(pos, " action=");
7594 if (param == NULL)
7595 return -1;
7596 param += 8;
7597
7598 len = os_strlen(param);
7599 if (len & 1)
7600 return -1;
7601 len /= 2;
7602
7603 buf = os_malloc(len);
7604 if (buf == NULL)
7605 return -1;
7606
7607 if (hexstr2bin(param, buf, len) < 0) {
7608 os_free(buf);
7609 return -1;
7610 }
7611
7612 res = offchannel_send_action(wpa_s, freq, da, wpa_s->own_addr, bssid,
7613 buf, len, wait_time,
7614 wpas_ctrl_iface_mgmt_tx_cb, no_cck);
7615 os_free(buf);
7616 return res;
7617}
7618
7619
7620static void wpas_ctrl_iface_mgmt_tx_done(struct wpa_supplicant *wpa_s)
7621{
7622 wpa_printf(MSG_DEBUG, "External MGMT TX - done waiting");
7623 offchannel_send_action_done(wpa_s);
7624}
7625
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07007626
7627static int wpas_ctrl_iface_driver_event(struct wpa_supplicant *wpa_s, char *cmd)
7628{
7629 char *pos, *param;
7630 union wpa_event_data event;
7631 enum wpa_event_type ev;
7632
7633 /* <event name> [parameters..] */
7634
7635 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - external driver event: %s", cmd);
7636
7637 pos = cmd;
7638 param = os_strchr(pos, ' ');
7639 if (param)
7640 *param++ = '\0';
7641
7642 os_memset(&event, 0, sizeof(event));
7643
7644 if (os_strcmp(cmd, "INTERFACE_ENABLED") == 0) {
7645 ev = EVENT_INTERFACE_ENABLED;
7646 } else if (os_strcmp(cmd, "INTERFACE_DISABLED") == 0) {
7647 ev = EVENT_INTERFACE_DISABLED;
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -07007648 } else if (os_strcmp(cmd, "AVOID_FREQUENCIES") == 0) {
7649 ev = EVENT_AVOID_FREQUENCIES;
7650 if (param == NULL)
7651 param = "";
7652 if (freq_range_list_parse(&event.freq_range, param) < 0)
7653 return -1;
7654 wpa_supplicant_event(wpa_s, ev, &event);
7655 os_free(event.freq_range.range);
7656 return 0;
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07007657 } else {
7658 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - unknown driver event: %s",
7659 cmd);
7660 return -1;
7661 }
7662
7663 wpa_supplicant_event(wpa_s, ev, &event);
7664
7665 return 0;
7666}
7667
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007668
7669static int wpas_ctrl_iface_eapol_rx(struct wpa_supplicant *wpa_s, char *cmd)
7670{
7671 char *pos;
7672 u8 src[ETH_ALEN], *buf;
7673 int used;
7674 size_t len;
7675
7676 wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
7677
7678 pos = cmd;
7679 used = hwaddr_aton2(pos, src);
7680 if (used < 0)
7681 return -1;
7682 pos += used;
7683 while (*pos == ' ')
7684 pos++;
7685
7686 len = os_strlen(pos);
7687 if (len & 1)
7688 return -1;
7689 len /= 2;
7690
7691 buf = os_malloc(len);
7692 if (buf == NULL)
7693 return -1;
7694
7695 if (hexstr2bin(pos, buf, len) < 0) {
7696 os_free(buf);
7697 return -1;
7698 }
7699
7700 wpa_supplicant_rx_eapol(wpa_s, src, buf, len);
7701 os_free(buf);
7702
7703 return 0;
7704}
7705
7706
7707static u16 ipv4_hdr_checksum(const void *buf, size_t len)
7708{
7709 size_t i;
7710 u32 sum = 0;
7711 const u16 *pos = buf;
7712
7713 for (i = 0; i < len / 2; i++)
7714 sum += *pos++;
7715
7716 while (sum >> 16)
7717 sum = (sum & 0xffff) + (sum >> 16);
7718
7719 return sum ^ 0xffff;
7720}
7721
7722
7723#define HWSIM_PACKETLEN 1500
7724#define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
7725
7726void wpas_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf, size_t len)
7727{
7728 struct wpa_supplicant *wpa_s = ctx;
7729 const struct ether_header *eth;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007730 struct iphdr ip;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007731 const u8 *pos;
7732 unsigned int i;
7733
7734 if (len != HWSIM_PACKETLEN)
7735 return;
7736
7737 eth = (const struct ether_header *) buf;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007738 os_memcpy(&ip, eth + 1, sizeof(ip));
7739 pos = &buf[sizeof(*eth) + sizeof(ip)];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007740
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007741 if (ip.ihl != 5 || ip.version != 4 ||
7742 ntohs(ip.tot_len) != HWSIM_IP_LEN)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007743 return;
7744
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007745 for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007746 if (*pos != (u8) i)
7747 return;
7748 pos++;
7749 }
7750
7751 wpa_msg(wpa_s, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
7752 MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
7753}
7754
7755
7756static int wpas_ctrl_iface_data_test_config(struct wpa_supplicant *wpa_s,
7757 char *cmd)
7758{
7759 int enabled = atoi(cmd);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08007760 char *pos;
7761 const char *ifname;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007762
7763 if (!enabled) {
7764 if (wpa_s->l2_test) {
7765 l2_packet_deinit(wpa_s->l2_test);
7766 wpa_s->l2_test = NULL;
7767 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Disabled");
7768 }
7769 return 0;
7770 }
7771
7772 if (wpa_s->l2_test)
7773 return 0;
7774
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08007775 pos = os_strstr(cmd, " ifname=");
7776 if (pos)
7777 ifname = pos + 8;
7778 else
7779 ifname = wpa_s->ifname;
7780
7781 wpa_s->l2_test = l2_packet_init(ifname, wpa_s->own_addr,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007782 ETHERTYPE_IP, wpas_data_test_rx,
7783 wpa_s, 1);
7784 if (wpa_s->l2_test == NULL)
7785 return -1;
7786
7787 wpa_dbg(wpa_s, MSG_DEBUG, "test data: Enabled");
7788
7789 return 0;
7790}
7791
7792
7793static int wpas_ctrl_iface_data_test_tx(struct wpa_supplicant *wpa_s, char *cmd)
7794{
7795 u8 dst[ETH_ALEN], src[ETH_ALEN];
7796 char *pos;
7797 int used;
7798 long int val;
7799 u8 tos;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007800 u8 buf[2 + HWSIM_PACKETLEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007801 struct ether_header *eth;
7802 struct iphdr *ip;
7803 u8 *dpos;
7804 unsigned int i;
7805
7806 if (wpa_s->l2_test == NULL)
7807 return -1;
7808
7809 /* format: <dst> <src> <tos> */
7810
7811 pos = cmd;
7812 used = hwaddr_aton2(pos, dst);
7813 if (used < 0)
7814 return -1;
7815 pos += used;
7816 while (*pos == ' ')
7817 pos++;
7818 used = hwaddr_aton2(pos, src);
7819 if (used < 0)
7820 return -1;
7821 pos += used;
7822
7823 val = strtol(pos, NULL, 0);
7824 if (val < 0 || val > 0xff)
7825 return -1;
7826 tos = val;
7827
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007828 eth = (struct ether_header *) &buf[2];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007829 os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
7830 os_memcpy(eth->ether_shost, src, ETH_ALEN);
7831 eth->ether_type = htons(ETHERTYPE_IP);
7832 ip = (struct iphdr *) (eth + 1);
7833 os_memset(ip, 0, sizeof(*ip));
7834 ip->ihl = 5;
7835 ip->version = 4;
7836 ip->ttl = 64;
7837 ip->tos = tos;
7838 ip->tot_len = htons(HWSIM_IP_LEN);
7839 ip->protocol = 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007840 ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
7841 ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007842 ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
7843 dpos = (u8 *) (ip + 1);
7844 for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
7845 *dpos++ = i;
7846
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007847 if (l2_packet_send(wpa_s->l2_test, dst, ETHERTYPE_IP, &buf[2],
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08007848 HWSIM_PACKETLEN) < 0)
7849 return -1;
7850
7851 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX dst=" MACSTR " src=" MACSTR
7852 " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
7853
7854 return 0;
7855}
7856
7857
7858static int wpas_ctrl_iface_data_test_frame(struct wpa_supplicant *wpa_s,
7859 char *cmd)
7860{
7861 u8 *buf;
7862 struct ether_header *eth;
7863 struct l2_packet_data *l2 = NULL;
7864 size_t len;
7865 u16 ethertype;
7866 int res = -1;
7867
7868 len = os_strlen(cmd);
7869 if (len & 1 || len < ETH_HLEN * 2)
7870 return -1;
7871 len /= 2;
7872
7873 buf = os_malloc(len);
7874 if (buf == NULL)
7875 return -1;
7876
7877 if (hexstr2bin(cmd, buf, len) < 0)
7878 goto done;
7879
7880 eth = (struct ether_header *) buf;
7881 ethertype = ntohs(eth->ether_type);
7882
7883 l2 = l2_packet_init(wpa_s->ifname, wpa_s->own_addr, ethertype,
7884 wpas_data_test_rx, wpa_s, 1);
7885 if (l2 == NULL)
7886 goto done;
7887
7888 res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
7889 wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX frame res=%d", res);
7890done:
7891 if (l2)
7892 l2_packet_deinit(l2);
7893 os_free(buf);
7894
7895 return res < 0 ? -1 : 0;
7896}
7897
Dmitry Shmidtff787d52015-01-12 13:01:47 -08007898
7899static int wpas_ctrl_test_alloc_fail(struct wpa_supplicant *wpa_s, char *cmd)
7900{
7901#ifdef WPA_TRACE_BFD
7902 extern char wpa_trace_fail_func[256];
7903 extern unsigned int wpa_trace_fail_after;
7904 char *pos;
7905
7906 wpa_trace_fail_after = atoi(cmd);
7907 pos = os_strchr(cmd, ':');
7908 if (pos) {
7909 pos++;
7910 os_strlcpy(wpa_trace_fail_func, pos,
7911 sizeof(wpa_trace_fail_func));
7912 } else {
7913 wpa_trace_fail_after = 0;
7914 }
7915 return 0;
7916#else /* WPA_TRACE_BFD */
7917 return -1;
7918#endif /* WPA_TRACE_BFD */
7919}
7920
7921
7922static int wpas_ctrl_get_alloc_fail(struct wpa_supplicant *wpa_s,
7923 char *buf, size_t buflen)
7924{
7925#ifdef WPA_TRACE_BFD
7926 extern char wpa_trace_fail_func[256];
7927 extern unsigned int wpa_trace_fail_after;
7928
7929 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
7930 wpa_trace_fail_func);
7931#else /* WPA_TRACE_BFD */
7932 return -1;
7933#endif /* WPA_TRACE_BFD */
7934}
7935
Jouni Malinenc4818362015-10-04 11:45:13 +03007936
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08007937static int wpas_ctrl_test_fail(struct wpa_supplicant *wpa_s, char *cmd)
7938{
7939#ifdef WPA_TRACE_BFD
7940 extern char wpa_trace_test_fail_func[256];
7941 extern unsigned int wpa_trace_test_fail_after;
7942 char *pos;
7943
7944 wpa_trace_test_fail_after = atoi(cmd);
7945 pos = os_strchr(cmd, ':');
7946 if (pos) {
7947 pos++;
7948 os_strlcpy(wpa_trace_test_fail_func, pos,
7949 sizeof(wpa_trace_test_fail_func));
7950 } else {
7951 wpa_trace_test_fail_after = 0;
7952 }
7953 return 0;
7954#else /* WPA_TRACE_BFD */
7955 return -1;
7956#endif /* WPA_TRACE_BFD */
7957}
7958
7959
7960static int wpas_ctrl_get_fail(struct wpa_supplicant *wpa_s,
7961 char *buf, size_t buflen)
7962{
7963#ifdef WPA_TRACE_BFD
7964 extern char wpa_trace_test_fail_func[256];
7965 extern unsigned int wpa_trace_test_fail_after;
7966
7967 return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
7968 wpa_trace_test_fail_func);
7969#else /* WPA_TRACE_BFD */
7970 return -1;
7971#endif /* WPA_TRACE_BFD */
7972}
7973
7974
Jouni Malinenc4818362015-10-04 11:45:13 +03007975static void wpas_ctrl_event_test_cb(void *eloop_ctx, void *timeout_ctx)
7976{
7977 struct wpa_supplicant *wpa_s = eloop_ctx;
7978 int i, count = (intptr_t) timeout_ctx;
7979
7980 wpa_printf(MSG_DEBUG, "TEST: Send %d control interface event messages",
7981 count);
7982 for (i = 0; i < count; i++) {
7983 wpa_msg_ctrl(wpa_s, MSG_INFO, "TEST-EVENT-MESSAGE %d/%d",
7984 i + 1, count);
7985 }
7986}
7987
7988
7989static int wpas_ctrl_event_test(struct wpa_supplicant *wpa_s, const char *cmd)
7990{
7991 int count;
7992
7993 count = atoi(cmd);
7994 if (count <= 0)
7995 return -1;
7996
7997 return eloop_register_timeout(0, 0, wpas_ctrl_event_test_cb, wpa_s,
7998 (void *) (intptr_t) count);
7999}
8000
Dmitry Shmidt818ea482014-03-10 13:15:21 -07008001
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008002static int wpas_ctrl_test_assoc_ie(struct wpa_supplicant *wpa_s,
8003 const char *cmd)
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008004{
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008005 struct wpabuf *buf;
8006 size_t len;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008007
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008008 len = os_strlen(cmd);
8009 if (len & 1)
8010 return -1;
8011 len /= 2;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008012
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008013 if (len == 0) {
8014 buf = NULL;
8015 } else {
8016 buf = wpabuf_alloc(len);
8017 if (buf == NULL)
8018 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008019
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008020 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
8021 wpabuf_free(buf);
8022 return -1;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008023 }
8024 }
8025
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008026 wpa_sm_set_test_assoc_ie(wpa_s->wpa, buf);
8027 return 0;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008028}
8029
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008030#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008031
8032
8033static int wpas_ctrl_vendor_elem_add(struct wpa_supplicant *wpa_s, char *cmd)
8034{
8035 char *pos = cmd;
8036 int frame;
8037 size_t len;
8038 struct wpabuf *buf;
8039 struct ieee802_11_elems elems;
8040
8041 frame = atoi(pos);
8042 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8043 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008044 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008045
8046 pos = os_strchr(pos, ' ');
8047 if (pos == NULL)
8048 return -1;
8049 pos++;
8050
8051 len = os_strlen(pos);
8052 if (len == 0)
8053 return 0;
8054 if (len & 1)
8055 return -1;
8056 len /= 2;
8057
8058 buf = wpabuf_alloc(len);
8059 if (buf == NULL)
8060 return -1;
8061
8062 if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
8063 wpabuf_free(buf);
8064 return -1;
8065 }
8066
8067 if (ieee802_11_parse_elems(wpabuf_head_u8(buf), len, &elems, 0) ==
8068 ParseFailed) {
8069 wpabuf_free(buf);
8070 return -1;
8071 }
8072
8073 if (wpa_s->vendor_elem[frame] == NULL) {
8074 wpa_s->vendor_elem[frame] = buf;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008075 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008076 return 0;
8077 }
8078
8079 if (wpabuf_resize(&wpa_s->vendor_elem[frame], len) < 0) {
8080 wpabuf_free(buf);
8081 return -1;
8082 }
8083
8084 wpabuf_put_buf(wpa_s->vendor_elem[frame], buf);
8085 wpabuf_free(buf);
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008086 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008087
8088 return 0;
8089}
8090
8091
8092static int wpas_ctrl_vendor_elem_get(struct wpa_supplicant *wpa_s, char *cmd,
8093 char *buf, size_t buflen)
8094{
8095 int frame = atoi(cmd);
8096
8097 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8098 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008099 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008100
8101 if (wpa_s->vendor_elem[frame] == NULL)
8102 return 0;
8103
8104 return wpa_snprintf_hex(buf, buflen,
8105 wpabuf_head_u8(wpa_s->vendor_elem[frame]),
8106 wpabuf_len(wpa_s->vendor_elem[frame]));
8107}
8108
8109
8110static int wpas_ctrl_vendor_elem_remove(struct wpa_supplicant *wpa_s, char *cmd)
8111{
8112 char *pos = cmd;
8113 int frame;
8114 size_t len;
8115 u8 *buf;
8116 struct ieee802_11_elems elems;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008117 int res;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008118
8119 frame = atoi(pos);
8120 if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8121 return -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008122 wpa_s = wpas_vendor_elem(wpa_s, frame);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008123
8124 pos = os_strchr(pos, ' ');
8125 if (pos == NULL)
8126 return -1;
8127 pos++;
8128
8129 if (*pos == '*') {
8130 wpabuf_free(wpa_s->vendor_elem[frame]);
8131 wpa_s->vendor_elem[frame] = NULL;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008132 wpas_vendor_elem_update(wpa_s);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008133 return 0;
8134 }
8135
8136 if (wpa_s->vendor_elem[frame] == NULL)
8137 return -1;
8138
8139 len = os_strlen(pos);
8140 if (len == 0)
8141 return 0;
8142 if (len & 1)
8143 return -1;
8144 len /= 2;
8145
8146 buf = os_malloc(len);
8147 if (buf == NULL)
8148 return -1;
8149
8150 if (hexstr2bin(pos, buf, len) < 0) {
8151 os_free(buf);
8152 return -1;
8153 }
8154
8155 if (ieee802_11_parse_elems(buf, len, &elems, 0) == ParseFailed) {
8156 os_free(buf);
8157 return -1;
8158 }
8159
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008160 res = wpas_vendor_elem_remove(wpa_s, frame, buf, len);
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008161 os_free(buf);
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08008162 return res;
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07008163}
8164
8165
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008166static void wpas_ctrl_neighbor_rep_cb(void *ctx, struct wpabuf *neighbor_rep)
8167{
8168 struct wpa_supplicant *wpa_s = ctx;
8169
8170 if (neighbor_rep) {
8171 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_RXED
8172 "length=%u",
8173 (unsigned int) wpabuf_len(neighbor_rep));
8174 wpabuf_free(neighbor_rep);
8175 } else {
8176 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_FAILED);
8177 }
8178}
8179
8180
8181static int wpas_ctrl_iface_send_neigbor_rep(struct wpa_supplicant *wpa_s,
8182 char *cmd)
8183{
8184 struct wpa_ssid ssid;
8185 struct wpa_ssid *ssid_p = NULL;
8186 int ret = 0;
8187
8188 if (os_strncmp(cmd, " ssid=", 6) == 0) {
8189 ssid.ssid_len = os_strlen(cmd + 6);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07008190 if (ssid.ssid_len > SSID_MAX_LEN)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008191 return -1;
8192 ssid.ssid = (u8 *) (cmd + 6);
8193 ssid_p = &ssid;
8194 }
8195
8196 ret = wpas_rrm_send_neighbor_rep_request(wpa_s, ssid_p,
8197 wpas_ctrl_neighbor_rep_cb,
8198 wpa_s);
8199
8200 return ret;
8201}
8202
8203
8204static int wpas_ctrl_iface_erp_flush(struct wpa_supplicant *wpa_s)
8205{
8206 eapol_sm_erp_flush(wpa_s->eapol);
8207 return 0;
8208}
8209
8210
8211static int wpas_ctrl_iface_mac_rand_scan(struct wpa_supplicant *wpa_s,
8212 char *cmd)
8213{
8214 char *token, *context = NULL;
8215 unsigned int enable = ~0, type = 0;
8216 u8 _addr[ETH_ALEN], _mask[ETH_ALEN];
8217 u8 *addr = NULL, *mask = NULL;
8218
8219 while ((token = str_token(cmd, " ", &context))) {
8220 if (os_strcasecmp(token, "scan") == 0) {
8221 type |= MAC_ADDR_RAND_SCAN;
8222 } else if (os_strcasecmp(token, "sched") == 0) {
8223 type |= MAC_ADDR_RAND_SCHED_SCAN;
8224 } else if (os_strcasecmp(token, "pno") == 0) {
8225 type |= MAC_ADDR_RAND_PNO;
8226 } else if (os_strcasecmp(token, "all") == 0) {
8227 type = wpa_s->mac_addr_rand_supported;
8228 } else if (os_strncasecmp(token, "enable=", 7) == 0) {
8229 enable = atoi(token + 7);
8230 } else if (os_strncasecmp(token, "addr=", 5) == 0) {
8231 addr = _addr;
8232 if (hwaddr_aton(token + 5, addr)) {
8233 wpa_printf(MSG_INFO,
8234 "CTRL: Invalid MAC address: %s",
8235 token);
8236 return -1;
8237 }
8238 } else if (os_strncasecmp(token, "mask=", 5) == 0) {
8239 mask = _mask;
8240 if (hwaddr_aton(token + 5, mask)) {
8241 wpa_printf(MSG_INFO,
8242 "CTRL: Invalid MAC address mask: %s",
8243 token);
8244 return -1;
8245 }
8246 } else {
8247 wpa_printf(MSG_INFO,
8248 "CTRL: Invalid MAC_RAND_SCAN parameter: %s",
8249 token);
8250 return -1;
8251 }
8252 }
8253
8254 if (!type) {
8255 wpa_printf(MSG_INFO, "CTRL: MAC_RAND_SCAN no type specified");
8256 return -1;
8257 }
8258
8259 if ((wpa_s->mac_addr_rand_supported & type) != type) {
8260 wpa_printf(MSG_INFO,
8261 "CTRL: MAC_RAND_SCAN types=%u != supported=%u",
8262 type, wpa_s->mac_addr_rand_supported);
8263 return -1;
8264 }
8265
8266 if (enable > 1) {
8267 wpa_printf(MSG_INFO,
8268 "CTRL: MAC_RAND_SCAN enable=<0/1> not specified");
8269 return -1;
8270 }
8271
8272 if (!enable) {
8273 wpas_mac_addr_rand_scan_clear(wpa_s, type);
8274 if (wpa_s->pno) {
8275 if (type & MAC_ADDR_RAND_PNO) {
8276 wpas_stop_pno(wpa_s);
8277 wpas_start_pno(wpa_s);
8278 }
8279 } else if (wpa_s->sched_scanning &&
8280 (type & MAC_ADDR_RAND_SCHED_SCAN)) {
8281 /* simulate timeout to restart the sched scan */
8282 wpa_s->sched_scan_timed_out = 1;
8283 wpa_s->prev_sched_ssid = NULL;
8284 wpa_supplicant_cancel_sched_scan(wpa_s);
8285 }
8286 return 0;
8287 }
8288
8289 if ((addr && !mask) || (!addr && mask)) {
8290 wpa_printf(MSG_INFO,
8291 "CTRL: MAC_RAND_SCAN invalid addr/mask combination");
8292 return -1;
8293 }
8294
8295 if (addr && mask && (!(mask[0] & 0x01) || (addr[0] & 0x01))) {
8296 wpa_printf(MSG_INFO,
8297 "CTRL: MAC_RAND_SCAN cannot allow multicast address");
8298 return -1;
8299 }
8300
8301 if (type & MAC_ADDR_RAND_SCAN) {
8302 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCAN,
8303 addr, mask);
8304 }
8305
8306 if (type & MAC_ADDR_RAND_SCHED_SCAN) {
8307 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCHED_SCAN,
8308 addr, mask);
8309
8310 if (wpa_s->sched_scanning && !wpa_s->pno) {
8311 /* simulate timeout to restart the sched scan */
8312 wpa_s->sched_scan_timed_out = 1;
8313 wpa_s->prev_sched_ssid = NULL;
8314 wpa_supplicant_cancel_sched_scan(wpa_s);
8315 }
8316 }
8317
8318 if (type & MAC_ADDR_RAND_PNO) {
8319 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_PNO,
8320 addr, mask);
8321 if (wpa_s->pno) {
8322 wpas_stop_pno(wpa_s);
8323 wpas_start_pno(wpa_s);
8324 }
8325 }
8326
8327 return 0;
8328}
8329
8330
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008331static int wpas_ctrl_cmd_debug_level(const char *cmd)
8332{
8333 if (os_strcmp(cmd, "PING") == 0 ||
8334 os_strncmp(cmd, "BSS ", 4) == 0 ||
8335 os_strncmp(cmd, "GET_NETWORK ", 12) == 0 ||
8336 os_strncmp(cmd, "STATUS", 6) == 0 ||
8337 os_strncmp(cmd, "STA ", 4) == 0 ||
8338 os_strncmp(cmd, "STA-", 4) == 0)
8339 return MSG_EXCESSIVE;
8340 return MSG_DEBUG;
8341}
8342
8343
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008344char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
8345 char *buf, size_t *resp_len)
8346{
8347 char *reply;
8348 const int reply_size = 4096;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008349 int reply_len;
8350
8351 if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008352 os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8353 if (wpa_debug_show_keys)
8354 wpa_dbg(wpa_s, MSG_DEBUG,
8355 "Control interface command '%s'", buf);
8356 else
8357 wpa_dbg(wpa_s, MSG_DEBUG,
8358 "Control interface command '%s [REMOVED]'",
8359 os_strncmp(buf, WPA_CTRL_RSP,
8360 os_strlen(WPA_CTRL_RSP)) == 0 ?
8361 WPA_CTRL_RSP : "SET_NETWORK");
8362 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008363 os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008364 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
8365 (const u8 *) buf, os_strlen(buf));
8366 } else {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008367 int level = wpas_ctrl_cmd_debug_level(buf);
Dmitry Shmidtaa532512012-09-24 10:35:31 -07008368 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008369 }
8370
8371 reply = os_malloc(reply_size);
8372 if (reply == NULL) {
8373 *resp_len = 1;
8374 return NULL;
8375 }
8376
8377 os_memcpy(reply, "OK\n", 3);
8378 reply_len = 3;
8379
8380 if (os_strcmp(buf, "PING") == 0) {
8381 os_memcpy(reply, "PONG\n", 5);
8382 reply_len = 5;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008383 } else if (os_strcmp(buf, "IFNAME") == 0) {
8384 reply_len = os_strlen(wpa_s->ifname);
8385 os_memcpy(reply, wpa_s->ifname, reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008386 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
8387 if (wpa_debug_reopen_file() < 0)
8388 reply_len = -1;
8389 } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
8390 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
8391 } else if (os_strcmp(buf, "MIB") == 0) {
8392 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
8393 if (reply_len >= 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008394 reply_len += eapol_sm_get_mib(wpa_s->eapol,
8395 reply + reply_len,
8396 reply_size - reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008397 }
8398 } else if (os_strncmp(buf, "STATUS", 6) == 0) {
8399 reply_len = wpa_supplicant_ctrl_iface_status(
8400 wpa_s, buf + 6, reply, reply_size);
8401 } else if (os_strcmp(buf, "PMKSA") == 0) {
8402 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
8403 reply_size);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07008404 } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
8405 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008406 } else if (os_strncmp(buf, "SET ", 4) == 0) {
8407 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
8408 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008409 } else if (os_strncmp(buf, "DUMP", 4) == 0) {
8410 reply_len = wpa_config_dump_values(wpa_s->conf,
8411 reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008412 } else if (os_strncmp(buf, "GET ", 4) == 0) {
8413 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
8414 reply, reply_size);
8415 } else if (os_strcmp(buf, "LOGON") == 0) {
8416 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
8417 } else if (os_strcmp(buf, "LOGOFF") == 0) {
8418 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
8419 } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
8420 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8421 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008422 else
8423 wpas_request_connection(wpa_s);
Dmitry Shmidt98660862014-03-11 17:26:21 -07008424 } else if (os_strcmp(buf, "REATTACH") == 0) {
8425 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED ||
8426 !wpa_s->current_ssid)
8427 reply_len = -1;
8428 else {
8429 wpa_s->reattach = 1;
8430 wpas_request_connection(wpa_s);
8431 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008432 } else if (os_strcmp(buf, "RECONNECT") == 0) {
8433 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8434 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008435 else if (wpa_s->disconnected)
8436 wpas_request_connection(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008437#ifdef IEEE8021X_EAPOL
8438 } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
8439 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
8440 reply_len = -1;
8441#endif /* IEEE8021X_EAPOL */
8442#ifdef CONFIG_PEERKEY
8443 } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
8444 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
8445 reply_len = -1;
8446#endif /* CONFIG_PEERKEY */
8447#ifdef CONFIG_IEEE80211R
8448 } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
8449 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
8450 reply_len = -1;
8451#endif /* CONFIG_IEEE80211R */
8452#ifdef CONFIG_WPS
8453 } else if (os_strcmp(buf, "WPS_PBC") == 0) {
8454 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
8455 if (res == -2) {
8456 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8457 reply_len = 17;
8458 } else if (res)
8459 reply_len = -1;
8460 } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
8461 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
8462 if (res == -2) {
8463 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8464 reply_len = 17;
8465 } else if (res)
8466 reply_len = -1;
8467 } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
8468 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
8469 reply,
8470 reply_size);
8471 } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
8472 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
8473 wpa_s, buf + 14, reply, reply_size);
8474 } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
8475 if (wpas_wps_cancel(wpa_s))
8476 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008477#ifdef CONFIG_WPS_NFC
8478 } else if (os_strcmp(buf, "WPS_NFC") == 0) {
8479 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
8480 reply_len = -1;
8481 } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
8482 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
8483 reply_len = -1;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08008484 } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
8485 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
8486 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008487 } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
8488 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
8489 wpa_s, buf + 14, reply, reply_size);
8490 } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
8491 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
8492 buf + 17))
8493 reply_len = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008494 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
8495 reply_len = wpas_ctrl_nfc_get_handover_req(
8496 wpa_s, buf + 21, reply, reply_size);
8497 } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
8498 reply_len = wpas_ctrl_nfc_get_handover_sel(
8499 wpa_s, buf + 21, reply, reply_size);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08008500 } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
8501 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
8502 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008503#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008504 } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
8505 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
8506 reply_len = -1;
8507#ifdef CONFIG_AP
8508 } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
8509 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
8510 wpa_s, buf + 11, reply, reply_size);
8511#endif /* CONFIG_AP */
8512#ifdef CONFIG_WPS_ER
8513 } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
8514 if (wpas_wps_er_start(wpa_s, NULL))
8515 reply_len = -1;
8516 } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
8517 if (wpas_wps_er_start(wpa_s, buf + 13))
8518 reply_len = -1;
8519 } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008520 wpas_wps_er_stop(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008521 } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
8522 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
8523 reply_len = -1;
8524 } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
8525 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
8526 if (ret == -2) {
8527 os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8528 reply_len = 17;
8529 } else if (ret == -3) {
8530 os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
8531 reply_len = 18;
8532 } else if (ret == -4) {
8533 os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
8534 reply_len = 20;
8535 } else if (ret)
8536 reply_len = -1;
8537 } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
8538 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
8539 reply_len = -1;
8540 } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
8541 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
8542 buf + 18))
8543 reply_len = -1;
8544 } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
8545 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
8546 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008547#ifdef CONFIG_WPS_NFC
8548 } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
8549 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
8550 wpa_s, buf + 24, reply, reply_size);
8551#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008552#endif /* CONFIG_WPS_ER */
8553#endif /* CONFIG_WPS */
8554#ifdef CONFIG_IBSS_RSN
8555 } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
8556 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
8557 reply_len = -1;
8558#endif /* CONFIG_IBSS_RSN */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008559#ifdef CONFIG_MESH
8560 } else if (os_strncmp(buf, "MESH_INTERFACE_ADD ", 19) == 0) {
8561 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8562 wpa_s, buf + 19, reply, reply_size);
8563 } else if (os_strcmp(buf, "MESH_INTERFACE_ADD") == 0) {
8564 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8565 wpa_s, "", reply, reply_size);
8566 } else if (os_strncmp(buf, "MESH_GROUP_ADD ", 15) == 0) {
8567 if (wpa_supplicant_ctrl_iface_mesh_group_add(wpa_s, buf + 15))
8568 reply_len = -1;
8569 } else if (os_strncmp(buf, "MESH_GROUP_REMOVE ", 18) == 0) {
8570 if (wpa_supplicant_ctrl_iface_mesh_group_remove(wpa_s,
8571 buf + 18))
8572 reply_len = -1;
8573#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008574#ifdef CONFIG_P2P
8575 } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008576 if (p2p_ctrl_find(wpa_s, buf + 8))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008577 reply_len = -1;
8578 } else if (os_strcmp(buf, "P2P_FIND") == 0) {
8579 if (p2p_ctrl_find(wpa_s, ""))
8580 reply_len = -1;
8581 } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
8582 wpas_p2p_stop_find(wpa_s);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008583 } else if (os_strncmp(buf, "P2P_ASP_PROVISION ", 18) == 0) {
8584 if (p2p_ctrl_asp_provision(wpa_s, buf + 18))
8585 reply_len = -1;
8586 } else if (os_strncmp(buf, "P2P_ASP_PROVISION_RESP ", 23) == 0) {
8587 if (p2p_ctrl_asp_provision_resp(wpa_s, buf + 23))
8588 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008589 } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
8590 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
8591 reply_size);
8592 } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
8593 if (p2p_ctrl_listen(wpa_s, buf + 11))
8594 reply_len = -1;
8595 } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
8596 if (p2p_ctrl_listen(wpa_s, ""))
8597 reply_len = -1;
8598 } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
8599 if (wpas_p2p_group_remove(wpa_s, buf + 17))
8600 reply_len = -1;
8601 } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07008602 if (p2p_ctrl_group_add(wpa_s, ""))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008603 reply_len = -1;
8604 } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
8605 if (p2p_ctrl_group_add(wpa_s, buf + 14))
8606 reply_len = -1;
8607 } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
8608 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
8609 reply_len = -1;
8610 } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
8611 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
8612 } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
8613 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
8614 reply_size);
8615 } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
8616 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
8617 reply_len = -1;
8618 } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
8619 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
8620 reply_len = -1;
8621 } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
8622 wpas_p2p_sd_service_update(wpa_s);
8623 } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
8624 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
8625 reply_len = -1;
8626 } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
8627 wpas_p2p_service_flush(wpa_s);
8628 } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
8629 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
8630 reply_len = -1;
8631 } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
8632 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
8633 reply_len = -1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08008634 } else if (os_strncmp(buf, "P2P_SERVICE_REP ", 16) == 0) {
8635 if (p2p_ctrl_service_replace(wpa_s, buf + 16) < 0)
8636 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008637 } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
8638 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
8639 reply_len = -1;
8640 } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
8641 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
8642 reply_len = -1;
8643 } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
8644 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
8645 reply_size);
8646 } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
8647 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
8648 reply_len = -1;
8649 } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
Dmitry Shmidt444d5672013-04-01 13:08:44 -07008650 p2p_ctrl_flush(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008651 } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
8652 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
8653 reply_len = -1;
8654 } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
8655 if (wpas_p2p_cancel(wpa_s))
8656 reply_len = -1;
8657 } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
8658 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
8659 reply_len = -1;
8660 } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
8661 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
8662 reply_len = -1;
8663 } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
8664 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
8665 reply_len = -1;
8666 } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
8667 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
8668 reply_len = -1;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07008669 } else if (os_strncmp(buf, "P2P_REMOVE_CLIENT ", 18) == 0) {
8670 if (p2p_ctrl_remove_client(wpa_s, buf + 18) < 0)
8671 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008672#endif /* CONFIG_P2P */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008673#ifdef CONFIG_WIFI_DISPLAY
8674 } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
8675 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
8676 reply_len = -1;
8677 } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
8678 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
8679 reply, reply_size);
8680#endif /* CONFIG_WIFI_DISPLAY */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008681#ifdef CONFIG_INTERWORKING
8682 } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
8683 if (interworking_fetch_anqp(wpa_s) < 0)
8684 reply_len = -1;
8685 } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
8686 interworking_stop_fetch_anqp(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008687 } else if (os_strcmp(buf, "INTERWORKING_SELECT") == 0) {
8688 if (ctrl_interworking_select(wpa_s, NULL) < 0)
8689 reply_len = -1;
8690 } else if (os_strncmp(buf, "INTERWORKING_SELECT ", 20) == 0) {
8691 if (ctrl_interworking_select(wpa_s, buf + 20) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008692 reply_len = -1;
8693 } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008694 if (ctrl_interworking_connect(wpa_s, buf + 21, 0) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008695 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008696 } else if (os_strncmp(buf, "INTERWORKING_ADD_NETWORK ", 25) == 0) {
8697 int id;
8698
8699 id = ctrl_interworking_connect(wpa_s, buf + 25, 1);
8700 if (id < 0)
8701 reply_len = -1;
8702 else {
8703 reply_len = os_snprintf(reply, reply_size, "%d\n", id);
8704 if (os_snprintf_error(reply_size, reply_len))
8705 reply_len = -1;
8706 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008707 } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
8708 if (get_anqp(wpa_s, buf + 9) < 0)
8709 reply_len = -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07008710 } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
8711 if (gas_request(wpa_s, buf + 12) < 0)
8712 reply_len = -1;
8713 } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
8714 reply_len = gas_response_get(wpa_s, buf + 17, reply,
8715 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008716#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07008717#ifdef CONFIG_HS20
8718 } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
8719 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
8720 reply_len = -1;
8721 } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
8722 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
8723 reply_len = -1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08008724 } else if (os_strncmp(buf, "HS20_ICON_REQUEST ", 18) == 0) {
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08008725 if (hs20_icon_request(wpa_s, buf + 18, 0) < 0)
8726 reply_len = -1;
8727 } else if (os_strncmp(buf, "REQ_HS20_ICON ", 14) == 0) {
8728 if (hs20_icon_request(wpa_s, buf + 14, 1) < 0)
8729 reply_len = -1;
8730 } else if (os_strncmp(buf, "GET_HS20_ICON ", 14) == 0) {
8731 reply_len = get_hs20_icon(wpa_s, buf + 14, reply, reply_size);
8732 } else if (os_strncmp(buf, "DEL_HS20_ICON ", 14) == 0) {
8733 if (del_hs20_icon(wpa_s, buf + 14) < 0)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08008734 reply_len = -1;
8735 } else if (os_strcmp(buf, "FETCH_OSU") == 0) {
8736 if (hs20_fetch_osu(wpa_s) < 0)
8737 reply_len = -1;
8738 } else if (os_strcmp(buf, "CANCEL_FETCH_OSU") == 0) {
8739 hs20_cancel_fetch_osu(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008740#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008741 } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
8742 {
8743 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
8744 wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
8745 reply_len = -1;
Dmitry Shmidt051af732013-10-22 13:52:46 -07008746 else {
8747 /*
8748 * Notify response from timeout to allow the control
8749 * interface response to be sent first.
8750 */
8751 eloop_register_timeout(0, 0, wpas_ctrl_eapol_response,
8752 wpa_s, NULL);
8753 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008754 } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
8755 if (wpa_supplicant_reload_configuration(wpa_s))
8756 reply_len = -1;
8757 } else if (os_strcmp(buf, "TERMINATE") == 0) {
8758 wpa_supplicant_terminate_proc(wpa_s->global);
8759 } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
8760 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
8761 reply_len = -1;
Dmitry Shmidte19501d2011-03-16 14:32:18 -07008762 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008763 reply_len = wpa_supplicant_ctrl_iface_blacklist(
8764 wpa_s, buf + 9, reply, reply_size);
8765 } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
8766 reply_len = wpa_supplicant_ctrl_iface_log_level(
8767 wpa_s, buf + 9, reply, reply_size);
Vinit Deshpandeda134e92014-12-02 10:59:29 -08008768 } else if (os_strncmp(buf, "LIST_NETWORKS ", 14) == 0) {
8769 reply_len = wpa_supplicant_ctrl_iface_list_networks(
8770 wpa_s, buf + 14, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008771 } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
8772 reply_len = wpa_supplicant_ctrl_iface_list_networks(
Vinit Deshpandeda134e92014-12-02 10:59:29 -08008773 wpa_s, NULL, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008774 } else if (os_strcmp(buf, "DISCONNECT") == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07008775#ifdef CONFIG_SME
8776 wpa_s->sme.prev_bssid_set = 0;
8777#endif /* CONFIG_SME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008778 wpa_s->reassociate = 0;
8779 wpa_s->disconnected = 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008780 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008781 wpa_supplicant_cancel_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008782 wpa_supplicant_deauthenticate(wpa_s,
8783 WLAN_REASON_DEAUTH_LEAVING);
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07008784 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008785 } else if (os_strcmp(buf, "SCAN") == 0) {
8786 wpas_ctrl_scan(wpa_s, NULL, reply, reply_size, &reply_len);
8787 } else if (os_strncmp(buf, "SCAN ", 5) == 0) {
8788 wpas_ctrl_scan(wpa_s, buf + 5, reply, reply_size, &reply_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008789 } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
8790 reply_len = wpa_supplicant_ctrl_iface_scan_results(
8791 wpa_s, reply, reply_size);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08008792 } else if (os_strcmp(buf, "ABORT_SCAN") == 0) {
8793 if (wpas_abort_ongoing_scan(wpa_s) < 0)
8794 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008795 } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
8796 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
8797 reply_len = -1;
8798 } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
8799 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
8800 reply_len = -1;
8801 } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
8802 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
8803 reply_len = -1;
8804 } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
8805 reply_len = wpa_supplicant_ctrl_iface_add_network(
8806 wpa_s, reply, reply_size);
8807 } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
8808 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
8809 reply_len = -1;
8810 } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8811 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
8812 reply_len = -1;
8813 } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
8814 reply_len = wpa_supplicant_ctrl_iface_get_network(
8815 wpa_s, buf + 12, reply, reply_size);
Dmitry Shmidt684785c2014-05-12 13:34:29 -07008816 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008817 if (wpa_supplicant_ctrl_iface_dup_network(wpa_s, buf + 12,
8818 wpa_s))
Dmitry Shmidt684785c2014-05-12 13:34:29 -07008819 reply_len = -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07008820 } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
8821 reply_len = wpa_supplicant_ctrl_iface_list_creds(
8822 wpa_s, reply, reply_size);
8823 } else if (os_strcmp(buf, "ADD_CRED") == 0) {
8824 reply_len = wpa_supplicant_ctrl_iface_add_cred(
8825 wpa_s, reply, reply_size);
8826 } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
8827 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
8828 reply_len = -1;
8829 } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
8830 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
8831 reply_len = -1;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07008832 } else if (os_strncmp(buf, "GET_CRED ", 9) == 0) {
8833 reply_len = wpa_supplicant_ctrl_iface_get_cred(wpa_s, buf + 9,
8834 reply,
8835 reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008836#ifndef CONFIG_NO_CONFIG_WRITE
8837 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
8838 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
8839 reply_len = -1;
8840#endif /* CONFIG_NO_CONFIG_WRITE */
8841 } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
8842 reply_len = wpa_supplicant_ctrl_iface_get_capability(
8843 wpa_s, buf + 15, reply, reply_size);
8844 } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
8845 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
8846 reply_len = -1;
8847 } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
8848 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
8849 reply_len = -1;
8850 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
8851 reply_len = wpa_supplicant_global_iface_list(
8852 wpa_s->global, reply, reply_size);
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08008853 } else if (os_strncmp(buf, "INTERFACES", 10) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008854 reply_len = wpa_supplicant_global_iface_interfaces(
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08008855 wpa_s->global, buf + 10, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008856 } else if (os_strncmp(buf, "BSS ", 4) == 0) {
8857 reply_len = wpa_supplicant_ctrl_iface_bss(
8858 wpa_s, buf + 4, reply, reply_size);
8859#ifdef CONFIG_AP
8860 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
8861 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
8862 } else if (os_strncmp(buf, "STA ", 4) == 0) {
8863 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
8864 reply_size);
8865 } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
8866 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
8867 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008868 } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
8869 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
8870 reply_len = -1;
8871 } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
8872 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
8873 reply_len = -1;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08008874 } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
8875 if (ap_ctrl_iface_chanswitch(wpa_s, buf + 12))
8876 reply_len = -1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08008877 } else if (os_strcmp(buf, "STOP_AP") == 0) {
8878 if (wpas_ap_stop_ap(wpa_s))
8879 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008880#endif /* CONFIG_AP */
8881 } else if (os_strcmp(buf, "SUSPEND") == 0) {
8882 wpas_notify_suspend(wpa_s->global);
8883 } else if (os_strcmp(buf, "RESUME") == 0) {
8884 wpas_notify_resume(wpa_s->global);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008885#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008886 } else if (os_strcmp(buf, "DROP_SA") == 0) {
8887 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
Dmitry Shmidt21de2142014-04-08 10:50:52 -07008888#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008889 } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
8890 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
8891 reply_len = -1;
8892 } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008893 wpa_s->auto_reconnect_disabled = atoi(buf + 16) == 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008894 } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
8895 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
8896 reply_len = -1;
8897 } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
8898 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
8899 buf + 17))
8900 reply_len = -1;
Dmitry Shmidtf48e4f92012-08-24 11:14:44 -07008901 } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008902 wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008903#ifdef CONFIG_TDLS
8904 } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
8905 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
8906 reply_len = -1;
8907 } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
8908 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
8909 reply_len = -1;
8910 } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
8911 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
8912 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008913 } else if (os_strncmp(buf, "TDLS_CHAN_SWITCH ", 17) == 0) {
8914 if (wpa_supplicant_ctrl_iface_tdls_chan_switch(wpa_s,
8915 buf + 17))
8916 reply_len = -1;
8917 } else if (os_strncmp(buf, "TDLS_CANCEL_CHAN_SWITCH ", 24) == 0) {
8918 if (wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(wpa_s,
8919 buf + 24))
8920 reply_len = -1;
Dmitry Shmidtcc00d5d2015-05-04 10:34:12 -07008921 } else if (os_strncmp(buf, "TDLS_LINK_STATUS ", 17) == 0) {
8922 reply_len = wpa_supplicant_ctrl_iface_tdls_link_status(
8923 wpa_s, buf + 17, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008924#endif /* CONFIG_TDLS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008925 } else if (os_strcmp(buf, "WMM_AC_STATUS") == 0) {
8926 reply_len = wpas_wmm_ac_status(wpa_s, reply, reply_size);
8927 } else if (os_strncmp(buf, "WMM_AC_ADDTS ", 13) == 0) {
8928 if (wmm_ac_ctrl_addts(wpa_s, buf + 13))
8929 reply_len = -1;
8930 } else if (os_strncmp(buf, "WMM_AC_DELTS ", 13) == 0) {
8931 if (wmm_ac_ctrl_delts(wpa_s, buf + 13))
8932 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008933 } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
8934 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
8935 reply_size);
Dmitry Shmidt7d56b752015-12-22 10:59:44 -08008936 } else if (os_strncmp(buf, "SIGNAL_MONITOR", 14) == 0) {
8937 if (wpas_ctrl_iface_signal_monitor(wpa_s, buf + 14))
8938 reply_len = -1;
Yuhao Zhengfcd6f212012-07-27 10:37:52 -07008939 } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
8940 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
8941 reply_size);
Dmitry Shmidt04949592012-07-19 12:16:46 -07008942#ifdef CONFIG_AUTOSCAN
8943 } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
8944 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
8945 reply_len = -1;
8946#endif /* CONFIG_AUTOSCAN */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08008947#ifdef ANDROID
Dmitry Shmidtbd567ad2011-05-09 14:17:09 -07008948 } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
8949 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
8950 reply_size);
Dmitry Shmidt292b0c32013-11-22 12:54:42 -08008951#endif /* ANDROID */
Dmitry Shmidta38abf92014-03-06 13:38:44 -08008952 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
8953 reply_len = wpa_supplicant_vendor_cmd(wpa_s, buf + 7, reply,
8954 reply_size);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008955 } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08008956 pmksa_cache_clear_current(wpa_s->wpa);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008957 eapol_sm_request_reauth(wpa_s->eapol);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08008958#ifdef CONFIG_WNM
8959 } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
8960 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
8961 reply_len = -1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08008962 } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 14) == 0) {
8963 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 14))
Dmitry Shmidt44c95782013-05-17 09:51:35 -07008964 reply_len = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08008965#endif /* CONFIG_WNM */
Dmitry Shmidt444d5672013-04-01 13:08:44 -07008966 } else if (os_strcmp(buf, "FLUSH") == 0) {
8967 wpa_supplicant_ctrl_iface_flush(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08008968 } else if (os_strncmp(buf, "RADIO_WORK ", 11) == 0) {
8969 reply_len = wpas_ctrl_radio_work(wpa_s, buf + 11, reply,
8970 reply_size);
Dmitry Shmidt818ea482014-03-10 13:15:21 -07008971#ifdef CONFIG_TESTING_OPTIONS
8972 } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
8973 if (wpas_ctrl_iface_mgmt_tx(wpa_s, buf + 8) < 0)
8974 reply_len = -1;
8975 } else if (os_strcmp(buf, "MGMT_TX_DONE") == 0) {
8976 wpas_ctrl_iface_mgmt_tx_done(wpa_s);
Dmitry Shmidt6dc03bd2014-05-16 10:40:13 -07008977 } else if (os_strncmp(buf, "DRIVER_EVENT ", 13) == 0) {
8978 if (wpas_ctrl_iface_driver_event(wpa_s, buf + 13) < 0)
8979 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08008980 } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
8981 if (wpas_ctrl_iface_eapol_rx(wpa_s, buf + 9) < 0)
8982 reply_len = -1;
8983 } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
8984 if (wpas_ctrl_iface_data_test_config(wpa_s, buf + 17) < 0)
8985 reply_len = -1;
8986 } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
8987 if (wpas_ctrl_iface_data_test_tx(wpa_s, buf + 13) < 0)
8988 reply_len = -1;
8989 } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
8990 if (wpas_ctrl_iface_data_test_frame(wpa_s, buf + 16) < 0)
8991 reply_len = -1;
Dmitry Shmidtff787d52015-01-12 13:01:47 -08008992 } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
8993 if (wpas_ctrl_test_alloc_fail(wpa_s, buf + 16) < 0)
8994 reply_len = -1;
8995 } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
8996 reply_len = wpas_ctrl_get_alloc_fail(wpa_s, reply, reply_size);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08008997 } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
8998 if (wpas_ctrl_test_fail(wpa_s, buf + 10) < 0)
8999 reply_len = -1;
9000 } else if (os_strcmp(buf, "GET_FAIL") == 0) {
9001 reply_len = wpas_ctrl_get_fail(wpa_s, reply, reply_size);
Jouni Malinenc4818362015-10-04 11:45:13 +03009002 } else if (os_strncmp(buf, "EVENT_TEST ", 11) == 0) {
9003 if (wpas_ctrl_event_test(wpa_s, buf + 11) < 0)
9004 reply_len = -1;
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08009005 } else if (os_strncmp(buf, "TEST_ASSOC_IE ", 14) == 0) {
9006 if (wpas_ctrl_test_assoc_ie(wpa_s, buf + 14) < 0)
9007 reply_len = -1;
Dmitry Shmidt818ea482014-03-10 13:15:21 -07009008#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt2e67f062014-07-16 09:55:28 -07009009 } else if (os_strncmp(buf, "VENDOR_ELEM_ADD ", 16) == 0) {
9010 if (wpas_ctrl_vendor_elem_add(wpa_s, buf + 16) < 0)
9011 reply_len = -1;
9012 } else if (os_strncmp(buf, "VENDOR_ELEM_GET ", 16) == 0) {
9013 reply_len = wpas_ctrl_vendor_elem_get(wpa_s, buf + 16, reply,
9014 reply_size);
9015 } else if (os_strncmp(buf, "VENDOR_ELEM_REMOVE ", 19) == 0) {
9016 if (wpas_ctrl_vendor_elem_remove(wpa_s, buf + 19) < 0)
9017 reply_len = -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009018 } else if (os_strncmp(buf, "NEIGHBOR_REP_REQUEST", 20) == 0) {
9019 if (wpas_ctrl_iface_send_neigbor_rep(wpa_s, buf + 20))
9020 reply_len = -1;
9021 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
9022 wpas_ctrl_iface_erp_flush(wpa_s);
9023 } else if (os_strncmp(buf, "MAC_RAND_SCAN ", 14) == 0) {
9024 if (wpas_ctrl_iface_mac_rand_scan(wpa_s, buf + 14))
9025 reply_len = -1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009026 } else if (os_strncmp(buf, "GET_PREF_FREQ_LIST ", 19) == 0) {
9027 reply_len = wpas_ctrl_iface_get_pref_freq_list(
9028 wpa_s, buf + 19, reply, reply_size);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009029 } else {
9030 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
9031 reply_len = 16;
9032 }
9033
9034 if (reply_len < 0) {
9035 os_memcpy(reply, "FAIL\n", 5);
9036 reply_len = 5;
9037 }
9038
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009039 *resp_len = reply_len;
9040 return reply;
9041}
9042
9043
9044static int wpa_supplicant_global_iface_add(struct wpa_global *global,
9045 char *cmd)
9046{
9047 struct wpa_interface iface;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009048 char *pos, *extra;
9049 struct wpa_supplicant *wpa_s;
9050 unsigned int create_iface = 0;
9051 u8 mac_addr[ETH_ALEN];
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009052 enum wpa_driver_if_type type = WPA_IF_STATION;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009053
9054 /*
9055 * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009056 * TAB<bridge_ifname>[TAB<create>[TAB<interface_type>]]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009057 */
9058 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
9059
9060 os_memset(&iface, 0, sizeof(iface));
9061
9062 do {
9063 iface.ifname = pos = cmd;
9064 pos = os_strchr(pos, '\t');
9065 if (pos)
9066 *pos++ = '\0';
9067 if (iface.ifname[0] == '\0')
9068 return -1;
9069 if (pos == NULL)
9070 break;
9071
9072 iface.confname = pos;
9073 pos = os_strchr(pos, '\t');
9074 if (pos)
9075 *pos++ = '\0';
9076 if (iface.confname[0] == '\0')
9077 iface.confname = NULL;
9078 if (pos == NULL)
9079 break;
9080
9081 iface.driver = pos;
9082 pos = os_strchr(pos, '\t');
9083 if (pos)
9084 *pos++ = '\0';
9085 if (iface.driver[0] == '\0')
9086 iface.driver = NULL;
9087 if (pos == NULL)
9088 break;
9089
9090 iface.ctrl_interface = pos;
9091 pos = os_strchr(pos, '\t');
9092 if (pos)
9093 *pos++ = '\0';
9094 if (iface.ctrl_interface[0] == '\0')
9095 iface.ctrl_interface = NULL;
9096 if (pos == NULL)
9097 break;
9098
9099 iface.driver_param = pos;
9100 pos = os_strchr(pos, '\t');
9101 if (pos)
9102 *pos++ = '\0';
9103 if (iface.driver_param[0] == '\0')
9104 iface.driver_param = NULL;
9105 if (pos == NULL)
9106 break;
9107
9108 iface.bridge_ifname = pos;
9109 pos = os_strchr(pos, '\t');
9110 if (pos)
9111 *pos++ = '\0';
9112 if (iface.bridge_ifname[0] == '\0')
9113 iface.bridge_ifname = NULL;
9114 if (pos == NULL)
9115 break;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009116
9117 extra = pos;
9118 pos = os_strchr(pos, '\t');
9119 if (pos)
9120 *pos++ = '\0';
Dmitry Shmidt83474442015-04-15 13:47:09 -07009121 if (!extra[0])
9122 break;
9123
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009124 if (os_strcmp(extra, "create") == 0) {
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009125 create_iface = 1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009126 if (!pos)
9127 break;
9128
9129 if (os_strcmp(pos, "sta") == 0) {
9130 type = WPA_IF_STATION;
9131 } else if (os_strcmp(pos, "ap") == 0) {
9132 type = WPA_IF_AP_BSS;
9133 } else {
9134 wpa_printf(MSG_DEBUG,
9135 "INTERFACE_ADD unsupported interface type: '%s'",
9136 pos);
9137 return -1;
9138 }
9139 } else {
Dmitry Shmidt83474442015-04-15 13:47:09 -07009140 wpa_printf(MSG_DEBUG,
9141 "INTERFACE_ADD unsupported extra parameter: '%s'",
9142 extra);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009143 return -1;
Dmitry Shmidt83474442015-04-15 13:47:09 -07009144 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009145 } while (0);
9146
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009147 if (create_iface) {
9148 wpa_printf(MSG_DEBUG, "CTRL_IFACE creating interface '%s'",
9149 iface.ifname);
9150 if (!global->ifaces)
9151 return -1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08009152 if (wpa_drv_if_add(global->ifaces, type, iface.ifname,
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009153 NULL, NULL, NULL, mac_addr, NULL) < 0) {
9154 wpa_printf(MSG_ERROR,
9155 "CTRL_IFACE interface creation failed");
9156 return -1;
9157 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009158
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009159 wpa_printf(MSG_DEBUG,
9160 "CTRL_IFACE interface '%s' created with MAC addr: "
9161 MACSTR, iface.ifname, MAC2STR(mac_addr));
9162 }
9163
9164 if (wpa_supplicant_get_iface(global, iface.ifname))
9165 goto fail;
9166
9167 wpa_s = wpa_supplicant_add_iface(global, &iface, NULL);
9168 if (!wpa_s)
9169 goto fail;
9170 wpa_s->added_vif = create_iface;
9171 return 0;
9172
9173fail:
9174 if (create_iface)
9175 wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, iface.ifname);
9176 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009177}
9178
9179
9180static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
9181 char *cmd)
9182{
9183 struct wpa_supplicant *wpa_s;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009184 int ret;
9185 unsigned int delete_iface;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009186
9187 wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
9188
9189 wpa_s = wpa_supplicant_get_iface(global, cmd);
9190 if (wpa_s == NULL)
9191 return -1;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07009192 delete_iface = wpa_s->added_vif;
9193 ret = wpa_supplicant_remove_iface(global, wpa_s, 0);
9194 if (!ret && delete_iface) {
9195 wpa_printf(MSG_DEBUG, "CTRL_IFACE deleting the interface '%s'",
9196 cmd);
9197 ret = wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, cmd);
9198 }
9199 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009200}
9201
9202
9203static void wpa_free_iface_info(struct wpa_interface_info *iface)
9204{
9205 struct wpa_interface_info *prev;
9206
9207 while (iface) {
9208 prev = iface;
9209 iface = iface->next;
9210
9211 os_free(prev->ifname);
9212 os_free(prev->desc);
9213 os_free(prev);
9214 }
9215}
9216
9217
9218static int wpa_supplicant_global_iface_list(struct wpa_global *global,
9219 char *buf, int len)
9220{
9221 int i, res;
9222 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
9223 char *pos, *end;
9224
9225 for (i = 0; wpa_drivers[i]; i++) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07009226 const struct wpa_driver_ops *drv = wpa_drivers[i];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009227 if (drv->get_interfaces == NULL)
9228 continue;
9229 tmp = drv->get_interfaces(global->drv_priv[i]);
9230 if (tmp == NULL)
9231 continue;
9232
9233 if (last == NULL)
9234 iface = last = tmp;
9235 else
9236 last->next = tmp;
9237 while (last->next)
9238 last = last->next;
9239 }
9240
9241 pos = buf;
9242 end = buf + len;
9243 for (tmp = iface; tmp; tmp = tmp->next) {
9244 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
9245 tmp->drv_name, tmp->ifname,
9246 tmp->desc ? tmp->desc : "");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009247 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009248 *pos = '\0';
9249 break;
9250 }
9251 pos += res;
9252 }
9253
9254 wpa_free_iface_info(iface);
9255
9256 return pos - buf;
9257}
9258
9259
9260static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08009261 const char *input,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009262 char *buf, int len)
9263{
9264 int res;
9265 char *pos, *end;
9266 struct wpa_supplicant *wpa_s;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08009267 int show_ctrl = 0;
9268
9269 if (input)
9270 show_ctrl = !!os_strstr(input, "ctrl");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009271
9272 wpa_s = global->ifaces;
9273 pos = buf;
9274 end = buf + len;
9275
9276 while (wpa_s) {
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08009277 if (show_ctrl)
9278 res = os_snprintf(pos, end - pos, "%s ctrl_iface=%s\n",
9279 wpa_s->ifname,
9280 wpa_s->conf->ctrl_interface ?
9281 wpa_s->conf->ctrl_interface : "N/A");
9282 else
9283 res = os_snprintf(pos, end - pos, "%s\n",
9284 wpa_s->ifname);
9285
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009286 if (os_snprintf_error(end - pos, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009287 *pos = '\0';
9288 break;
9289 }
9290 pos += res;
9291 wpa_s = wpa_s->next;
9292 }
9293 return pos - buf;
9294}
9295
9296
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009297static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
9298 const char *ifname,
9299 char *cmd, size_t *resp_len)
9300{
9301 struct wpa_supplicant *wpa_s;
9302
9303 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9304 if (os_strcmp(ifname, wpa_s->ifname) == 0)
9305 break;
9306 }
9307
9308 if (wpa_s == NULL) {
9309 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
9310 if (resp)
9311 *resp_len = os_strlen(resp);
9312 else
9313 *resp_len = 1;
9314 return resp;
9315 }
9316
9317 return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
9318}
9319
9320
9321static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
9322 char *buf, size_t *resp_len)
9323{
9324#ifdef CONFIG_P2P
9325 static const char * cmd[] = {
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009326 "LIST_NETWORKS",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009327 "P2P_FIND",
9328 "P2P_STOP_FIND",
9329 "P2P_LISTEN",
9330 "P2P_GROUP_ADD",
9331 "P2P_GET_PASSPHRASE",
9332 "P2P_SERVICE_UPDATE",
9333 "P2P_SERVICE_FLUSH",
9334 "P2P_FLUSH",
9335 "P2P_CANCEL",
9336 "P2P_PRESENCE_REQ",
9337 "P2P_EXT_LISTEN",
9338 NULL
9339 };
9340 static const char * prefix[] = {
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08009341#ifdef ANDROID
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009342 "DRIVER ",
Dmitry Shmidt9e3f8ee2014-01-17 10:52:01 -08009343#endif /* ANDROID */
Dmitry Shmidt0c18dcd2013-08-16 15:29:47 -07009344 "GET_NETWORK ",
9345 "REMOVE_NETWORK ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009346 "P2P_FIND ",
9347 "P2P_CONNECT ",
9348 "P2P_LISTEN ",
9349 "P2P_GROUP_REMOVE ",
9350 "P2P_GROUP_ADD ",
9351 "P2P_PROV_DISC ",
9352 "P2P_SERV_DISC_REQ ",
9353 "P2P_SERV_DISC_CANCEL_REQ ",
9354 "P2P_SERV_DISC_RESP ",
9355 "P2P_SERV_DISC_EXTERNAL ",
9356 "P2P_SERVICE_ADD ",
9357 "P2P_SERVICE_DEL ",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08009358 "P2P_SERVICE_REP ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009359 "P2P_REJECT ",
9360 "P2P_INVITE ",
9361 "P2P_PEER ",
9362 "P2P_SET ",
9363 "P2P_UNAUTHORIZE ",
9364 "P2P_PRESENCE_REQ ",
9365 "P2P_EXT_LISTEN ",
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07009366 "P2P_REMOVE_CLIENT ",
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08009367 "WPS_NFC_TOKEN ",
9368 "WPS_NFC_TAG_READ ",
Dmitry Shmidt413dde72014-04-11 10:23:22 -07009369 "NFC_GET_HANDOVER_SEL ",
9370 "NFC_GET_HANDOVER_REQ ",
9371 "NFC_REPORT_HANDOVER ",
Dmitry Shmidt216983b2015-02-06 10:50:36 -08009372 "P2P_ASP_PROVISION ",
9373 "P2P_ASP_PROVISION_RESP ",
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009374 NULL
9375 };
9376 int found = 0;
9377 int i;
9378
9379 if (global->p2p_init_wpa_s == NULL)
9380 return NULL;
9381
9382 for (i = 0; !found && cmd[i]; i++) {
9383 if (os_strcmp(buf, cmd[i]) == 0)
9384 found = 1;
9385 }
9386
9387 for (i = 0; !found && prefix[i]; i++) {
9388 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
9389 found = 1;
9390 }
9391
9392 if (found)
9393 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9394 buf, resp_len);
9395#endif /* CONFIG_P2P */
9396 return NULL;
9397}
9398
9399
9400static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
9401 char *buf, size_t *resp_len)
9402{
9403#ifdef CONFIG_WIFI_DISPLAY
9404 if (global->p2p_init_wpa_s == NULL)
9405 return NULL;
9406 if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
9407 os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
9408 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9409 buf, resp_len);
9410#endif /* CONFIG_WIFI_DISPLAY */
9411 return NULL;
9412}
9413
9414
9415static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
9416 char *buf, size_t *resp_len)
9417{
9418 char *ret;
9419
9420 ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
9421 if (ret)
9422 return ret;
9423
9424 ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
9425 if (ret)
9426 return ret;
9427
9428 return NULL;
9429}
9430
9431
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009432static int wpas_global_ctrl_iface_set(struct wpa_global *global, char *cmd)
9433{
9434 char *value;
9435
9436 value = os_strchr(cmd, ' ');
9437 if (value == NULL)
9438 return -1;
9439 *value++ = '\0';
9440
9441 wpa_printf(MSG_DEBUG, "GLOBAL_CTRL_IFACE SET '%s'='%s'", cmd, value);
9442
9443#ifdef CONFIG_WIFI_DISPLAY
9444 if (os_strcasecmp(cmd, "wifi_display") == 0) {
9445 wifi_display_enable(global, !!atoi(value));
9446 return 0;
9447 }
9448#endif /* CONFIG_WIFI_DISPLAY */
9449
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009450 /* Restore cmd to its original value to allow redirection */
9451 value[-1] = ' ';
9452
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009453 return -1;
9454}
9455
9456
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009457static int wpas_global_ctrl_iface_dup_network(struct wpa_global *global,
9458 char *cmd)
9459{
9460 struct wpa_supplicant *wpa_s[2]; /* src, dst */
9461 char *p;
9462 unsigned int i;
9463
9464 /* cmd: "<src ifname> <dst ifname> <src network id> <dst network id>
9465 * <variable name> */
9466
9467 for (i = 0; i < ARRAY_SIZE(wpa_s) ; i++) {
9468 p = os_strchr(cmd, ' ');
9469 if (p == NULL)
9470 return -1;
9471 *p = '\0';
9472
9473 wpa_s[i] = global->ifaces;
9474 for (; wpa_s[i]; wpa_s[i] = wpa_s[i]->next) {
9475 if (os_strcmp(cmd, wpa_s[i]->ifname) == 0)
9476 break;
9477 }
9478
9479 if (!wpa_s[i]) {
9480 wpa_printf(MSG_DEBUG,
9481 "CTRL_IFACE: Could not find iface=%s", cmd);
9482 return -1;
9483 }
9484
9485 cmd = p + 1;
9486 }
9487
9488 return wpa_supplicant_ctrl_iface_dup_network(wpa_s[0], cmd, wpa_s[1]);
9489}
9490
9491
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009492#ifndef CONFIG_NO_CONFIG_WRITE
9493static int wpas_global_ctrl_iface_save_config(struct wpa_global *global)
9494{
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009495 int ret = 0, saved = 0;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009496 struct wpa_supplicant *wpa_s;
9497
9498 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9499 if (!wpa_s->conf->update_config) {
9500 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed to update configuration (update_config=0)");
9501 continue;
9502 }
9503
9504 if (wpa_config_write(wpa_s->confname, wpa_s->conf)) {
9505 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to update configuration");
9506 ret = 1;
9507 } else {
9508 wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration updated");
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009509 saved++;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009510 }
9511 }
9512
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009513 if (!saved && !ret) {
9514 wpa_dbg(wpa_s, MSG_DEBUG,
9515 "CTRL_IFACE: SAVE_CONFIG - No configuration files could be updated");
9516 ret = 1;
9517 }
9518
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009519 return ret;
9520}
9521#endif /* CONFIG_NO_CONFIG_WRITE */
9522
9523
9524static int wpas_global_ctrl_iface_status(struct wpa_global *global,
9525 char *buf, size_t buflen)
9526{
9527 char *pos, *end;
9528 int ret;
9529 struct wpa_supplicant *wpa_s;
9530
9531 pos = buf;
9532 end = buf + buflen;
9533
9534#ifdef CONFIG_P2P
9535 if (global->p2p && !global->p2p_disabled) {
9536 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
9537 "\n"
9538 "p2p_state=%s\n",
9539 MAC2STR(global->p2p_dev_addr),
9540 p2p_get_state_txt(global->p2p));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009541 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009542 return pos - buf;
9543 pos += ret;
9544 } else if (global->p2p) {
9545 ret = os_snprintf(pos, end - pos, "p2p_state=DISABLED\n");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009546 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009547 return pos - buf;
9548 pos += ret;
9549 }
9550#endif /* CONFIG_P2P */
9551
9552#ifdef CONFIG_WIFI_DISPLAY
9553 ret = os_snprintf(pos, end - pos, "wifi_display=%d\n",
9554 !!global->wifi_display);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009555 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009556 return pos - buf;
9557 pos += ret;
9558#endif /* CONFIG_WIFI_DISPLAY */
9559
9560 for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9561 ret = os_snprintf(pos, end - pos, "ifname=%s\n"
9562 "address=" MACSTR "\n",
9563 wpa_s->ifname, MAC2STR(wpa_s->own_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009564 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009565 return pos - buf;
9566 pos += ret;
9567 }
9568
9569 return pos - buf;
9570}
9571
9572
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009573#ifdef CONFIG_FST
9574
9575static int wpas_global_ctrl_iface_fst_attach(struct wpa_global *global,
9576 char *cmd, char *buf,
9577 size_t reply_size)
9578{
9579 char ifname[IFNAMSIZ + 1];
9580 struct fst_iface_cfg cfg;
9581 struct wpa_supplicant *wpa_s;
9582 struct fst_wpa_obj iface_obj;
9583
9584 if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
9585 wpa_s = wpa_supplicant_get_iface(global, ifname);
9586 if (wpa_s) {
9587 if (wpa_s->fst) {
9588 wpa_printf(MSG_INFO, "FST: Already attached");
9589 return -1;
9590 }
9591 fst_wpa_supplicant_fill_iface_obj(wpa_s, &iface_obj);
9592 wpa_s->fst = fst_attach(ifname, wpa_s->own_addr,
9593 &iface_obj, &cfg);
9594 if (wpa_s->fst)
9595 return os_snprintf(buf, reply_size, "OK\n");
9596 }
9597 }
9598
9599 return -1;
9600}
9601
9602
9603static int wpas_global_ctrl_iface_fst_detach(struct wpa_global *global,
9604 char *cmd, char *buf,
9605 size_t reply_size)
9606{
9607 char ifname[IFNAMSIZ + 1];
9608 struct wpa_supplicant *wpa_s;
9609
9610 if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
9611 wpa_s = wpa_supplicant_get_iface(global, ifname);
9612 if (wpa_s) {
9613 if (!fst_iface_detach(ifname)) {
9614 wpa_s->fst = NULL;
9615 return os_snprintf(buf, reply_size, "OK\n");
9616 }
9617 }
9618 }
9619
9620 return -1;
9621}
9622
9623#endif /* CONFIG_FST */
9624
9625
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009626char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
9627 char *buf, size_t *resp_len)
9628{
9629 char *reply;
9630 const int reply_size = 2048;
9631 int reply_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08009632 int level = MSG_DEBUG;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009633
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07009634 if (os_strncmp(buf, "IFNAME=", 7) == 0) {
9635 char *pos = os_strchr(buf + 7, ' ');
9636 if (pos) {
9637 *pos++ = '\0';
9638 return wpas_global_ctrl_iface_ifname(global,
9639 buf + 7, pos,
9640 resp_len);
9641 }
9642 }
9643
9644 reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
9645 if (reply)
9646 return reply;
9647
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08009648 if (os_strcmp(buf, "PING") == 0)
9649 level = MSG_EXCESSIVE;
9650 wpa_hexdump_ascii(level, "RX global ctrl_iface",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009651 (const u8 *) buf, os_strlen(buf));
9652
9653 reply = os_malloc(reply_size);
9654 if (reply == NULL) {
9655 *resp_len = 1;
9656 return NULL;
9657 }
9658
9659 os_memcpy(reply, "OK\n", 3);
9660 reply_len = 3;
9661
9662 if (os_strcmp(buf, "PING") == 0) {
9663 os_memcpy(reply, "PONG\n", 5);
9664 reply_len = 5;
9665 } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
9666 if (wpa_supplicant_global_iface_add(global, buf + 14))
9667 reply_len = -1;
9668 } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
9669 if (wpa_supplicant_global_iface_remove(global, buf + 17))
9670 reply_len = -1;
9671 } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
9672 reply_len = wpa_supplicant_global_iface_list(
9673 global, reply, reply_size);
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08009674 } else if (os_strncmp(buf, "INTERFACES", 10) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009675 reply_len = wpa_supplicant_global_iface_interfaces(
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08009676 global, buf + 10, reply, reply_size);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009677#ifdef CONFIG_FST
9678 } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
9679 reply_len = wpas_global_ctrl_iface_fst_attach(global, buf + 11,
9680 reply,
9681 reply_size);
9682 } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
9683 reply_len = wpas_global_ctrl_iface_fst_detach(global, buf + 11,
9684 reply,
9685 reply_size);
9686 } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
9687 reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
9688#endif /* CONFIG_FST */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009689 } else if (os_strcmp(buf, "TERMINATE") == 0) {
9690 wpa_supplicant_terminate_proc(global);
9691 } else if (os_strcmp(buf, "SUSPEND") == 0) {
9692 wpas_notify_suspend(global);
9693 } else if (os_strcmp(buf, "RESUME") == 0) {
9694 wpas_notify_resume(global);
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009695 } else if (os_strncmp(buf, "SET ", 4) == 0) {
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009696 if (wpas_global_ctrl_iface_set(global, buf + 4)) {
9697#ifdef CONFIG_P2P
9698 if (global->p2p_init_wpa_s) {
9699 os_free(reply);
9700 /* Check if P2P redirection would work for this
9701 * command. */
9702 return wpa_supplicant_ctrl_iface_process(
9703 global->p2p_init_wpa_s,
9704 buf, resp_len);
9705 }
9706#endif /* CONFIG_P2P */
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009707 reply_len = -1;
Dmitry Shmidt61593f02014-04-21 16:27:35 -07009708 }
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08009709 } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
9710 if (wpas_global_ctrl_iface_dup_network(global, buf + 12))
9711 reply_len = -1;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07009712#ifndef CONFIG_NO_CONFIG_WRITE
9713 } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
9714 if (wpas_global_ctrl_iface_save_config(global))
9715 reply_len = -1;
9716#endif /* CONFIG_NO_CONFIG_WRITE */
9717 } else if (os_strcmp(buf, "STATUS") == 0) {
9718 reply_len = wpas_global_ctrl_iface_status(global, reply,
9719 reply_size);
Dmitry Shmidt7f93d6f2014-02-21 11:22:49 -08009720#ifdef CONFIG_MODULE_TESTS
9721 } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
9722 int wpas_module_tests(void);
9723 if (wpas_module_tests() < 0)
9724 reply_len = -1;
9725#endif /* CONFIG_MODULE_TESTS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08009726 } else if (os_strncmp(buf, "RELOG", 5) == 0) {
9727 if (wpa_debug_reopen_file() < 0)
9728 reply_len = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07009729 } else {
9730 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
9731 reply_len = 16;
9732 }
9733
9734 if (reply_len < 0) {
9735 os_memcpy(reply, "FAIL\n", 5);
9736 reply_len = 5;
9737 }
9738
9739 *resp_len = reply_len;
9740 return reply;
9741}