MBO: Implement MBO non-preferred channel report in Association Request
[mech_eap.git] / wpa_supplicant / ctrl_iface.c
1 /*
2  * WPA Supplicant / Control interface (shared code for all backends)
3  * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "utils/includes.h"
10 #ifdef CONFIG_TESTING_OPTIONS
11 #include <net/ethernet.h>
12 #include <netinet/ip.h>
13 #endif /* CONFIG_TESTING_OPTIONS */
14
15 #include "utils/common.h"
16 #include "utils/eloop.h"
17 #include "utils/uuid.h"
18 #include "common/version.h"
19 #include "common/ieee802_11_defs.h"
20 #include "common/ieee802_11_common.h"
21 #include "common/wpa_ctrl.h"
22 #include "crypto/tls.h"
23 #include "ap/hostapd.h"
24 #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"
31 #include "fst/fst.h"
32 #include "fst/fst_ctrl_iface.h"
33 #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"
41 #include "hs20_supplicant.h"
42 #include "wifi_display.h"
43 #include "notify.h"
44 #include "bss.h"
45 #include "scan.h"
46 #include "ctrl_iface.h"
47 #include "interworking.h"
48 #include "blacklist.h"
49 #include "autoscan.h"
50 #include "wnm_sta.h"
51 #include "offchannel.h"
52 #include "drivers/driver.h"
53 #include "mesh.h"
54
55 static int wpa_supplicant_global_iface_list(struct wpa_global *global,
56                                             char *buf, int len);
57 static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
58                                                   char *buf, int len);
59 static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s,
60                                         char *val);
61
62 static int set_bssid_filter(struct wpa_supplicant *wpa_s, char *val)
63 {
64         char *pos;
65         u8 addr[ETH_ALEN], *filter = NULL, *n;
66         size_t count = 0;
67
68         pos = val;
69         while (pos) {
70                 if (*pos == '\0')
71                         break;
72                 if (hwaddr_aton(pos, addr)) {
73                         os_free(filter);
74                         return -1;
75                 }
76                 n = os_realloc_array(filter, count + 1, ETH_ALEN);
77                 if (n == NULL) {
78                         os_free(filter);
79                         return -1;
80                 }
81                 filter = n;
82                 os_memcpy(filter + count * ETH_ALEN, addr, ETH_ALEN);
83                 count++;
84
85                 pos = os_strchr(pos, ' ');
86                 if (pos)
87                         pos++;
88         }
89
90         wpa_hexdump(MSG_DEBUG, "bssid_filter", filter, count * ETH_ALEN);
91         os_free(wpa_s->bssid_filter);
92         wpa_s->bssid_filter = filter;
93         wpa_s->bssid_filter_count = count;
94
95         return 0;
96 }
97
98
99 static int set_disallow_aps(struct wpa_supplicant *wpa_s, char *val)
100 {
101         char *pos;
102         u8 addr[ETH_ALEN], *bssid = NULL, *n;
103         struct wpa_ssid_value *ssid = NULL, *ns;
104         size_t count = 0, ssid_count = 0;
105         struct wpa_ssid *c;
106
107         /*
108          * disallow_list ::= <ssid_spec> | <bssid_spec> | <disallow_list> | ""
109          * SSID_SPEC ::= ssid <SSID_HEX>
110          * BSSID_SPEC ::= bssid <BSSID_HEX>
111          */
112
113         pos = val;
114         while (pos) {
115                 if (*pos == '\0')
116                         break;
117                 if (os_strncmp(pos, "bssid ", 6) == 0) {
118                         int res;
119                         pos += 6;
120                         res = hwaddr_aton2(pos, addr);
121                         if (res < 0) {
122                                 os_free(ssid);
123                                 os_free(bssid);
124                                 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
125                                            "BSSID value '%s'", pos);
126                                 return -1;
127                         }
128                         pos += res;
129                         n = os_realloc_array(bssid, count + 1, ETH_ALEN);
130                         if (n == NULL) {
131                                 os_free(ssid);
132                                 os_free(bssid);
133                                 return -1;
134                         }
135                         bssid = n;
136                         os_memcpy(bssid + count * ETH_ALEN, addr, ETH_ALEN);
137                         count++;
138                 } else if (os_strncmp(pos, "ssid ", 5) == 0) {
139                         char *end;
140                         pos += 5;
141
142                         end = pos;
143                         while (*end) {
144                                 if (*end == '\0' || *end == ' ')
145                                         break;
146                                 end++;
147                         }
148
149                         ns = os_realloc_array(ssid, ssid_count + 1,
150                                               sizeof(struct wpa_ssid_value));
151                         if (ns == NULL) {
152                                 os_free(ssid);
153                                 os_free(bssid);
154                                 return -1;
155                         }
156                         ssid = ns;
157
158                         if ((end - pos) & 0x01 ||
159                             end - pos > 2 * SSID_MAX_LEN ||
160                             hexstr2bin(pos, ssid[ssid_count].ssid,
161                                        (end - pos) / 2) < 0) {
162                                 os_free(ssid);
163                                 os_free(bssid);
164                                 wpa_printf(MSG_DEBUG, "Invalid disallow_aps "
165                                            "SSID value '%s'", pos);
166                                 return -1;
167                         }
168                         ssid[ssid_count].ssid_len = (end - pos) / 2;
169                         wpa_hexdump_ascii(MSG_DEBUG, "disallow_aps SSID",
170                                           ssid[ssid_count].ssid,
171                                           ssid[ssid_count].ssid_len);
172                         ssid_count++;
173                         pos = end;
174                 } else {
175                         wpa_printf(MSG_DEBUG, "Unexpected disallow_aps value "
176                                    "'%s'", pos);
177                         os_free(ssid);
178                         os_free(bssid);
179                         return -1;
180                 }
181
182                 pos = os_strchr(pos, ' ');
183                 if (pos)
184                         pos++;
185         }
186
187         wpa_hexdump(MSG_DEBUG, "disallow_aps_bssid", bssid, count * ETH_ALEN);
188         os_free(wpa_s->disallow_aps_bssid);
189         wpa_s->disallow_aps_bssid = bssid;
190         wpa_s->disallow_aps_bssid_count = count;
191
192         wpa_printf(MSG_DEBUG, "disallow_aps_ssid_count %d", (int) ssid_count);
193         os_free(wpa_s->disallow_aps_ssid);
194         wpa_s->disallow_aps_ssid = ssid;
195         wpa_s->disallow_aps_ssid_count = ssid_count;
196
197         if (!wpa_s->current_ssid || wpa_s->wpa_state < WPA_AUTHENTICATING)
198                 return 0;
199
200         c = wpa_s->current_ssid;
201         if (c->mode != WPAS_MODE_INFRA && c->mode != WPAS_MODE_IBSS)
202                 return 0;
203
204         if (!disallowed_bssid(wpa_s, wpa_s->bssid) &&
205             !disallowed_ssid(wpa_s, c->ssid, c->ssid_len))
206                 return 0;
207
208         wpa_printf(MSG_DEBUG, "Disconnect and try to find another network "
209                    "because current AP was marked disallowed");
210
211 #ifdef CONFIG_SME
212         wpa_s->sme.prev_bssid_set = 0;
213 #endif /* CONFIG_SME */
214         wpa_s->reassociate = 1;
215         wpa_s->own_disconnect_req = 1;
216         wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
217         wpa_supplicant_req_scan(wpa_s, 0, 0);
218
219         return 0;
220 }
221
222
223 #ifndef CONFIG_NO_CONFIG_BLOBS
224 static int wpas_ctrl_set_blob(struct wpa_supplicant *wpa_s, char *pos)
225 {
226         char *name = pos;
227         struct wpa_config_blob *blob;
228         size_t len;
229
230         pos = os_strchr(pos, ' ');
231         if (pos == NULL)
232                 return -1;
233         *pos++ = '\0';
234         len = os_strlen(pos);
235         if (len & 1)
236                 return -1;
237
238         wpa_printf(MSG_DEBUG, "CTRL: Set blob '%s'", name);
239         blob = os_zalloc(sizeof(*blob));
240         if (blob == NULL)
241                 return -1;
242         blob->name = os_strdup(name);
243         blob->data = os_malloc(len / 2);
244         if (blob->name == NULL || blob->data == NULL) {
245                 wpa_config_free_blob(blob);
246                 return -1;
247         }
248
249         if (hexstr2bin(pos, blob->data, len / 2) < 0) {
250                 wpa_printf(MSG_DEBUG, "CTRL: Invalid blob hex data");
251                 wpa_config_free_blob(blob);
252                 return -1;
253         }
254         blob->len = len / 2;
255
256         wpa_config_set_blob(wpa_s->conf, blob);
257
258         return 0;
259 }
260 #endif /* CONFIG_NO_CONFIG_BLOBS */
261
262
263 static int wpas_ctrl_pno(struct wpa_supplicant *wpa_s, char *cmd)
264 {
265         char *params;
266         char *pos;
267         int *freqs = NULL;
268         int ret;
269
270         if (atoi(cmd)) {
271                 params = os_strchr(cmd, ' ');
272                 os_free(wpa_s->manual_sched_scan_freqs);
273                 if (params) {
274                         params++;
275                         pos = os_strstr(params, "freq=");
276                         if (pos)
277                                 freqs = freq_range_to_channel_list(wpa_s,
278                                                                    pos + 5);
279                 }
280                 wpa_s->manual_sched_scan_freqs = freqs;
281                 ret = wpas_start_pno(wpa_s);
282         } else {
283                 ret = wpas_stop_pno(wpa_s);
284         }
285         return ret;
286 }
287
288
289 static int wpas_ctrl_set_band(struct wpa_supplicant *wpa_s, char *band)
290 {
291         union wpa_event_data event;
292
293         if (os_strcmp(band, "AUTO") == 0)
294                 wpa_s->setband = WPA_SETBAND_AUTO;
295         else if (os_strcmp(band, "5G") == 0)
296                 wpa_s->setband = WPA_SETBAND_5G;
297         else if (os_strcmp(band, "2G") == 0)
298                 wpa_s->setband = WPA_SETBAND_2G;
299         else
300                 return -1;
301
302         if (wpa_drv_setband(wpa_s, wpa_s->setband) == 0) {
303                 os_memset(&event, 0, sizeof(event));
304                 event.channel_list_changed.initiator = REGDOM_SET_BY_USER;
305                 event.channel_list_changed.type = REGDOM_TYPE_UNKNOWN;
306                 wpa_supplicant_event(wpa_s, EVENT_CHANNEL_LIST_CHANGED, &event);
307         }
308
309         return 0;
310 }
311
312
313 static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
314                                          char *cmd)
315 {
316         char *value;
317         int ret = 0;
318
319         value = os_strchr(cmd, ' ');
320         if (value == NULL)
321                 return -1;
322         *value++ = '\0';
323
324         wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
325         if (os_strcasecmp(cmd, "EAPOL::heldPeriod") == 0) {
326                 eapol_sm_configure(wpa_s->eapol,
327                                    atoi(value), -1, -1, -1);
328         } else if (os_strcasecmp(cmd, "EAPOL::authPeriod") == 0) {
329                 eapol_sm_configure(wpa_s->eapol,
330                                    -1, atoi(value), -1, -1);
331         } else if (os_strcasecmp(cmd, "EAPOL::startPeriod") == 0) {
332                 eapol_sm_configure(wpa_s->eapol,
333                                    -1, -1, atoi(value), -1);
334         } else if (os_strcasecmp(cmd, "EAPOL::maxStart") == 0) {
335                 eapol_sm_configure(wpa_s->eapol,
336                                    -1, -1, -1, atoi(value));
337         } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKLifetime") == 0) {
338                 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
339                                      atoi(value)))
340                         ret = -1;
341         } else if (os_strcasecmp(cmd, "dot11RSNAConfigPMKReauthThreshold") ==
342                    0) {
343                 if (wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
344                                      atoi(value)))
345                         ret = -1;
346         } else if (os_strcasecmp(cmd, "dot11RSNAConfigSATimeout") == 0) {
347                 if (wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, atoi(value)))
348                         ret = -1;
349         } else if (os_strcasecmp(cmd, "wps_fragment_size") == 0) {
350                 wpa_s->wps_fragment_size = atoi(value);
351 #ifdef CONFIG_WPS_TESTING
352         } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
353                 long int val;
354                 val = strtol(value, NULL, 0);
355                 if (val < 0 || val > 0xff) {
356                         ret = -1;
357                         wpa_printf(MSG_DEBUG, "WPS: Invalid "
358                                    "wps_version_number %ld", val);
359                 } else {
360                         wps_version_number = val;
361                         wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
362                                    "version %u.%u",
363                                    (wps_version_number & 0xf0) >> 4,
364                                    wps_version_number & 0x0f);
365                 }
366         } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
367                 wps_testing_dummy_cred = atoi(value);
368                 wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
369                            wps_testing_dummy_cred);
370         } else if (os_strcasecmp(cmd, "wps_corrupt_pkhash") == 0) {
371                 wps_corrupt_pkhash = atoi(value);
372                 wpa_printf(MSG_DEBUG, "WPS: Testing - wps_corrupt_pkhash=%d",
373                            wps_corrupt_pkhash);
374         } else if (os_strcasecmp(cmd, "wps_force_auth_types") == 0) {
375                 if (value[0] == '\0') {
376                         wps_force_auth_types_in_use = 0;
377                 } else {
378                         wps_force_auth_types = strtol(value, NULL, 0);
379                         wps_force_auth_types_in_use = 1;
380                 }
381         } else if (os_strcasecmp(cmd, "wps_force_encr_types") == 0) {
382                 if (value[0] == '\0') {
383                         wps_force_encr_types_in_use = 0;
384                 } else {
385                         wps_force_encr_types = strtol(value, NULL, 0);
386                         wps_force_encr_types_in_use = 1;
387                 }
388 #endif /* CONFIG_WPS_TESTING */
389         } else if (os_strcasecmp(cmd, "ampdu") == 0) {
390                 if (wpa_drv_ampdu(wpa_s, atoi(value)) < 0)
391                         ret = -1;
392 #ifdef CONFIG_TDLS
393 #ifdef CONFIG_TDLS_TESTING
394         } else if (os_strcasecmp(cmd, "tdls_testing") == 0) {
395                 extern unsigned int tdls_testing;
396                 tdls_testing = strtol(value, NULL, 0);
397                 wpa_printf(MSG_DEBUG, "TDLS: tdls_testing=0x%x", tdls_testing);
398 #endif /* CONFIG_TDLS_TESTING */
399         } else if (os_strcasecmp(cmd, "tdls_disabled") == 0) {
400                 int disabled = atoi(value);
401                 wpa_printf(MSG_DEBUG, "TDLS: tdls_disabled=%d", disabled);
402                 if (disabled) {
403                         if (wpa_drv_tdls_oper(wpa_s, TDLS_DISABLE, NULL) < 0)
404                                 ret = -1;
405                 } else if (wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL) < 0)
406                         ret = -1;
407                 wpa_tdls_enable(wpa_s->wpa, !disabled);
408 #endif /* CONFIG_TDLS */
409         } else if (os_strcasecmp(cmd, "pno") == 0) {
410                 ret = wpas_ctrl_pno(wpa_s, value);
411         } else if (os_strcasecmp(cmd, "radio_disabled") == 0) {
412                 int disabled = atoi(value);
413                 if (wpa_drv_radio_disable(wpa_s, disabled) < 0)
414                         ret = -1;
415                 else if (disabled)
416                         wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
417         } else if (os_strcasecmp(cmd, "uapsd") == 0) {
418                 if (os_strcmp(value, "disable") == 0)
419                         wpa_s->set_sta_uapsd = 0;
420                 else {
421                         int be, bk, vi, vo;
422                         char *pos;
423                         /* format: BE,BK,VI,VO;max SP Length */
424                         be = atoi(value);
425                         pos = os_strchr(value, ',');
426                         if (pos == NULL)
427                                 return -1;
428                         pos++;
429                         bk = atoi(pos);
430                         pos = os_strchr(pos, ',');
431                         if (pos == NULL)
432                                 return -1;
433                         pos++;
434                         vi = atoi(pos);
435                         pos = os_strchr(pos, ',');
436                         if (pos == NULL)
437                                 return -1;
438                         pos++;
439                         vo = atoi(pos);
440                         /* ignore max SP Length for now */
441
442                         wpa_s->set_sta_uapsd = 1;
443                         wpa_s->sta_uapsd = 0;
444                         if (be)
445                                 wpa_s->sta_uapsd |= BIT(0);
446                         if (bk)
447                                 wpa_s->sta_uapsd |= BIT(1);
448                         if (vi)
449                                 wpa_s->sta_uapsd |= BIT(2);
450                         if (vo)
451                                 wpa_s->sta_uapsd |= BIT(3);
452                 }
453         } else if (os_strcasecmp(cmd, "ps") == 0) {
454                 ret = wpa_drv_set_p2p_powersave(wpa_s, atoi(value), -1, -1);
455 #ifdef CONFIG_WIFI_DISPLAY
456         } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
457                 int enabled = !!atoi(value);
458                 if (enabled && !wpa_s->global->p2p)
459                         ret = -1;
460                 else
461                         wifi_display_enable(wpa_s->global, enabled);
462 #endif /* CONFIG_WIFI_DISPLAY */
463         } else if (os_strcasecmp(cmd, "bssid_filter") == 0) {
464                 ret = set_bssid_filter(wpa_s, value);
465         } else if (os_strcasecmp(cmd, "disallow_aps") == 0) {
466                 ret = set_disallow_aps(wpa_s, value);
467         } else if (os_strcasecmp(cmd, "no_keep_alive") == 0) {
468                 wpa_s->no_keep_alive = !!atoi(value);
469 #ifdef CONFIG_TESTING_OPTIONS
470         } else if (os_strcasecmp(cmd, "ext_mgmt_frame_handling") == 0) {
471                 wpa_s->ext_mgmt_frame_handling = !!atoi(value);
472         } else if (os_strcasecmp(cmd, "ext_eapol_frame_io") == 0) {
473                 wpa_s->ext_eapol_frame_io = !!atoi(value);
474 #ifdef CONFIG_AP
475                 if (wpa_s->ap_iface) {
476                         wpa_s->ap_iface->bss[0]->ext_eapol_frame_io =
477                                 wpa_s->ext_eapol_frame_io;
478                 }
479 #endif /* CONFIG_AP */
480         } else if (os_strcasecmp(cmd, "extra_roc_dur") == 0) {
481                 wpa_s->extra_roc_dur = atoi(value);
482         } else if (os_strcasecmp(cmd, "test_failure") == 0) {
483                 wpa_s->test_failure = atoi(value);
484         } else if (os_strcasecmp(cmd, "p2p_go_csa_on_inv") == 0) {
485                 wpa_s->p2p_go_csa_on_inv = !!atoi(value);
486 #endif /* CONFIG_TESTING_OPTIONS */
487 #ifndef CONFIG_NO_CONFIG_BLOBS
488         } else if (os_strcmp(cmd, "blob") == 0) {
489                 ret = wpas_ctrl_set_blob(wpa_s, value);
490 #endif /* CONFIG_NO_CONFIG_BLOBS */
491         } else if (os_strcasecmp(cmd, "setband") == 0) {
492                 ret = wpas_ctrl_set_band(wpa_s, value);
493 #ifdef CONFIG_MBO
494         } else if (os_strcasecmp(cmd, "non_pref_chan") == 0) {
495                 ret = wpas_mbo_update_non_pref_chan(wpa_s, value);
496 #endif /* CONFIG_MBO */
497         } else {
498                 value[-1] = '=';
499                 ret = wpa_config_process_global(wpa_s->conf, cmd, -1);
500                 if (ret == 0)
501                         wpa_supplicant_update_config(wpa_s);
502         }
503
504         return ret;
505 }
506
507
508 static int wpa_supplicant_ctrl_iface_get(struct wpa_supplicant *wpa_s,
509                                          char *cmd, char *buf, size_t buflen)
510 {
511         int res = -1;
512
513         wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
514
515         if (os_strcmp(cmd, "version") == 0) {
516                 res = os_snprintf(buf, buflen, "%s", VERSION_STR);
517         } else if (os_strcasecmp(cmd, "country") == 0) {
518                 if (wpa_s->conf->country[0] && wpa_s->conf->country[1])
519                         res = os_snprintf(buf, buflen, "%c%c",
520                                           wpa_s->conf->country[0],
521                                           wpa_s->conf->country[1]);
522 #ifdef CONFIG_WIFI_DISPLAY
523         } else if (os_strcasecmp(cmd, "wifi_display") == 0) {
524                 int enabled;
525                 if (wpa_s->global->p2p == NULL ||
526                     wpa_s->global->p2p_disabled)
527                         enabled = 0;
528                 else
529                         enabled = wpa_s->global->wifi_display;
530                 res = os_snprintf(buf, buflen, "%d", enabled);
531 #endif /* CONFIG_WIFI_DISPLAY */
532 #ifdef CONFIG_TESTING_GET_GTK
533         } else if (os_strcmp(cmd, "gtk") == 0) {
534                 if (wpa_s->last_gtk_len == 0)
535                         return -1;
536                 res = wpa_snprintf_hex(buf, buflen, wpa_s->last_gtk,
537                                        wpa_s->last_gtk_len);
538                 return res;
539 #endif /* CONFIG_TESTING_GET_GTK */
540         } else if (os_strcmp(cmd, "tls_library") == 0) {
541                 res = tls_get_library_version(buf, buflen);
542         } else {
543                 res = wpa_config_get_value(cmd, wpa_s->conf, buf, buflen);
544         }
545
546         if (os_snprintf_error(buflen, res))
547                 return -1;
548         return res;
549 }
550
551
552 #ifdef IEEE8021X_EAPOL
553 static int wpa_supplicant_ctrl_iface_preauth(struct wpa_supplicant *wpa_s,
554                                              char *addr)
555 {
556         u8 bssid[ETH_ALEN];
557         struct wpa_ssid *ssid = wpa_s->current_ssid;
558
559         if (hwaddr_aton(addr, bssid)) {
560                 wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH: invalid address "
561                            "'%s'", addr);
562                 return -1;
563         }
564
565         wpa_printf(MSG_DEBUG, "CTRL_IFACE PREAUTH " MACSTR, MAC2STR(bssid));
566         rsn_preauth_deinit(wpa_s->wpa);
567         if (rsn_preauth_init(wpa_s->wpa, bssid, ssid ? &ssid->eap : NULL))
568                 return -1;
569
570         return 0;
571 }
572 #endif /* IEEE8021X_EAPOL */
573
574
575 #ifdef CONFIG_PEERKEY
576 /* MLME-STKSTART.request(peer) */
577 static int wpa_supplicant_ctrl_iface_stkstart(
578         struct wpa_supplicant *wpa_s, char *addr)
579 {
580         u8 peer[ETH_ALEN];
581
582         if (hwaddr_aton(addr, peer)) {
583                 wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
584                            "address '%s'", addr);
585                 return -1;
586         }
587
588         wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART " MACSTR,
589                    MAC2STR(peer));
590
591         return wpa_sm_stkstart(wpa_s->wpa, peer);
592 }
593 #endif /* CONFIG_PEERKEY */
594
595
596 #ifdef CONFIG_TDLS
597
598 static int wpa_supplicant_ctrl_iface_tdls_discover(
599         struct wpa_supplicant *wpa_s, char *addr)
600 {
601         u8 peer[ETH_ALEN];
602         int ret;
603
604         if (hwaddr_aton(addr, peer)) {
605                 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER: invalid "
606                            "address '%s'", addr);
607                 return -1;
608         }
609
610         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_DISCOVER " MACSTR,
611                    MAC2STR(peer));
612
613         if (wpa_tdls_is_external_setup(wpa_s->wpa))
614                 ret = wpa_tdls_send_discovery_request(wpa_s->wpa, peer);
615         else
616                 ret = wpa_drv_tdls_oper(wpa_s, TDLS_DISCOVERY_REQ, peer);
617
618         return ret;
619 }
620
621
622 static int wpa_supplicant_ctrl_iface_tdls_setup(
623         struct wpa_supplicant *wpa_s, char *addr)
624 {
625         u8 peer[ETH_ALEN];
626         int ret;
627
628         if (hwaddr_aton(addr, peer)) {
629                 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP: invalid "
630                            "address '%s'", addr);
631                 return -1;
632         }
633
634         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_SETUP " MACSTR,
635                    MAC2STR(peer));
636
637         if ((wpa_s->conf->tdls_external_control) &&
638             wpa_tdls_is_external_setup(wpa_s->wpa))
639                 return wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
640
641         wpa_tdls_remove(wpa_s->wpa, peer);
642
643         if (wpa_tdls_is_external_setup(wpa_s->wpa))
644                 ret = wpa_tdls_start(wpa_s->wpa, peer);
645         else
646                 ret = wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, peer);
647
648         return ret;
649 }
650
651
652 static int wpa_supplicant_ctrl_iface_tdls_teardown(
653         struct wpa_supplicant *wpa_s, char *addr)
654 {
655         u8 peer[ETH_ALEN];
656         int ret;
657
658         if (os_strcmp(addr, "*") == 0) {
659                 /* remove everyone */
660                 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN *");
661                 wpa_tdls_teardown_peers(wpa_s->wpa);
662                 return 0;
663         }
664
665         if (hwaddr_aton(addr, peer)) {
666                 wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN: invalid "
667                            "address '%s'", addr);
668                 return -1;
669         }
670
671         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_TEARDOWN " MACSTR,
672                    MAC2STR(peer));
673
674         if ((wpa_s->conf->tdls_external_control) &&
675             wpa_tdls_is_external_setup(wpa_s->wpa))
676                 return wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
677
678         if (wpa_tdls_is_external_setup(wpa_s->wpa))
679                 ret = wpa_tdls_teardown_link(
680                         wpa_s->wpa, peer,
681                         WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED);
682         else
683                 ret = wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN, peer);
684
685         return ret;
686 }
687
688
689 static int ctrl_iface_get_capability_tdls(
690         struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
691 {
692         int ret;
693
694         ret = os_snprintf(buf, buflen, "%s\n",
695                           wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT ?
696                           (wpa_s->drv_flags &
697                            WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP ?
698                            "EXTERNAL" : "INTERNAL") : "UNSUPPORTED");
699         if (os_snprintf_error(buflen, ret))
700                 return -1;
701         return ret;
702 }
703
704
705 static int wpa_supplicant_ctrl_iface_tdls_chan_switch(
706         struct wpa_supplicant *wpa_s, char *cmd)
707 {
708         u8 peer[ETH_ALEN];
709         struct hostapd_freq_params freq_params;
710         u8 oper_class;
711         char *pos, *end;
712
713         if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
714                 wpa_printf(MSG_INFO,
715                            "tdls_chanswitch: Only supported with external setup");
716                 return -1;
717         }
718
719         os_memset(&freq_params, 0, sizeof(freq_params));
720
721         pos = os_strchr(cmd, ' ');
722         if (pos == NULL)
723                 return -1;
724         *pos++ = '\0';
725
726         oper_class = strtol(pos, &end, 10);
727         if (pos == end) {
728                 wpa_printf(MSG_INFO,
729                            "tdls_chanswitch: Invalid op class provided");
730                 return -1;
731         }
732
733         pos = end;
734         freq_params.freq = atoi(pos);
735         if (freq_params.freq == 0) {
736                 wpa_printf(MSG_INFO, "tdls_chanswitch: Invalid freq provided");
737                 return -1;
738         }
739
740 #define SET_FREQ_SETTING(str) \
741         do { \
742                 const char *pos2 = os_strstr(pos, " " #str "="); \
743                 if (pos2) { \
744                         pos2 += sizeof(" " #str "=") - 1; \
745                         freq_params.str = atoi(pos2); \
746                 } \
747         } while (0)
748
749         SET_FREQ_SETTING(center_freq1);
750         SET_FREQ_SETTING(center_freq2);
751         SET_FREQ_SETTING(bandwidth);
752         SET_FREQ_SETTING(sec_channel_offset);
753 #undef SET_FREQ_SETTING
754
755         freq_params.ht_enabled = !!os_strstr(pos, " ht");
756         freq_params.vht_enabled = !!os_strstr(pos, " vht");
757
758         if (hwaddr_aton(cmd, peer)) {
759                 wpa_printf(MSG_DEBUG,
760                            "CTRL_IFACE TDLS_CHAN_SWITCH: Invalid address '%s'",
761                            cmd);
762                 return -1;
763         }
764
765         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CHAN_SWITCH " MACSTR
766                    " OP CLASS %d FREQ %d CENTER1 %d CENTER2 %d BW %d SEC_OFFSET %d%s%s",
767                    MAC2STR(peer), oper_class, freq_params.freq,
768                    freq_params.center_freq1, freq_params.center_freq2,
769                    freq_params.bandwidth, freq_params.sec_channel_offset,
770                    freq_params.ht_enabled ? " HT" : "",
771                    freq_params.vht_enabled ? " VHT" : "");
772
773         return wpa_tdls_enable_chan_switch(wpa_s->wpa, peer, oper_class,
774                                            &freq_params);
775 }
776
777
778 static int wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(
779         struct wpa_supplicant *wpa_s, char *cmd)
780 {
781         u8 peer[ETH_ALEN];
782
783         if (!wpa_tdls_is_external_setup(wpa_s->wpa)) {
784                 wpa_printf(MSG_INFO,
785                            "tdls_chanswitch: Only supported with external setup");
786                 return -1;
787         }
788
789         if (hwaddr_aton(cmd, peer)) {
790                 wpa_printf(MSG_DEBUG,
791                            "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH: Invalid address '%s'",
792                            cmd);
793                 return -1;
794         }
795
796         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_CANCEL_CHAN_SWITCH " MACSTR,
797                    MAC2STR(peer));
798
799         return wpa_tdls_disable_chan_switch(wpa_s->wpa, peer);
800 }
801
802
803 static int wpa_supplicant_ctrl_iface_tdls_link_status(
804         struct wpa_supplicant *wpa_s, const char *addr,
805         char *buf, size_t buflen)
806 {
807         u8 peer[ETH_ALEN];
808         const char *tdls_status;
809         int ret;
810
811         if (hwaddr_aton(addr, peer)) {
812                 wpa_printf(MSG_DEBUG,
813                            "CTRL_IFACE TDLS_LINK_STATUS: Invalid address '%s'",
814                            addr);
815                 return -1;
816         }
817         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS " MACSTR,
818                    MAC2STR(peer));
819
820         tdls_status = wpa_tdls_get_link_status(wpa_s->wpa, peer);
821         wpa_printf(MSG_DEBUG, "CTRL_IFACE TDLS_LINK_STATUS: %s", tdls_status);
822         ret = os_snprintf(buf, buflen, "TDLS link status: %s\n", tdls_status);
823         if (os_snprintf_error(buflen, ret))
824                 return -1;
825
826         return ret;
827 }
828
829 #endif /* CONFIG_TDLS */
830
831
832 static int wmm_ac_ctrl_addts(struct wpa_supplicant *wpa_s, char *cmd)
833 {
834         char *token, *context = NULL;
835         struct wmm_ac_ts_setup_params params = {
836                 .tsid = 0xff,
837                 .direction = 0xff,
838         };
839
840         while ((token = str_token(cmd, " ", &context))) {
841                 if (sscanf(token, "tsid=%i", &params.tsid) == 1 ||
842                     sscanf(token, "up=%i", &params.user_priority) == 1 ||
843                     sscanf(token, "nominal_msdu_size=%i",
844                            &params.nominal_msdu_size) == 1 ||
845                     sscanf(token, "mean_data_rate=%i",
846                            &params.mean_data_rate) == 1 ||
847                     sscanf(token, "min_phy_rate=%i",
848                            &params.minimum_phy_rate) == 1 ||
849                     sscanf(token, "sba=%i",
850                            &params.surplus_bandwidth_allowance) == 1)
851                         continue;
852
853                 if (os_strcasecmp(token, "downlink") == 0) {
854                         params.direction = WMM_TSPEC_DIRECTION_DOWNLINK;
855                 } else if (os_strcasecmp(token, "uplink") == 0) {
856                         params.direction = WMM_TSPEC_DIRECTION_UPLINK;
857                 } else if (os_strcasecmp(token, "bidi") == 0) {
858                         params.direction = WMM_TSPEC_DIRECTION_BI_DIRECTIONAL;
859                 } else if (os_strcasecmp(token, "fixed_nominal_msdu") == 0) {
860                         params.fixed_nominal_msdu = 1;
861                 } else {
862                         wpa_printf(MSG_DEBUG,
863                                    "CTRL: Invalid WMM_AC_ADDTS parameter: '%s'",
864                                    token);
865                         return -1;
866                 }
867
868         }
869
870         return wpas_wmm_ac_addts(wpa_s, &params);
871 }
872
873
874 static int wmm_ac_ctrl_delts(struct wpa_supplicant *wpa_s, char *cmd)
875 {
876         u8 tsid = atoi(cmd);
877
878         return wpas_wmm_ac_delts(wpa_s, tsid);
879 }
880
881
882 #ifdef CONFIG_IEEE80211R
883 static int wpa_supplicant_ctrl_iface_ft_ds(
884         struct wpa_supplicant *wpa_s, char *addr)
885 {
886         u8 target_ap[ETH_ALEN];
887         struct wpa_bss *bss;
888         const u8 *mdie;
889
890         if (hwaddr_aton(addr, target_ap)) {
891                 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
892                            "address '%s'", addr);
893                 return -1;
894         }
895
896         wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap));
897
898         bss = wpa_bss_get_bssid(wpa_s, target_ap);
899         if (bss)
900                 mdie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
901         else
902                 mdie = NULL;
903
904         return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie);
905 }
906 #endif /* CONFIG_IEEE80211R */
907
908
909 #ifdef CONFIG_WPS
910 static int wpa_supplicant_ctrl_iface_wps_pbc(struct wpa_supplicant *wpa_s,
911                                              char *cmd)
912 {
913         u8 bssid[ETH_ALEN], *_bssid = bssid;
914 #ifdef CONFIG_P2P
915         u8 p2p_dev_addr[ETH_ALEN];
916 #endif /* CONFIG_P2P */
917 #ifdef CONFIG_AP
918         u8 *_p2p_dev_addr = NULL;
919 #endif /* CONFIG_AP */
920
921         if (cmd == NULL || os_strcmp(cmd, "any") == 0) {
922                 _bssid = NULL;
923 #ifdef CONFIG_P2P
924         } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
925                 if (hwaddr_aton(cmd + 13, p2p_dev_addr)) {
926                         wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid "
927                                    "P2P Device Address '%s'",
928                                    cmd + 13);
929                         return -1;
930                 }
931                 _p2p_dev_addr = p2p_dev_addr;
932 #endif /* CONFIG_P2P */
933         } else if (hwaddr_aton(cmd, bssid)) {
934                 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PBC: invalid BSSID '%s'",
935                            cmd);
936                 return -1;
937         }
938
939 #ifdef CONFIG_AP
940         if (wpa_s->ap_iface)
941                 return wpa_supplicant_ap_wps_pbc(wpa_s, _bssid, _p2p_dev_addr);
942 #endif /* CONFIG_AP */
943
944         return wpas_wps_start_pbc(wpa_s, _bssid, 0);
945 }
946
947
948 static int wpa_supplicant_ctrl_iface_wps_pin(struct wpa_supplicant *wpa_s,
949                                              char *cmd, char *buf,
950                                              size_t buflen)
951 {
952         u8 bssid[ETH_ALEN], *_bssid = bssid;
953         char *pin;
954         int ret;
955
956         pin = os_strchr(cmd, ' ');
957         if (pin)
958                 *pin++ = '\0';
959
960         if (os_strcmp(cmd, "any") == 0)
961                 _bssid = NULL;
962         else if (os_strcmp(cmd, "get") == 0) {
963                 if (wps_generate_pin((unsigned int *) &ret) < 0)
964                         return -1;
965                 goto done;
966         } else if (hwaddr_aton(cmd, bssid)) {
967                 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_PIN: invalid BSSID '%s'",
968                            cmd);
969                 return -1;
970         }
971
972 #ifdef CONFIG_AP
973         if (wpa_s->ap_iface) {
974                 int timeout = 0;
975                 char *pos;
976
977                 if (pin) {
978                         pos = os_strchr(pin, ' ');
979                         if (pos) {
980                                 *pos++ = '\0';
981                                 timeout = atoi(pos);
982                         }
983                 }
984
985                 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
986                                                  buf, buflen, timeout);
987         }
988 #endif /* CONFIG_AP */
989
990         if (pin) {
991                 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
992                                          DEV_PW_DEFAULT);
993                 if (ret < 0)
994                         return -1;
995                 ret = os_snprintf(buf, buflen, "%s", pin);
996                 if (os_snprintf_error(buflen, ret))
997                         return -1;
998                 return ret;
999         }
1000
1001         ret = wpas_wps_start_pin(wpa_s, _bssid, NULL, 0, DEV_PW_DEFAULT);
1002         if (ret < 0)
1003                 return -1;
1004
1005 done:
1006         /* Return the generated PIN */
1007         ret = os_snprintf(buf, buflen, "%08d", ret);
1008         if (os_snprintf_error(buflen, ret))
1009                 return -1;
1010         return ret;
1011 }
1012
1013
1014 static int wpa_supplicant_ctrl_iface_wps_check_pin(
1015         struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
1016 {
1017         char pin[9];
1018         size_t len;
1019         char *pos;
1020         int ret;
1021
1022         wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
1023                               (u8 *) cmd, os_strlen(cmd));
1024         for (pos = cmd, len = 0; *pos != '\0'; pos++) {
1025                 if (*pos < '0' || *pos > '9')
1026                         continue;
1027                 pin[len++] = *pos;
1028                 if (len == 9) {
1029                         wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
1030                         return -1;
1031                 }
1032         }
1033         if (len != 4 && len != 8) {
1034                 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
1035                 return -1;
1036         }
1037         pin[len] = '\0';
1038
1039         if (len == 8) {
1040                 unsigned int pin_val;
1041                 pin_val = atoi(pin);
1042                 if (!wps_pin_valid(pin_val)) {
1043                         wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
1044                         ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
1045                         if (os_snprintf_error(buflen, ret))
1046                                 return -1;
1047                         return ret;
1048                 }
1049         }
1050
1051         ret = os_snprintf(buf, buflen, "%s", pin);
1052         if (os_snprintf_error(buflen, ret))
1053                 return -1;
1054
1055         return ret;
1056 }
1057
1058
1059 #ifdef CONFIG_WPS_NFC
1060
1061 static int wpa_supplicant_ctrl_iface_wps_nfc(struct wpa_supplicant *wpa_s,
1062                                              char *cmd)
1063 {
1064         u8 bssid[ETH_ALEN], *_bssid = bssid;
1065
1066         if (cmd == NULL || cmd[0] == '\0')
1067                 _bssid = NULL;
1068         else if (hwaddr_aton(cmd, bssid))
1069                 return -1;
1070
1071         return wpas_wps_start_nfc(wpa_s, NULL, _bssid, NULL, 0, 0, NULL, NULL,
1072                                   0, 0);
1073 }
1074
1075
1076 static int wpa_supplicant_ctrl_iface_wps_nfc_config_token(
1077         struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1078 {
1079         int ndef;
1080         struct wpabuf *buf;
1081         int res;
1082         char *pos;
1083
1084         pos = os_strchr(cmd, ' ');
1085         if (pos)
1086                 *pos++ = '\0';
1087         if (os_strcmp(cmd, "WPS") == 0)
1088                 ndef = 0;
1089         else if (os_strcmp(cmd, "NDEF") == 0)
1090                 ndef = 1;
1091         else
1092                 return -1;
1093
1094         buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
1095         if (buf == NULL)
1096                 return -1;
1097
1098         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1099                                          wpabuf_len(buf));
1100         reply[res++] = '\n';
1101         reply[res] = '\0';
1102
1103         wpabuf_free(buf);
1104
1105         return res;
1106 }
1107
1108
1109 static int wpa_supplicant_ctrl_iface_wps_nfc_token(
1110         struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1111 {
1112         int ndef;
1113         struct wpabuf *buf;
1114         int res;
1115
1116         if (os_strcmp(cmd, "WPS") == 0)
1117                 ndef = 0;
1118         else if (os_strcmp(cmd, "NDEF") == 0)
1119                 ndef = 1;
1120         else
1121                 return -1;
1122
1123         buf = wpas_wps_nfc_token(wpa_s, ndef);
1124         if (buf == NULL)
1125                 return -1;
1126
1127         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1128                                          wpabuf_len(buf));
1129         reply[res++] = '\n';
1130         reply[res] = '\0';
1131
1132         wpabuf_free(buf);
1133
1134         return res;
1135 }
1136
1137
1138 static int wpa_supplicant_ctrl_iface_wps_nfc_tag_read(
1139         struct wpa_supplicant *wpa_s, char *pos)
1140 {
1141         size_t len;
1142         struct wpabuf *buf;
1143         int ret;
1144         char *freq;
1145         int forced_freq = 0;
1146
1147         freq = strstr(pos, " freq=");
1148         if (freq) {
1149                 *freq = '\0';
1150                 freq += 6;
1151                 forced_freq = atoi(freq);
1152         }
1153
1154         len = os_strlen(pos);
1155         if (len & 0x01)
1156                 return -1;
1157         len /= 2;
1158
1159         buf = wpabuf_alloc(len);
1160         if (buf == NULL)
1161                 return -1;
1162         if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
1163                 wpabuf_free(buf);
1164                 return -1;
1165         }
1166
1167         ret = wpas_wps_nfc_tag_read(wpa_s, buf, forced_freq);
1168         wpabuf_free(buf);
1169
1170         return ret;
1171 }
1172
1173
1174 static int wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s,
1175                                               char *reply, size_t max_len,
1176                                               int ndef)
1177 {
1178         struct wpabuf *buf;
1179         int res;
1180
1181         buf = wpas_wps_nfc_handover_req(wpa_s, ndef);
1182         if (buf == NULL)
1183                 return -1;
1184
1185         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1186                                          wpabuf_len(buf));
1187         reply[res++] = '\n';
1188         reply[res] = '\0';
1189
1190         wpabuf_free(buf);
1191
1192         return res;
1193 }
1194
1195
1196 #ifdef CONFIG_P2P
1197 static int wpas_ctrl_nfc_get_handover_req_p2p(struct wpa_supplicant *wpa_s,
1198                                               char *reply, size_t max_len,
1199                                               int ndef)
1200 {
1201         struct wpabuf *buf;
1202         int res;
1203
1204         buf = wpas_p2p_nfc_handover_req(wpa_s, ndef);
1205         if (buf == NULL) {
1206                 wpa_printf(MSG_DEBUG, "P2P: Could not generate NFC handover request");
1207                 return -1;
1208         }
1209
1210         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1211                                          wpabuf_len(buf));
1212         reply[res++] = '\n';
1213         reply[res] = '\0';
1214
1215         wpabuf_free(buf);
1216
1217         return res;
1218 }
1219 #endif /* CONFIG_P2P */
1220
1221
1222 static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
1223                                           char *cmd, char *reply,
1224                                           size_t max_len)
1225 {
1226         char *pos;
1227         int ndef;
1228
1229         pos = os_strchr(cmd, ' ');
1230         if (pos == NULL)
1231                 return -1;
1232         *pos++ = '\0';
1233
1234         if (os_strcmp(cmd, "WPS") == 0)
1235                 ndef = 0;
1236         else if (os_strcmp(cmd, "NDEF") == 0)
1237                 ndef = 1;
1238         else
1239                 return -1;
1240
1241         if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
1242                 if (!ndef)
1243                         return -1;
1244                 return wpas_ctrl_nfc_get_handover_req_wps(
1245                         wpa_s, reply, max_len, ndef);
1246         }
1247
1248 #ifdef CONFIG_P2P
1249         if (os_strcmp(pos, "P2P-CR") == 0) {
1250                 return wpas_ctrl_nfc_get_handover_req_p2p(
1251                         wpa_s, reply, max_len, ndef);
1252         }
1253 #endif /* CONFIG_P2P */
1254
1255         return -1;
1256 }
1257
1258
1259 static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
1260                                               char *reply, size_t max_len,
1261                                               int ndef, int cr, char *uuid)
1262 {
1263         struct wpabuf *buf;
1264         int res;
1265
1266         buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr, uuid);
1267         if (buf == NULL)
1268                 return -1;
1269
1270         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1271                                          wpabuf_len(buf));
1272         reply[res++] = '\n';
1273         reply[res] = '\0';
1274
1275         wpabuf_free(buf);
1276
1277         return res;
1278 }
1279
1280
1281 #ifdef CONFIG_P2P
1282 static int wpas_ctrl_nfc_get_handover_sel_p2p(struct wpa_supplicant *wpa_s,
1283                                               char *reply, size_t max_len,
1284                                               int ndef, int tag)
1285 {
1286         struct wpabuf *buf;
1287         int res;
1288
1289         buf = wpas_p2p_nfc_handover_sel(wpa_s, ndef, tag);
1290         if (buf == NULL)
1291                 return -1;
1292
1293         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1294                                          wpabuf_len(buf));
1295         reply[res++] = '\n';
1296         reply[res] = '\0';
1297
1298         wpabuf_free(buf);
1299
1300         return res;
1301 }
1302 #endif /* CONFIG_P2P */
1303
1304
1305 static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
1306                                           char *cmd, char *reply,
1307                                           size_t max_len)
1308 {
1309         char *pos, *pos2;
1310         int ndef;
1311
1312         pos = os_strchr(cmd, ' ');
1313         if (pos == NULL)
1314                 return -1;
1315         *pos++ = '\0';
1316
1317         if (os_strcmp(cmd, "WPS") == 0)
1318                 ndef = 0;
1319         else if (os_strcmp(cmd, "NDEF") == 0)
1320                 ndef = 1;
1321         else
1322                 return -1;
1323
1324         pos2 = os_strchr(pos, ' ');
1325         if (pos2)
1326                 *pos2++ = '\0';
1327         if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
1328                 if (!ndef)
1329                         return -1;
1330                 return wpas_ctrl_nfc_get_handover_sel_wps(
1331                         wpa_s, reply, max_len, ndef,
1332                         os_strcmp(pos, "WPS-CR") == 0, pos2);
1333         }
1334
1335 #ifdef CONFIG_P2P
1336         if (os_strcmp(pos, "P2P-CR") == 0) {
1337                 return wpas_ctrl_nfc_get_handover_sel_p2p(
1338                         wpa_s, reply, max_len, ndef, 0);
1339         }
1340
1341         if (os_strcmp(pos, "P2P-CR-TAG") == 0) {
1342                 return wpas_ctrl_nfc_get_handover_sel_p2p(
1343                         wpa_s, reply, max_len, ndef, 1);
1344         }
1345 #endif /* CONFIG_P2P */
1346
1347         return -1;
1348 }
1349
1350
1351 static int wpas_ctrl_nfc_report_handover(struct wpa_supplicant *wpa_s,
1352                                          char *cmd)
1353 {
1354         size_t len;
1355         struct wpabuf *req, *sel;
1356         int ret;
1357         char *pos, *role, *type, *pos2;
1358 #ifdef CONFIG_P2P
1359         char *freq;
1360         int forced_freq = 0;
1361
1362         freq = strstr(cmd, " freq=");
1363         if (freq) {
1364                 *freq = '\0';
1365                 freq += 6;
1366                 forced_freq = atoi(freq);
1367         }
1368 #endif /* CONFIG_P2P */
1369
1370         role = cmd;
1371         pos = os_strchr(role, ' ');
1372         if (pos == NULL) {
1373                 wpa_printf(MSG_DEBUG, "NFC: Missing type in handover report");
1374                 return -1;
1375         }
1376         *pos++ = '\0';
1377
1378         type = pos;
1379         pos = os_strchr(type, ' ');
1380         if (pos == NULL) {
1381                 wpa_printf(MSG_DEBUG, "NFC: Missing request message in handover report");
1382                 return -1;
1383         }
1384         *pos++ = '\0';
1385
1386         pos2 = os_strchr(pos, ' ');
1387         if (pos2 == NULL) {
1388                 wpa_printf(MSG_DEBUG, "NFC: Missing select message in handover report");
1389                 return -1;
1390         }
1391         *pos2++ = '\0';
1392
1393         len = os_strlen(pos);
1394         if (len & 0x01) {
1395                 wpa_printf(MSG_DEBUG, "NFC: Invalid request message length in handover report");
1396                 return -1;
1397         }
1398         len /= 2;
1399
1400         req = wpabuf_alloc(len);
1401         if (req == NULL) {
1402                 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for request message");
1403                 return -1;
1404         }
1405         if (hexstr2bin(pos, wpabuf_put(req, len), len) < 0) {
1406                 wpa_printf(MSG_DEBUG, "NFC: Invalid request message hexdump in handover report");
1407                 wpabuf_free(req);
1408                 return -1;
1409         }
1410
1411         len = os_strlen(pos2);
1412         if (len & 0x01) {
1413                 wpa_printf(MSG_DEBUG, "NFC: Invalid select message length in handover report");
1414                 wpabuf_free(req);
1415                 return -1;
1416         }
1417         len /= 2;
1418
1419         sel = wpabuf_alloc(len);
1420         if (sel == NULL) {
1421                 wpa_printf(MSG_DEBUG, "NFC: Failed to allocate memory for select message");
1422                 wpabuf_free(req);
1423                 return -1;
1424         }
1425         if (hexstr2bin(pos2, wpabuf_put(sel, len), len) < 0) {
1426                 wpa_printf(MSG_DEBUG, "NFC: Invalid select message hexdump in handover report");
1427                 wpabuf_free(req);
1428                 wpabuf_free(sel);
1429                 return -1;
1430         }
1431
1432         wpa_printf(MSG_DEBUG, "NFC: Connection handover reported - role=%s type=%s req_len=%d sel_len=%d",
1433                    role, type, (int) wpabuf_len(req), (int) wpabuf_len(sel));
1434
1435         if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "WPS") == 0) {
1436                 ret = wpas_wps_nfc_report_handover(wpa_s, req, sel);
1437 #ifdef CONFIG_AP
1438         } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0)
1439         {
1440                 ret = wpas_ap_wps_nfc_report_handover(wpa_s, req, sel);
1441                 if (ret < 0)
1442                         ret = wpas_er_wps_nfc_report_handover(wpa_s, req, sel);
1443 #endif /* CONFIG_AP */
1444 #ifdef CONFIG_P2P
1445         } else if (os_strcmp(role, "INIT") == 0 && os_strcmp(type, "P2P") == 0)
1446         {
1447                 ret = wpas_p2p_nfc_report_handover(wpa_s, 1, req, sel, 0);
1448         } else if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "P2P") == 0)
1449         {
1450                 ret = wpas_p2p_nfc_report_handover(wpa_s, 0, req, sel,
1451                                                    forced_freq);
1452 #endif /* CONFIG_P2P */
1453         } else {
1454                 wpa_printf(MSG_DEBUG, "NFC: Unsupported connection handover "
1455                            "reported: role=%s type=%s", role, type);
1456                 ret = -1;
1457         }
1458         wpabuf_free(req);
1459         wpabuf_free(sel);
1460
1461         if (ret)
1462                 wpa_printf(MSG_DEBUG, "NFC: Failed to process reported handover messages");
1463
1464         return ret;
1465 }
1466
1467 #endif /* CONFIG_WPS_NFC */
1468
1469
1470 static int wpa_supplicant_ctrl_iface_wps_reg(struct wpa_supplicant *wpa_s,
1471                                              char *cmd)
1472 {
1473         u8 bssid[ETH_ALEN];
1474         char *pin;
1475         char *new_ssid;
1476         char *new_auth;
1477         char *new_encr;
1478         char *new_key;
1479         struct wps_new_ap_settings ap;
1480
1481         pin = os_strchr(cmd, ' ');
1482         if (pin == NULL)
1483                 return -1;
1484         *pin++ = '\0';
1485
1486         if (hwaddr_aton(cmd, bssid)) {
1487                 wpa_printf(MSG_DEBUG, "CTRL_IFACE WPS_REG: invalid BSSID '%s'",
1488                            cmd);
1489                 return -1;
1490         }
1491
1492         new_ssid = os_strchr(pin, ' ');
1493         if (new_ssid == NULL)
1494                 return wpas_wps_start_reg(wpa_s, bssid, pin, NULL);
1495         *new_ssid++ = '\0';
1496
1497         new_auth = os_strchr(new_ssid, ' ');
1498         if (new_auth == NULL)
1499                 return -1;
1500         *new_auth++ = '\0';
1501
1502         new_encr = os_strchr(new_auth, ' ');
1503         if (new_encr == NULL)
1504                 return -1;
1505         *new_encr++ = '\0';
1506
1507         new_key = os_strchr(new_encr, ' ');
1508         if (new_key == NULL)
1509                 return -1;
1510         *new_key++ = '\0';
1511
1512         os_memset(&ap, 0, sizeof(ap));
1513         ap.ssid_hex = new_ssid;
1514         ap.auth = new_auth;
1515         ap.encr = new_encr;
1516         ap.key_hex = new_key;
1517         return wpas_wps_start_reg(wpa_s, bssid, pin, &ap);
1518 }
1519
1520
1521 #ifdef CONFIG_AP
1522 static int wpa_supplicant_ctrl_iface_wps_ap_pin(struct wpa_supplicant *wpa_s,
1523                                                 char *cmd, char *buf,
1524                                                 size_t buflen)
1525 {
1526         int timeout = 300;
1527         char *pos;
1528         const char *pin_txt;
1529
1530         if (!wpa_s->ap_iface)
1531                 return -1;
1532
1533         pos = os_strchr(cmd, ' ');
1534         if (pos)
1535                 *pos++ = '\0';
1536
1537         if (os_strcmp(cmd, "disable") == 0) {
1538                 wpas_wps_ap_pin_disable(wpa_s);
1539                 return os_snprintf(buf, buflen, "OK\n");
1540         }
1541
1542         if (os_strcmp(cmd, "random") == 0) {
1543                 if (pos)
1544                         timeout = atoi(pos);
1545                 pin_txt = wpas_wps_ap_pin_random(wpa_s, timeout);
1546                 if (pin_txt == NULL)
1547                         return -1;
1548                 return os_snprintf(buf, buflen, "%s", pin_txt);
1549         }
1550
1551         if (os_strcmp(cmd, "get") == 0) {
1552                 pin_txt = wpas_wps_ap_pin_get(wpa_s);
1553                 if (pin_txt == NULL)
1554                         return -1;
1555                 return os_snprintf(buf, buflen, "%s", pin_txt);
1556         }
1557
1558         if (os_strcmp(cmd, "set") == 0) {
1559                 char *pin;
1560                 if (pos == NULL)
1561                         return -1;
1562                 pin = pos;
1563                 pos = os_strchr(pos, ' ');
1564                 if (pos) {
1565                         *pos++ = '\0';
1566                         timeout = atoi(pos);
1567                 }
1568                 if (os_strlen(pin) > buflen)
1569                         return -1;
1570                 if (wpas_wps_ap_pin_set(wpa_s, pin, timeout) < 0)
1571                         return -1;
1572                 return os_snprintf(buf, buflen, "%s", pin);
1573         }
1574
1575         return -1;
1576 }
1577 #endif /* CONFIG_AP */
1578
1579
1580 #ifdef CONFIG_WPS_ER
1581 static int wpa_supplicant_ctrl_iface_wps_er_pin(struct wpa_supplicant *wpa_s,
1582                                                 char *cmd)
1583 {
1584         char *uuid = cmd, *pin, *pos;
1585         u8 addr_buf[ETH_ALEN], *addr = NULL;
1586         pin = os_strchr(uuid, ' ');
1587         if (pin == NULL)
1588                 return -1;
1589         *pin++ = '\0';
1590         pos = os_strchr(pin, ' ');
1591         if (pos) {
1592                 *pos++ = '\0';
1593                 if (hwaddr_aton(pos, addr_buf) == 0)
1594                         addr = addr_buf;
1595         }
1596         return wpas_wps_er_add_pin(wpa_s, addr, uuid, pin);
1597 }
1598
1599
1600 static int wpa_supplicant_ctrl_iface_wps_er_learn(struct wpa_supplicant *wpa_s,
1601                                                   char *cmd)
1602 {
1603         char *uuid = cmd, *pin;
1604         pin = os_strchr(uuid, ' ');
1605         if (pin == NULL)
1606                 return -1;
1607         *pin++ = '\0';
1608         return wpas_wps_er_learn(wpa_s, uuid, pin);
1609 }
1610
1611
1612 static int wpa_supplicant_ctrl_iface_wps_er_set_config(
1613         struct wpa_supplicant *wpa_s, char *cmd)
1614 {
1615         char *uuid = cmd, *id;
1616         id = os_strchr(uuid, ' ');
1617         if (id == NULL)
1618                 return -1;
1619         *id++ = '\0';
1620         return wpas_wps_er_set_config(wpa_s, uuid, atoi(id));
1621 }
1622
1623
1624 static int wpa_supplicant_ctrl_iface_wps_er_config(
1625         struct wpa_supplicant *wpa_s, char *cmd)
1626 {
1627         char *pin;
1628         char *new_ssid;
1629         char *new_auth;
1630         char *new_encr;
1631         char *new_key;
1632         struct wps_new_ap_settings ap;
1633
1634         pin = os_strchr(cmd, ' ');
1635         if (pin == NULL)
1636                 return -1;
1637         *pin++ = '\0';
1638
1639         new_ssid = os_strchr(pin, ' ');
1640         if (new_ssid == NULL)
1641                 return -1;
1642         *new_ssid++ = '\0';
1643
1644         new_auth = os_strchr(new_ssid, ' ');
1645         if (new_auth == NULL)
1646                 return -1;
1647         *new_auth++ = '\0';
1648
1649         new_encr = os_strchr(new_auth, ' ');
1650         if (new_encr == NULL)
1651                 return -1;
1652         *new_encr++ = '\0';
1653
1654         new_key = os_strchr(new_encr, ' ');
1655         if (new_key == NULL)
1656                 return -1;
1657         *new_key++ = '\0';
1658
1659         os_memset(&ap, 0, sizeof(ap));
1660         ap.ssid_hex = new_ssid;
1661         ap.auth = new_auth;
1662         ap.encr = new_encr;
1663         ap.key_hex = new_key;
1664         return wpas_wps_er_config(wpa_s, cmd, pin, &ap);
1665 }
1666
1667
1668 #ifdef CONFIG_WPS_NFC
1669 static int wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
1670         struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1671 {
1672         int ndef;
1673         struct wpabuf *buf;
1674         int res;
1675         char *uuid;
1676
1677         uuid = os_strchr(cmd, ' ');
1678         if (uuid == NULL)
1679                 return -1;
1680         *uuid++ = '\0';
1681
1682         if (os_strcmp(cmd, "WPS") == 0)
1683                 ndef = 0;
1684         else if (os_strcmp(cmd, "NDEF") == 0)
1685                 ndef = 1;
1686         else
1687                 return -1;
1688
1689         buf = wpas_wps_er_nfc_config_token(wpa_s, ndef, uuid);
1690         if (buf == NULL)
1691                 return -1;
1692
1693         res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1694                                          wpabuf_len(buf));
1695         reply[res++] = '\n';
1696         reply[res] = '\0';
1697
1698         wpabuf_free(buf);
1699
1700         return res;
1701 }
1702 #endif /* CONFIG_WPS_NFC */
1703 #endif /* CONFIG_WPS_ER */
1704
1705 #endif /* CONFIG_WPS */
1706
1707
1708 #ifdef CONFIG_IBSS_RSN
1709 static int wpa_supplicant_ctrl_iface_ibss_rsn(
1710         struct wpa_supplicant *wpa_s, char *addr)
1711 {
1712         u8 peer[ETH_ALEN];
1713
1714         if (hwaddr_aton(addr, peer)) {
1715                 wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
1716                            "address '%s'", addr);
1717                 return -1;
1718         }
1719
1720         wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN " MACSTR,
1721                    MAC2STR(peer));
1722
1723         return ibss_rsn_start(wpa_s->ibss_rsn, peer);
1724 }
1725 #endif /* CONFIG_IBSS_RSN */
1726
1727
1728 static int wpa_supplicant_ctrl_iface_ctrl_rsp(struct wpa_supplicant *wpa_s,
1729                                               char *rsp)
1730 {
1731 #ifdef IEEE8021X_EAPOL
1732         char *pos, *id_pos;
1733         int id;
1734         struct wpa_ssid *ssid;
1735
1736         pos = os_strchr(rsp, '-');
1737         if (pos == NULL)
1738                 return -1;
1739         *pos++ = '\0';
1740         id_pos = pos;
1741         pos = os_strchr(pos, ':');
1742         if (pos == NULL)
1743                 return -1;
1744         *pos++ = '\0';
1745         id = atoi(id_pos);
1746         wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
1747         wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
1748                               (u8 *) pos, os_strlen(pos));
1749
1750         ssid = wpa_config_get_network(wpa_s->conf, id);
1751         if (ssid == NULL) {
1752                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
1753                            "to update", id);
1754                 return -1;
1755         }
1756
1757         return wpa_supplicant_ctrl_iface_ctrl_rsp_handle(wpa_s, ssid, rsp,
1758                                                          pos);
1759 #else /* IEEE8021X_EAPOL */
1760         wpa_printf(MSG_DEBUG, "CTRL_IFACE: 802.1X not included");
1761         return -1;
1762 #endif /* IEEE8021X_EAPOL */
1763 }
1764
1765
1766 static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
1767                                             const char *params,
1768                                             char *buf, size_t buflen)
1769 {
1770         char *pos, *end, tmp[30];
1771         int res, verbose, wps, ret;
1772 #ifdef CONFIG_HS20
1773         const u8 *hs20;
1774 #endif /* CONFIG_HS20 */
1775         const u8 *sess_id;
1776         size_t sess_id_len;
1777
1778         if (os_strcmp(params, "-DRIVER") == 0)
1779                 return wpa_drv_status(wpa_s, buf, buflen);
1780         verbose = os_strcmp(params, "-VERBOSE") == 0;
1781         wps = os_strcmp(params, "-WPS") == 0;
1782         pos = buf;
1783         end = buf + buflen;
1784         if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
1785                 struct wpa_ssid *ssid = wpa_s->current_ssid;
1786                 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
1787                                   MAC2STR(wpa_s->bssid));
1788                 if (os_snprintf_error(end - pos, ret))
1789                         return pos - buf;
1790                 pos += ret;
1791                 ret = os_snprintf(pos, end - pos, "freq=%u\n",
1792                                   wpa_s->assoc_freq);
1793                 if (os_snprintf_error(end - pos, ret))
1794                         return pos - buf;
1795                 pos += ret;
1796                 if (ssid) {
1797                         u8 *_ssid = ssid->ssid;
1798                         size_t ssid_len = ssid->ssid_len;
1799                         u8 ssid_buf[SSID_MAX_LEN];
1800                         if (ssid_len == 0) {
1801                                 int _res = wpa_drv_get_ssid(wpa_s, ssid_buf);
1802                                 if (_res < 0)
1803                                         ssid_len = 0;
1804                                 else
1805                                         ssid_len = _res;
1806                                 _ssid = ssid_buf;
1807                         }
1808                         ret = os_snprintf(pos, end - pos, "ssid=%s\nid=%d\n",
1809                                           wpa_ssid_txt(_ssid, ssid_len),
1810                                           ssid->id);
1811                         if (os_snprintf_error(end - pos, ret))
1812                                 return pos - buf;
1813                         pos += ret;
1814
1815                         if (wps && ssid->passphrase &&
1816                             wpa_key_mgmt_wpa_psk(ssid->key_mgmt) &&
1817                             (ssid->mode == WPAS_MODE_AP ||
1818                              ssid->mode == WPAS_MODE_P2P_GO)) {
1819                                 ret = os_snprintf(pos, end - pos,
1820                                                   "passphrase=%s\n",
1821                                                   ssid->passphrase);
1822                                 if (os_snprintf_error(end - pos, ret))
1823                                         return pos - buf;
1824                                 pos += ret;
1825                         }
1826                         if (ssid->id_str) {
1827                                 ret = os_snprintf(pos, end - pos,
1828                                                   "id_str=%s\n",
1829                                                   ssid->id_str);
1830                                 if (os_snprintf_error(end - pos, ret))
1831                                         return pos - buf;
1832                                 pos += ret;
1833                         }
1834
1835                         switch (ssid->mode) {
1836                         case WPAS_MODE_INFRA:
1837                                 ret = os_snprintf(pos, end - pos,
1838                                                   "mode=station\n");
1839                                 break;
1840                         case WPAS_MODE_IBSS:
1841                                 ret = os_snprintf(pos, end - pos,
1842                                                   "mode=IBSS\n");
1843                                 break;
1844                         case WPAS_MODE_AP:
1845                                 ret = os_snprintf(pos, end - pos,
1846                                                   "mode=AP\n");
1847                                 break;
1848                         case WPAS_MODE_P2P_GO:
1849                                 ret = os_snprintf(pos, end - pos,
1850                                                   "mode=P2P GO\n");
1851                                 break;
1852                         case WPAS_MODE_P2P_GROUP_FORMATION:
1853                                 ret = os_snprintf(pos, end - pos,
1854                                                   "mode=P2P GO - group "
1855                                                   "formation\n");
1856                                 break;
1857                         default:
1858                                 ret = 0;
1859                                 break;
1860                         }
1861                         if (os_snprintf_error(end - pos, ret))
1862                                 return pos - buf;
1863                         pos += ret;
1864                 }
1865
1866 #ifdef CONFIG_AP
1867                 if (wpa_s->ap_iface) {
1868                         pos += ap_ctrl_iface_wpa_get_status(wpa_s, pos,
1869                                                             end - pos,
1870                                                             verbose);
1871                 } else
1872 #endif /* CONFIG_AP */
1873                 pos += wpa_sm_get_status(wpa_s->wpa, pos, end - pos, verbose);
1874         }
1875 #ifdef CONFIG_SAE
1876         if (wpa_s->wpa_state >= WPA_ASSOCIATED &&
1877 #ifdef CONFIG_AP
1878             !wpa_s->ap_iface &&
1879 #endif /* CONFIG_AP */
1880             wpa_s->sme.sae.state == SAE_ACCEPTED) {
1881                 ret = os_snprintf(pos, end - pos, "sae_group=%d\n",
1882                                   wpa_s->sme.sae.group);
1883                 if (os_snprintf_error(end - pos, ret))
1884                         return pos - buf;
1885                 pos += ret;
1886         }
1887 #endif /* CONFIG_SAE */
1888         ret = os_snprintf(pos, end - pos, "wpa_state=%s\n",
1889                           wpa_supplicant_state_txt(wpa_s->wpa_state));
1890         if (os_snprintf_error(end - pos, ret))
1891                 return pos - buf;
1892         pos += ret;
1893
1894         if (wpa_s->l2 &&
1895             l2_packet_get_ip_addr(wpa_s->l2, tmp, sizeof(tmp)) >= 0) {
1896                 ret = os_snprintf(pos, end - pos, "ip_address=%s\n", tmp);
1897                 if (os_snprintf_error(end - pos, ret))
1898                         return pos - buf;
1899                 pos += ret;
1900         }
1901
1902 #ifdef CONFIG_P2P
1903         if (wpa_s->global->p2p) {
1904                 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
1905                                   "\n", MAC2STR(wpa_s->global->p2p_dev_addr));
1906                 if (os_snprintf_error(end - pos, ret))
1907                         return pos - buf;
1908                 pos += ret;
1909         }
1910 #endif /* CONFIG_P2P */
1911
1912         ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
1913                           MAC2STR(wpa_s->own_addr));
1914         if (os_snprintf_error(end - pos, ret))
1915                 return pos - buf;
1916         pos += ret;
1917
1918 #ifdef CONFIG_HS20
1919         if (wpa_s->current_bss &&
1920             (hs20 = wpa_bss_get_vendor_ie(wpa_s->current_bss,
1921                                           HS20_IE_VENDOR_TYPE)) &&
1922             wpa_s->wpa_proto == WPA_PROTO_RSN &&
1923             wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
1924                 int release = 1;
1925                 if (hs20[1] >= 5) {
1926                         u8 rel_num = (hs20[6] & 0xf0) >> 4;
1927                         release = rel_num + 1;
1928                 }
1929                 ret = os_snprintf(pos, end - pos, "hs20=%d\n", release);
1930                 if (os_snprintf_error(end - pos, ret))
1931                         return pos - buf;
1932                 pos += ret;
1933         }
1934
1935         if (wpa_s->current_ssid) {
1936                 struct wpa_cred *cred;
1937                 char *type;
1938
1939                 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1940                         size_t i;
1941
1942                         if (wpa_s->current_ssid->parent_cred != cred)
1943                                 continue;
1944
1945                         if (cred->provisioning_sp) {
1946                                 ret = os_snprintf(pos, end - pos,
1947                                                   "provisioning_sp=%s\n",
1948                                                   cred->provisioning_sp);
1949                                 if (os_snprintf_error(end - pos, ret))
1950                                         return pos - buf;
1951                                 pos += ret;
1952                         }
1953
1954                         if (!cred->domain)
1955                                 goto no_domain;
1956
1957                         i = 0;
1958                         if (wpa_s->current_bss && wpa_s->current_bss->anqp) {
1959                                 struct wpabuf *names =
1960                                         wpa_s->current_bss->anqp->domain_name;
1961                                 for (i = 0; names && i < cred->num_domain; i++)
1962                                 {
1963                                         if (domain_name_list_contains(
1964                                                     names, cred->domain[i], 1))
1965                                                 break;
1966                                 }
1967                                 if (i == cred->num_domain)
1968                                         i = 0; /* show first entry by default */
1969                         }
1970                         ret = os_snprintf(pos, end - pos, "home_sp=%s\n",
1971                                           cred->domain[i]);
1972                         if (os_snprintf_error(end - pos, ret))
1973                                 return pos - buf;
1974                         pos += ret;
1975
1976                 no_domain:
1977                         if (wpa_s->current_bss == NULL ||
1978                             wpa_s->current_bss->anqp == NULL)
1979                                 res = -1;
1980                         else
1981                                 res = interworking_home_sp_cred(
1982                                         wpa_s, cred,
1983                                         wpa_s->current_bss->anqp->domain_name);
1984                         if (res > 0)
1985                                 type = "home";
1986                         else if (res == 0)
1987                                 type = "roaming";
1988                         else
1989                                 type = "unknown";
1990
1991                         ret = os_snprintf(pos, end - pos, "sp_type=%s\n", type);
1992                         if (os_snprintf_error(end - pos, ret))
1993                                 return pos - buf;
1994                         pos += ret;
1995
1996                         break;
1997                 }
1998         }
1999 #endif /* CONFIG_HS20 */
2000
2001         if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
2002             wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
2003                 res = eapol_sm_get_status(wpa_s->eapol, pos, end - pos,
2004                                           verbose);
2005                 if (res >= 0)
2006                         pos += res;
2007         }
2008
2009         sess_id = eapol_sm_get_session_id(wpa_s->eapol, &sess_id_len);
2010         if (sess_id) {
2011                 char *start = pos;
2012
2013                 ret = os_snprintf(pos, end - pos, "eap_session_id=");
2014                 if (os_snprintf_error(end - pos, ret))
2015                         return start - buf;
2016                 pos += ret;
2017                 ret = wpa_snprintf_hex(pos, end - pos, sess_id, sess_id_len);
2018                 if (ret <= 0)
2019                         return start - buf;
2020                 pos += ret;
2021                 ret = os_snprintf(pos, end - pos, "\n");
2022                 if (os_snprintf_error(end - pos, ret))
2023                         return start - buf;
2024                 pos += ret;
2025         }
2026
2027         res = rsn_preauth_get_status(wpa_s->wpa, pos, end - pos, verbose);
2028         if (res >= 0)
2029                 pos += res;
2030
2031 #ifdef CONFIG_WPS
2032         {
2033                 char uuid_str[100];
2034                 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
2035                 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
2036                 if (os_snprintf_error(end - pos, ret))
2037                         return pos - buf;
2038                 pos += ret;
2039         }
2040 #endif /* CONFIG_WPS */
2041
2042 #ifdef ANDROID
2043         /*
2044          * Allow using the STATUS command with default behavior, say for debug,
2045          * i.e., don't generate a "fake" CONNECTION and SUPPLICANT_STATE_CHANGE
2046          * events with STATUS-NO_EVENTS.
2047          */
2048         if (os_strcmp(params, "-NO_EVENTS")) {
2049                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
2050                              "id=%d state=%d BSSID=" MACSTR " SSID=%s",
2051                              wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
2052                              wpa_s->wpa_state,
2053                              MAC2STR(wpa_s->bssid),
2054                              wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
2055                              wpa_ssid_txt(wpa_s->current_ssid->ssid,
2056                                           wpa_s->current_ssid->ssid_len) : "");
2057                 if (wpa_s->wpa_state == WPA_COMPLETED) {
2058                         struct wpa_ssid *ssid = wpa_s->current_ssid;
2059                         wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED
2060                                      "- connection to " MACSTR
2061                                      " completed %s [id=%d id_str=%s]",
2062                                      MAC2STR(wpa_s->bssid), "(auth)",
2063                                      ssid ? ssid->id : -1,
2064                                      ssid && ssid->id_str ? ssid->id_str : "");
2065                 }
2066         }
2067 #endif /* ANDROID */
2068
2069         return pos - buf;
2070 }
2071
2072
2073 static int wpa_supplicant_ctrl_iface_bssid(struct wpa_supplicant *wpa_s,
2074                                            char *cmd)
2075 {
2076         char *pos;
2077         int id;
2078         struct wpa_ssid *ssid;
2079         u8 bssid[ETH_ALEN];
2080
2081         /* cmd: "<network id> <BSSID>" */
2082         pos = os_strchr(cmd, ' ');
2083         if (pos == NULL)
2084                 return -1;
2085         *pos++ = '\0';
2086         id = atoi(cmd);
2087         wpa_printf(MSG_DEBUG, "CTRL_IFACE: id=%d bssid='%s'", id, pos);
2088         if (hwaddr_aton(pos, bssid)) {
2089                 wpa_printf(MSG_DEBUG ,"CTRL_IFACE: invalid BSSID '%s'", pos);
2090                 return -1;
2091         }
2092
2093         ssid = wpa_config_get_network(wpa_s->conf, id);
2094         if (ssid == NULL) {
2095                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
2096                            "to update", id);
2097                 return -1;
2098         }
2099
2100         os_memcpy(ssid->bssid, bssid, ETH_ALEN);
2101         ssid->bssid_set = !is_zero_ether_addr(bssid);
2102
2103         return 0;
2104 }
2105
2106
2107 static int wpa_supplicant_ctrl_iface_blacklist(struct wpa_supplicant *wpa_s,
2108                                                char *cmd, char *buf,
2109                                                size_t buflen)
2110 {
2111         u8 bssid[ETH_ALEN];
2112         struct wpa_blacklist *e;
2113         char *pos, *end;
2114         int ret;
2115
2116         /* cmd: "BLACKLIST [<BSSID>]" */
2117         if (*cmd == '\0') {
2118                 pos = buf;
2119                 end = buf + buflen;
2120                 e = wpa_s->blacklist;
2121                 while (e) {
2122                         ret = os_snprintf(pos, end - pos, MACSTR "\n",
2123                                           MAC2STR(e->bssid));
2124                         if (os_snprintf_error(end - pos, ret))
2125                                 return pos - buf;
2126                         pos += ret;
2127                         e = e->next;
2128                 }
2129                 return pos - buf;
2130         }
2131
2132         cmd++;
2133         if (os_strncmp(cmd, "clear", 5) == 0) {
2134                 wpa_blacklist_clear(wpa_s);
2135                 os_memcpy(buf, "OK\n", 3);
2136                 return 3;
2137         }
2138
2139         wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
2140         if (hwaddr_aton(cmd, bssid)) {
2141                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: invalid BSSID '%s'", cmd);
2142                 return -1;
2143         }
2144
2145         /*
2146          * Add the BSSID twice, so its count will be 2, causing it to be
2147          * skipped when processing scan results.
2148          */
2149         ret = wpa_blacklist_add(wpa_s, bssid);
2150         if (ret < 0)
2151                 return -1;
2152         ret = wpa_blacklist_add(wpa_s, bssid);
2153         if (ret < 0)
2154                 return -1;
2155         os_memcpy(buf, "OK\n", 3);
2156         return 3;
2157 }
2158
2159
2160 static int wpa_supplicant_ctrl_iface_log_level(struct wpa_supplicant *wpa_s,
2161                                                char *cmd, char *buf,
2162                                                size_t buflen)
2163 {
2164         char *pos, *end, *stamp;
2165         int ret;
2166
2167         /* cmd: "LOG_LEVEL [<level>]" */
2168         if (*cmd == '\0') {
2169                 pos = buf;
2170                 end = buf + buflen;
2171                 ret = os_snprintf(pos, end - pos, "Current level: %s\n"
2172                                   "Timestamp: %d\n",
2173                                   debug_level_str(wpa_debug_level),
2174                                   wpa_debug_timestamp);
2175                 if (os_snprintf_error(end - pos, ret))
2176                         ret = 0;
2177
2178                 return ret;
2179         }
2180
2181         while (*cmd == ' ')
2182                 cmd++;
2183
2184         stamp = os_strchr(cmd, ' ');
2185         if (stamp) {
2186                 *stamp++ = '\0';
2187                 while (*stamp == ' ') {
2188                         stamp++;
2189                 }
2190         }
2191
2192         if (os_strlen(cmd)) {
2193                 int level = str_to_debug_level(cmd);
2194                 if (level < 0)
2195                         return -1;
2196                 wpa_debug_level = level;
2197         }
2198
2199         if (stamp && os_strlen(stamp))
2200                 wpa_debug_timestamp = atoi(stamp);
2201
2202         os_memcpy(buf, "OK\n", 3);
2203         return 3;
2204 }
2205
2206
2207 static int wpa_supplicant_ctrl_iface_list_networks(
2208         struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
2209 {
2210         char *pos, *end, *prev;
2211         struct wpa_ssid *ssid;
2212         int ret;
2213
2214         pos = buf;
2215         end = buf + buflen;
2216         ret = os_snprintf(pos, end - pos,
2217                           "network id / ssid / bssid / flags\n");
2218         if (os_snprintf_error(end - pos, ret))
2219                 return pos - buf;
2220         pos += ret;
2221
2222         ssid = wpa_s->conf->ssid;
2223
2224         /* skip over ssids until we find next one */
2225         if (cmd != NULL && os_strncmp(cmd, "LAST_ID=", 8) == 0) {
2226                 int last_id = atoi(cmd + 8);
2227                 if (last_id != -1) {
2228                         while (ssid != NULL && ssid->id <= last_id) {
2229                                 ssid = ssid->next;
2230                         }
2231                 }
2232         }
2233
2234         while (ssid) {
2235                 prev = pos;
2236                 ret = os_snprintf(pos, end - pos, "%d\t%s",
2237                                   ssid->id,
2238                                   wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
2239                 if (os_snprintf_error(end - pos, ret))
2240                         return prev - buf;
2241                 pos += ret;
2242                 if (ssid->bssid_set) {
2243                         ret = os_snprintf(pos, end - pos, "\t" MACSTR,
2244                                           MAC2STR(ssid->bssid));
2245                 } else {
2246                         ret = os_snprintf(pos, end - pos, "\tany");
2247                 }
2248                 if (os_snprintf_error(end - pos, ret))
2249                         return prev - buf;
2250                 pos += ret;
2251                 ret = os_snprintf(pos, end - pos, "\t%s%s%s%s",
2252                                   ssid == wpa_s->current_ssid ?
2253                                   "[CURRENT]" : "",
2254                                   ssid->disabled ? "[DISABLED]" : "",
2255                                   ssid->disabled_until.sec ?
2256                                   "[TEMP-DISABLED]" : "",
2257                                   ssid->disabled == 2 ? "[P2P-PERSISTENT]" :
2258                                   "");
2259                 if (os_snprintf_error(end - pos, ret))
2260                         return prev - buf;
2261                 pos += ret;
2262                 ret = os_snprintf(pos, end - pos, "\n");
2263                 if (os_snprintf_error(end - pos, ret))
2264                         return prev - buf;
2265                 pos += ret;
2266
2267                 ssid = ssid->next;
2268         }
2269
2270         return pos - buf;
2271 }
2272
2273
2274 static char * wpa_supplicant_cipher_txt(char *pos, char *end, int cipher)
2275 {
2276         int ret;
2277         ret = os_snprintf(pos, end - pos, "-");
2278         if (os_snprintf_error(end - pos, ret))
2279                 return pos;
2280         pos += ret;
2281         ret = wpa_write_ciphers(pos, end, cipher, "+");
2282         if (ret < 0)
2283                 return pos;
2284         pos += ret;
2285         return pos;
2286 }
2287
2288
2289 static char * wpa_supplicant_ie_txt(char *pos, char *end, const char *proto,
2290                                     const u8 *ie, size_t ie_len)
2291 {
2292         struct wpa_ie_data data;
2293         char *start;
2294         int ret;
2295
2296         ret = os_snprintf(pos, end - pos, "[%s-", proto);
2297         if (os_snprintf_error(end - pos, ret))
2298                 return pos;
2299         pos += ret;
2300
2301         if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
2302                 ret = os_snprintf(pos, end - pos, "?]");
2303                 if (os_snprintf_error(end - pos, ret))
2304                         return pos;
2305                 pos += ret;
2306                 return pos;
2307         }
2308
2309         start = pos;
2310         if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
2311                 ret = os_snprintf(pos, end - pos, "%sEAP",
2312                                   pos == start ? "" : "+");
2313                 if (os_snprintf_error(end - pos, ret))
2314                         return pos;
2315                 pos += ret;
2316         }
2317         if (data.key_mgmt & WPA_KEY_MGMT_PSK) {
2318                 ret = os_snprintf(pos, end - pos, "%sPSK",
2319                                   pos == start ? "" : "+");
2320                 if (os_snprintf_error(end - pos, ret))
2321                         return pos;
2322                 pos += ret;
2323         }
2324         if (data.key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
2325                 ret = os_snprintf(pos, end - pos, "%sNone",
2326                                   pos == start ? "" : "+");
2327                 if (os_snprintf_error(end - pos, ret))
2328                         return pos;
2329                 pos += ret;
2330         }
2331         if (data.key_mgmt & WPA_KEY_MGMT_SAE) {
2332                 ret = os_snprintf(pos, end - pos, "%sSAE",
2333                                   pos == start ? "" : "+");
2334                 if (os_snprintf_error(end - pos, ret))
2335                         return pos;
2336                 pos += ret;
2337         }
2338 #ifdef CONFIG_IEEE80211R
2339         if (data.key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
2340                 ret = os_snprintf(pos, end - pos, "%sFT/EAP",
2341                                   pos == start ? "" : "+");
2342                 if (os_snprintf_error(end - pos, ret))
2343                         return pos;
2344                 pos += ret;
2345         }
2346         if (data.key_mgmt & WPA_KEY_MGMT_FT_PSK) {
2347                 ret = os_snprintf(pos, end - pos, "%sFT/PSK",
2348                                   pos == start ? "" : "+");
2349                 if (os_snprintf_error(end - pos, ret))
2350                         return pos;
2351                 pos += ret;
2352         }
2353         if (data.key_mgmt & WPA_KEY_MGMT_FT_SAE) {
2354                 ret = os_snprintf(pos, end - pos, "%sFT/SAE",
2355                                   pos == start ? "" : "+");
2356                 if (os_snprintf_error(end - pos, ret))
2357                         return pos;
2358                 pos += ret;
2359         }
2360 #endif /* CONFIG_IEEE80211R */
2361 #ifdef CONFIG_IEEE80211W
2362         if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
2363                 ret = os_snprintf(pos, end - pos, "%sEAP-SHA256",
2364                                   pos == start ? "" : "+");
2365                 if (os_snprintf_error(end - pos, ret))
2366                         return pos;
2367                 pos += ret;
2368         }
2369         if (data.key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
2370                 ret = os_snprintf(pos, end - pos, "%sPSK-SHA256",
2371                                   pos == start ? "" : "+");
2372                 if (os_snprintf_error(end - pos, ret))
2373                         return pos;
2374                 pos += ret;
2375         }
2376 #endif /* CONFIG_IEEE80211W */
2377
2378 #ifdef CONFIG_SUITEB
2379         if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
2380                 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B",
2381                                   pos == start ? "" : "+");
2382                 if (os_snprintf_error(end - pos, ret))
2383                         return pos;
2384                 pos += ret;
2385         }
2386 #endif /* CONFIG_SUITEB */
2387
2388 #ifdef CONFIG_SUITEB192
2389         if (data.key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
2390                 ret = os_snprintf(pos, end - pos, "%sEAP-SUITE-B-192",
2391                                   pos == start ? "" : "+");
2392                 if (os_snprintf_error(end - pos, ret))
2393                         return pos;
2394                 pos += ret;
2395         }
2396 #endif /* CONFIG_SUITEB192 */
2397
2398         if (data.key_mgmt & WPA_KEY_MGMT_OSEN) {
2399                 ret = os_snprintf(pos, end - pos, "%sOSEN",
2400                                   pos == start ? "" : "+");
2401                 if (os_snprintf_error(end - pos, ret))
2402                         return pos;
2403                 pos += ret;
2404         }
2405
2406         pos = wpa_supplicant_cipher_txt(pos, end, data.pairwise_cipher);
2407
2408         if (data.capabilities & WPA_CAPABILITY_PREAUTH) {
2409                 ret = os_snprintf(pos, end - pos, "-preauth");
2410                 if (os_snprintf_error(end - pos, ret))
2411                         return pos;
2412                 pos += ret;
2413         }
2414
2415         ret = os_snprintf(pos, end - pos, "]");
2416         if (os_snprintf_error(end - pos, ret))
2417                 return pos;
2418         pos += ret;
2419
2420         return pos;
2421 }
2422
2423
2424 #ifdef CONFIG_WPS
2425 static char * wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s,
2426                                             char *pos, char *end,
2427                                             struct wpabuf *wps_ie)
2428 {
2429         int ret;
2430         const char *txt;
2431
2432         if (wps_ie == NULL)
2433                 return pos;
2434         if (wps_is_selected_pbc_registrar(wps_ie))
2435                 txt = "[WPS-PBC]";
2436         else if (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 0))
2437                 txt = "[WPS-AUTH]";
2438         else if (wps_is_selected_pin_registrar(wps_ie))
2439                 txt = "[WPS-PIN]";
2440         else
2441                 txt = "[WPS]";
2442
2443         ret = os_snprintf(pos, end - pos, "%s", txt);
2444         if (!os_snprintf_error(end - pos, ret))
2445                 pos += ret;
2446         wpabuf_free(wps_ie);
2447         return pos;
2448 }
2449 #endif /* CONFIG_WPS */
2450
2451
2452 static char * wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s,
2453                                         char *pos, char *end,
2454                                         const struct wpa_bss *bss)
2455 {
2456 #ifdef CONFIG_WPS
2457         struct wpabuf *wps_ie;
2458         wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
2459         return wpa_supplicant_wps_ie_txt_buf(wpa_s, pos, end, wps_ie);
2460 #else /* CONFIG_WPS */
2461         return pos;
2462 #endif /* CONFIG_WPS */
2463 }
2464
2465
2466 /* Format one result on one text line into a buffer. */
2467 static int wpa_supplicant_ctrl_iface_scan_result(
2468         struct wpa_supplicant *wpa_s,
2469         const struct wpa_bss *bss, char *buf, size_t buflen)
2470 {
2471         char *pos, *end;
2472         int ret;
2473         const u8 *ie, *ie2, *osen_ie, *p2p, *mesh;
2474
2475         mesh = wpa_bss_get_ie(bss, WLAN_EID_MESH_ID);
2476         p2p = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
2477         if (!p2p)
2478                 p2p = wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE);
2479         if (p2p && bss->ssid_len == P2P_WILDCARD_SSID_LEN &&
2480             os_memcmp(bss->ssid, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) ==
2481             0)
2482                 return 0; /* Do not show P2P listen discovery results here */
2483
2484         pos = buf;
2485         end = buf + buflen;
2486
2487         ret = os_snprintf(pos, end - pos, MACSTR "\t%d\t%d\t",
2488                           MAC2STR(bss->bssid), bss->freq, bss->level);
2489         if (os_snprintf_error(end - pos, ret))
2490                 return -1;
2491         pos += ret;
2492         ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2493         if (ie)
2494                 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2495         ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
2496         if (ie2) {
2497                 pos = wpa_supplicant_ie_txt(pos, end, mesh ? "RSN" : "WPA2",
2498                                             ie2, 2 + ie2[1]);
2499         }
2500         osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
2501         if (osen_ie)
2502                 pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
2503                                             osen_ie, 2 + osen_ie[1]);
2504         pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
2505         if (!ie && !ie2 && !osen_ie && (bss->caps & IEEE80211_CAP_PRIVACY)) {
2506                 ret = os_snprintf(pos, end - pos, "[WEP]");
2507                 if (os_snprintf_error(end - pos, ret))
2508                         return -1;
2509                 pos += ret;
2510         }
2511         if (mesh) {
2512                 ret = os_snprintf(pos, end - pos, "[MESH]");
2513                 if (os_snprintf_error(end - pos, ret))
2514                         return -1;
2515                 pos += ret;
2516         }
2517         if (bss_is_dmg(bss)) {
2518                 const char *s;
2519                 ret = os_snprintf(pos, end - pos, "[DMG]");
2520                 if (os_snprintf_error(end - pos, ret))
2521                         return -1;
2522                 pos += ret;
2523                 switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
2524                 case IEEE80211_CAP_DMG_IBSS:
2525                         s = "[IBSS]";
2526                         break;
2527                 case IEEE80211_CAP_DMG_AP:
2528                         s = "[ESS]";
2529                         break;
2530                 case IEEE80211_CAP_DMG_PBSS:
2531                         s = "[PBSS]";
2532                         break;
2533                 default:
2534                         s = "";
2535                         break;
2536                 }
2537                 ret = os_snprintf(pos, end - pos, "%s", s);
2538                 if (os_snprintf_error(end - pos, ret))
2539                         return -1;
2540                 pos += ret;
2541         } else {
2542                 if (bss->caps & IEEE80211_CAP_IBSS) {
2543                         ret = os_snprintf(pos, end - pos, "[IBSS]");
2544                         if (os_snprintf_error(end - pos, ret))
2545                                 return -1;
2546                         pos += ret;
2547                 }
2548                 if (bss->caps & IEEE80211_CAP_ESS) {
2549                         ret = os_snprintf(pos, end - pos, "[ESS]");
2550                         if (os_snprintf_error(end - pos, ret))
2551                                 return -1;
2552                         pos += ret;
2553                 }
2554         }
2555         if (p2p) {
2556                 ret = os_snprintf(pos, end - pos, "[P2P]");
2557                 if (os_snprintf_error(end - pos, ret))
2558                         return -1;
2559                 pos += ret;
2560         }
2561 #ifdef CONFIG_HS20
2562         if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE) && ie2) {
2563                 ret = os_snprintf(pos, end - pos, "[HS20]");
2564                 if (os_snprintf_error(end - pos, ret))
2565                         return -1;
2566                 pos += ret;
2567         }
2568 #endif /* CONFIG_HS20 */
2569 #ifdef CONFIG_FST
2570         if (wpa_bss_get_ie(bss, WLAN_EID_MULTI_BAND)) {
2571                 ret = os_snprintf(pos, end - pos, "[FST]");
2572                 if (os_snprintf_error(end - pos, ret))
2573                         return -1;
2574                 pos += ret;
2575         }
2576 #endif /* CONFIG_FST */
2577
2578         ret = os_snprintf(pos, end - pos, "\t%s",
2579                           wpa_ssid_txt(bss->ssid, bss->ssid_len));
2580         if (os_snprintf_error(end - pos, ret))
2581                 return -1;
2582         pos += ret;
2583
2584         ret = os_snprintf(pos, end - pos, "\n");
2585         if (os_snprintf_error(end - pos, ret))
2586                 return -1;
2587         pos += ret;
2588
2589         return pos - buf;
2590 }
2591
2592
2593 static int wpa_supplicant_ctrl_iface_scan_results(
2594         struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2595 {
2596         char *pos, *end;
2597         struct wpa_bss *bss;
2598         int ret;
2599
2600         pos = buf;
2601         end = buf + buflen;
2602         ret = os_snprintf(pos, end - pos, "bssid / frequency / signal level / "
2603                           "flags / ssid\n");
2604         if (os_snprintf_error(end - pos, ret))
2605                 return pos - buf;
2606         pos += ret;
2607
2608         dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
2609                 ret = wpa_supplicant_ctrl_iface_scan_result(wpa_s, bss, pos,
2610                                                             end - pos);
2611                 if (ret < 0 || ret >= end - pos)
2612                         return pos - buf;
2613                 pos += ret;
2614         }
2615
2616         return pos - buf;
2617 }
2618
2619
2620 #ifdef CONFIG_MESH
2621
2622 static int wpa_supplicant_ctrl_iface_mesh_interface_add(
2623         struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
2624 {
2625         char *pos, ifname[IFNAMSIZ + 1];
2626
2627         ifname[0] = '\0';
2628
2629         pos = os_strstr(cmd, "ifname=");
2630         if (pos) {
2631                 pos += 7;
2632                 os_strlcpy(ifname, pos, sizeof(ifname));
2633         }
2634
2635         if (wpas_mesh_add_interface(wpa_s, ifname, sizeof(ifname)) < 0)
2636                 return -1;
2637
2638         os_strlcpy(reply, ifname, max_len);
2639         return os_strlen(ifname);
2640 }
2641
2642
2643 static int wpa_supplicant_ctrl_iface_mesh_group_add(
2644         struct wpa_supplicant *wpa_s, char *cmd)
2645 {
2646         int id;
2647         struct wpa_ssid *ssid;
2648
2649         id = atoi(cmd);
2650         wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_ADD id=%d", id);
2651
2652         ssid = wpa_config_get_network(wpa_s->conf, id);
2653         if (ssid == NULL) {
2654                 wpa_printf(MSG_DEBUG,
2655                            "CTRL_IFACE: Could not find network id=%d", id);
2656                 return -1;
2657         }
2658         if (ssid->mode != WPAS_MODE_MESH) {
2659                 wpa_printf(MSG_DEBUG,
2660                            "CTRL_IFACE: Cannot use MESH_GROUP_ADD on a non mesh network");
2661                 return -1;
2662         }
2663         if (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
2664             ssid->key_mgmt != WPA_KEY_MGMT_SAE) {
2665                 wpa_printf(MSG_ERROR,
2666                            "CTRL_IFACE: key_mgmt for mesh network should be open or SAE");
2667                 return -1;
2668         }
2669
2670         /*
2671          * TODO: If necessary write our own group_add function,
2672          * for now we can reuse select_network
2673          */
2674         wpa_supplicant_select_network(wpa_s, ssid);
2675
2676         return 0;
2677 }
2678
2679
2680 static int wpa_supplicant_ctrl_iface_mesh_group_remove(
2681         struct wpa_supplicant *wpa_s, char *cmd)
2682 {
2683         struct wpa_supplicant *orig;
2684         struct wpa_global *global;
2685         int found = 0;
2686
2687         wpa_printf(MSG_DEBUG, "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s", cmd);
2688
2689         global = wpa_s->global;
2690         orig = wpa_s;
2691
2692         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
2693                 if (os_strcmp(wpa_s->ifname, cmd) == 0) {
2694                         found = 1;
2695                         break;
2696                 }
2697         }
2698         if (!found) {
2699                 wpa_printf(MSG_ERROR,
2700                            "CTRL_IFACE: MESH_GROUP_REMOVE ifname=%s not found",
2701                            cmd);
2702                 return -1;
2703         }
2704         if (wpa_s->mesh_if_created && wpa_s == orig) {
2705                 wpa_printf(MSG_ERROR,
2706                            "CTRL_IFACE: MESH_GROUP_REMOVE can't remove itself");
2707                 return -1;
2708         }
2709
2710         wpa_s->reassociate = 0;
2711         wpa_s->disconnected = 1;
2712         wpa_supplicant_cancel_sched_scan(wpa_s);
2713         wpa_supplicant_cancel_scan(wpa_s);
2714
2715         /*
2716          * TODO: If necessary write our own group_remove function,
2717          * for now we can reuse deauthenticate
2718          */
2719         wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2720
2721         if (wpa_s->mesh_if_created)
2722                 wpa_supplicant_remove_iface(global, wpa_s, 0);
2723
2724         return 0;
2725 }
2726
2727 #endif /* CONFIG_MESH */
2728
2729
2730 static int wpa_supplicant_ctrl_iface_select_network(
2731         struct wpa_supplicant *wpa_s, char *cmd)
2732 {
2733         int id;
2734         struct wpa_ssid *ssid;
2735         char *pos;
2736
2737         /* cmd: "<network id>" or "any" */
2738         if (os_strncmp(cmd, "any", 3) == 0) {
2739                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK any");
2740                 ssid = NULL;
2741         } else {
2742                 id = atoi(cmd);
2743                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SELECT_NETWORK id=%d", id);
2744
2745                 ssid = wpa_config_get_network(wpa_s->conf, id);
2746                 if (ssid == NULL) {
2747                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2748                                    "network id=%d", id);
2749                         return -1;
2750                 }
2751                 if (ssid->disabled == 2) {
2752                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2753                                    "SELECT_NETWORK with persistent P2P group");
2754                         return -1;
2755                 }
2756         }
2757
2758         pos = os_strstr(cmd, " freq=");
2759         if (pos) {
2760                 int *freqs = freq_range_to_channel_list(wpa_s, pos + 6);
2761                 if (freqs) {
2762                         wpa_s->scan_req = MANUAL_SCAN_REQ;
2763                         os_free(wpa_s->manual_scan_freqs);
2764                         wpa_s->manual_scan_freqs = freqs;
2765                 }
2766         }
2767
2768         wpa_s->scan_min_time.sec = 0;
2769         wpa_s->scan_min_time.usec = 0;
2770         wpa_supplicant_select_network(wpa_s, ssid);
2771
2772         return 0;
2773 }
2774
2775
2776 static int wpa_supplicant_ctrl_iface_enable_network(
2777         struct wpa_supplicant *wpa_s, char *cmd)
2778 {
2779         int id;
2780         struct wpa_ssid *ssid;
2781
2782         /* cmd: "<network id>" or "all" */
2783         if (os_strcmp(cmd, "all") == 0) {
2784                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK all");
2785                 ssid = NULL;
2786         } else {
2787                 id = atoi(cmd);
2788                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: ENABLE_NETWORK id=%d", id);
2789
2790                 ssid = wpa_config_get_network(wpa_s->conf, id);
2791                 if (ssid == NULL) {
2792                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2793                                    "network id=%d", id);
2794                         return -1;
2795                 }
2796                 if (ssid->disabled == 2) {
2797                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2798                                    "ENABLE_NETWORK with persistent P2P group");
2799                         return -1;
2800                 }
2801
2802                 if (os_strstr(cmd, " no-connect")) {
2803                         ssid->disabled = 0;
2804                         return 0;
2805                 }
2806         }
2807         wpa_s->scan_min_time.sec = 0;
2808         wpa_s->scan_min_time.usec = 0;
2809         wpa_supplicant_enable_network(wpa_s, ssid);
2810
2811         return 0;
2812 }
2813
2814
2815 static int wpa_supplicant_ctrl_iface_disable_network(
2816         struct wpa_supplicant *wpa_s, char *cmd)
2817 {
2818         int id;
2819         struct wpa_ssid *ssid;
2820
2821         /* cmd: "<network id>" or "all" */
2822         if (os_strcmp(cmd, "all") == 0) {
2823                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK all");
2824                 ssid = NULL;
2825         } else {
2826                 id = atoi(cmd);
2827                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: DISABLE_NETWORK id=%d", id);
2828
2829                 ssid = wpa_config_get_network(wpa_s->conf, id);
2830                 if (ssid == NULL) {
2831                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
2832                                    "network id=%d", id);
2833                         return -1;
2834                 }
2835                 if (ssid->disabled == 2) {
2836                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Cannot use "
2837                                    "DISABLE_NETWORK with persistent P2P "
2838                                    "group");
2839                         return -1;
2840                 }
2841         }
2842         wpa_supplicant_disable_network(wpa_s, ssid);
2843
2844         return 0;
2845 }
2846
2847
2848 static int wpa_supplicant_ctrl_iface_add_network(
2849         struct wpa_supplicant *wpa_s, char *buf, size_t buflen)
2850 {
2851         struct wpa_ssid *ssid;
2852         int ret;
2853
2854         wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_NETWORK");
2855
2856         ssid = wpa_config_add_network(wpa_s->conf);
2857         if (ssid == NULL)
2858                 return -1;
2859
2860         wpas_notify_network_added(wpa_s, ssid);
2861
2862         ssid->disabled = 1;
2863         wpa_config_set_network_defaults(ssid);
2864
2865         ret = os_snprintf(buf, buflen, "%d\n", ssid->id);
2866         if (os_snprintf_error(buflen, ret))
2867                 return -1;
2868         return ret;
2869 }
2870
2871
2872 static int wpa_supplicant_ctrl_iface_remove_network(
2873         struct wpa_supplicant *wpa_s, char *cmd)
2874 {
2875         int id;
2876         struct wpa_ssid *ssid;
2877         int was_disabled;
2878
2879         /* cmd: "<network id>" or "all" */
2880         if (os_strcmp(cmd, "all") == 0) {
2881                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK all");
2882                 if (wpa_s->sched_scanning)
2883                         wpa_supplicant_cancel_sched_scan(wpa_s);
2884
2885                 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2886                 if (wpa_s->current_ssid) {
2887 #ifdef CONFIG_SME
2888                         wpa_s->sme.prev_bssid_set = 0;
2889 #endif /* CONFIG_SME */
2890                         wpa_sm_set_config(wpa_s->wpa, NULL);
2891                         eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
2892                         if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2893                                 wpa_s->own_disconnect_req = 1;
2894                         wpa_supplicant_deauthenticate(
2895                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2896                 }
2897                 ssid = wpa_s->conf->ssid;
2898                 while (ssid) {
2899                         struct wpa_ssid *remove_ssid = ssid;
2900                         id = ssid->id;
2901                         ssid = ssid->next;
2902                         if (wpa_s->last_ssid == remove_ssid)
2903                                 wpa_s->last_ssid = NULL;
2904                         wpas_notify_network_removed(wpa_s, remove_ssid);
2905                         wpa_config_remove_network(wpa_s->conf, id);
2906                 }
2907                 return 0;
2908         }
2909
2910         id = atoi(cmd);
2911         wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_NETWORK id=%d", id);
2912
2913         ssid = wpa_config_get_network(wpa_s->conf, id);
2914         if (ssid)
2915                 wpas_notify_network_removed(wpa_s, ssid);
2916         if (ssid == NULL) {
2917                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
2918                            "id=%d", id);
2919                 return -1;
2920         }
2921
2922         if (wpa_s->last_ssid == ssid)
2923                 wpa_s->last_ssid = NULL;
2924
2925         if (ssid == wpa_s->current_ssid || wpa_s->current_ssid == NULL) {
2926 #ifdef CONFIG_SME
2927                 wpa_s->sme.prev_bssid_set = 0;
2928 #endif /* CONFIG_SME */
2929                 /*
2930                  * Invalidate the EAP session cache if the current or
2931                  * previously used network is removed.
2932                  */
2933                 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2934         }
2935
2936         if (ssid == wpa_s->current_ssid) {
2937                 wpa_sm_set_config(wpa_s->wpa, NULL);
2938                 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
2939
2940                 if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2941                         wpa_s->own_disconnect_req = 1;
2942                 wpa_supplicant_deauthenticate(wpa_s,
2943                                               WLAN_REASON_DEAUTH_LEAVING);
2944         }
2945
2946         was_disabled = ssid->disabled;
2947
2948         if (wpa_config_remove_network(wpa_s->conf, id) < 0) {
2949                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Not able to remove the "
2950                            "network id=%d", id);
2951                 return -1;
2952         }
2953
2954         if (!was_disabled && wpa_s->sched_scanning) {
2955                 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to remove "
2956                            "network from filters");
2957                 wpa_supplicant_cancel_sched_scan(wpa_s);
2958                 wpa_supplicant_req_scan(wpa_s, 0, 0);
2959         }
2960
2961         return 0;
2962 }
2963
2964
2965 static int wpa_supplicant_ctrl_iface_update_network(
2966         struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2967         char *name, char *value)
2968 {
2969         if (wpa_config_set(ssid, name, value, 0) < 0) {
2970                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set network "
2971                            "variable '%s'", name);
2972                 return -1;
2973         }
2974
2975         if (os_strcmp(name, "bssid") != 0 &&
2976             os_strcmp(name, "priority") != 0)
2977                 wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
2978
2979         if (wpa_s->current_ssid == ssid || wpa_s->current_ssid == NULL) {
2980                 /*
2981                  * Invalidate the EAP session cache if anything in the current
2982                  * or previously used configuration changes.
2983                  */
2984                 eapol_sm_invalidate_cached_session(wpa_s->eapol);
2985         }
2986
2987         if ((os_strcmp(name, "psk") == 0 &&
2988              value[0] == '"' && ssid->ssid_len) ||
2989             (os_strcmp(name, "ssid") == 0 && ssid->passphrase))
2990                 wpa_config_update_psk(ssid);
2991         else if (os_strcmp(name, "priority") == 0)
2992                 wpa_config_update_prio_list(wpa_s->conf);
2993
2994         return 0;
2995 }
2996
2997
2998 static int wpa_supplicant_ctrl_iface_set_network(
2999         struct wpa_supplicant *wpa_s, char *cmd)
3000 {
3001         int id, ret, prev_bssid_set, prev_disabled;
3002         struct wpa_ssid *ssid;
3003         char *name, *value;
3004         u8 prev_bssid[ETH_ALEN];
3005
3006         /* cmd: "<network id> <variable name> <value>" */
3007         name = os_strchr(cmd, ' ');
3008         if (name == NULL)
3009                 return -1;
3010         *name++ = '\0';
3011
3012         value = os_strchr(name, ' ');
3013         if (value == NULL)
3014                 return -1;
3015         *value++ = '\0';
3016
3017         id = atoi(cmd);
3018         wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_NETWORK id=%d name='%s'",
3019                    id, name);
3020         wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3021                               (u8 *) value, os_strlen(value));
3022
3023         ssid = wpa_config_get_network(wpa_s->conf, id);
3024         if (ssid == NULL) {
3025                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find network "
3026                            "id=%d", id);
3027                 return -1;
3028         }
3029
3030         prev_bssid_set = ssid->bssid_set;
3031         prev_disabled = ssid->disabled;
3032         os_memcpy(prev_bssid, ssid->bssid, ETH_ALEN);
3033         ret = wpa_supplicant_ctrl_iface_update_network(wpa_s, ssid, name,
3034                                                        value);
3035         if (ret == 0 &&
3036             (ssid->bssid_set != prev_bssid_set ||
3037              os_memcmp(ssid->bssid, prev_bssid, ETH_ALEN) != 0))
3038                 wpas_notify_network_bssid_set_changed(wpa_s, ssid);
3039
3040         if (prev_disabled != ssid->disabled &&
3041             (prev_disabled == 2 || ssid->disabled == 2))
3042                 wpas_notify_network_type_changed(wpa_s, ssid);
3043
3044         return ret;
3045 }
3046
3047
3048 static int wpa_supplicant_ctrl_iface_get_network(
3049         struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
3050 {
3051         int id;
3052         size_t res;
3053         struct wpa_ssid *ssid;
3054         char *name, *value;
3055
3056         /* cmd: "<network id> <variable name>" */
3057         name = os_strchr(cmd, ' ');
3058         if (name == NULL || buflen == 0)
3059                 return -1;
3060         *name++ = '\0';
3061
3062         id = atoi(cmd);
3063         wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: GET_NETWORK id=%d name='%s'",
3064                    id, name);
3065
3066         ssid = wpa_config_get_network(wpa_s->conf, id);
3067         if (ssid == NULL) {
3068                 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Could not find network "
3069                            "id=%d", id);
3070                 return -1;
3071         }
3072
3073         value = wpa_config_get_no_key(ssid, name);
3074         if (value == NULL) {
3075                 wpa_printf(MSG_EXCESSIVE, "CTRL_IFACE: Failed to get network "
3076                            "variable '%s'", name);
3077                 return -1;
3078         }
3079
3080         res = os_strlcpy(buf, value, buflen);
3081         if (res >= buflen) {
3082                 os_free(value);
3083                 return -1;
3084         }
3085
3086         os_free(value);
3087
3088         return res;
3089 }
3090
3091
3092 static int wpa_supplicant_ctrl_iface_dup_network(
3093         struct wpa_supplicant *wpa_s, char *cmd,
3094         struct wpa_supplicant *dst_wpa_s)
3095 {
3096         struct wpa_ssid *ssid_s, *ssid_d;
3097         char *name, *id, *value;
3098         int id_s, id_d, ret;
3099
3100         /* cmd: "<src network id> <dst network id> <variable name>" */
3101         id = os_strchr(cmd, ' ');
3102         if (id == NULL)
3103                 return -1;
3104         *id++ = '\0';
3105
3106         name = os_strchr(id, ' ');
3107         if (name == NULL)
3108                 return -1;
3109         *name++ = '\0';
3110
3111         id_s = atoi(cmd);
3112         id_d = atoi(id);
3113
3114         wpa_printf(MSG_DEBUG,
3115                    "CTRL_IFACE: DUP_NETWORK ifname=%s->%s id=%d->%d name='%s'",
3116                    wpa_s->ifname, dst_wpa_s->ifname, id_s, id_d, name);
3117
3118         ssid_s = wpa_config_get_network(wpa_s->conf, id_s);
3119         if (ssid_s == NULL) {
3120                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3121                            "network id=%d", id_s);
3122                 return -1;
3123         }
3124
3125         ssid_d = wpa_config_get_network(dst_wpa_s->conf, id_d);
3126         if (ssid_d == NULL) {
3127                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
3128                            "network id=%d", id_d);
3129                 return -1;
3130         }
3131
3132         value = wpa_config_get(ssid_s, name);
3133         if (value == NULL) {
3134                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get network "
3135                            "variable '%s'", name);
3136                 return -1;
3137         }
3138
3139         ret = wpa_supplicant_ctrl_iface_update_network(dst_wpa_s, ssid_d, name,
3140                                                        value);
3141
3142         os_free(value);
3143
3144         return ret;
3145 }
3146
3147
3148 static int wpa_supplicant_ctrl_iface_list_creds(struct wpa_supplicant *wpa_s,
3149                                                 char *buf, size_t buflen)
3150 {
3151         char *pos, *end;
3152         struct wpa_cred *cred;
3153         int ret;
3154
3155         pos = buf;
3156         end = buf + buflen;
3157         ret = os_snprintf(pos, end - pos,
3158                           "cred id / realm / username / domain / imsi\n");
3159         if (os_snprintf_error(end - pos, ret))
3160                 return pos - buf;
3161         pos += ret;
3162
3163         cred = wpa_s->conf->cred;
3164         while (cred) {
3165                 ret = os_snprintf(pos, end - pos, "%d\t%s\t%s\t%s\t%s\n",
3166                                   cred->id, cred->realm ? cred->realm : "",
3167                                   cred->username ? cred->username : "",
3168                                   cred->domain ? cred->domain[0] : "",
3169                                   cred->imsi ? cred->imsi : "");
3170                 if (os_snprintf_error(end - pos, ret))
3171                         return pos - buf;
3172                 pos += ret;
3173
3174                 cred = cred->next;
3175         }
3176
3177         return pos - buf;
3178 }
3179
3180
3181 static int wpa_supplicant_ctrl_iface_add_cred(struct wpa_supplicant *wpa_s,
3182                                               char *buf, size_t buflen)
3183 {
3184         struct wpa_cred *cred;
3185         int ret;
3186
3187         wpa_printf(MSG_DEBUG, "CTRL_IFACE: ADD_CRED");
3188
3189         cred = wpa_config_add_cred(wpa_s->conf);
3190         if (cred == NULL)
3191                 return -1;
3192
3193         wpa_msg(wpa_s, MSG_INFO, CRED_ADDED "%d", cred->id);
3194
3195         ret = os_snprintf(buf, buflen, "%d\n", cred->id);
3196         if (os_snprintf_error(buflen, ret))
3197                 return -1;
3198         return ret;
3199 }
3200
3201
3202 static int wpas_ctrl_remove_cred(struct wpa_supplicant *wpa_s,
3203                                  struct wpa_cred *cred)
3204 {
3205         struct wpa_ssid *ssid;
3206         char str[20];
3207         int id;
3208
3209         if (cred == NULL) {
3210                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3211                 return -1;
3212         }
3213
3214         id = cred->id;
3215         if (wpa_config_remove_cred(wpa_s->conf, id) < 0) {
3216                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred");
3217                 return -1;
3218         }
3219
3220         wpa_msg(wpa_s, MSG_INFO, CRED_REMOVED "%d", id);
3221
3222         /* Remove any network entry created based on the removed credential */
3223         ssid = wpa_s->conf->ssid;
3224         while (ssid) {
3225                 if (ssid->parent_cred == cred) {
3226                         int res;
3227
3228                         wpa_printf(MSG_DEBUG, "Remove network id %d since it "
3229                                    "used the removed credential", ssid->id);
3230                         res = os_snprintf(str, sizeof(str), "%d", ssid->id);
3231                         if (os_snprintf_error(sizeof(str), res))
3232                                 str[sizeof(str) - 1] = '\0';
3233                         ssid = ssid->next;
3234                         wpa_supplicant_ctrl_iface_remove_network(wpa_s, str);
3235                 } else
3236                         ssid = ssid->next;
3237         }
3238
3239         return 0;
3240 }
3241
3242
3243 static int wpa_supplicant_ctrl_iface_remove_cred(struct wpa_supplicant *wpa_s,
3244                                                  char *cmd)
3245 {
3246         int id;
3247         struct wpa_cred *cred, *prev;
3248
3249         /* cmd: "<cred id>", "all", "sp_fqdn=<FQDN>", or
3250          * "provisioning_sp=<FQDN> */
3251         if (os_strcmp(cmd, "all") == 0) {
3252                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED all");
3253                 cred = wpa_s->conf->cred;
3254                 while (cred) {
3255                         prev = cred;
3256                         cred = cred->next;
3257                         wpas_ctrl_remove_cred(wpa_s, prev);
3258                 }
3259                 return 0;
3260         }
3261
3262         if (os_strncmp(cmd, "sp_fqdn=", 8) == 0) {
3263                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED SP FQDN '%s'",
3264                            cmd + 8);
3265                 cred = wpa_s->conf->cred;
3266                 while (cred) {
3267                         prev = cred;
3268                         cred = cred->next;
3269                         if (prev->domain) {
3270                                 size_t i;
3271                                 for (i = 0; i < prev->num_domain; i++) {
3272                                         if (os_strcmp(prev->domain[i], cmd + 8)
3273                                             != 0)
3274                                                 continue;
3275                                         wpas_ctrl_remove_cred(wpa_s, prev);
3276                                         break;
3277                                 }
3278                         }
3279                 }
3280                 return 0;
3281         }
3282
3283         if (os_strncmp(cmd, "provisioning_sp=", 16) == 0) {
3284                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED provisioning SP FQDN '%s'",
3285                            cmd + 16);
3286                 cred = wpa_s->conf->cred;
3287                 while (cred) {
3288                         prev = cred;
3289                         cred = cred->next;
3290                         if (prev->provisioning_sp &&
3291                             os_strcmp(prev->provisioning_sp, cmd + 16) == 0)
3292                                 wpas_ctrl_remove_cred(wpa_s, prev);
3293                 }
3294                 return 0;
3295         }
3296
3297         id = atoi(cmd);
3298         wpa_printf(MSG_DEBUG, "CTRL_IFACE: REMOVE_CRED id=%d", id);
3299
3300         cred = wpa_config_get_cred(wpa_s->conf, id);
3301         return wpas_ctrl_remove_cred(wpa_s, cred);
3302 }
3303
3304
3305 static int wpa_supplicant_ctrl_iface_set_cred(struct wpa_supplicant *wpa_s,
3306                                               char *cmd)
3307 {
3308         int id;
3309         struct wpa_cred *cred;
3310         char *name, *value;
3311
3312         /* cmd: "<cred id> <variable name> <value>" */
3313         name = os_strchr(cmd, ' ');
3314         if (name == NULL)
3315                 return -1;
3316         *name++ = '\0';
3317
3318         value = os_strchr(name, ' ');
3319         if (value == NULL)
3320                 return -1;
3321         *value++ = '\0';
3322
3323         id = atoi(cmd);
3324         wpa_printf(MSG_DEBUG, "CTRL_IFACE: SET_CRED id=%d name='%s'",
3325                    id, name);
3326         wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: value",
3327                               (u8 *) value, os_strlen(value));
3328
3329         cred = wpa_config_get_cred(wpa_s->conf, id);
3330         if (cred == NULL) {
3331                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3332                            id);
3333                 return -1;
3334         }
3335
3336         if (wpa_config_set_cred(cred, name, value, 0) < 0) {
3337                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to set cred "
3338                            "variable '%s'", name);
3339                 return -1;
3340         }
3341
3342         wpa_msg(wpa_s, MSG_INFO, CRED_MODIFIED "%d %s", cred->id, name);
3343
3344         return 0;
3345 }
3346
3347
3348 static int wpa_supplicant_ctrl_iface_get_cred(struct wpa_supplicant *wpa_s,
3349                                               char *cmd, char *buf,
3350                                               size_t buflen)
3351 {
3352         int id;
3353         size_t res;
3354         struct wpa_cred *cred;
3355         char *name, *value;
3356
3357         /* cmd: "<cred id> <variable name>" */
3358         name = os_strchr(cmd, ' ');
3359         if (name == NULL)
3360                 return -1;
3361         *name++ = '\0';
3362
3363         id = atoi(cmd);
3364         wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CRED id=%d name='%s'",
3365                    id, name);
3366
3367         cred = wpa_config_get_cred(wpa_s->conf, id);
3368         if (cred == NULL) {
3369                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find cred id=%d",
3370                            id);
3371                 return -1;
3372         }
3373
3374         value = wpa_config_get_cred_no_key(cred, name);
3375         if (value == NULL) {
3376                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Failed to get cred variable '%s'",
3377                            name);
3378                 return -1;
3379         }
3380
3381         res = os_strlcpy(buf, value, buflen);
3382         if (res >= buflen) {
3383                 os_free(value);
3384                 return -1;
3385         }
3386
3387         os_free(value);
3388
3389         return res;
3390 }
3391
3392
3393 #ifndef CONFIG_NO_CONFIG_WRITE
3394 static int wpa_supplicant_ctrl_iface_save_config(struct wpa_supplicant *wpa_s)
3395 {
3396         int ret;
3397
3398         if (!wpa_s->conf->update_config) {
3399                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed "
3400                            "to update configuration (update_config=0)");
3401                 return -1;
3402         }
3403
3404         ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
3405         if (ret) {
3406                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to "
3407                            "update configuration");
3408         } else {
3409                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration"
3410                            " updated");
3411         }
3412
3413         return ret;
3414 }
3415 #endif /* CONFIG_NO_CONFIG_WRITE */
3416
3417
3418 struct cipher_info {
3419         unsigned int capa;
3420         const char *name;
3421         int group_only;
3422 };
3423
3424 static const struct cipher_info ciphers[] = {
3425         { WPA_DRIVER_CAPA_ENC_CCMP_256, "CCMP-256", 0 },
3426         { WPA_DRIVER_CAPA_ENC_GCMP_256, "GCMP-256", 0 },
3427         { WPA_DRIVER_CAPA_ENC_CCMP, "CCMP", 0 },
3428         { WPA_DRIVER_CAPA_ENC_GCMP, "GCMP", 0 },
3429         { WPA_DRIVER_CAPA_ENC_TKIP, "TKIP", 0 },
3430         { WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE, "NONE", 0 },
3431         { WPA_DRIVER_CAPA_ENC_WEP104, "WEP104", 1 },
3432         { WPA_DRIVER_CAPA_ENC_WEP40, "WEP40", 1 }
3433 };
3434
3435 static const struct cipher_info ciphers_group_mgmt[] = {
3436         { WPA_DRIVER_CAPA_ENC_BIP, "AES-128-CMAC", 1 },
3437         { WPA_DRIVER_CAPA_ENC_BIP_GMAC_128, "BIP-GMAC-128", 1 },
3438         { WPA_DRIVER_CAPA_ENC_BIP_GMAC_256, "BIP-GMAC-256", 1 },
3439         { WPA_DRIVER_CAPA_ENC_BIP_CMAC_256, "BIP-CMAC-256", 1 },
3440 };
3441
3442
3443 static int ctrl_iface_get_capability_pairwise(int res, char *strict,
3444                                               struct wpa_driver_capa *capa,
3445                                               char *buf, size_t buflen)
3446 {
3447         int ret;
3448         char *pos, *end;
3449         size_t len;
3450         unsigned int i;
3451
3452         pos = buf;
3453         end = pos + buflen;
3454
3455         if (res < 0) {
3456                 if (strict)
3457                         return 0;
3458                 len = os_strlcpy(buf, "CCMP TKIP NONE", buflen);
3459                 if (len >= buflen)
3460                         return -1;
3461                 return len;
3462         }
3463
3464         for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3465                 if (!ciphers[i].group_only && capa->enc & ciphers[i].capa) {
3466                         ret = os_snprintf(pos, end - pos, "%s%s",
3467                                           pos == buf ? "" : " ",
3468                                           ciphers[i].name);
3469                         if (os_snprintf_error(end - pos, ret))
3470                                 return pos - buf;
3471                         pos += ret;
3472                 }
3473         }
3474
3475         return pos - buf;
3476 }
3477
3478
3479 static int ctrl_iface_get_capability_group(int res, char *strict,
3480                                            struct wpa_driver_capa *capa,
3481                                            char *buf, size_t buflen)
3482 {
3483         int ret;
3484         char *pos, *end;
3485         size_t len;
3486         unsigned int i;
3487
3488         pos = buf;
3489         end = pos + buflen;
3490
3491         if (res < 0) {
3492                 if (strict)
3493                         return 0;
3494                 len = os_strlcpy(buf, "CCMP TKIP WEP104 WEP40", buflen);
3495                 if (len >= buflen)
3496                         return -1;
3497                 return len;
3498         }
3499
3500         for (i = 0; i < ARRAY_SIZE(ciphers); i++) {
3501                 if (capa->enc & ciphers[i].capa) {
3502                         ret = os_snprintf(pos, end - pos, "%s%s",
3503                                           pos == buf ? "" : " ",
3504                                           ciphers[i].name);
3505                         if (os_snprintf_error(end - pos, ret))
3506                                 return pos - buf;
3507                         pos += ret;
3508                 }
3509         }
3510
3511         return pos - buf;
3512 }
3513
3514
3515 static int ctrl_iface_get_capability_group_mgmt(int res, char *strict,
3516                                                 struct wpa_driver_capa *capa,
3517                                                 char *buf, size_t buflen)
3518 {
3519         int ret;
3520         char *pos, *end;
3521         unsigned int i;
3522
3523         pos = buf;
3524         end = pos + buflen;
3525
3526         if (res < 0)
3527                 return 0;
3528
3529         for (i = 0; i < ARRAY_SIZE(ciphers_group_mgmt); i++) {
3530                 if (capa->enc & ciphers_group_mgmt[i].capa) {
3531                         ret = os_snprintf(pos, end - pos, "%s%s",
3532                                           pos == buf ? "" : " ",
3533                                           ciphers_group_mgmt[i].name);
3534                         if (os_snprintf_error(end - pos, ret))
3535                                 return pos - buf;
3536                         pos += ret;
3537                 }
3538         }
3539
3540         return pos - buf;
3541 }
3542
3543
3544 static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
3545                                               struct wpa_driver_capa *capa,
3546                                               char *buf, size_t buflen)
3547 {
3548         int ret;
3549         char *pos, *end;
3550         size_t len;
3551
3552         pos = buf;
3553         end = pos + buflen;
3554
3555         if (res < 0) {
3556                 if (strict)
3557                         return 0;
3558                 len = os_strlcpy(buf, "WPA-PSK WPA-EAP IEEE8021X WPA-NONE "
3559                                  "NONE", buflen);
3560                 if (len >= buflen)
3561                         return -1;
3562                 return len;
3563         }
3564
3565         ret = os_snprintf(pos, end - pos, "NONE IEEE8021X");
3566         if (os_snprintf_error(end - pos, ret))
3567                 return pos - buf;
3568         pos += ret;
3569
3570         if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3571                               WPA_DRIVER_CAPA_KEY_MGMT_WPA2)) {
3572                 ret = os_snprintf(pos, end - pos, " WPA-EAP");
3573                 if (os_snprintf_error(end - pos, ret))
3574                         return pos - buf;
3575                 pos += ret;
3576         }
3577
3578         if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
3579                               WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
3580                 ret = os_snprintf(pos, end - pos, " WPA-PSK");
3581                 if (os_snprintf_error(end - pos, ret))
3582                         return pos - buf;
3583                 pos += ret;
3584         }
3585
3586         if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE) {
3587                 ret = os_snprintf(pos, end - pos, " WPA-NONE");
3588                 if (os_snprintf_error(end - pos, ret))
3589                         return pos - buf;
3590                 pos += ret;
3591         }
3592
3593 #ifdef CONFIG_SUITEB
3594         if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B) {
3595                 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B");
3596                 if (os_snprintf_error(end - pos, ret))
3597                         return pos - buf;
3598                 pos += ret;
3599         }
3600 #endif /* CONFIG_SUITEB */
3601 #ifdef CONFIG_SUITEB192
3602         if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192) {
3603                 ret = os_snprintf(pos, end - pos, " WPA-EAP-SUITE-B-192");
3604                 if (os_snprintf_error(end - pos, ret))
3605                         return pos - buf;
3606                 pos += ret;
3607         }
3608 #endif /* CONFIG_SUITEB192 */
3609
3610         return pos - buf;
3611 }
3612
3613
3614 static int ctrl_iface_get_capability_proto(int res, char *strict,
3615                                            struct wpa_driver_capa *capa,
3616                                            char *buf, size_t buflen)
3617 {
3618         int ret;
3619         char *pos, *end;
3620         size_t len;
3621
3622         pos = buf;
3623         end = pos + buflen;
3624
3625         if (res < 0) {
3626                 if (strict)
3627                         return 0;
3628                 len = os_strlcpy(buf, "RSN WPA", buflen);
3629                 if (len >= buflen)
3630                         return -1;
3631                 return len;
3632         }
3633
3634         if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3635                               WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
3636                 ret = os_snprintf(pos, end - pos, "%sRSN",
3637                                   pos == buf ? "" : " ");
3638                 if (os_snprintf_error(end - pos, ret))
3639                         return pos - buf;
3640                 pos += ret;
3641         }
3642
3643         if (capa->key_mgmt & (WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3644                               WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK)) {
3645                 ret = os_snprintf(pos, end - pos, "%sWPA",
3646                                   pos == buf ? "" : " ");
3647                 if (os_snprintf_error(end - pos, ret))
3648                         return pos - buf;
3649                 pos += ret;
3650         }
3651
3652         return pos - buf;
3653 }
3654
3655
3656 static int ctrl_iface_get_capability_auth_alg(struct wpa_supplicant *wpa_s,
3657                                               int res, char *strict,
3658                                               struct wpa_driver_capa *capa,
3659                                               char *buf, size_t buflen)
3660 {
3661         int ret;
3662         char *pos, *end;
3663         size_t len;
3664
3665         pos = buf;
3666         end = pos + buflen;
3667
3668         if (res < 0) {
3669                 if (strict)
3670                         return 0;
3671                 len = os_strlcpy(buf, "OPEN SHARED LEAP", buflen);
3672                 if (len >= buflen)
3673                         return -1;
3674                 return len;
3675         }
3676
3677         if (capa->auth & (WPA_DRIVER_AUTH_OPEN)) {
3678                 ret = os_snprintf(pos, end - pos, "%sOPEN",
3679                                   pos == buf ? "" : " ");
3680                 if (os_snprintf_error(end - pos, ret))
3681                         return pos - buf;
3682                 pos += ret;
3683         }
3684
3685         if (capa->auth & (WPA_DRIVER_AUTH_SHARED)) {
3686                 ret = os_snprintf(pos, end - pos, "%sSHARED",
3687                                   pos == buf ? "" : " ");
3688                 if (os_snprintf_error(end - pos, ret))
3689                         return pos - buf;
3690                 pos += ret;
3691         }
3692
3693         if (capa->auth & (WPA_DRIVER_AUTH_LEAP)) {
3694                 ret = os_snprintf(pos, end - pos, "%sLEAP",
3695                                   pos == buf ? "" : " ");
3696                 if (os_snprintf_error(end - pos, ret))
3697                         return pos - buf;
3698                 pos += ret;
3699         }
3700
3701 #ifdef CONFIG_SAE
3702         if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE) {
3703                 ret = os_snprintf(pos, end - pos, "%sSAE",
3704                                   pos == buf ? "" : " ");
3705                 if (os_snprintf_error(end - pos, ret))
3706                         return pos - buf;
3707                 pos += ret;
3708         }
3709 #endif /* CONFIG_SAE */
3710
3711         return pos - buf;
3712 }
3713
3714
3715 static int ctrl_iface_get_capability_modes(int res, char *strict,
3716                                            struct wpa_driver_capa *capa,
3717                                            char *buf, size_t buflen)
3718 {
3719         int ret;
3720         char *pos, *end;
3721         size_t len;
3722
3723         pos = buf;
3724         end = pos + buflen;
3725
3726         if (res < 0) {
3727                 if (strict)
3728                         return 0;
3729                 len = os_strlcpy(buf, "IBSS AP", buflen);
3730                 if (len >= buflen)
3731                         return -1;
3732                 return len;
3733         }
3734
3735         if (capa->flags & WPA_DRIVER_FLAGS_IBSS) {
3736                 ret = os_snprintf(pos, end - pos, "%sIBSS",
3737                                   pos == buf ? "" : " ");
3738                 if (os_snprintf_error(end - pos, ret))
3739                         return pos - buf;
3740                 pos += ret;
3741         }
3742
3743         if (capa->flags & WPA_DRIVER_FLAGS_AP) {
3744                 ret = os_snprintf(pos, end - pos, "%sAP",
3745                                   pos == buf ? "" : " ");
3746                 if (os_snprintf_error(end - pos, ret))
3747                         return pos - buf;
3748                 pos += ret;
3749         }
3750
3751 #ifdef CONFIG_MESH
3752         if (capa->flags & WPA_DRIVER_FLAGS_MESH) {
3753                 ret = os_snprintf(pos, end - pos, "%sMESH",
3754                                   pos == buf ? "" : " ");
3755                 if (os_snprintf_error(end - pos, ret))
3756                         return pos - buf;
3757                 pos += ret;
3758         }
3759 #endif /* CONFIG_MESH */
3760
3761         return pos - buf;
3762 }
3763
3764
3765 static int ctrl_iface_get_capability_channels(struct wpa_supplicant *wpa_s,
3766                                               char *buf, size_t buflen)
3767 {
3768         struct hostapd_channel_data *chnl;
3769         int ret, i, j;
3770         char *pos, *end, *hmode;
3771
3772         pos = buf;
3773         end = pos + buflen;
3774
3775         for (j = 0; j < wpa_s->hw.num_modes; j++) {
3776                 switch (wpa_s->hw.modes[j].mode) {
3777                 case HOSTAPD_MODE_IEEE80211B:
3778                         hmode = "B";
3779                         break;
3780                 case HOSTAPD_MODE_IEEE80211G:
3781                         hmode = "G";
3782                         break;
3783                 case HOSTAPD_MODE_IEEE80211A:
3784                         hmode = "A";
3785                         break;
3786                 case HOSTAPD_MODE_IEEE80211AD:
3787                         hmode = "AD";
3788                         break;
3789                 default:
3790                         continue;
3791                 }
3792                 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode);
3793                 if (os_snprintf_error(end - pos, ret))
3794                         return pos - buf;
3795                 pos += ret;
3796                 chnl = wpa_s->hw.modes[j].channels;
3797                 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3798                         if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3799                                 continue;
3800                         ret = os_snprintf(pos, end - pos, " %d", chnl[i].chan);
3801                         if (os_snprintf_error(end - pos, ret))
3802                                 return pos - buf;
3803                         pos += ret;
3804                 }
3805                 ret = os_snprintf(pos, end - pos, "\n");
3806                 if (os_snprintf_error(end - pos, ret))
3807                         return pos - buf;
3808                 pos += ret;
3809         }
3810
3811         return pos - buf;
3812 }
3813
3814
3815 static int ctrl_iface_get_capability_freq(struct wpa_supplicant *wpa_s,
3816                                           char *buf, size_t buflen)
3817 {
3818         struct hostapd_channel_data *chnl;
3819         int ret, i, j;
3820         char *pos, *end, *hmode;
3821
3822         pos = buf;
3823         end = pos + buflen;
3824
3825         for (j = 0; j < wpa_s->hw.num_modes; j++) {
3826                 switch (wpa_s->hw.modes[j].mode) {
3827                 case HOSTAPD_MODE_IEEE80211B:
3828                         hmode = "B";
3829                         break;
3830                 case HOSTAPD_MODE_IEEE80211G:
3831                         hmode = "G";
3832                         break;
3833                 case HOSTAPD_MODE_IEEE80211A:
3834                         hmode = "A";
3835                         break;
3836                 case HOSTAPD_MODE_IEEE80211AD:
3837                         hmode = "AD";
3838                         break;
3839                 default:
3840                         continue;
3841                 }
3842                 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:\n",
3843                                   hmode);
3844                 if (os_snprintf_error(end - pos, ret))
3845                         return pos - buf;
3846                 pos += ret;
3847                 chnl = wpa_s->hw.modes[j].channels;
3848                 for (i = 0; i < wpa_s->hw.modes[j].num_channels; i++) {
3849                         if (chnl[i].flag & HOSTAPD_CHAN_DISABLED)
3850                                 continue;
3851                         ret = os_snprintf(pos, end - pos, " %d = %d MHz%s%s\n",
3852                                           chnl[i].chan, chnl[i].freq,
3853                                           chnl[i].flag & HOSTAPD_CHAN_NO_IR ?
3854                                           " (NO_IR)" : "",
3855                                           chnl[i].flag & HOSTAPD_CHAN_RADAR ?
3856                                           " (DFS)" : "");
3857
3858                         if (os_snprintf_error(end - pos, ret))
3859                                 return pos - buf;
3860                         pos += ret;
3861                 }
3862                 ret = os_snprintf(pos, end - pos, "\n");
3863                 if (os_snprintf_error(end - pos, ret))
3864                         return pos - buf;
3865                 pos += ret;
3866         }
3867
3868         return pos - buf;
3869 }
3870
3871
3872 static int wpa_supplicant_ctrl_iface_get_capability(
3873         struct wpa_supplicant *wpa_s, const char *_field, char *buf,
3874         size_t buflen)
3875 {
3876         struct wpa_driver_capa capa;
3877         int res;
3878         char *strict;
3879         char field[30];
3880         size_t len;
3881
3882         /* Determine whether or not strict checking was requested */
3883         len = os_strlcpy(field, _field, sizeof(field));
3884         if (len >= sizeof(field))
3885                 return -1;
3886         strict = os_strchr(field, ' ');
3887         if (strict != NULL) {
3888                 *strict++ = '\0';
3889                 if (os_strcmp(strict, "strict") != 0)
3890                         return -1;
3891         }
3892
3893         wpa_printf(MSG_DEBUG, "CTRL_IFACE: GET_CAPABILITY '%s' %s",
3894                 field, strict ? strict : "");
3895
3896         if (os_strcmp(field, "eap") == 0) {
3897                 return eap_get_names(buf, buflen);
3898         }
3899
3900         res = wpa_drv_get_capa(wpa_s, &capa);
3901
3902         if (os_strcmp(field, "pairwise") == 0)
3903                 return ctrl_iface_get_capability_pairwise(res, strict, &capa,
3904                                                           buf, buflen);
3905
3906         if (os_strcmp(field, "group") == 0)
3907                 return ctrl_iface_get_capability_group(res, strict, &capa,
3908                                                        buf, buflen);
3909
3910         if (os_strcmp(field, "group_mgmt") == 0)
3911                 return ctrl_iface_get_capability_group_mgmt(res, strict, &capa,
3912                                                             buf, buflen);
3913
3914         if (os_strcmp(field, "key_mgmt") == 0)
3915                 return ctrl_iface_get_capability_key_mgmt(res, strict, &capa,
3916                                                           buf, buflen);
3917
3918         if (os_strcmp(field, "proto") == 0)
3919                 return ctrl_iface_get_capability_proto(res, strict, &capa,
3920                                                        buf, buflen);
3921
3922         if (os_strcmp(field, "auth_alg") == 0)
3923                 return ctrl_iface_get_capability_auth_alg(wpa_s, res, strict,
3924                                                           &capa, buf, buflen);
3925
3926         if (os_strcmp(field, "modes") == 0)
3927                 return ctrl_iface_get_capability_modes(res, strict, &capa,
3928                                                        buf, buflen);
3929
3930         if (os_strcmp(field, "channels") == 0)
3931                 return ctrl_iface_get_capability_channels(wpa_s, buf, buflen);
3932
3933         if (os_strcmp(field, "freq") == 0)
3934                 return ctrl_iface_get_capability_freq(wpa_s, buf, buflen);
3935
3936 #ifdef CONFIG_TDLS
3937         if (os_strcmp(field, "tdls") == 0)
3938                 return ctrl_iface_get_capability_tdls(wpa_s, buf, buflen);
3939 #endif /* CONFIG_TDLS */
3940
3941 #ifdef CONFIG_ERP
3942         if (os_strcmp(field, "erp") == 0) {
3943                 res = os_snprintf(buf, buflen, "ERP");
3944                 if (os_snprintf_error(buflen, res))
3945                         return -1;
3946                 return res;
3947         }
3948 #endif /* CONFIG_EPR */
3949
3950 #ifdef CONFIG_FIPS
3951         if (os_strcmp(field, "fips") == 0) {
3952                 res = os_snprintf(buf, buflen, "FIPS");
3953                 if (os_snprintf_error(buflen, res))
3954                         return -1;
3955                 return res;
3956         }
3957 #endif /* CONFIG_FIPS */
3958
3959 #ifdef CONFIG_ACS
3960         if (os_strcmp(field, "acs") == 0) {
3961                 res = os_snprintf(buf, buflen, "ACS");
3962                 if (os_snprintf_error(buflen, res))
3963                         return -1;
3964                 return res;
3965         }
3966 #endif /* CONFIG_ACS */
3967
3968         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown GET_CAPABILITY field '%s'",
3969                    field);
3970
3971         return -1;
3972 }
3973
3974
3975 #ifdef CONFIG_INTERWORKING
3976 static char * anqp_add_hex(char *pos, char *end, const char *title,
3977                            struct wpabuf *data)
3978 {
3979         char *start = pos;
3980         size_t i;
3981         int ret;
3982         const u8 *d;
3983
3984         if (data == NULL)
3985                 return start;
3986
3987         ret = os_snprintf(pos, end - pos, "%s=", title);
3988         if (os_snprintf_error(end - pos, ret))
3989                 return start;
3990         pos += ret;
3991
3992         d = wpabuf_head_u8(data);
3993         for (i = 0; i < wpabuf_len(data); i++) {
3994                 ret = os_snprintf(pos, end - pos, "%02x", *d++);
3995                 if (os_snprintf_error(end - pos, ret))
3996                         return start;
3997                 pos += ret;
3998         }
3999
4000         ret = os_snprintf(pos, end - pos, "\n");
4001         if (os_snprintf_error(end - pos, ret))
4002                 return start;
4003         pos += ret;
4004
4005         return pos;
4006 }
4007 #endif /* CONFIG_INTERWORKING */
4008
4009
4010 static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
4011                           unsigned long mask, char *buf, size_t buflen)
4012 {
4013         size_t i;
4014         int ret;
4015         char *pos, *end;
4016         const u8 *ie, *ie2, *osen_ie;
4017
4018         pos = buf;
4019         end = buf + buflen;
4020
4021         if (mask & WPA_BSS_MASK_ID) {
4022                 ret = os_snprintf(pos, end - pos, "id=%u\n", bss->id);
4023                 if (os_snprintf_error(end - pos, ret))
4024                         return 0;
4025                 pos += ret;
4026         }
4027
4028         if (mask & WPA_BSS_MASK_BSSID) {
4029                 ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n",
4030                                   MAC2STR(bss->bssid));
4031                 if (os_snprintf_error(end - pos, ret))
4032                         return 0;
4033                 pos += ret;
4034         }
4035
4036         if (mask & WPA_BSS_MASK_FREQ) {
4037                 ret = os_snprintf(pos, end - pos, "freq=%d\n", bss->freq);
4038                 if (os_snprintf_error(end - pos, ret))
4039                         return 0;
4040                 pos += ret;
4041         }
4042
4043         if (mask & WPA_BSS_MASK_BEACON_INT) {
4044                 ret = os_snprintf(pos, end - pos, "beacon_int=%d\n",
4045                                   bss->beacon_int);
4046                 if (os_snprintf_error(end - pos, ret))
4047                         return 0;
4048                 pos += ret;
4049         }
4050
4051         if (mask & WPA_BSS_MASK_CAPABILITIES) {
4052                 ret = os_snprintf(pos, end - pos, "capabilities=0x%04x\n",
4053                                   bss->caps);
4054                 if (os_snprintf_error(end - pos, ret))
4055                         return 0;
4056                 pos += ret;
4057         }
4058
4059         if (mask & WPA_BSS_MASK_QUAL) {
4060                 ret = os_snprintf(pos, end - pos, "qual=%d\n", bss->qual);
4061                 if (os_snprintf_error(end - pos, ret))
4062                         return 0;
4063                 pos += ret;
4064         }
4065
4066         if (mask & WPA_BSS_MASK_NOISE) {
4067                 ret = os_snprintf(pos, end - pos, "noise=%d\n", bss->noise);
4068                 if (os_snprintf_error(end - pos, ret))
4069                         return 0;
4070                 pos += ret;
4071         }
4072
4073         if (mask & WPA_BSS_MASK_LEVEL) {
4074                 ret = os_snprintf(pos, end - pos, "level=%d\n", bss->level);
4075                 if (os_snprintf_error(end - pos, ret))
4076                         return 0;
4077                 pos += ret;
4078         }
4079
4080         if (mask & WPA_BSS_MASK_TSF) {
4081                 ret = os_snprintf(pos, end - pos, "tsf=%016llu\n",
4082                                   (unsigned long long) bss->tsf);
4083                 if (os_snprintf_error(end - pos, ret))
4084                         return 0;
4085                 pos += ret;
4086         }
4087
4088         if (mask & WPA_BSS_MASK_AGE) {
4089                 struct os_reltime now;
4090
4091                 os_get_reltime(&now);
4092                 ret = os_snprintf(pos, end - pos, "age=%d\n",
4093                                   (int) (now.sec - bss->last_update.sec));
4094                 if (os_snprintf_error(end - pos, ret))
4095                         return 0;
4096                 pos += ret;
4097         }
4098
4099         if (mask & WPA_BSS_MASK_IE) {
4100                 ret = os_snprintf(pos, end - pos, "ie=");
4101                 if (os_snprintf_error(end - pos, ret))
4102                         return 0;
4103                 pos += ret;
4104
4105                 ie = (const u8 *) (bss + 1);
4106                 for (i = 0; i < bss->ie_len; i++) {
4107                         ret = os_snprintf(pos, end - pos, "%02x", *ie++);
4108                         if (os_snprintf_error(end - pos, ret))
4109                                 return 0;
4110                         pos += ret;
4111                 }
4112
4113                 ret = os_snprintf(pos, end - pos, "\n");
4114                 if (os_snprintf_error(end - pos, ret))
4115                         return 0;
4116                 pos += ret;
4117         }
4118
4119         if (mask & WPA_BSS_MASK_FLAGS) {
4120                 ret = os_snprintf(pos, end - pos, "flags=");
4121                 if (os_snprintf_error(end - pos, ret))
4122                         return 0;
4123                 pos += ret;
4124
4125                 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
4126                 if (ie)
4127                         pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie,
4128                                                     2 + ie[1]);
4129                 ie2 = wpa_bss_get_ie(bss, WLAN_EID_RSN);
4130                 if (ie2)
4131                         pos = wpa_supplicant_ie_txt(pos, end, "WPA2", ie2,
4132                                                     2 + ie2[1]);
4133                 osen_ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
4134                 if (osen_ie)
4135                         pos = wpa_supplicant_ie_txt(pos, end, "OSEN",
4136                                                     osen_ie, 2 + osen_ie[1]);
4137                 pos = wpa_supplicant_wps_ie_txt(wpa_s, pos, end, bss);
4138                 if (!ie && !ie2 && !osen_ie &&
4139                     (bss->caps & IEEE80211_CAP_PRIVACY)) {
4140                         ret = os_snprintf(pos, end - pos, "[WEP]");
4141                         if (os_snprintf_error(end - pos, ret))
4142                                 return 0;
4143                         pos += ret;
4144                 }
4145                 if (bss_is_dmg(bss)) {
4146                         const char *s;
4147                         ret = os_snprintf(pos, end - pos, "[DMG]");
4148                         if (os_snprintf_error(end - pos, ret))
4149                                 return 0;
4150                         pos += ret;
4151                         switch (bss->caps & IEEE80211_CAP_DMG_MASK) {
4152                         case IEEE80211_CAP_DMG_IBSS:
4153                                 s = "[IBSS]";
4154                                 break;
4155                         case IEEE80211_CAP_DMG_AP:
4156                                 s = "[ESS]";
4157                                 break;
4158                         case IEEE80211_CAP_DMG_PBSS:
4159                                 s = "[PBSS]";
4160                                 break;
4161                         default:
4162                                 s = "";
4163                                 break;
4164                         }
4165                         ret = os_snprintf(pos, end - pos, "%s", s);
4166                         if (os_snprintf_error(end - pos, ret))
4167                                 return 0;
4168                         pos += ret;
4169                 } else {
4170                         if (bss->caps & IEEE80211_CAP_IBSS) {
4171                                 ret = os_snprintf(pos, end - pos, "[IBSS]");
4172                                 if (os_snprintf_error(end - pos, ret))
4173                                         return 0;
4174                                 pos += ret;
4175                         }
4176                         if (bss->caps & IEEE80211_CAP_ESS) {
4177                                 ret = os_snprintf(pos, end - pos, "[ESS]");
4178                                 if (os_snprintf_error(end - pos, ret))
4179                                         return 0;
4180                                 pos += ret;
4181                         }
4182                 }
4183                 if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
4184                     wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
4185                         ret = os_snprintf(pos, end - pos, "[P2P]");
4186                         if (os_snprintf_error(end - pos, ret))
4187                                 return 0;
4188                         pos += ret;
4189                 }
4190 #ifdef CONFIG_HS20
4191                 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
4192                         ret = os_snprintf(pos, end - pos, "[HS20]");
4193                         if (os_snprintf_error(end - pos, ret))
4194                                 return 0;
4195                         pos += ret;
4196                 }
4197 #endif /* CONFIG_HS20 */
4198
4199                 ret = os_snprintf(pos, end - pos, "\n");
4200                 if (os_snprintf_error(end - pos, ret))
4201                         return 0;
4202                 pos += ret;
4203         }
4204
4205         if (mask & WPA_BSS_MASK_SSID) {
4206                 ret = os_snprintf(pos, end - pos, "ssid=%s\n",
4207                                   wpa_ssid_txt(bss->ssid, bss->ssid_len));
4208                 if (os_snprintf_error(end - pos, ret))
4209                         return 0;
4210                 pos += ret;
4211         }
4212
4213 #ifdef CONFIG_WPS
4214         if (mask & WPA_BSS_MASK_WPS_SCAN) {
4215                 ie = (const u8 *) (bss + 1);
4216                 ret = wpas_wps_scan_result_text(ie, bss->ie_len, pos, end);
4217                 if (ret >= end - pos)
4218                         return 0;
4219                 if (ret > 0)
4220                         pos += ret;
4221         }
4222 #endif /* CONFIG_WPS */
4223
4224 #ifdef CONFIG_P2P
4225         if (mask & WPA_BSS_MASK_P2P_SCAN) {
4226                 ie = (const u8 *) (bss + 1);
4227                 ret = wpas_p2p_scan_result_text(ie, bss->ie_len, pos, end);
4228                 if (ret < 0 || ret >= end - pos)
4229                         return 0;
4230                 pos += ret;
4231         }
4232 #endif /* CONFIG_P2P */
4233
4234 #ifdef CONFIG_WIFI_DISPLAY
4235         if (mask & WPA_BSS_MASK_WIFI_DISPLAY) {
4236                 struct wpabuf *wfd;
4237                 ie = (const u8 *) (bss + 1);
4238                 wfd = ieee802_11_vendor_ie_concat(ie, bss->ie_len,
4239                                                   WFD_IE_VENDOR_TYPE);
4240                 if (wfd) {
4241                         ret = os_snprintf(pos, end - pos, "wfd_subelems=");
4242                         if (os_snprintf_error(end - pos, ret)) {
4243                                 wpabuf_free(wfd);
4244                                 return 0;
4245                         }
4246                         pos += ret;
4247
4248                         pos += wpa_snprintf_hex(pos, end - pos,
4249                                                 wpabuf_head(wfd),
4250                                                 wpabuf_len(wfd));
4251                         wpabuf_free(wfd);
4252
4253                         ret = os_snprintf(pos, end - pos, "\n");
4254                         if (os_snprintf_error(end - pos, ret))
4255                                 return 0;
4256                         pos += ret;
4257                 }
4258         }
4259 #endif /* CONFIG_WIFI_DISPLAY */
4260
4261 #ifdef CONFIG_INTERWORKING
4262         if ((mask & WPA_BSS_MASK_INTERNETW) && bss->anqp) {
4263                 struct wpa_bss_anqp *anqp = bss->anqp;
4264                 struct wpa_bss_anqp_elem *elem;
4265
4266                 pos = anqp_add_hex(pos, end, "anqp_capability_list",
4267                                    anqp->capability_list);
4268                 pos = anqp_add_hex(pos, end, "anqp_venue_name",
4269                                    anqp->venue_name);
4270                 pos = anqp_add_hex(pos, end, "anqp_network_auth_type",
4271                                    anqp->network_auth_type);
4272                 pos = anqp_add_hex(pos, end, "anqp_roaming_consortium",
4273                                    anqp->roaming_consortium);
4274                 pos = anqp_add_hex(pos, end, "anqp_ip_addr_type_availability",
4275                                    anqp->ip_addr_type_availability);
4276                 pos = anqp_add_hex(pos, end, "anqp_nai_realm",
4277                                    anqp->nai_realm);
4278                 pos = anqp_add_hex(pos, end, "anqp_3gpp", anqp->anqp_3gpp);
4279                 pos = anqp_add_hex(pos, end, "anqp_domain_name",
4280                                    anqp->domain_name);
4281 #ifdef CONFIG_HS20
4282                 pos = anqp_add_hex(pos, end, "hs20_capability_list",
4283                                    anqp->hs20_capability_list);
4284                 pos = anqp_add_hex(pos, end, "hs20_operator_friendly_name",
4285                                    anqp->hs20_operator_friendly_name);
4286                 pos = anqp_add_hex(pos, end, "hs20_wan_metrics",
4287                                    anqp->hs20_wan_metrics);
4288                 pos = anqp_add_hex(pos, end, "hs20_connection_capability",
4289                                    anqp->hs20_connection_capability);
4290                 pos = anqp_add_hex(pos, end, "hs20_operating_class",
4291                                    anqp->hs20_operating_class);
4292                 pos = anqp_add_hex(pos, end, "hs20_osu_providers_list",
4293                                    anqp->hs20_osu_providers_list);
4294 #endif /* CONFIG_HS20 */
4295
4296                 dl_list_for_each(elem, &anqp->anqp_elems,
4297                                  struct wpa_bss_anqp_elem, list) {
4298                         char title[20];
4299
4300                         os_snprintf(title, sizeof(title), "anqp[%u]",
4301                                     elem->infoid);
4302                         pos = anqp_add_hex(pos, end, title, elem->payload);
4303                 }
4304         }
4305 #endif /* CONFIG_INTERWORKING */
4306
4307 #ifdef CONFIG_MESH
4308         if (mask & WPA_BSS_MASK_MESH_SCAN) {
4309                 ie = (const u8 *) (bss + 1);
4310                 ret = wpas_mesh_scan_result_text(ie, bss->ie_len, pos, end);
4311                 if (ret < 0 || ret >= end - pos)
4312                         return 0;
4313                 pos += ret;
4314         }
4315 #endif /* CONFIG_MESH */
4316
4317         if (mask & WPA_BSS_MASK_SNR) {
4318                 ret = os_snprintf(pos, end - pos, "snr=%d\n", bss->snr);
4319                 if (os_snprintf_error(end - pos, ret))
4320                         return 0;
4321                 pos += ret;
4322         }
4323
4324         if (mask & WPA_BSS_MASK_EST_THROUGHPUT) {
4325                 ret = os_snprintf(pos, end - pos, "est_throughput=%d\n",
4326                                   bss->est_throughput);
4327                 if (os_snprintf_error(end - pos, ret))
4328                         return 0;
4329                 pos += ret;
4330         }
4331
4332 #ifdef CONFIG_FST
4333         if (mask & WPA_BSS_MASK_FST) {
4334                 ret = fst_ctrl_iface_mb_info(bss->bssid, pos, end - pos);
4335                 if (ret < 0 || ret >= end - pos)
4336                         return 0;
4337                 pos += ret;
4338         }
4339 #endif /* CONFIG_FST */
4340
4341         if (mask & WPA_BSS_MASK_DELIM) {
4342                 ret = os_snprintf(pos, end - pos, "====\n");
4343                 if (os_snprintf_error(end - pos, ret))
4344                         return 0;
4345                 pos += ret;
4346         }
4347
4348         return pos - buf;
4349 }
4350
4351
4352 static int wpa_supplicant_ctrl_iface_bss(struct wpa_supplicant *wpa_s,
4353                                          const char *cmd, char *buf,
4354                                          size_t buflen)
4355 {
4356         u8 bssid[ETH_ALEN];
4357         size_t i;
4358         struct wpa_bss *bss;
4359         struct wpa_bss *bsslast = NULL;
4360         struct dl_list *next;
4361         int ret = 0;
4362         int len;
4363         char *ctmp, *end = buf + buflen;
4364         unsigned long mask = WPA_BSS_MASK_ALL;
4365
4366         if (os_strncmp(cmd, "RANGE=", 6) == 0) {
4367                 if (os_strncmp(cmd + 6, "ALL", 3) == 0) {
4368                         bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss,
4369                                             list_id);
4370                         bsslast = dl_list_last(&wpa_s->bss_id, struct wpa_bss,
4371                                                list_id);
4372                 } else { /* N1-N2 */
4373                         unsigned int id1, id2;
4374
4375                         if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
4376                                 wpa_printf(MSG_INFO, "Wrong BSS range "
4377                                            "format");
4378                                 return 0;
4379                         }
4380
4381                         if (*(cmd + 6) == '-')
4382                                 id1 = 0;
4383                         else
4384                                 id1 = atoi(cmd + 6);
4385                         ctmp++;
4386                         if (*ctmp >= '0' && *ctmp <= '9')
4387                                 id2 = atoi(ctmp);
4388                         else
4389                                 id2 = (unsigned int) -1;
4390                         bss = wpa_bss_get_id_range(wpa_s, id1, id2);
4391                         if (id2 == (unsigned int) -1)
4392                                 bsslast = dl_list_last(&wpa_s->bss_id,
4393                                                        struct wpa_bss,
4394                                                        list_id);
4395                         else {
4396                                 bsslast = wpa_bss_get_id(wpa_s, id2);
4397                                 if (bsslast == NULL && bss && id2 > id1) {
4398                                         struct wpa_bss *tmp = bss;
4399                                         for (;;) {
4400                                                 next = tmp->list_id.next;
4401                                                 if (next == &wpa_s->bss_id)
4402                                                         break;
4403                                                 tmp = dl_list_entry(
4404                                                         next, struct wpa_bss,
4405                                                         list_id);
4406                                                 if (tmp->id > id2)
4407                                                         break;
4408                                                 bsslast = tmp;
4409                                         }
4410                                 }
4411                         }
4412                 }
4413         } else if (os_strncmp(cmd, "FIRST", 5) == 0)
4414                 bss = dl_list_first(&wpa_s->bss_id, struct wpa_bss, list_id);
4415         else if (os_strncmp(cmd, "LAST", 4) == 0)
4416                 bss = dl_list_last(&wpa_s->bss_id, struct wpa_bss, list_id);
4417         else if (os_strncmp(cmd, "ID-", 3) == 0) {
4418                 i = atoi(cmd + 3);
4419                 bss = wpa_bss_get_id(wpa_s, i);
4420         } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
4421                 i = atoi(cmd + 5);
4422                 bss = wpa_bss_get_id(wpa_s, i);
4423                 if (bss) {
4424                         next = bss->list_id.next;
4425                         if (next == &wpa_s->bss_id)
4426                                 bss = NULL;
4427                         else
4428                                 bss = dl_list_entry(next, struct wpa_bss,
4429                                                     list_id);
4430                 }
4431 #ifdef CONFIG_P2P
4432         } else if (os_strncmp(cmd, "p2p_dev_addr=", 13) == 0) {
4433                 if (hwaddr_aton(cmd + 13, bssid) == 0)
4434                         bss = wpa_bss_get_p2p_dev_addr(wpa_s, bssid);
4435                 else
4436                         bss = NULL;
4437 #endif /* CONFIG_P2P */
4438         } else if (hwaddr_aton(cmd, bssid) == 0)
4439                 bss = wpa_bss_get_bssid(wpa_s, bssid);
4440         else {
4441                 struct wpa_bss *tmp;
4442                 i = atoi(cmd);
4443                 bss = NULL;
4444                 dl_list_for_each(tmp, &wpa_s->bss_id, struct wpa_bss, list_id)
4445                 {
4446                         if (i-- == 0) {
4447                                 bss = tmp;
4448                                 break;
4449                         }
4450                 }
4451         }
4452
4453         if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
4454                 mask = strtoul(ctmp + 5, NULL, 0x10);
4455                 if (mask == 0)
4456                         mask = WPA_BSS_MASK_ALL;
4457         }
4458
4459         if (bss == NULL)
4460                 return 0;
4461
4462         if (bsslast == NULL)
4463                 bsslast = bss;
4464         do {
4465                 len = print_bss_info(wpa_s, bss, mask, buf, buflen);
4466                 ret += len;
4467                 buf += len;
4468                 buflen -= len;
4469                 if (bss == bsslast) {
4470                         if ((mask & WPA_BSS_MASK_DELIM) && len &&
4471                             (bss == dl_list_last(&wpa_s->bss_id,
4472                                                  struct wpa_bss, list_id))) {
4473                                 int res;
4474
4475                                 res = os_snprintf(buf - 5, end - buf + 5,
4476                                                   "####\n");
4477                                 if (os_snprintf_error(end - buf + 5, res)) {
4478                                         wpa_printf(MSG_DEBUG,
4479                                                    "Could not add end delim");
4480                                 }
4481                         }
4482                         break;
4483                 }
4484                 next = bss->list_id.next;
4485                 if (next == &wpa_s->bss_id)
4486                         break;
4487                 bss = dl_list_entry(next, struct wpa_bss, list_id);
4488         } while (bss && len);
4489
4490         return ret;
4491 }
4492
4493
4494 static int wpa_supplicant_ctrl_iface_ap_scan(
4495         struct wpa_supplicant *wpa_s, char *cmd)
4496 {
4497         int ap_scan = atoi(cmd);
4498         return wpa_supplicant_set_ap_scan(wpa_s, ap_scan);
4499 }
4500
4501
4502 static int wpa_supplicant_ctrl_iface_scan_interval(
4503         struct wpa_supplicant *wpa_s, char *cmd)
4504 {
4505         int scan_int = atoi(cmd);
4506         return wpa_supplicant_set_scan_interval(wpa_s, scan_int);
4507 }
4508
4509
4510 static int wpa_supplicant_ctrl_iface_bss_expire_age(
4511         struct wpa_supplicant *wpa_s, char *cmd)
4512 {
4513         int expire_age = atoi(cmd);
4514         return wpa_supplicant_set_bss_expiration_age(wpa_s, expire_age);
4515 }
4516
4517
4518 static int wpa_supplicant_ctrl_iface_bss_expire_count(
4519         struct wpa_supplicant *wpa_s, char *cmd)
4520 {
4521         int expire_count = atoi(cmd);
4522         return wpa_supplicant_set_bss_expiration_count(wpa_s, expire_count);
4523 }
4524
4525
4526 static void wpa_supplicant_ctrl_iface_bss_flush(
4527         struct wpa_supplicant *wpa_s, char *cmd)
4528 {
4529         int flush_age = atoi(cmd);
4530
4531         if (flush_age == 0)
4532                 wpa_bss_flush(wpa_s);
4533         else
4534                 wpa_bss_flush_by_age(wpa_s, flush_age);
4535 }
4536
4537
4538 #ifdef CONFIG_TESTING_OPTIONS
4539 static void wpa_supplicant_ctrl_iface_drop_sa(struct wpa_supplicant *wpa_s)
4540 {
4541         wpa_printf(MSG_DEBUG, "Dropping SA without deauthentication");
4542         /* MLME-DELETEKEYS.request */
4543         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 0, 0, NULL, 0, NULL, 0);
4544         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 1, 0, NULL, 0, NULL, 0);
4545         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 2, 0, NULL, 0, NULL, 0);
4546         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 3, 0, NULL, 0, NULL, 0);
4547 #ifdef CONFIG_IEEE80211W
4548         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 4, 0, NULL, 0, NULL, 0);
4549         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, 5, 0, NULL, 0, NULL, 0);
4550 #endif /* CONFIG_IEEE80211W */
4551
4552         wpa_drv_set_key(wpa_s, WPA_ALG_NONE, wpa_s->bssid, 0, 0, NULL, 0, NULL,
4553                         0);
4554         /* MLME-SETPROTECTION.request(None) */
4555         wpa_drv_mlme_setprotection(wpa_s, wpa_s->bssid,
4556                                    MLME_SETPROTECTION_PROTECT_TYPE_NONE,
4557                                    MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
4558         wpa_sm_drop_sa(wpa_s->wpa);
4559 }
4560 #endif /* CONFIG_TESTING_OPTIONS */
4561
4562
4563 static int wpa_supplicant_ctrl_iface_roam(struct wpa_supplicant *wpa_s,
4564                                           char *addr)
4565 {
4566 #ifdef CONFIG_NO_SCAN_PROCESSING
4567         return -1;
4568 #else /* CONFIG_NO_SCAN_PROCESSING */
4569         u8 bssid[ETH_ALEN];
4570         struct wpa_bss *bss;
4571         struct wpa_ssid *ssid = wpa_s->current_ssid;
4572
4573         if (hwaddr_aton(addr, bssid)) {
4574                 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: invalid "
4575                            "address '%s'", addr);
4576                 return -1;
4577         }
4578
4579         wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM " MACSTR, MAC2STR(bssid));
4580
4581         if (!ssid) {
4582                 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: No network "
4583                            "configuration known for the target AP");
4584                 return -1;
4585         }
4586
4587         bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
4588         if (!bss) {
4589                 wpa_printf(MSG_DEBUG, "CTRL_IFACE ROAM: Target AP not found "
4590                            "from BSS table");
4591                 return -1;
4592         }
4593
4594         /*
4595          * TODO: Find best network configuration block from configuration to
4596          * allow roaming to other networks
4597          */
4598
4599         wpa_s->reassociate = 1;
4600         wpa_supplicant_connect(wpa_s, bss, ssid);
4601
4602         return 0;
4603 #endif /* CONFIG_NO_SCAN_PROCESSING */
4604 }
4605
4606
4607 #ifdef CONFIG_P2P
4608 static int p2p_ctrl_find(struct wpa_supplicant *wpa_s, char *cmd)
4609 {
4610         unsigned int timeout = atoi(cmd);
4611         enum p2p_discovery_type type = P2P_FIND_START_WITH_FULL;
4612         u8 dev_id[ETH_ALEN], *_dev_id = NULL;
4613         u8 dev_type[WPS_DEV_TYPE_LEN], *_dev_type = NULL;
4614         char *pos;
4615         unsigned int search_delay;
4616         const char *_seek[P2P_MAX_QUERY_HASH + 1], **seek = NULL;
4617         u8 seek_count = 0;
4618         int freq = 0;
4619
4620         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
4621                 wpa_dbg(wpa_s, MSG_INFO,
4622                         "Reject P2P_FIND since interface is disabled");
4623                 return -1;
4624         }
4625         if (os_strstr(cmd, "type=social"))
4626                 type = P2P_FIND_ONLY_SOCIAL;
4627         else if (os_strstr(cmd, "type=progressive"))
4628                 type = P2P_FIND_PROGRESSIVE;
4629
4630         pos = os_strstr(cmd, "dev_id=");
4631         if (pos) {
4632                 pos += 7;
4633                 if (hwaddr_aton(pos, dev_id))
4634                         return -1;
4635                 _dev_id = dev_id;
4636         }
4637
4638         pos = os_strstr(cmd, "dev_type=");
4639         if (pos) {
4640                 pos += 9;
4641                 if (wps_dev_type_str2bin(pos, dev_type) < 0)
4642                         return -1;
4643                 _dev_type = dev_type;
4644         }
4645
4646         pos = os_strstr(cmd, "delay=");
4647         if (pos) {
4648                 pos += 6;
4649                 search_delay = atoi(pos);
4650         } else
4651                 search_delay = wpas_p2p_search_delay(wpa_s);
4652
4653         pos = os_strstr(cmd, "freq=");
4654         if (pos) {
4655                 pos += 5;
4656                 freq = atoi(pos);
4657                 if (freq <= 0)
4658                         return -1;
4659         }
4660
4661         /* Must be searched for last, because it adds nul termination */
4662         pos = os_strstr(cmd, " seek=");
4663         if (pos)
4664                 pos += 6;
4665         while (pos && seek_count < P2P_MAX_QUERY_HASH + 1) {
4666                 char *term;
4667
4668                 _seek[seek_count++] = pos;
4669                 seek = _seek;
4670                 term = os_strchr(pos, ' ');
4671                 if (!term)
4672                         break;
4673                 *term = '\0';
4674                 pos = os_strstr(term + 1, "seek=");
4675                 if (pos)
4676                         pos += 5;
4677         }
4678         if (seek_count > P2P_MAX_QUERY_HASH) {
4679                 seek[0] = NULL;
4680                 seek_count = 1;
4681         }
4682
4683         return wpas_p2p_find(wpa_s, timeout, type, _dev_type != NULL, _dev_type,
4684                              _dev_id, search_delay, seek_count, seek, freq);
4685 }
4686
4687
4688 static int p2ps_ctrl_parse_cpt_priority(const char *pos, u8 *cpt)
4689 {
4690         const char *last = NULL;
4691         const char *token;
4692         long int token_len;
4693         unsigned int i;
4694
4695         /* Expected predefined CPT names delimited by ':' */
4696         for (i = 0; (token = cstr_token(pos, ": \t", &last)); i++) {
4697                 if (i >= P2PS_FEATURE_CAPAB_CPT_MAX) {
4698                         wpa_printf(MSG_ERROR,
4699                                    "P2PS: CPT name list is too long, expected up to %d names",
4700                                    P2PS_FEATURE_CAPAB_CPT_MAX);
4701                         cpt[0] = 0;
4702                         return -1;
4703                 }
4704
4705                 token_len = last - token;
4706
4707                 if (token_len  == 3 &&
4708                     os_memcmp(token, "UDP", token_len) == 0) {
4709                         cpt[i] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4710                 } else if (token_len == 3 &&
4711                            os_memcmp(token, "MAC", token_len) == 0) {
4712                         cpt[i] = P2PS_FEATURE_CAPAB_MAC_TRANSPORT;
4713                 } else {
4714                         wpa_printf(MSG_ERROR,
4715                                    "P2PS: Unsupported CPT name '%s'", token);
4716                         cpt[0] = 0;
4717                         return -1;
4718                 }
4719
4720                 if (isblank((unsigned char) *last)) {
4721                         i++;
4722                         break;
4723                 }
4724         }
4725         cpt[i] = 0;
4726         return 0;
4727 }
4728
4729
4730 static struct p2ps_provision * p2p_parse_asp_provision_cmd(const char *cmd)
4731 {
4732         struct p2ps_provision *p2ps_prov;
4733         char *pos;
4734         size_t info_len = 0;
4735         char *info = NULL;
4736         u8 role = P2PS_SETUP_NONE;
4737         long long unsigned val;
4738         int i;
4739
4740         pos = os_strstr(cmd, "info=");
4741         if (pos) {
4742                 pos += 5;
4743                 info_len = os_strlen(pos);
4744
4745                 if (info_len) {
4746                         info = os_malloc(info_len + 1);
4747                         if (info) {
4748                                 info_len = utf8_unescape(pos, info_len,
4749                                                          info, info_len + 1);
4750                         } else
4751                                 info_len = 0;
4752                 }
4753         }
4754
4755         p2ps_prov = os_zalloc(sizeof(struct p2ps_provision) + info_len + 1);
4756         if (p2ps_prov == NULL) {
4757                 os_free(info);
4758                 return NULL;
4759         }
4760
4761         if (info) {
4762                 os_memcpy(p2ps_prov->info, info, info_len);
4763                 p2ps_prov->info[info_len] = '\0';
4764                 os_free(info);
4765         }
4766
4767         pos = os_strstr(cmd, "status=");
4768         if (pos)
4769                 p2ps_prov->status = atoi(pos + 7);
4770         else
4771                 p2ps_prov->status = -1;
4772
4773         pos = os_strstr(cmd, "adv_id=");
4774         if (!pos || sscanf(pos + 7, "%llx", &val) != 1 || val > 0xffffffffULL)
4775                 goto invalid_args;
4776         p2ps_prov->adv_id = val;
4777
4778         pos = os_strstr(cmd, "method=");
4779         if (pos)
4780                 p2ps_prov->method = strtol(pos + 7, NULL, 16);
4781         else
4782                 p2ps_prov->method = 0;
4783
4784         pos = os_strstr(cmd, "session=");
4785         if (!pos || sscanf(pos + 8, "%llx", &val) != 1 || val > 0xffffffffULL)
4786                 goto invalid_args;
4787         p2ps_prov->session_id = val;
4788
4789         pos = os_strstr(cmd, "adv_mac=");
4790         if (!pos || hwaddr_aton(pos + 8, p2ps_prov->adv_mac))
4791                 goto invalid_args;
4792
4793         pos = os_strstr(cmd, "session_mac=");
4794         if (!pos || hwaddr_aton(pos + 12, p2ps_prov->session_mac))
4795                 goto invalid_args;
4796
4797         pos = os_strstr(cmd, "cpt=");
4798         if (pos) {
4799                 if (p2ps_ctrl_parse_cpt_priority(pos + 4,
4800                                                  p2ps_prov->cpt_priority))
4801                         goto invalid_args;
4802         } else {
4803                 p2ps_prov->cpt_priority[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
4804         }
4805
4806         for (i = 0; p2ps_prov->cpt_priority[i]; i++)
4807                 p2ps_prov->cpt_mask |= p2ps_prov->cpt_priority[i];
4808
4809         /* force conncap with tstCap (no sanity checks) */
4810         pos = os_strstr(cmd, "tstCap=");
4811         if (pos) {
4812                 role = strtol(pos + 7, NULL, 16);
4813         } else {
4814                 pos = os_strstr(cmd, "role=");
4815                 if (pos) {
4816                         role = strtol(pos + 5, NULL, 16);
4817                         if (role != P2PS_SETUP_CLIENT &&
4818                             role != P2PS_SETUP_GROUP_OWNER)
4819                                 role = P2PS_SETUP_NONE;
4820                 }
4821         }
4822         p2ps_prov->role = role;
4823
4824         return p2ps_prov;
4825
4826 invalid_args:
4827         os_free(p2ps_prov);
4828         return NULL;
4829 }
4830
4831
4832 static int p2p_ctrl_asp_provision_resp(struct wpa_supplicant *wpa_s, char *cmd)
4833 {
4834         u8 addr[ETH_ALEN];
4835         struct p2ps_provision *p2ps_prov;
4836         char *pos;
4837
4838         /* <addr> id=<adv_id> [role=<conncap>] [info=<infodata>] */
4839
4840         wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4841
4842         if (hwaddr_aton(cmd, addr))
4843                 return -1;
4844
4845         pos = cmd + 17;
4846         if (*pos != ' ')
4847                 return -1;
4848
4849         p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4850         if (!p2ps_prov)
4851                 return -1;
4852
4853         if (p2ps_prov->status < 0) {
4854                 os_free(p2ps_prov);
4855                 return -1;
4856         }
4857
4858         return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4859                                   p2ps_prov);
4860 }
4861
4862
4863 static int p2p_ctrl_asp_provision(struct wpa_supplicant *wpa_s, char *cmd)
4864 {
4865         u8 addr[ETH_ALEN];
4866         struct p2ps_provision *p2ps_prov;
4867         char *pos;
4868
4869         /* <addr> id=<adv_id> adv_mac=<adv_mac> conncap=<conncap>
4870          *        session=<ses_id> mac=<ses_mac> [info=<infodata>]
4871          */
4872
4873         wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd);
4874         if (hwaddr_aton(cmd, addr))
4875                 return -1;
4876
4877         pos = cmd + 17;
4878         if (*pos != ' ')
4879                 return -1;
4880
4881         p2ps_prov = p2p_parse_asp_provision_cmd(pos);
4882         if (!p2ps_prov)
4883                 return -1;
4884
4885         p2ps_prov->pd_seeker = 1;
4886
4887         return wpas_p2p_prov_disc(wpa_s, addr, NULL, WPAS_P2P_PD_FOR_ASP,
4888                                   p2ps_prov);
4889 }
4890
4891
4892 static int parse_freq(int chwidth, int freq2)
4893 {
4894         if (freq2 < 0)
4895                 return -1;
4896         if (freq2)
4897                 return VHT_CHANWIDTH_80P80MHZ;
4898
4899         switch (chwidth) {
4900         case 0:
4901         case 20:
4902         case 40:
4903                 return VHT_CHANWIDTH_USE_HT;
4904         case 80:
4905                 return VHT_CHANWIDTH_80MHZ;
4906         case 160:
4907                 return VHT_CHANWIDTH_160MHZ;
4908         default:
4909                 wpa_printf(MSG_DEBUG, "Unknown max oper bandwidth: %d",
4910                            chwidth);
4911                 return -1;
4912         }
4913 }
4914
4915
4916 static int p2p_ctrl_connect(struct wpa_supplicant *wpa_s, char *cmd,
4917                             char *buf, size_t buflen)
4918 {
4919         u8 addr[ETH_ALEN];
4920         char *pos, *pos2;
4921         char *pin = NULL;
4922         enum p2p_wps_method wps_method;
4923         int new_pin;
4924         int ret;
4925         int persistent_group, persistent_id = -1;
4926         int join;
4927         int auth;
4928         int automatic;
4929         int go_intent = -1;
4930         int freq = 0;
4931         int pd;
4932         int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
4933         u8 _group_ssid[SSID_MAX_LEN], *group_ssid = NULL;
4934         size_t group_ssid_len = 0;
4935
4936         if (!wpa_s->global->p2p_init_wpa_s)
4937                 return -1;
4938         if (wpa_s->global->p2p_init_wpa_s != wpa_s) {
4939                 wpa_dbg(wpa_s, MSG_DEBUG, "Direct P2P_CONNECT command to %s",
4940                         wpa_s->global->p2p_init_wpa_s->ifname);
4941                 wpa_s = wpa_s->global->p2p_init_wpa_s;
4942         }
4943
4944         /* <addr> <"pbc" | "pin" | PIN> [label|display|keypad|p2ps]
4945          * [persistent|persistent=<network id>]
4946          * [join] [auth] [go_intent=<0..15>] [freq=<in MHz>] [provdisc]
4947          * [ht40] [vht] [auto] [ssid=<hexdump>] */
4948
4949         if (hwaddr_aton(cmd, addr))
4950                 return -1;
4951
4952         pos = cmd + 17;
4953         if (*pos != ' ')
4954                 return -1;
4955         pos++;
4956
4957         persistent_group = os_strstr(pos, " persistent") != NULL;
4958         pos2 = os_strstr(pos, " persistent=");
4959         if (pos2) {
4960                 struct wpa_ssid *ssid;
4961                 persistent_id = atoi(pos2 + 12);
4962                 ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
4963                 if (ssid == NULL || ssid->disabled != 2 ||
4964                     ssid->mode != WPAS_MODE_P2P_GO) {
4965                         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find "
4966                                    "SSID id=%d for persistent P2P group (GO)",
4967                                    persistent_id);
4968                         return -1;
4969                 }
4970         }
4971         join = os_strstr(pos, " join") != NULL;
4972         auth = os_strstr(pos, " auth") != NULL;
4973         automatic = os_strstr(pos, " auto") != NULL;
4974         pd = os_strstr(pos, " provdisc") != NULL;
4975         vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
4976         ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
4977                 vht;
4978
4979         pos2 = os_strstr(pos, " go_intent=");
4980         if (pos2) {
4981                 pos2 += 11;
4982                 go_intent = atoi(pos2);
4983                 if (go_intent < 0 || go_intent > 15)
4984                         return -1;
4985         }
4986
4987         pos2 = os_strstr(pos, " freq=");
4988         if (pos2) {
4989                 pos2 += 6;
4990                 freq = atoi(pos2);
4991                 if (freq <= 0)
4992                         return -1;
4993         }
4994
4995         pos2 = os_strstr(pos, " freq2=");
4996         if (pos2)
4997                 freq2 = atoi(pos2 + 7);
4998
4999         pos2 = os_strstr(pos, " max_oper_chwidth=");
5000         if (pos2)
5001                 chwidth = atoi(pos2 + 18);
5002
5003         max_oper_chwidth = parse_freq(chwidth, freq2);
5004         if (max_oper_chwidth < 0)
5005                 return -1;
5006
5007         pos2 = os_strstr(pos, " ssid=");
5008         if (pos2) {
5009                 char *end;
5010
5011                 pos2 += 6;
5012                 end = os_strchr(pos2, ' ');
5013                 if (!end)
5014                         group_ssid_len = os_strlen(pos2) / 2;
5015                 else
5016                         group_ssid_len = (end - pos2) / 2;
5017                 if (group_ssid_len == 0 || group_ssid_len > SSID_MAX_LEN ||
5018                     hexstr2bin(pos2, _group_ssid, group_ssid_len) < 0)
5019                         return -1;
5020                 group_ssid = _group_ssid;
5021         }
5022
5023         if (os_strncmp(pos, "pin", 3) == 0) {
5024                 /* Request random PIN (to be displayed) and enable the PIN */
5025                 wps_method = WPS_PIN_DISPLAY;
5026         } else if (os_strncmp(pos, "pbc", 3) == 0) {
5027                 wps_method = WPS_PBC;
5028         } else {
5029                 pin = pos;
5030                 pos = os_strchr(pin, ' ');
5031                 wps_method = WPS_PIN_KEYPAD;
5032                 if (pos) {
5033                         *pos++ = '\0';
5034                         if (os_strncmp(pos, "display", 7) == 0)
5035                                 wps_method = WPS_PIN_DISPLAY;
5036                         else if (os_strncmp(pos, "p2ps", 4) == 0)
5037                                 wps_method = WPS_P2PS;
5038                 }
5039                 if (!wps_pin_str_valid(pin)) {
5040                         os_memcpy(buf, "FAIL-INVALID-PIN\n", 17);
5041                         return 17;
5042                 }
5043         }
5044
5045         new_pin = wpas_p2p_connect(wpa_s, addr, pin, wps_method,
5046                                    persistent_group, automatic, join,
5047                                    auth, go_intent, freq, freq2, persistent_id,
5048                                    pd, ht40, vht, max_oper_chwidth,
5049                                    group_ssid, group_ssid_len);
5050         if (new_pin == -2) {
5051                 os_memcpy(buf, "FAIL-CHANNEL-UNAVAILABLE\n", 25);
5052                 return 25;
5053         }
5054         if (new_pin == -3) {
5055                 os_memcpy(buf, "FAIL-CHANNEL-UNSUPPORTED\n", 25);
5056                 return 25;
5057         }
5058         if (new_pin < 0)
5059                 return -1;
5060         if (wps_method == WPS_PIN_DISPLAY && pin == NULL) {
5061                 ret = os_snprintf(buf, buflen, "%08d", new_pin);
5062                 if (os_snprintf_error(buflen, ret))
5063                         return -1;
5064                 return ret;
5065         }
5066
5067         os_memcpy(buf, "OK\n", 3);
5068         return 3;
5069 }
5070
5071
5072 static int p2p_ctrl_listen(struct wpa_supplicant *wpa_s, char *cmd)
5073 {
5074         unsigned int timeout = atoi(cmd);
5075         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
5076                 wpa_dbg(wpa_s, MSG_INFO,
5077                         "Reject P2P_LISTEN since interface is disabled");
5078                 return -1;
5079         }
5080         return wpas_p2p_listen(wpa_s, timeout);
5081 }
5082
5083
5084 static int p2p_ctrl_prov_disc(struct wpa_supplicant *wpa_s, char *cmd)
5085 {
5086         u8 addr[ETH_ALEN];
5087         char *pos;
5088         enum wpas_p2p_prov_disc_use use = WPAS_P2P_PD_FOR_GO_NEG;
5089
5090         /* <addr> <config method> [join|auto] */
5091
5092         if (hwaddr_aton(cmd, addr))
5093                 return -1;
5094
5095         pos = cmd + 17;
5096         if (*pos != ' ')
5097                 return -1;
5098         pos++;
5099
5100         if (os_strstr(pos, " join") != NULL)
5101                 use = WPAS_P2P_PD_FOR_JOIN;
5102         else if (os_strstr(pos, " auto") != NULL)
5103                 use = WPAS_P2P_PD_AUTO;
5104
5105         return wpas_p2p_prov_disc(wpa_s, addr, pos, use, NULL);
5106 }
5107
5108
5109 static int p2p_get_passphrase(struct wpa_supplicant *wpa_s, char *buf,
5110                               size_t buflen)
5111 {
5112         struct wpa_ssid *ssid = wpa_s->current_ssid;
5113
5114         if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
5115             ssid->passphrase == NULL)
5116                 return -1;
5117
5118         os_strlcpy(buf, ssid->passphrase, buflen);
5119         return os_strlen(buf);
5120 }
5121
5122
5123 static int p2p_ctrl_serv_disc_req(struct wpa_supplicant *wpa_s, char *cmd,
5124                                   char *buf, size_t buflen)
5125 {
5126         u64 ref;
5127         int res;
5128         u8 dst_buf[ETH_ALEN], *dst;
5129         struct wpabuf *tlvs;
5130         char *pos;
5131         size_t len;
5132
5133         if (hwaddr_aton(cmd, dst_buf))
5134                 return -1;
5135         dst = dst_buf;
5136         if (dst[0] == 0 && dst[1] == 0 && dst[2] == 0 &&
5137             dst[3] == 0 && dst[4] == 0 && dst[5] == 0)
5138                 dst = NULL;
5139         pos = cmd + 17;
5140         if (*pos != ' ')
5141                 return -1;
5142         pos++;
5143
5144         if (os_strncmp(pos, "upnp ", 5) == 0) {
5145                 u8 version;
5146                 pos += 5;
5147                 if (hexstr2bin(pos, &version, 1) < 0)
5148                         return -1;
5149                 pos += 2;
5150                 if (*pos != ' ')
5151                         return -1;
5152                 pos++;
5153                 ref = wpas_p2p_sd_request_upnp(wpa_s, dst, version, pos);
5154 #ifdef CONFIG_WIFI_DISPLAY
5155         } else if (os_strncmp(pos, "wifi-display ", 13) == 0) {
5156                 ref = wpas_p2p_sd_request_wifi_display(wpa_s, dst, pos + 13);
5157 #endif /* CONFIG_WIFI_DISPLAY */
5158         } else if (os_strncmp(pos, "asp ", 4) == 0) {
5159                 char *svc_str;
5160                 char *svc_info = NULL;
5161                 u32 id;
5162
5163                 pos += 4;
5164                 if (sscanf(pos, "%x", &id) != 1 || id > 0xff)
5165                         return -1;
5166
5167                 pos = os_strchr(pos, ' ');
5168                 if (pos == NULL || pos[1] == '\0' || pos[1] == ' ')
5169                         return -1;
5170
5171                 svc_str = pos + 1;
5172
5173                 pos = os_strchr(svc_str, ' ');
5174
5175                 if (pos)
5176                         *pos++ = '\0';
5177
5178                 /* All remaining data is the svc_info string */
5179                 if (pos && pos[0] && pos[0] != ' ') {
5180                         len = os_strlen(pos);
5181
5182                         /* Unescape in place */
5183                         len = utf8_unescape(pos, len, pos, len);
5184                         if (len > 0xff)
5185                                 return -1;
5186
5187                         svc_info = pos;
5188                 }
5189
5190                 ref = wpas_p2p_sd_request_asp(wpa_s, dst, (u8) id,
5191                                               svc_str, svc_info);
5192         } else {
5193                 len = os_strlen(pos);
5194                 if (len & 1)
5195                         return -1;
5196                 len /= 2;
5197                 tlvs = wpabuf_alloc(len);
5198                 if (tlvs == NULL)
5199                         return -1;
5200                 if (hexstr2bin(pos, wpabuf_put(tlvs, len), len) < 0) {
5201                         wpabuf_free(tlvs);
5202                         return -1;
5203                 }
5204
5205                 ref = wpas_p2p_sd_request(wpa_s, dst, tlvs);
5206                 wpabuf_free(tlvs);
5207         }
5208         if (ref == 0)
5209                 return -1;
5210         res = os_snprintf(buf, buflen, "%llx", (long long unsigned) ref);
5211         if (os_snprintf_error(buflen, res))
5212                 return -1;
5213         return res;
5214 }
5215
5216
5217 static int p2p_ctrl_serv_disc_cancel_req(struct wpa_supplicant *wpa_s,
5218                                          char *cmd)
5219 {
5220         long long unsigned val;
5221         u64 req;
5222         if (sscanf(cmd, "%llx", &val) != 1)
5223                 return -1;
5224         req = val;
5225         return wpas_p2p_sd_cancel_request(wpa_s, req);
5226 }
5227
5228
5229 static int p2p_ctrl_serv_disc_resp(struct wpa_supplicant *wpa_s, char *cmd)
5230 {
5231         int freq;
5232         u8 dst[ETH_ALEN];
5233         u8 dialog_token;
5234         struct wpabuf *resp_tlvs;
5235         char *pos, *pos2;
5236         size_t len;
5237
5238         pos = os_strchr(cmd, ' ');
5239         if (pos == NULL)
5240                 return -1;
5241         *pos++ = '\0';
5242         freq = atoi(cmd);
5243         if (freq == 0)
5244                 return -1;
5245
5246         if (hwaddr_aton(pos, dst))
5247                 return -1;
5248         pos += 17;
5249         if (*pos != ' ')
5250                 return -1;
5251         pos++;
5252
5253         pos2 = os_strchr(pos, ' ');
5254         if (pos2 == NULL)
5255                 return -1;
5256         *pos2++ = '\0';
5257         dialog_token = atoi(pos);
5258
5259         len = os_strlen(pos2);
5260         if (len & 1)
5261                 return -1;
5262         len /= 2;
5263         resp_tlvs = wpabuf_alloc(len);
5264         if (resp_tlvs == NULL)
5265                 return -1;
5266         if (hexstr2bin(pos2, wpabuf_put(resp_tlvs, len), len) < 0) {
5267                 wpabuf_free(resp_tlvs);
5268                 return -1;
5269         }
5270
5271         wpas_p2p_sd_response(wpa_s, freq, dst, dialog_token, resp_tlvs);
5272         wpabuf_free(resp_tlvs);
5273         return 0;
5274 }
5275
5276
5277 static int p2p_ctrl_serv_disc_external(struct wpa_supplicant *wpa_s,
5278                                        char *cmd)
5279 {
5280         if (os_strcmp(cmd, "0") && os_strcmp(cmd, "1"))
5281                 return -1;
5282         wpa_s->p2p_sd_over_ctrl_iface = atoi(cmd);
5283         return 0;
5284 }
5285
5286
5287 static int p2p_ctrl_service_add_bonjour(struct wpa_supplicant *wpa_s,
5288                                         char *cmd)
5289 {
5290         char *pos;
5291         size_t len;
5292         struct wpabuf *query, *resp;
5293
5294         pos = os_strchr(cmd, ' ');
5295         if (pos == NULL)
5296                 return -1;
5297         *pos++ = '\0';
5298
5299         len = os_strlen(cmd);
5300         if (len & 1)
5301                 return -1;
5302         len /= 2;
5303         query = wpabuf_alloc(len);
5304         if (query == NULL)
5305                 return -1;
5306         if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5307                 wpabuf_free(query);
5308                 return -1;
5309         }
5310
5311         len = os_strlen(pos);
5312         if (len & 1) {
5313                 wpabuf_free(query);
5314                 return -1;
5315         }
5316         len /= 2;
5317         resp = wpabuf_alloc(len);
5318         if (resp == NULL) {
5319                 wpabuf_free(query);
5320                 return -1;
5321         }
5322         if (hexstr2bin(pos, wpabuf_put(resp, len), len) < 0) {
5323                 wpabuf_free(query);
5324                 wpabuf_free(resp);
5325                 return -1;
5326         }
5327
5328         if (wpas_p2p_service_add_bonjour(wpa_s, query, resp) < 0) {
5329                 wpabuf_free(query);
5330                 wpabuf_free(resp);
5331                 return -1;
5332         }
5333         return 0;
5334 }
5335
5336
5337 static int p2p_ctrl_service_add_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5338 {
5339         char *pos;
5340         u8 version;
5341
5342         pos = os_strchr(cmd, ' ');
5343         if (pos == NULL)
5344                 return -1;
5345         *pos++ = '\0';
5346
5347         if (hexstr2bin(cmd, &version, 1) < 0)
5348                 return -1;
5349
5350         return wpas_p2p_service_add_upnp(wpa_s, version, pos);
5351 }
5352
5353
5354 static int p2p_ctrl_service_add_asp(struct wpa_supplicant *wpa_s,
5355                                     u8 replace, char *cmd)
5356 {
5357         char *pos;
5358         char *adv_str;
5359         u32 auto_accept, adv_id, svc_state, config_methods;
5360         char *svc_info = NULL;
5361         char *cpt_prio_str;
5362         u8 cpt_prio[P2PS_FEATURE_CAPAB_CPT_MAX + 1];
5363
5364         pos = os_strchr(cmd, ' ');
5365         if (pos == NULL)
5366                 return -1;
5367         *pos++ = '\0';
5368
5369         /* Auto-Accept value is mandatory, and must be one of the
5370          * single values (0, 1, 2, 4) */
5371         auto_accept = atoi(cmd);
5372         switch (auto_accept) {
5373         case P2PS_SETUP_NONE: /* No auto-accept */
5374         case P2PS_SETUP_NEW:
5375         case P2PS_SETUP_CLIENT:
5376         case P2PS_SETUP_GROUP_OWNER:
5377                 break;
5378         default:
5379                 return -1;
5380         }
5381
5382         /* Advertisement ID is mandatory */
5383         cmd = pos;
5384         pos = os_strchr(cmd, ' ');
5385         if (pos == NULL)
5386                 return -1;
5387         *pos++ = '\0';
5388
5389         /* Handle Adv_ID == 0 (wildcard "org.wi-fi.wfds") internally. */
5390         if (sscanf(cmd, "%x", &adv_id) != 1 || adv_id == 0)
5391                 return -1;
5392
5393         /* Only allow replacements if exist, and adds if not */
5394         if (wpas_p2p_service_p2ps_id_exists(wpa_s, adv_id)) {
5395                 if (!replace)
5396                         return -1;
5397         } else {
5398                 if (replace)
5399                         return -1;
5400         }
5401
5402         /* svc_state between 0 - 0xff is mandatory */
5403         if (sscanf(pos, "%x", &svc_state) != 1 || svc_state > 0xff)
5404                 return -1;
5405
5406         pos = os_strchr(pos, ' ');
5407         if (pos == NULL)
5408                 return -1;
5409
5410         /* config_methods is mandatory */
5411         pos++;
5412         if (sscanf(pos, "%x", &config_methods) != 1)
5413                 return -1;
5414
5415         if (!(config_methods &
5416               (WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD | WPS_CONFIG_P2PS)))
5417                 return -1;
5418
5419         pos = os_strchr(pos, ' ');
5420         if (pos == NULL)
5421                 return -1;
5422
5423         pos++;
5424         adv_str = pos;
5425
5426         /* Advertisement string is mandatory */
5427         if (!pos[0] || pos[0] == ' ')
5428                 return -1;
5429
5430         /* Terminate svc string */
5431         pos = os_strchr(pos, ' ');
5432         if (pos != NULL)
5433                 *pos++ = '\0';
5434
5435         cpt_prio_str = (pos && pos[0]) ? os_strstr(pos, "cpt=") : NULL;
5436         if (cpt_prio_str) {
5437                 pos = os_strchr(pos, ' ');
5438                 if (pos != NULL)
5439                         *pos++ = '\0';
5440
5441                 if (p2ps_ctrl_parse_cpt_priority(cpt_prio_str + 4, cpt_prio))
5442                         return -1;
5443         } else {
5444                 cpt_prio[0] = P2PS_FEATURE_CAPAB_UDP_TRANSPORT;
5445                 cpt_prio[1] = 0;
5446         }
5447
5448         /* Service and Response Information are optional */
5449         if (pos && pos[0]) {
5450                 size_t len;
5451
5452                 /* Note the bare ' included, which cannot exist legally
5453                  * in unescaped string. */
5454                 svc_info = os_strstr(pos, "svc_info='");
5455
5456                 if (svc_info) {
5457                         svc_info += 9;
5458                         len = os_strlen(svc_info);
5459                         utf8_unescape(svc_info, len, svc_info, len);
5460                 }
5461         }
5462
5463         return wpas_p2p_service_add_asp(wpa_s, auto_accept, adv_id, adv_str,
5464                                         (u8) svc_state, (u16) config_methods,
5465                                         svc_info, cpt_prio);
5466 }
5467
5468
5469 static int p2p_ctrl_service_add(struct wpa_supplicant *wpa_s, char *cmd)
5470 {
5471         char *pos;
5472
5473         pos = os_strchr(cmd, ' ');
5474         if (pos == NULL)
5475                 return -1;
5476         *pos++ = '\0';
5477
5478         if (os_strcmp(cmd, "bonjour") == 0)
5479                 return p2p_ctrl_service_add_bonjour(wpa_s, pos);
5480         if (os_strcmp(cmd, "upnp") == 0)
5481                 return p2p_ctrl_service_add_upnp(wpa_s, pos);
5482         if (os_strcmp(cmd, "asp") == 0)
5483                 return p2p_ctrl_service_add_asp(wpa_s, 0, pos);
5484         wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5485         return -1;
5486 }
5487
5488
5489 static int p2p_ctrl_service_del_bonjour(struct wpa_supplicant *wpa_s,
5490                                         char *cmd)
5491 {
5492         size_t len;
5493         struct wpabuf *query;
5494         int ret;
5495
5496         len = os_strlen(cmd);
5497         if (len & 1)
5498                 return -1;
5499         len /= 2;
5500         query = wpabuf_alloc(len);
5501         if (query == NULL)
5502                 return -1;
5503         if (hexstr2bin(cmd, wpabuf_put(query, len), len) < 0) {
5504                 wpabuf_free(query);
5505                 return -1;
5506         }
5507
5508         ret = wpas_p2p_service_del_bonjour(wpa_s, query);
5509         wpabuf_free(query);
5510         return ret;
5511 }
5512
5513
5514 static int p2p_ctrl_service_del_upnp(struct wpa_supplicant *wpa_s, char *cmd)
5515 {
5516         char *pos;
5517         u8 version;
5518
5519         pos = os_strchr(cmd, ' ');
5520         if (pos == NULL)
5521                 return -1;
5522         *pos++ = '\0';
5523
5524         if (hexstr2bin(cmd, &version, 1) < 0)
5525                 return -1;
5526
5527         return wpas_p2p_service_del_upnp(wpa_s, version, pos);
5528 }
5529
5530
5531 static int p2p_ctrl_service_del_asp(struct wpa_supplicant *wpa_s, char *cmd)
5532 {
5533         u32 adv_id;
5534
5535         if (os_strcmp(cmd, "all") == 0) {
5536                 wpas_p2p_service_flush_asp(wpa_s);
5537                 return 0;
5538         }
5539
5540         if (sscanf(cmd, "%x", &adv_id) != 1)
5541                 return -1;
5542
5543         return wpas_p2p_service_del_asp(wpa_s, adv_id);
5544 }
5545
5546
5547 static int p2p_ctrl_service_del(struct wpa_supplicant *wpa_s, char *cmd)
5548 {
5549         char *pos;
5550
5551         pos = os_strchr(cmd, ' ');
5552         if (pos == NULL)
5553                 return -1;
5554         *pos++ = '\0';
5555
5556         if (os_strcmp(cmd, "bonjour") == 0)
5557                 return p2p_ctrl_service_del_bonjour(wpa_s, pos);
5558         if (os_strcmp(cmd, "upnp") == 0)
5559                 return p2p_ctrl_service_del_upnp(wpa_s, pos);
5560         if (os_strcmp(cmd, "asp") == 0)
5561                 return p2p_ctrl_service_del_asp(wpa_s, pos);
5562         wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5563         return -1;
5564 }
5565
5566
5567 static int p2p_ctrl_service_replace(struct wpa_supplicant *wpa_s, char *cmd)
5568 {
5569         char *pos;
5570
5571         pos = os_strchr(cmd, ' ');
5572         if (pos == NULL)
5573                 return -1;
5574         *pos++ = '\0';
5575
5576         if (os_strcmp(cmd, "asp") == 0)
5577                 return p2p_ctrl_service_add_asp(wpa_s, 1, pos);
5578
5579         wpa_printf(MSG_DEBUG, "Unknown service '%s'", cmd);
5580         return -1;
5581 }
5582
5583
5584 static int p2p_ctrl_reject(struct wpa_supplicant *wpa_s, char *cmd)
5585 {
5586         u8 addr[ETH_ALEN];
5587
5588         /* <addr> */
5589
5590         if (hwaddr_aton(cmd, addr))
5591                 return -1;
5592
5593         return wpas_p2p_reject(wpa_s, addr);
5594 }
5595
5596
5597 static int p2p_ctrl_invite_persistent(struct wpa_supplicant *wpa_s, char *cmd)
5598 {
5599         char *pos;
5600         int id;
5601         struct wpa_ssid *ssid;
5602         u8 *_peer = NULL, peer[ETH_ALEN];
5603         int freq = 0, pref_freq = 0;
5604         int ht40, vht, max_oper_chwidth, chwidth = 0, freq2 = 0;
5605
5606         id = atoi(cmd);
5607         pos = os_strstr(cmd, " peer=");
5608         if (pos) {
5609                 pos += 6;
5610                 if (hwaddr_aton(pos, peer))
5611                         return -1;
5612                 _peer = peer;
5613         }
5614         ssid = wpa_config_get_network(wpa_s->conf, id);
5615         if (ssid == NULL || ssid->disabled != 2) {
5616                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5617                            "for persistent P2P group",
5618                            id);
5619                 return -1;
5620         }
5621
5622         pos = os_strstr(cmd, " freq=");
5623         if (pos) {
5624                 pos += 6;
5625                 freq = atoi(pos);
5626                 if (freq <= 0)
5627                         return -1;
5628         }
5629
5630         pos = os_strstr(cmd, " pref=");
5631         if (pos) {
5632                 pos += 6;
5633                 pref_freq = atoi(pos);
5634                 if (pref_freq <= 0)
5635                         return -1;
5636         }
5637
5638         vht = (os_strstr(cmd, " vht") != NULL) || wpa_s->conf->p2p_go_vht;
5639         ht40 = (os_strstr(cmd, " ht40") != NULL) || wpa_s->conf->p2p_go_ht40 ||
5640                 vht;
5641
5642         pos = os_strstr(cmd, "freq2=");
5643         if (pos)
5644                 freq2 = atoi(pos + 6);
5645
5646         pos = os_strstr(cmd, " max_oper_chwidth=");
5647         if (pos)
5648                 chwidth = atoi(pos + 18);
5649
5650         max_oper_chwidth = parse_freq(chwidth, freq2);
5651         if (max_oper_chwidth < 0)
5652                 return -1;
5653
5654         return wpas_p2p_invite(wpa_s, _peer, ssid, NULL, freq, freq2, ht40, vht,
5655                                max_oper_chwidth, pref_freq);
5656 }
5657
5658
5659 static int p2p_ctrl_invite_group(struct wpa_supplicant *wpa_s, char *cmd)
5660 {
5661         char *pos;
5662         u8 peer[ETH_ALEN], go_dev_addr[ETH_ALEN], *go_dev = NULL;
5663
5664         pos = os_strstr(cmd, " peer=");
5665         if (!pos)
5666                 return -1;
5667
5668         *pos = '\0';
5669         pos += 6;
5670         if (hwaddr_aton(pos, peer)) {
5671                 wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'", pos);
5672                 return -1;
5673         }
5674
5675         pos = os_strstr(pos, " go_dev_addr=");
5676         if (pos) {
5677                 pos += 13;
5678                 if (hwaddr_aton(pos, go_dev_addr)) {
5679                         wpa_printf(MSG_DEBUG, "P2P: Invalid MAC address '%s'",
5680                                    pos);
5681                         return -1;
5682                 }
5683                 go_dev = go_dev_addr;
5684         }
5685
5686         return wpas_p2p_invite_group(wpa_s, cmd, peer, go_dev);
5687 }
5688
5689
5690 static int p2p_ctrl_invite(struct wpa_supplicant *wpa_s, char *cmd)
5691 {
5692         if (os_strncmp(cmd, "persistent=", 11) == 0)
5693                 return p2p_ctrl_invite_persistent(wpa_s, cmd + 11);
5694         if (os_strncmp(cmd, "group=", 6) == 0)
5695                 return p2p_ctrl_invite_group(wpa_s, cmd + 6);
5696
5697         return -1;
5698 }
5699
5700
5701 static int p2p_ctrl_group_add_persistent(struct wpa_supplicant *wpa_s,
5702                                          int id, int freq, int vht_center_freq2,
5703                                          int ht40, int vht, int vht_chwidth)
5704 {
5705         struct wpa_ssid *ssid;
5706
5707         ssid = wpa_config_get_network(wpa_s->conf, id);
5708         if (ssid == NULL || ssid->disabled != 2) {
5709                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Could not find SSID id=%d "
5710                            "for persistent P2P group",
5711                            id);
5712                 return -1;
5713         }
5714
5715         return wpas_p2p_group_add_persistent(wpa_s, ssid, 0, freq,
5716                                              vht_center_freq2, 0, ht40, vht,
5717                                              vht_chwidth, NULL, 0, 0);
5718 }
5719
5720
5721 static int p2p_ctrl_group_add(struct wpa_supplicant *wpa_s, char *cmd)
5722 {
5723         int freq = 0, persistent = 0, group_id = -1;
5724         int vht = wpa_s->conf->p2p_go_vht;
5725         int ht40 = wpa_s->conf->p2p_go_ht40 || vht;
5726         int max_oper_chwidth, chwidth = 0, freq2 = 0;
5727         char *token, *context = NULL;
5728
5729         while ((token = str_token(cmd, " ", &context))) {
5730                 if (sscanf(token, "freq=%d", &freq) == 1 ||
5731                     sscanf(token, "freq2=%d", &freq2) == 1 ||
5732                     sscanf(token, "persistent=%d", &group_id) == 1 ||
5733                     sscanf(token, "max_oper_chwidth=%d", &chwidth) == 1) {
5734                         continue;
5735                 } else if (os_strcmp(token, "ht40") == 0) {
5736                         ht40 = 1;
5737                 } else if (os_strcmp(token, "vht") == 0) {
5738                         vht = 1;
5739                         ht40 = 1;
5740                 } else if (os_strcmp(token, "persistent") == 0) {
5741                         persistent = 1;
5742                 } else {
5743                         wpa_printf(MSG_DEBUG,
5744                                    "CTRL: Invalid P2P_GROUP_ADD parameter: '%s'",
5745                                    token);
5746                         return -1;
5747                 }
5748         }
5749
5750         max_oper_chwidth = parse_freq(chwidth, freq2);
5751         if (max_oper_chwidth < 0)
5752                 return -1;
5753
5754         if (group_id >= 0)
5755                 return p2p_ctrl_group_add_persistent(wpa_s, group_id,
5756                                                      freq, freq2, ht40, vht,
5757                                                      max_oper_chwidth);
5758
5759         return wpas_p2p_group_add(wpa_s, persistent, freq, freq2, ht40, vht,
5760                                   max_oper_chwidth);
5761 }
5762
5763
5764 static int p2p_ctrl_peer(struct wpa_supplicant *wpa_s, char *cmd,
5765                          char *buf, size_t buflen)
5766 {
5767         u8 addr[ETH_ALEN], *addr_ptr;
5768         int next, res;
5769         const struct p2p_peer_info *info;
5770         char *pos, *end;
5771         char devtype[WPS_DEV_TYPE_BUFSIZE];
5772         struct wpa_ssid *ssid;
5773         size_t i;
5774
5775         if (!wpa_s->global->p2p)
5776                 return -1;
5777
5778         if (os_strcmp(cmd, "FIRST") == 0) {
5779                 addr_ptr = NULL;
5780                 next = 0;
5781         } else if (os_strncmp(cmd, "NEXT-", 5) == 0) {
5782                 if (hwaddr_aton(cmd + 5, addr) < 0)
5783                         return -1;
5784                 addr_ptr = addr;
5785                 next = 1;
5786         } else {
5787                 if (hwaddr_aton(cmd, addr) < 0)
5788                         return -1;
5789                 addr_ptr = addr;
5790                 next = 0;
5791         }
5792
5793         info = p2p_get_peer_info(wpa_s->global->p2p, addr_ptr, next);
5794         if (info == NULL)
5795                 return -1;
5796
5797         pos = buf;
5798         end = buf + buflen;
5799
5800         res = os_snprintf(pos, end - pos, MACSTR "\n"
5801                           "pri_dev_type=%s\n"
5802                           "device_name=%s\n"
5803                           "manufacturer=%s\n"
5804                           "model_name=%s\n"
5805                           "model_number=%s\n"
5806                           "serial_number=%s\n"
5807                           "config_methods=0x%x\n"
5808                           "dev_capab=0x%x\n"
5809                           "group_capab=0x%x\n"
5810                           "level=%d\n",
5811                           MAC2STR(info->p2p_device_addr),
5812                           wps_dev_type_bin2str(info->pri_dev_type,
5813                                                devtype, sizeof(devtype)),
5814                           info->device_name,
5815                           info->manufacturer,
5816                           info->model_name,
5817                           info->model_number,
5818                           info->serial_number,
5819                           info->config_methods,
5820                           info->dev_capab,
5821                           info->group_capab,
5822                           info->level);
5823         if (os_snprintf_error(end - pos, res))
5824                 return pos - buf;
5825         pos += res;
5826
5827         for (i = 0; i < info->wps_sec_dev_type_list_len / WPS_DEV_TYPE_LEN; i++)
5828         {
5829                 const u8 *t;
5830                 t = &info->wps_sec_dev_type_list[i * WPS_DEV_TYPE_LEN];
5831                 res = os_snprintf(pos, end - pos, "sec_dev_type=%s\n",
5832                                   wps_dev_type_bin2str(t, devtype,
5833                                                        sizeof(devtype)));
5834                 if (os_snprintf_error(end - pos, res))
5835                         return pos - buf;
5836                 pos += res;
5837         }
5838
5839         ssid = wpas_p2p_get_persistent(wpa_s, info->p2p_device_addr, NULL, 0);
5840         if (ssid) {
5841                 res = os_snprintf(pos, end - pos, "persistent=%d\n", ssid->id);
5842                 if (os_snprintf_error(end - pos, res))
5843                         return pos - buf;
5844                 pos += res;
5845         }
5846
5847         res = p2p_get_peer_info_txt(info, pos, end - pos);
5848         if (res < 0)
5849                 return pos - buf;
5850         pos += res;
5851
5852         if (info->vendor_elems) {
5853                 res = os_snprintf(pos, end - pos, "vendor_elems=");
5854                 if (os_snprintf_error(end - pos, res))
5855                         return pos - buf;
5856                 pos += res;
5857
5858                 pos += wpa_snprintf_hex(pos, end - pos,
5859                                         wpabuf_head(info->vendor_elems),
5860                                         wpabuf_len(info->vendor_elems));
5861
5862                 res = os_snprintf(pos, end - pos, "\n");
5863                 if (os_snprintf_error(end - pos, res))
5864                         return pos - buf;
5865                 pos += res;
5866         }
5867
5868         return pos - buf;
5869 }
5870
5871
5872 static int p2p_ctrl_disallow_freq(struct wpa_supplicant *wpa_s,
5873                                   const char *param)
5874 {
5875         unsigned int i;
5876
5877         if (wpa_s->global->p2p == NULL)
5878                 return -1;
5879
5880         if (freq_range_list_parse(&wpa_s->global->p2p_disallow_freq, param) < 0)
5881                 return -1;
5882
5883         for (i = 0; i < wpa_s->global->p2p_disallow_freq.num; i++) {
5884                 struct wpa_freq_range *freq;
5885                 freq = &wpa_s->global->p2p_disallow_freq.range[i];
5886                 wpa_printf(MSG_DEBUG, "P2P: Disallowed frequency range %u-%u",
5887                            freq->min, freq->max);
5888         }
5889
5890         wpas_p2p_update_channel_list(wpa_s, WPAS_P2P_CHANNEL_UPDATE_DISALLOW);
5891         return 0;
5892 }
5893
5894
5895 static int p2p_ctrl_set(struct wpa_supplicant *wpa_s, char *cmd)
5896 {
5897         char *param;
5898
5899         if (wpa_s->global->p2p == NULL)
5900                 return -1;
5901
5902         param = os_strchr(cmd, ' ');
5903         if (param == NULL)
5904                 return -1;
5905         *param++ = '\0';
5906
5907         if (os_strcmp(cmd, "discoverability") == 0) {
5908                 p2p_set_client_discoverability(wpa_s->global->p2p,
5909                                                atoi(param));
5910                 return 0;
5911         }
5912
5913         if (os_strcmp(cmd, "managed") == 0) {
5914                 p2p_set_managed_oper(wpa_s->global->p2p, atoi(param));
5915                 return 0;
5916         }
5917
5918         if (os_strcmp(cmd, "listen_channel") == 0) {
5919                 return p2p_set_listen_channel(wpa_s->global->p2p, 81,
5920                                               atoi(param), 1);
5921         }
5922
5923         if (os_strcmp(cmd, "ssid_postfix") == 0) {
5924                 return p2p_set_ssid_postfix(wpa_s->global->p2p, (u8 *) param,
5925                                             os_strlen(param));
5926         }
5927
5928         if (os_strcmp(cmd, "noa") == 0) {
5929                 char *pos;
5930                 int count, start, duration;
5931                 /* GO NoA parameters: count,start_offset(ms),duration(ms) */
5932                 count = atoi(param);
5933                 pos = os_strchr(param, ',');
5934                 if (pos == NULL)
5935                         return -1;
5936                 pos++;
5937                 start = atoi(pos);
5938                 pos = os_strchr(pos, ',');
5939                 if (pos == NULL)
5940                         return -1;
5941                 pos++;
5942                 duration = atoi(pos);
5943                 if (count < 0 || count > 255 || start < 0 || duration < 0)
5944                         return -1;
5945                 if (count == 0 && duration > 0)
5946                         return -1;
5947                 wpa_printf(MSG_DEBUG, "CTRL_IFACE: P2P_SET GO NoA: count=%d "
5948                            "start=%d duration=%d", count, start, duration);
5949                 return wpas_p2p_set_noa(wpa_s, count, start, duration);
5950         }
5951
5952         if (os_strcmp(cmd, "ps") == 0)
5953                 return wpa_drv_set_p2p_powersave(wpa_s, atoi(param), -1, -1);
5954
5955         if (os_strcmp(cmd, "oppps") == 0)
5956                 return wpa_drv_set_p2p_powersave(wpa_s, -1, atoi(param), -1);
5957
5958         if (os_strcmp(cmd, "ctwindow") == 0)
5959                 return wpa_drv_set_p2p_powersave(wpa_s, -1, -1, atoi(param));
5960
5961         if (os_strcmp(cmd, "disabled") == 0) {
5962                 wpa_s->global->p2p_disabled = atoi(param);
5963                 wpa_printf(MSG_DEBUG, "P2P functionality %s",
5964                            wpa_s->global->p2p_disabled ?
5965                            "disabled" : "enabled");
5966                 if (wpa_s->global->p2p_disabled) {
5967                         wpas_p2p_stop_find(wpa_s);
5968                         os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
5969                         p2p_flush(wpa_s->global->p2p);
5970                 }
5971                 return 0;
5972         }
5973
5974         if (os_strcmp(cmd, "conc_pref") == 0) {
5975                 if (os_strcmp(param, "sta") == 0)
5976                         wpa_s->global->conc_pref = WPA_CONC_PREF_STA;
5977                 else if (os_strcmp(param, "p2p") == 0)
5978                         wpa_s->global->conc_pref = WPA_CONC_PREF_P2P;
5979                 else {
5980                         wpa_printf(MSG_INFO, "Invalid conc_pref value");
5981                         return -1;
5982                 }
5983                 wpa_printf(MSG_DEBUG, "Single channel concurrency preference: "
5984                            "%s", param);
5985                 return 0;
5986         }
5987
5988         if (os_strcmp(cmd, "force_long_sd") == 0) {
5989                 wpa_s->force_long_sd = atoi(param);
5990                 return 0;
5991         }
5992
5993         if (os_strcmp(cmd, "peer_filter") == 0) {
5994                 u8 addr[ETH_ALEN];
5995                 if (hwaddr_aton(param, addr))
5996                         return -1;
5997                 p2p_set_peer_filter(wpa_s->global->p2p, addr);
5998                 return 0;
5999         }
6000
6001         if (os_strcmp(cmd, "cross_connect") == 0)
6002                 return wpas_p2p_set_cross_connect(wpa_s, atoi(param));
6003
6004         if (os_strcmp(cmd, "go_apsd") == 0) {
6005                 if (os_strcmp(param, "disable") == 0)
6006                         wpa_s->set_ap_uapsd = 0;
6007                 else {
6008                         wpa_s->set_ap_uapsd = 1;
6009                         wpa_s->ap_uapsd = atoi(param);
6010                 }
6011                 return 0;
6012         }
6013
6014         if (os_strcmp(cmd, "client_apsd") == 0) {
6015                 if (os_strcmp(param, "disable") == 0)
6016                         wpa_s->set_sta_uapsd = 0;
6017                 else {
6018                         int be, bk, vi, vo;
6019                         char *pos;
6020                         /* format: BE,BK,VI,VO;max SP Length */
6021                         be = atoi(param);
6022                         pos = os_strchr(param, ',');
6023                         if (pos == NULL)
6024                                 return -1;
6025                         pos++;
6026                         bk = atoi(pos);
6027                         pos = os_strchr(pos, ',');
6028                         if (pos == NULL)
6029                                 return -1;
6030                         pos++;
6031                         vi = atoi(pos);
6032                         pos = os_strchr(pos, ',');
6033                         if (pos == NULL)
6034                                 return -1;
6035                         pos++;
6036                         vo = atoi(pos);
6037                         /* ignore max SP Length for now */
6038
6039                         wpa_s->set_sta_uapsd = 1;
6040                         wpa_s->sta_uapsd = 0;
6041                         if (be)
6042                                 wpa_s->sta_uapsd |= BIT(0);
6043                         if (bk)
6044                                 wpa_s->sta_uapsd |= BIT(1);
6045                         if (vi)
6046                                 wpa_s->sta_uapsd |= BIT(2);
6047                         if (vo)
6048                                 wpa_s->sta_uapsd |= BIT(3);
6049                 }
6050                 return 0;
6051         }
6052
6053         if (os_strcmp(cmd, "disallow_freq") == 0)
6054                 return p2p_ctrl_disallow_freq(wpa_s, param);
6055
6056         if (os_strcmp(cmd, "disc_int") == 0) {
6057                 int min_disc_int, max_disc_int, max_disc_tu;
6058                 char *pos;
6059
6060                 pos = param;
6061
6062                 min_disc_int = atoi(pos);
6063                 pos = os_strchr(pos, ' ');
6064                 if (pos == NULL)
6065                         return -1;
6066                 *pos++ = '\0';
6067
6068                 max_disc_int = atoi(pos);
6069                 pos = os_strchr(pos, ' ');
6070                 if (pos == NULL)
6071                         return -1;
6072                 *pos++ = '\0';
6073
6074                 max_disc_tu = atoi(pos);
6075
6076                 return p2p_set_disc_int(wpa_s->global->p2p, min_disc_int,
6077                                         max_disc_int, max_disc_tu);
6078         }
6079
6080         if (os_strcmp(cmd, "per_sta_psk") == 0) {
6081                 wpa_s->global->p2p_per_sta_psk = !!atoi(param);
6082                 return 0;
6083         }
6084
6085 #ifdef CONFIG_WPS_NFC
6086         if (os_strcmp(cmd, "nfc_tag") == 0)
6087                 return wpas_p2p_nfc_tag_enabled(wpa_s, !!atoi(param));
6088 #endif /* CONFIG_WPS_NFC */
6089
6090         if (os_strcmp(cmd, "disable_ip_addr_req") == 0) {
6091                 wpa_s->p2p_disable_ip_addr_req = !!atoi(param);
6092                 return 0;
6093         }
6094
6095         wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown P2P_SET field value '%s'",
6096                    cmd);
6097
6098         return -1;
6099 }
6100
6101
6102 static void p2p_ctrl_flush(struct wpa_supplicant *wpa_s)
6103 {
6104         os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
6105         wpa_s->force_long_sd = 0;
6106         wpas_p2p_stop_find(wpa_s);
6107         wpa_s->parent->p2ps_method_config_any = 0;
6108         if (wpa_s->global->p2p)
6109                 p2p_flush(wpa_s->global->p2p);
6110 }
6111
6112
6113 static int p2p_ctrl_presence_req(struct wpa_supplicant *wpa_s, char *cmd)
6114 {
6115         char *pos, *pos2;
6116         unsigned int dur1 = 0, int1 = 0, dur2 = 0, int2 = 0;
6117
6118         if (cmd[0]) {
6119                 pos = os_strchr(cmd, ' ');
6120                 if (pos == NULL)
6121                         return -1;
6122                 *pos++ = '\0';
6123                 dur1 = atoi(cmd);
6124
6125                 pos2 = os_strchr(pos, ' ');
6126                 if (pos2)
6127                         *pos2++ = '\0';
6128                 int1 = atoi(pos);
6129         } else
6130                 pos2 = NULL;
6131
6132         if (pos2) {
6133                 pos = os_strchr(pos2, ' ');
6134                 if (pos == NULL)
6135                         return -1;
6136                 *pos++ = '\0';
6137                 dur2 = atoi(pos2);
6138                 int2 = atoi(pos);
6139         }
6140
6141         return wpas_p2p_presence_req(wpa_s, dur1, int1, dur2, int2);
6142 }
6143
6144
6145 static int p2p_ctrl_ext_listen(struct wpa_supplicant *wpa_s, char *cmd)
6146 {
6147         char *pos;
6148         unsigned int period = 0, interval = 0;
6149
6150         if (cmd[0]) {
6151                 pos = os_strchr(cmd, ' ');
6152                 if (pos == NULL)
6153                         return -1;
6154                 *pos++ = '\0';
6155                 period = atoi(cmd);
6156                 interval = atoi(pos);
6157         }
6158
6159         return wpas_p2p_ext_listen(wpa_s, period, interval);
6160 }
6161
6162
6163 static int p2p_ctrl_remove_client(struct wpa_supplicant *wpa_s, const char *cmd)
6164 {
6165         const char *pos;
6166         u8 peer[ETH_ALEN];
6167         int iface_addr = 0;
6168
6169         pos = cmd;
6170         if (os_strncmp(pos, "iface=", 6) == 0) {
6171                 iface_addr = 1;
6172                 pos += 6;
6173         }
6174         if (hwaddr_aton(pos, peer))
6175                 return -1;
6176
6177         wpas_p2p_remove_client(wpa_s, peer, iface_addr);
6178         return 0;
6179 }
6180
6181 #endif /* CONFIG_P2P */
6182
6183
6184 static int * freq_range_to_channel_list(struct wpa_supplicant *wpa_s, char *val)
6185 {
6186         struct wpa_freq_range_list ranges;
6187         int *freqs = NULL;
6188         struct hostapd_hw_modes *mode;
6189         u16 i;
6190
6191         if (wpa_s->hw.modes == NULL)
6192                 return NULL;
6193
6194         os_memset(&ranges, 0, sizeof(ranges));
6195         if (freq_range_list_parse(&ranges, val) < 0)
6196                 return NULL;
6197
6198         for (i = 0; i < wpa_s->hw.num_modes; i++) {
6199                 int j;
6200
6201                 mode = &wpa_s->hw.modes[i];
6202                 for (j = 0; j < mode->num_channels; j++) {
6203                         unsigned int freq;
6204
6205                         if (mode->channels[j].flag & HOSTAPD_CHAN_DISABLED)
6206                                 continue;
6207
6208                         freq = mode->channels[j].freq;
6209                         if (!freq_range_list_includes(&ranges, freq))
6210                                 continue;
6211
6212                         int_array_add_unique(&freqs, freq);
6213                 }
6214         }
6215
6216         os_free(ranges.range);
6217         return freqs;
6218 }
6219
6220
6221 #ifdef CONFIG_INTERWORKING
6222
6223 static int ctrl_interworking_select(struct wpa_supplicant *wpa_s, char *param)
6224 {
6225         int auto_sel = 0;
6226         int *freqs = NULL;
6227
6228         if (param) {
6229                 char *pos;
6230
6231                 auto_sel = os_strstr(param, "auto") != NULL;
6232
6233                 pos = os_strstr(param, "freq=");
6234                 if (pos) {
6235                         freqs = freq_range_to_channel_list(wpa_s, pos + 5);
6236                         if (freqs == NULL)
6237                                 return -1;
6238                 }
6239
6240         }
6241
6242         return interworking_select(wpa_s, auto_sel, freqs);
6243 }
6244
6245
6246 static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst,
6247                                      int only_add)
6248 {
6249         u8 bssid[ETH_ALEN];
6250         struct wpa_bss *bss;
6251
6252         if (hwaddr_aton(dst, bssid)) {
6253                 wpa_printf(MSG_DEBUG, "Invalid BSSID '%s'", dst);
6254                 return -1;
6255         }
6256
6257         bss = wpa_bss_get_bssid(wpa_s, bssid);
6258         if (bss == NULL) {
6259                 wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
6260                            MAC2STR(bssid));
6261                 return -1;
6262         }
6263
6264         if (bss->ssid_len == 0) {
6265                 int found = 0;
6266
6267                 wpa_printf(MSG_DEBUG, "Selected BSS entry for " MACSTR
6268                            " does not have SSID information", MAC2STR(bssid));
6269
6270                 dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss,
6271                                          list) {
6272                         if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
6273                             bss->ssid_len > 0) {
6274                                 found = 1;
6275                                 break;
6276                         }
6277                 }
6278
6279                 if (!found)
6280                         return -1;
6281                 wpa_printf(MSG_DEBUG,
6282                            "Found another matching BSS entry with SSID");
6283         }
6284
6285         return interworking_connect(wpa_s, bss, only_add);
6286 }
6287
6288
6289 static int get_anqp(struct wpa_supplicant *wpa_s, char *dst)
6290 {
6291         u8 dst_addr[ETH_ALEN];
6292         int used;
6293         char *pos;
6294 #define MAX_ANQP_INFO_ID 100
6295         u16 id[MAX_ANQP_INFO_ID];
6296         size_t num_id = 0;
6297         u32 subtypes = 0;
6298
6299         used = hwaddr_aton2(dst, dst_addr);
6300         if (used < 0)
6301                 return -1;
6302         pos = dst + used;
6303         if (*pos == ' ')
6304                 pos++;
6305         while (num_id < MAX_ANQP_INFO_ID) {
6306                 if (os_strncmp(pos, "hs20:", 5) == 0) {
6307 #ifdef CONFIG_HS20
6308                         int num = atoi(pos + 5);
6309                         if (num <= 0 || num > 31)
6310                                 return -1;
6311                         subtypes |= BIT(num);
6312 #else /* CONFIG_HS20 */
6313                         return -1;
6314 #endif /* CONFIG_HS20 */
6315                 } else {
6316                         id[num_id] = atoi(pos);
6317                         if (id[num_id])
6318                                 num_id++;
6319                 }
6320                 pos = os_strchr(pos + 1, ',');
6321                 if (pos == NULL)
6322                         break;
6323                 pos++;
6324         }
6325
6326         if (num_id == 0)
6327                 return -1;
6328
6329         return anqp_send_req(wpa_s, dst_addr, id, num_id, subtypes);
6330 }
6331
6332
6333 static int gas_request(struct wpa_supplicant *wpa_s, char *cmd)
6334 {
6335         u8 dst_addr[ETH_ALEN];
6336         struct wpabuf *advproto, *query = NULL;
6337         int used, ret = -1;
6338         char *pos, *end;
6339         size_t len;
6340
6341         used = hwaddr_aton2(cmd, dst_addr);
6342         if (used < 0)
6343                 return -1;
6344
6345         pos = cmd + used;
6346         while (*pos == ' ')
6347                 pos++;
6348
6349         /* Advertisement Protocol ID */
6350         end = os_strchr(pos, ' ');
6351         if (end)
6352                 len = end - pos;
6353         else
6354                 len = os_strlen(pos);
6355         if (len & 0x01)
6356                 return -1;
6357         len /= 2;
6358         if (len == 0)
6359                 return -1;
6360         advproto = wpabuf_alloc(len);
6361         if (advproto == NULL)
6362                 return -1;
6363         if (hexstr2bin(pos, wpabuf_put(advproto, len), len) < 0)
6364                 goto fail;
6365
6366         if (end) {
6367                 /* Optional Query Request */
6368                 pos = end + 1;
6369                 while (*pos == ' ')
6370                         pos++;
6371
6372                 len = os_strlen(pos);
6373                 if (len) {
6374                         if (len & 0x01)
6375                                 goto fail;
6376                         len /= 2;
6377                         if (len == 0)
6378                                 goto fail;
6379                         query = wpabuf_alloc(len);
6380                         if (query == NULL)
6381                                 goto fail;
6382                         if (hexstr2bin(pos, wpabuf_put(query, len), len) < 0)
6383                                 goto fail;
6384                 }
6385         }
6386
6387         ret = gas_send_request(wpa_s, dst_addr, advproto, query);
6388
6389 fail:
6390         wpabuf_free(advproto);
6391         wpabuf_free(query);
6392
6393         return ret;
6394 }
6395
6396
6397 static int gas_response_get(struct wpa_supplicant *wpa_s, char *cmd, char *buf,
6398                             size_t buflen)
6399 {
6400         u8 addr[ETH_ALEN];
6401         int dialog_token;
6402         int used;
6403         char *pos;
6404         size_t resp_len, start, requested_len;
6405         struct wpabuf *resp;
6406         int ret;
6407
6408         used = hwaddr_aton2(cmd, addr);
6409         if (used < 0)
6410                 return -1;
6411
6412         pos = cmd + used;
6413         while (*pos == ' ')
6414                 pos++;
6415         dialog_token = atoi(pos);
6416
6417         if (wpa_s->last_gas_resp &&
6418             os_memcmp(addr, wpa_s->last_gas_addr, ETH_ALEN) == 0 &&
6419             dialog_token == wpa_s->last_gas_dialog_token)
6420                 resp = wpa_s->last_gas_resp;
6421         else if (wpa_s->prev_gas_resp &&
6422                  os_memcmp(addr, wpa_s->prev_gas_addr, ETH_ALEN) == 0 &&
6423                  dialog_token == wpa_s->prev_gas_dialog_token)
6424                 resp = wpa_s->prev_gas_resp;
6425         else
6426                 return -1;
6427
6428         resp_len = wpabuf_len(resp);
6429         start = 0;
6430         requested_len = resp_len;
6431
6432         pos = os_strchr(pos, ' ');
6433         if (pos) {
6434                 start = atoi(pos);
6435                 if (start > resp_len)
6436                         return os_snprintf(buf, buflen, "FAIL-Invalid range");
6437                 pos = os_strchr(pos, ',');
6438                 if (pos == NULL)
6439                         return -1;
6440                 pos++;
6441                 requested_len = atoi(pos);
6442                 if (start + requested_len > resp_len)
6443                         return os_snprintf(buf, buflen, "FAIL-Invalid range");
6444         }
6445
6446         if (requested_len * 2 + 1 > buflen)
6447                 return os_snprintf(buf, buflen, "FAIL-Too long response");
6448
6449         ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(resp) + start,
6450                                requested_len);
6451
6452         if (start + requested_len == resp_len) {
6453                 /*
6454                  * Free memory by dropping the response after it has been
6455                  * fetched.
6456                  */
6457                 if (resp == wpa_s->prev_gas_resp) {
6458                         wpabuf_free(wpa_s->prev_gas_resp);
6459                         wpa_s->prev_gas_resp = NULL;
6460                 } else {
6461                         wpabuf_free(wpa_s->last_gas_resp);
6462                         wpa_s->last_gas_resp = NULL;
6463                 }
6464         }
6465
6466         return ret;
6467 }
6468 #endif /* CONFIG_INTERWORKING */
6469
6470
6471 #ifdef CONFIG_HS20
6472
6473 static int get_hs20_anqp(struct wpa_supplicant *wpa_s, char *dst)
6474 {
6475         u8 dst_addr[ETH_ALEN];
6476         int used;
6477         char *pos;
6478         u32 subtypes = 0;
6479
6480         used = hwaddr_aton2(dst, dst_addr);
6481         if (used < 0)
6482                 return -1;
6483         pos = dst + used;
6484         if (*pos == ' ')
6485                 pos++;
6486         for (;;) {
6487                 int num = atoi(pos);
6488                 if (num <= 0 || num > 31)
6489                         return -1;
6490                 subtypes |= BIT(num);
6491                 pos = os_strchr(pos + 1, ',');
6492                 if (pos == NULL)
6493                         break;
6494                 pos++;
6495         }
6496
6497         if (subtypes == 0)
6498                 return -1;
6499
6500         return hs20_anqp_send_req(wpa_s, dst_addr, subtypes, NULL, 0, 0);
6501 }
6502
6503
6504 static int hs20_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6505                                     const u8 *addr, const char *realm)
6506 {
6507         u8 *buf;
6508         size_t rlen, len;
6509         int ret;
6510
6511         rlen = os_strlen(realm);
6512         len = 3 + rlen;
6513         buf = os_malloc(len);
6514         if (buf == NULL)
6515                 return -1;
6516         buf[0] = 1; /* NAI Home Realm Count */
6517         buf[1] = 0; /* Formatted in accordance with RFC 4282 */
6518         buf[2] = rlen;
6519         os_memcpy(buf + 3, realm, rlen);
6520
6521         ret = hs20_anqp_send_req(wpa_s, addr,
6522                                  BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
6523                                  buf, len, 0);
6524
6525         os_free(buf);
6526
6527         return ret;
6528 }
6529
6530
6531 static int hs20_get_nai_home_realm_list(struct wpa_supplicant *wpa_s,
6532                                         char *dst)
6533 {
6534         struct wpa_cred *cred = wpa_s->conf->cred;
6535         u8 dst_addr[ETH_ALEN];
6536         int used;
6537         u8 *buf;
6538         size_t len;
6539         int ret;
6540
6541         used = hwaddr_aton2(dst, dst_addr);
6542         if (used < 0)
6543                 return -1;
6544
6545         while (dst[used] == ' ')
6546                 used++;
6547         if (os_strncmp(dst + used, "realm=", 6) == 0)
6548                 return hs20_nai_home_realm_list(wpa_s, dst_addr,
6549                                                 dst + used + 6);
6550
6551         len = os_strlen(dst + used);
6552
6553         if (len == 0 && cred && cred->realm)
6554                 return hs20_nai_home_realm_list(wpa_s, dst_addr, cred->realm);
6555
6556         if (len & 1)
6557                 return -1;
6558         len /= 2;
6559         buf = os_malloc(len);
6560         if (buf == NULL)
6561                 return -1;
6562         if (hexstr2bin(dst + used, buf, len) < 0) {
6563                 os_free(buf);
6564                 return -1;
6565         }
6566
6567         ret = hs20_anqp_send_req(wpa_s, dst_addr,
6568                                  BIT(HS20_STYPE_NAI_HOME_REALM_QUERY),
6569                                  buf, len, 0);
6570         os_free(buf);
6571
6572         return ret;
6573 }
6574
6575
6576 static int get_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd, char *reply,
6577                          int buflen)
6578 {
6579         u8 dst_addr[ETH_ALEN];
6580         int used;
6581         char *ctx = NULL, *icon, *poffset, *psize;
6582
6583         used = hwaddr_aton2(cmd, dst_addr);
6584         if (used < 0)
6585                 return -1;
6586         cmd += used;
6587
6588         icon = str_token(cmd, " ", &ctx);
6589         poffset = str_token(cmd, " ", &ctx);
6590         psize = str_token(cmd, " ", &ctx);
6591         if (!icon || !poffset || !psize)
6592                 return -1;
6593
6594         wpa_s->fetch_osu_icon_in_progress = 0;
6595         return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize),
6596                              reply, buflen);
6597 }
6598
6599
6600 static int del_hs20_icon(struct wpa_supplicant *wpa_s, char *cmd)
6601 {
6602         u8 dst_addr[ETH_ALEN];
6603         int used;
6604         char *icon;
6605
6606         if (!cmd[0])
6607                 return hs20_del_icon(wpa_s, NULL, NULL);
6608
6609         used = hwaddr_aton2(cmd, dst_addr);
6610         if (used < 0)
6611                 return -1;
6612
6613         while (cmd[used] == ' ')
6614                 used++;
6615         icon = cmd[used] ? &cmd[used] : NULL;
6616
6617         return hs20_del_icon(wpa_s, dst_addr, icon);
6618 }
6619
6620
6621 static int hs20_icon_request(struct wpa_supplicant *wpa_s, char *cmd, int inmem)
6622 {
6623         u8 dst_addr[ETH_ALEN];
6624         int used;
6625         char *icon;
6626
6627         used = hwaddr_aton2(cmd, dst_addr);
6628         if (used < 0)
6629                 return -1;
6630
6631         while (cmd[used] == ' ')
6632                 used++;
6633         icon = &cmd[used];
6634
6635         wpa_s->fetch_osu_icon_in_progress = 0;
6636         return hs20_anqp_send_req(wpa_s, dst_addr, BIT(HS20_STYPE_ICON_REQUEST),
6637                                   (u8 *) icon, os_strlen(icon), inmem);
6638 }
6639
6640 #endif /* CONFIG_HS20 */
6641
6642
6643 #ifdef CONFIG_AUTOSCAN
6644
6645 static int wpa_supplicant_ctrl_iface_autoscan(struct wpa_supplicant *wpa_s,
6646                                               char *cmd)
6647 {
6648         enum wpa_states state = wpa_s->wpa_state;
6649         char *new_params = NULL;
6650
6651         if (os_strlen(cmd) > 0) {
6652                 new_params = os_strdup(cmd);
6653                 if (new_params == NULL)
6654                         return -1;
6655         }
6656
6657         os_free(wpa_s->conf->autoscan);
6658         wpa_s->conf->autoscan = new_params;
6659
6660         if (wpa_s->conf->autoscan == NULL)
6661                 autoscan_deinit(wpa_s);
6662         else if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
6663                 autoscan_init(wpa_s, 1);
6664         else if (state == WPA_SCANNING)
6665                 wpa_supplicant_reinit_autoscan(wpa_s);
6666
6667         return 0;
6668 }
6669
6670 #endif /* CONFIG_AUTOSCAN */
6671
6672
6673 #ifdef CONFIG_WNM
6674
6675 static int wpas_ctrl_iface_wnm_sleep(struct wpa_supplicant *wpa_s, char *cmd)
6676 {
6677         int enter;
6678         int intval = 0;
6679         char *pos;
6680         int ret;
6681         struct wpabuf *tfs_req = NULL;
6682
6683         if (os_strncmp(cmd, "enter", 5) == 0)
6684                 enter = 1;
6685         else if (os_strncmp(cmd, "exit", 4) == 0)
6686                 enter = 0;
6687         else
6688                 return -1;
6689
6690         pos = os_strstr(cmd, " interval=");
6691         if (pos)
6692                 intval = atoi(pos + 10);
6693
6694         pos = os_strstr(cmd, " tfs_req=");
6695         if (pos) {
6696                 char *end;
6697                 size_t len;
6698                 pos += 9;
6699                 end = os_strchr(pos, ' ');
6700                 if (end)
6701                         len = end - pos;
6702                 else
6703                         len = os_strlen(pos);
6704                 if (len & 1)
6705                         return -1;
6706                 len /= 2;
6707                 tfs_req = wpabuf_alloc(len);
6708                 if (tfs_req == NULL)
6709                         return -1;
6710                 if (hexstr2bin(pos, wpabuf_put(tfs_req, len), len) < 0) {
6711                         wpabuf_free(tfs_req);
6712                         return -1;
6713                 }
6714         }
6715
6716         ret = ieee802_11_send_wnmsleep_req(wpa_s, enter ? WNM_SLEEP_MODE_ENTER :
6717                                            WNM_SLEEP_MODE_EXIT, intval,
6718                                            tfs_req);
6719         wpabuf_free(tfs_req);
6720
6721         return ret;
6722 }
6723
6724
6725 static int wpas_ctrl_iface_wnm_bss_query(struct wpa_supplicant *wpa_s, char *cmd)
6726 {
6727         int query_reason;
6728
6729         query_reason = atoi(cmd);
6730
6731         wpa_printf(MSG_DEBUG, "CTRL_IFACE: WNM_BSS_QUERY query_reason=%d",
6732                    query_reason);
6733
6734         return wnm_send_bss_transition_mgmt_query(wpa_s, query_reason);
6735 }
6736
6737 #endif /* CONFIG_WNM */
6738
6739
6740 static int wpa_supplicant_signal_poll(struct wpa_supplicant *wpa_s, char *buf,
6741                                       size_t buflen)
6742 {
6743         struct wpa_signal_info si;
6744         int ret;
6745         char *pos, *end;
6746
6747         ret = wpa_drv_signal_poll(wpa_s, &si);
6748         if (ret)
6749                 return -1;
6750
6751         pos = buf;
6752         end = buf + buflen;
6753
6754         ret = os_snprintf(pos, end - pos, "RSSI=%d\nLINKSPEED=%d\n"
6755                           "NOISE=%d\nFREQUENCY=%u\n",
6756                           si.current_signal, si.current_txrate / 1000,
6757                           si.current_noise, si.frequency);
6758         if (os_snprintf_error(end - pos, ret))
6759                 return -1;
6760         pos += ret;
6761
6762         if (si.chanwidth != CHAN_WIDTH_UNKNOWN) {
6763                 ret = os_snprintf(pos, end - pos, "WIDTH=%s\n",
6764                                   channel_width_to_string(si.chanwidth));
6765                 if (os_snprintf_error(end - pos, ret))
6766                         return -1;
6767                 pos += ret;
6768         }
6769
6770         if (si.center_frq1 > 0 && si.center_frq2 > 0) {
6771                 ret = os_snprintf(pos, end - pos,
6772                                   "CENTER_FRQ1=%d\nCENTER_FRQ2=%d\n",
6773                                   si.center_frq1, si.center_frq2);
6774                 if (os_snprintf_error(end - pos, ret))
6775                         return -1;
6776                 pos += ret;
6777         }
6778
6779         if (si.avg_signal) {
6780                 ret = os_snprintf(pos, end - pos,
6781                                   "AVG_RSSI=%d\n", si.avg_signal);
6782                 if (os_snprintf_error(end - pos, ret))
6783                         return -1;
6784                 pos += ret;
6785         }
6786
6787         if (si.avg_beacon_signal) {
6788                 ret = os_snprintf(pos, end - pos,
6789                                   "AVG_BEACON_RSSI=%d\n", si.avg_beacon_signal);
6790                 if (os_snprintf_error(end - pos, ret))
6791                         return -1;
6792                 pos += ret;
6793         }
6794
6795         return pos - buf;
6796 }
6797
6798
6799 static int wpas_ctrl_iface_signal_monitor(struct wpa_supplicant *wpa_s,
6800                                           const char *cmd)
6801 {
6802         const char *pos;
6803         int threshold = 0;
6804         int hysteresis = 0;
6805
6806         if (wpa_s->bgscan && wpa_s->bgscan_priv) {
6807                 wpa_printf(MSG_DEBUG,
6808                            "Reject SIGNAL_MONITOR command - bgscan is active");
6809                 return -1;
6810         }
6811         pos = os_strstr(cmd, "THRESHOLD=");
6812         if (pos)
6813                 threshold = atoi(pos + 10);
6814         pos = os_strstr(cmd, "HYSTERESIS=");
6815         if (pos)
6816                 hysteresis = atoi(pos + 11);
6817         return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis);
6818 }
6819
6820
6821 static int wpas_ctrl_iface_get_pref_freq_list(
6822         struct wpa_supplicant *wpa_s, char *cmd, char *buf, size_t buflen)
6823 {
6824         unsigned int freq_list[100], num = 100, i;
6825         int ret;
6826         enum wpa_driver_if_type iface_type;
6827         char *pos, *end;
6828
6829         pos = buf;
6830         end = buf + buflen;
6831
6832         /* buf: "<interface_type>" */
6833         if (os_strcmp(cmd, "STATION") == 0)
6834                 iface_type = WPA_IF_STATION;
6835         else if (os_strcmp(cmd, "AP") == 0)
6836                 iface_type = WPA_IF_AP_BSS;
6837         else if (os_strcmp(cmd, "P2P_GO") == 0)
6838                 iface_type = WPA_IF_P2P_GO;
6839         else if (os_strcmp(cmd, "P2P_CLIENT") == 0)
6840                 iface_type = WPA_IF_P2P_CLIENT;
6841         else if (os_strcmp(cmd, "IBSS") == 0)
6842                 iface_type = WPA_IF_IBSS;
6843         else if (os_strcmp(cmd, "TDLS") == 0)
6844                 iface_type = WPA_IF_TDLS;
6845         else
6846                 return -1;
6847
6848         wpa_printf(MSG_DEBUG,
6849                    "CTRL_IFACE: GET_PREF_FREQ_LIST iface_type=%d (%s)",
6850                    iface_type, buf);
6851
6852         ret = wpa_drv_get_pref_freq_list(wpa_s, iface_type, &num, freq_list);
6853         if (ret)
6854                 return -1;
6855
6856         for (i = 0; i < num; i++) {
6857                 ret = os_snprintf(pos, end - pos, "%s%u",
6858                                   i > 0 ? "," : "", freq_list[i]);
6859                 if (os_snprintf_error(end - pos, ret))
6860                         return -1;
6861                 pos += ret;
6862         }
6863
6864         return pos - buf;
6865 }
6866
6867
6868 static int wpa_supplicant_pktcnt_poll(struct wpa_supplicant *wpa_s, char *buf,
6869                                       size_t buflen)
6870 {
6871         struct hostap_sta_driver_data sta;
6872         int ret;
6873
6874         ret = wpa_drv_pktcnt_poll(wpa_s, &sta);
6875         if (ret)
6876                 return -1;
6877
6878         ret = os_snprintf(buf, buflen, "TXGOOD=%lu\nTXBAD=%lu\nRXGOOD=%lu\n",
6879                           sta.tx_packets, sta.tx_retry_failed, sta.rx_packets);
6880         if (os_snprintf_error(buflen, ret))
6881                 return -1;
6882         return ret;
6883 }
6884
6885
6886 #ifdef ANDROID
6887 static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6888                                      char *buf, size_t buflen)
6889 {
6890         int ret;
6891
6892         ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen);
6893         if (ret == 0) {
6894                 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) {
6895                         struct p2p_data *p2p = wpa_s->global->p2p;
6896                         if (p2p) {
6897                                 char country[3];
6898                                 country[0] = cmd[8];
6899                                 country[1] = cmd[9];
6900                                 country[2] = 0x04;
6901                                 p2p_set_country(p2p, country);
6902                         }
6903                 }
6904                 ret = os_snprintf(buf, buflen, "%s\n", "OK");
6905                 if (os_snprintf_error(buflen, ret))
6906                         ret = -1;
6907         }
6908         return ret;
6909 }
6910 #endif /* ANDROID */
6911
6912
6913 static int wpa_supplicant_vendor_cmd(struct wpa_supplicant *wpa_s, char *cmd,
6914                                      char *buf, size_t buflen)
6915 {
6916         int ret;
6917         char *pos;
6918         u8 *data = NULL;
6919         unsigned int vendor_id, subcmd;
6920         struct wpabuf *reply;
6921         size_t data_len = 0;
6922
6923         /* cmd: <vendor id> <subcommand id> [<hex formatted data>] */
6924         vendor_id = strtoul(cmd, &pos, 16);
6925         if (!isblank((unsigned char) *pos))
6926                 return -EINVAL;
6927
6928         subcmd = strtoul(pos, &pos, 10);
6929
6930         if (*pos != '\0') {
6931                 if (!isblank((unsigned char) *pos++))
6932                         return -EINVAL;
6933                 data_len = os_strlen(pos);
6934         }
6935
6936         if (data_len) {
6937                 data_len /= 2;
6938                 data = os_malloc(data_len);
6939                 if (!data)
6940                         return -1;
6941
6942                 if (hexstr2bin(pos, data, data_len)) {
6943                         wpa_printf(MSG_DEBUG,
6944                                    "Vendor command: wrong parameter format");
6945                         os_free(data);
6946                         return -EINVAL;
6947                 }
6948         }
6949
6950         reply = wpabuf_alloc((buflen - 1) / 2);
6951         if (!reply) {
6952                 os_free(data);
6953                 return -1;
6954         }
6955
6956         ret = wpa_drv_vendor_cmd(wpa_s, vendor_id, subcmd, data, data_len,
6957                                  reply);
6958
6959         if (ret == 0)
6960                 ret = wpa_snprintf_hex(buf, buflen, wpabuf_head_u8(reply),
6961                                        wpabuf_len(reply));
6962
6963         wpabuf_free(reply);
6964         os_free(data);
6965
6966         return ret;
6967 }
6968
6969
6970 static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
6971 {
6972 #ifdef CONFIG_P2P
6973         struct wpa_supplicant *p2p_wpa_s = wpa_s->global->p2p_init_wpa_s ?
6974                 wpa_s->global->p2p_init_wpa_s : wpa_s;
6975 #endif /* CONFIG_P2P */
6976
6977         wpa_dbg(wpa_s, MSG_DEBUG, "Flush all wpa_supplicant state");
6978
6979         wpas_abort_ongoing_scan(wpa_s);
6980
6981         if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
6982                 /*
6983                  * Avoid possible auto connect re-connection on getting
6984                  * disconnected due to state flush.
6985                  */
6986                 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
6987         }
6988
6989 #ifdef CONFIG_P2P
6990         wpas_p2p_group_remove(p2p_wpa_s, "*");
6991         wpas_p2p_cancel(p2p_wpa_s);
6992         p2p_ctrl_flush(p2p_wpa_s);
6993         wpas_p2p_service_flush(p2p_wpa_s);
6994         p2p_wpa_s->global->p2p_disabled = 0;
6995         p2p_wpa_s->global->p2p_per_sta_psk = 0;
6996         p2p_wpa_s->conf->num_sec_device_types = 0;
6997         p2p_wpa_s->p2p_disable_ip_addr_req = 0;
6998         os_free(p2p_wpa_s->global->p2p_go_avoid_freq.range);
6999         p2p_wpa_s->global->p2p_go_avoid_freq.range = NULL;
7000         p2p_wpa_s->global->p2p_go_avoid_freq.num = 0;
7001         p2p_wpa_s->global->pending_p2ps_group = 0;
7002         p2p_wpa_s->global->pending_p2ps_group_freq = 0;
7003 #endif /* CONFIG_P2P */
7004
7005 #ifdef CONFIG_WPS_TESTING
7006         wps_version_number = 0x20;
7007         wps_testing_dummy_cred = 0;
7008         wps_corrupt_pkhash = 0;
7009         wps_force_auth_types_in_use = 0;
7010         wps_force_encr_types_in_use = 0;
7011 #endif /* CONFIG_WPS_TESTING */
7012 #ifdef CONFIG_WPS
7013         wpa_s->wps_fragment_size = 0;
7014         wpas_wps_cancel(wpa_s);
7015         wps_registrar_flush(wpa_s->wps->registrar);
7016 #endif /* CONFIG_WPS */
7017         wpa_s->after_wps = 0;
7018         wpa_s->known_wps_freq = 0;
7019
7020 #ifdef CONFIG_TDLS
7021 #ifdef CONFIG_TDLS_TESTING
7022         extern unsigned int tdls_testing;
7023         tdls_testing = 0;
7024 #endif /* CONFIG_TDLS_TESTING */
7025         wpa_drv_tdls_oper(wpa_s, TDLS_ENABLE, NULL);
7026         wpa_tdls_enable(wpa_s->wpa, 1);
7027 #endif /* CONFIG_TDLS */
7028
7029         eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
7030         wpa_supplicant_stop_countermeasures(wpa_s, NULL);
7031
7032         wpa_s->no_keep_alive = 0;
7033         wpa_s->own_disconnect_req = 0;
7034
7035         os_free(wpa_s->disallow_aps_bssid);
7036         wpa_s->disallow_aps_bssid = NULL;
7037         wpa_s->disallow_aps_bssid_count = 0;
7038         os_free(wpa_s->disallow_aps_ssid);
7039         wpa_s->disallow_aps_ssid = NULL;
7040         wpa_s->disallow_aps_ssid_count = 0;
7041
7042         wpa_s->set_sta_uapsd = 0;
7043         wpa_s->sta_uapsd = 0;
7044
7045         wpa_drv_radio_disable(wpa_s, 0);
7046         wpa_blacklist_clear(wpa_s);
7047         wpa_s->extra_blacklist_count = 0;
7048         wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all");
7049         wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all");
7050         wpa_config_flush_blobs(wpa_s->conf);
7051         wpa_s->conf->auto_interworking = 0;
7052         wpa_s->conf->okc = 0;
7053
7054         wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
7055         rsn_preauth_deinit(wpa_s->wpa);
7056
7057         wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200);
7058         wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70);
7059         wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, 60);
7060         eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
7061
7062         radio_remove_works(wpa_s, NULL, 1);
7063         wpa_s->ext_work_in_progress = 0;
7064
7065         wpa_s->next_ssid = NULL;
7066
7067 #ifdef CONFIG_INTERWORKING
7068 #ifdef CONFIG_HS20
7069         hs20_cancel_fetch_osu(wpa_s);
7070         hs20_del_icon(wpa_s, NULL, NULL);
7071 #endif /* CONFIG_HS20 */
7072 #endif /* CONFIG_INTERWORKING */
7073
7074         wpa_s->ext_mgmt_frame_handling = 0;
7075         wpa_s->ext_eapol_frame_io = 0;
7076 #ifdef CONFIG_TESTING_OPTIONS
7077         wpa_s->extra_roc_dur = 0;
7078         wpa_s->test_failure = WPAS_TEST_FAILURE_NONE;
7079         wpa_s->p2p_go_csa_on_inv = 0;
7080         wpa_sm_set_test_assoc_ie(wpa_s->wpa, NULL);
7081 #endif /* CONFIG_TESTING_OPTIONS */
7082
7083         wpa_s->disconnected = 0;
7084         os_free(wpa_s->next_scan_freqs);
7085         wpa_s->next_scan_freqs = NULL;
7086
7087         wpa_bss_flush(wpa_s);
7088         if (!dl_list_empty(&wpa_s->bss)) {
7089                 wpa_printf(MSG_DEBUG,
7090                            "BSS table not empty after flush: %u entries, current_bss=%p bssid="
7091                            MACSTR " pending_bssid=" MACSTR,
7092                            dl_list_len(&wpa_s->bss), wpa_s->current_bss,
7093                            MAC2STR(wpa_s->bssid),
7094                            MAC2STR(wpa_s->pending_bssid));
7095         }
7096
7097         eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
7098         wpa_s->wnmsleep_used = 0;
7099 }
7100
7101
7102 static int wpas_ctrl_radio_work_show(struct wpa_supplicant *wpa_s,
7103                                      char *buf, size_t buflen)
7104 {
7105         struct wpa_radio_work *work;
7106         char *pos, *end;
7107         struct os_reltime now, diff;
7108
7109         pos = buf;
7110         end = buf + buflen;
7111
7112         os_get_reltime(&now);
7113
7114         dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7115         {
7116                 int ret;
7117
7118                 os_reltime_sub(&now, &work->time, &diff);
7119                 ret = os_snprintf(pos, end - pos, "%s@%s:%u:%u:%ld.%06ld\n",
7120                                   work->type, work->wpa_s->ifname, work->freq,
7121                                   work->started, diff.sec, diff.usec);
7122                 if (os_snprintf_error(end - pos, ret))
7123                         break;
7124                 pos += ret;
7125         }
7126
7127         return pos - buf;
7128 }
7129
7130
7131 static void wpas_ctrl_radio_work_timeout(void *eloop_ctx, void *timeout_ctx)
7132 {
7133         struct wpa_radio_work *work = eloop_ctx;
7134         struct wpa_external_work *ework = work->ctx;
7135
7136         wpa_dbg(work->wpa_s, MSG_DEBUG,
7137                 "Timing out external radio work %u (%s)",
7138                 ework->id, work->type);
7139         wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_TIMEOUT "%u", ework->id);
7140         work->wpa_s->ext_work_in_progress = 0;
7141         radio_work_done(work);
7142         os_free(ework);
7143 }
7144
7145
7146 static void wpas_ctrl_radio_work_cb(struct wpa_radio_work *work, int deinit)
7147 {
7148         struct wpa_external_work *ework = work->ctx;
7149
7150         if (deinit) {
7151                 if (work->started)
7152                         eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7153                                              work, NULL);
7154
7155                 os_free(ework);
7156                 return;
7157         }
7158
7159         wpa_dbg(work->wpa_s, MSG_DEBUG, "Starting external radio work %u (%s)",
7160                 ework->id, ework->type);
7161         wpa_msg(work->wpa_s, MSG_INFO, EXT_RADIO_WORK_START "%u", ework->id);
7162         work->wpa_s->ext_work_in_progress = 1;
7163         if (!ework->timeout)
7164                 ework->timeout = 10;
7165         eloop_register_timeout(ework->timeout, 0, wpas_ctrl_radio_work_timeout,
7166                                work, NULL);
7167 }
7168
7169
7170 static int wpas_ctrl_radio_work_add(struct wpa_supplicant *wpa_s, char *cmd,
7171                                     char *buf, size_t buflen)
7172 {
7173         struct wpa_external_work *ework;
7174         char *pos, *pos2;
7175         size_t type_len;
7176         int ret;
7177         unsigned int freq = 0;
7178
7179         /* format: <name> [freq=<MHz>] [timeout=<seconds>] */
7180
7181         ework = os_zalloc(sizeof(*ework));
7182         if (ework == NULL)
7183                 return -1;
7184
7185         pos = os_strchr(cmd, ' ');
7186         if (pos) {
7187                 type_len = pos - cmd;
7188                 pos++;
7189
7190                 pos2 = os_strstr(pos, "freq=");
7191                 if (pos2)
7192                         freq = atoi(pos2 + 5);
7193
7194                 pos2 = os_strstr(pos, "timeout=");
7195                 if (pos2)
7196                         ework->timeout = atoi(pos2 + 8);
7197         } else {
7198                 type_len = os_strlen(cmd);
7199         }
7200         if (4 + type_len >= sizeof(ework->type))
7201                 type_len = sizeof(ework->type) - 4 - 1;
7202         os_strlcpy(ework->type, "ext:", sizeof(ework->type));
7203         os_memcpy(ework->type + 4, cmd, type_len);
7204         ework->type[4 + type_len] = '\0';
7205
7206         wpa_s->ext_work_id++;
7207         if (wpa_s->ext_work_id == 0)
7208                 wpa_s->ext_work_id++;
7209         ework->id = wpa_s->ext_work_id;
7210
7211         if (radio_add_work(wpa_s, freq, ework->type, 0, wpas_ctrl_radio_work_cb,
7212                            ework) < 0) {
7213                 os_free(ework);
7214                 return -1;
7215         }
7216
7217         ret = os_snprintf(buf, buflen, "%u", ework->id);
7218         if (os_snprintf_error(buflen, ret))
7219                 return -1;
7220         return ret;
7221 }
7222
7223
7224 static int wpas_ctrl_radio_work_done(struct wpa_supplicant *wpa_s, char *cmd)
7225 {
7226         struct wpa_radio_work *work;
7227         unsigned int id = atoi(cmd);
7228
7229         dl_list_for_each(work, &wpa_s->radio->work, struct wpa_radio_work, list)
7230         {
7231                 struct wpa_external_work *ework;
7232
7233                 if (os_strncmp(work->type, "ext:", 4) != 0)
7234                         continue;
7235                 ework = work->ctx;
7236                 if (id && ework->id != id)
7237                         continue;
7238                 wpa_dbg(wpa_s, MSG_DEBUG,
7239                         "Completed external radio work %u (%s)",
7240                         ework->id, ework->type);
7241                 eloop_cancel_timeout(wpas_ctrl_radio_work_timeout, work, NULL);
7242                 wpa_s->ext_work_in_progress = 0;
7243                 radio_work_done(work);
7244                 os_free(ework);
7245                 return 3; /* "OK\n" */
7246         }
7247
7248         return -1;
7249 }
7250
7251
7252 static int wpas_ctrl_radio_work(struct wpa_supplicant *wpa_s, char *cmd,
7253                                 char *buf, size_t buflen)
7254 {
7255         if (os_strcmp(cmd, "show") == 0)
7256                 return wpas_ctrl_radio_work_show(wpa_s, buf, buflen);
7257         if (os_strncmp(cmd, "add ", 4) == 0)
7258                 return wpas_ctrl_radio_work_add(wpa_s, cmd + 4, buf, buflen);
7259         if (os_strncmp(cmd, "done ", 5) == 0)
7260                 return wpas_ctrl_radio_work_done(wpa_s, cmd + 4);
7261         return -1;
7262 }
7263
7264
7265 void wpas_ctrl_radio_work_flush(struct wpa_supplicant *wpa_s)
7266 {
7267         struct wpa_radio_work *work, *tmp;
7268
7269         if (!wpa_s || !wpa_s->radio)
7270                 return;
7271
7272         dl_list_for_each_safe(work, tmp, &wpa_s->radio->work,
7273                               struct wpa_radio_work, list) {
7274                 struct wpa_external_work *ework;
7275
7276                 if (os_strncmp(work->type, "ext:", 4) != 0)
7277                         continue;
7278                 ework = work->ctx;
7279                 wpa_dbg(wpa_s, MSG_DEBUG,
7280                         "Flushing%s external radio work %u (%s)",
7281                         work->started ? " started" : "", ework->id,
7282                         ework->type);
7283                 if (work->started)
7284                         eloop_cancel_timeout(wpas_ctrl_radio_work_timeout,
7285                                              work, NULL);
7286                 radio_work_done(work);
7287                 os_free(ework);
7288         }
7289 }
7290
7291
7292 static void wpas_ctrl_eapol_response(void *eloop_ctx, void *timeout_ctx)
7293 {
7294         struct wpa_supplicant *wpa_s = eloop_ctx;
7295         eapol_sm_notify_ctrl_response(wpa_s->eapol);
7296 }
7297
7298
7299 static int scan_id_list_parse(struct wpa_supplicant *wpa_s, const char *value,
7300                               unsigned int *scan_id_count, int scan_id[])
7301 {
7302         const char *pos = value;
7303
7304         while (pos) {
7305                 if (*pos == ' ' || *pos == '\0')
7306                         break;
7307                 if (*scan_id_count == MAX_SCAN_ID)
7308                         return -1;
7309                 scan_id[(*scan_id_count)++] = atoi(pos);
7310                 pos = os_strchr(pos, ',');
7311                 if (pos)
7312                         pos++;
7313         }
7314
7315         return 0;
7316 }
7317
7318
7319 static void wpas_ctrl_scan(struct wpa_supplicant *wpa_s, char *params,
7320                            char *reply, int reply_size, int *reply_len)
7321 {
7322         char *pos;
7323         unsigned int manual_scan_passive = 0;
7324         unsigned int manual_scan_use_id = 0;
7325         unsigned int manual_scan_only_new = 0;
7326         unsigned int scan_only = 0;
7327         unsigned int scan_id_count = 0;
7328         int scan_id[MAX_SCAN_ID];
7329         void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
7330                                  struct wpa_scan_results *scan_res);
7331         int *manual_scan_freqs = NULL;
7332         struct wpa_ssid_value *ssid = NULL, *ns;
7333         unsigned int ssid_count = 0;
7334
7335         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
7336                 *reply_len = -1;
7337                 return;
7338         }
7339
7340         if (radio_work_pending(wpa_s, "scan")) {
7341                 wpa_printf(MSG_DEBUG,
7342                            "Pending scan scheduled - reject new request");
7343                 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7344                 return;
7345         }
7346
7347 #ifdef CONFIG_INTERWORKING
7348         if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select) {
7349                 wpa_printf(MSG_DEBUG,
7350                            "Interworking select in progress - reject new scan");
7351                 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7352                 return;
7353         }
7354 #endif /* CONFIG_INTERWORKING */
7355
7356         if (params) {
7357                 if (os_strncasecmp(params, "TYPE=ONLY", 9) == 0)
7358                         scan_only = 1;
7359
7360                 pos = os_strstr(params, "freq=");
7361                 if (pos) {
7362                         manual_scan_freqs = freq_range_to_channel_list(wpa_s,
7363                                                                        pos + 5);
7364                         if (manual_scan_freqs == NULL) {
7365                                 *reply_len = -1;
7366                                 goto done;
7367                         }
7368                 }
7369
7370                 pos = os_strstr(params, "passive=");
7371                 if (pos)
7372                         manual_scan_passive = !!atoi(pos + 8);
7373
7374                 pos = os_strstr(params, "use_id=");
7375                 if (pos)
7376                         manual_scan_use_id = atoi(pos + 7);
7377
7378                 pos = os_strstr(params, "only_new=1");
7379                 if (pos)
7380                         manual_scan_only_new = 1;
7381
7382                 pos = os_strstr(params, "scan_id=");
7383                 if (pos && scan_id_list_parse(wpa_s, pos + 8, &scan_id_count,
7384                                               scan_id) < 0) {
7385                         *reply_len = -1;
7386                         goto done;
7387                 }
7388
7389                 pos = params;
7390                 while (pos && *pos != '\0') {
7391                         if (os_strncmp(pos, "ssid ", 5) == 0) {
7392                                 char *end;
7393
7394                                 pos += 5;
7395                                 end = pos;
7396                                 while (*end) {
7397                                         if (*end == '\0' || *end == ' ')
7398                                                 break;
7399                                         end++;
7400                                 }
7401
7402                                 ns = os_realloc_array(
7403                                         ssid, ssid_count + 1,
7404                                         sizeof(struct wpa_ssid_value));
7405                                 if (ns == NULL) {
7406                                         *reply_len = -1;
7407                                         goto done;
7408                                 }
7409                                 ssid = ns;
7410
7411                                 if ((end - pos) & 0x01 ||
7412                                     end - pos > 2 * SSID_MAX_LEN ||
7413                                     hexstr2bin(pos, ssid[ssid_count].ssid,
7414                                                (end - pos) / 2) < 0) {
7415                                         wpa_printf(MSG_DEBUG,
7416                                                    "Invalid SSID value '%s'",
7417                                                    pos);
7418                                         *reply_len = -1;
7419                                         goto done;
7420                                 }
7421                                 ssid[ssid_count].ssid_len = (end - pos) / 2;
7422                                 wpa_hexdump_ascii(MSG_DEBUG, "scan SSID",
7423                                                   ssid[ssid_count].ssid,
7424                                                   ssid[ssid_count].ssid_len);
7425                                 ssid_count++;
7426                                 pos = end;
7427                         }
7428
7429                         pos = os_strchr(pos, ' ');
7430                         if (pos)
7431                                 pos++;
7432                 }
7433         }
7434
7435         wpa_s->num_ssids_from_scan_req = ssid_count;
7436         os_free(wpa_s->ssids_from_scan_req);
7437         if (ssid_count) {
7438                 wpa_s->ssids_from_scan_req = ssid;
7439                 ssid = NULL;
7440         } else {
7441                 wpa_s->ssids_from_scan_req = NULL;
7442         }
7443
7444         if (scan_only)
7445                 scan_res_handler = scan_only_handler;
7446         else if (wpa_s->scan_res_handler == scan_only_handler)
7447                 scan_res_handler = NULL;
7448         else
7449                 scan_res_handler = wpa_s->scan_res_handler;
7450
7451         if (!wpa_s->sched_scanning && !wpa_s->scanning &&
7452             ((wpa_s->wpa_state <= WPA_SCANNING) ||
7453              (wpa_s->wpa_state == WPA_COMPLETED))) {
7454                 wpa_s->manual_scan_passive = manual_scan_passive;
7455                 wpa_s->manual_scan_use_id = manual_scan_use_id;
7456                 wpa_s->manual_scan_only_new = manual_scan_only_new;
7457                 wpa_s->scan_id_count = scan_id_count;
7458                 os_memcpy(wpa_s->scan_id, scan_id, scan_id_count * sizeof(int));
7459                 wpa_s->scan_res_handler = scan_res_handler;
7460                 os_free(wpa_s->manual_scan_freqs);
7461                 wpa_s->manual_scan_freqs = manual_scan_freqs;
7462                 manual_scan_freqs = NULL;
7463
7464                 wpa_s->normal_scans = 0;
7465                 wpa_s->scan_req = MANUAL_SCAN_REQ;
7466                 wpa_s->after_wps = 0;
7467                 wpa_s->known_wps_freq = 0;
7468                 wpa_supplicant_req_scan(wpa_s, 0, 0);
7469                 if (wpa_s->manual_scan_use_id) {
7470                         wpa_s->manual_scan_id++;
7471                         wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7472                                 wpa_s->manual_scan_id);
7473                         *reply_len = os_snprintf(reply, reply_size, "%u\n",
7474                                                  wpa_s->manual_scan_id);
7475                 }
7476         } else if (wpa_s->sched_scanning) {
7477                 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
7487                 wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to allow requested full scan to proceed");
7488                 wpa_supplicant_cancel_sched_scan(wpa_s);
7489                 wpa_s->scan_req = MANUAL_SCAN_REQ;
7490                 wpa_supplicant_req_scan(wpa_s, 0, 0);
7491                 if (wpa_s->manual_scan_use_id) {
7492                         wpa_s->manual_scan_id++;
7493                         *reply_len = os_snprintf(reply, reply_size, "%u\n",
7494                                                  wpa_s->manual_scan_id);
7495                         wpa_dbg(wpa_s, MSG_DEBUG, "Assigned scan id %u",
7496                                 wpa_s->manual_scan_id);
7497                 }
7498         } else {
7499                 wpa_printf(MSG_DEBUG, "Ongoing scan action - reject new request");
7500                 *reply_len = os_snprintf(reply, reply_size, "FAIL-BUSY\n");
7501         }
7502
7503 done:
7504         os_free(manual_scan_freqs);
7505         os_free(ssid);
7506 }
7507
7508
7509 #ifdef CONFIG_TESTING_OPTIONS
7510
7511 static void wpas_ctrl_iface_mgmt_tx_cb(struct wpa_supplicant *wpa_s,
7512                                        unsigned int freq, const u8 *dst,
7513                                        const u8 *src, const u8 *bssid,
7514                                        const u8 *data, size_t data_len,
7515                                        enum offchannel_send_action_result
7516                                        result)
7517 {
7518         wpa_msg(wpa_s, MSG_INFO, "MGMT-TX-STATUS freq=%u dst=" MACSTR
7519                 " src=" MACSTR " bssid=" MACSTR " result=%s",
7520                 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
7521                 result == OFFCHANNEL_SEND_ACTION_SUCCESS ?
7522                 "SUCCESS" : (result == OFFCHANNEL_SEND_ACTION_NO_ACK ?
7523                              "NO_ACK" : "FAILED"));
7524 }
7525
7526
7527 static int wpas_ctrl_iface_mgmt_tx(struct wpa_supplicant *wpa_s, char *cmd)
7528 {
7529         char *pos, *param;
7530         size_t len;
7531         u8 *buf, da[ETH_ALEN], bssid[ETH_ALEN];
7532         int res, used;
7533         int freq = 0, no_cck = 0, wait_time = 0;
7534
7535         /* <DA> <BSSID> [freq=<MHz>] [wait_time=<ms>] [no_cck=1]
7536          *    <action=Action frame payload> */
7537
7538         wpa_printf(MSG_DEBUG, "External MGMT TX: %s", cmd);
7539
7540         pos = cmd;
7541         used = hwaddr_aton2(pos, da);
7542         if (used < 0)
7543                 return -1;
7544         pos += used;
7545         while (*pos == ' ')
7546                 pos++;
7547         used = hwaddr_aton2(pos, bssid);
7548         if (used < 0)
7549                 return -1;
7550         pos += used;
7551
7552         param = os_strstr(pos, " freq=");
7553         if (param) {
7554                 param += 6;
7555                 freq = atoi(param);
7556         }
7557
7558         param = os_strstr(pos, " no_cck=");
7559         if (param) {
7560                 param += 8;
7561                 no_cck = atoi(param);
7562         }
7563
7564         param = os_strstr(pos, " wait_time=");
7565         if (param) {
7566                 param += 11;
7567                 wait_time = atoi(param);
7568         }
7569
7570         param = os_strstr(pos, " action=");
7571         if (param == NULL)
7572                 return -1;
7573         param += 8;
7574
7575         len = os_strlen(param);
7576         if (len & 1)
7577                 return -1;
7578         len /= 2;
7579
7580         buf = os_malloc(len);
7581         if (buf == NULL)
7582                 return -1;
7583
7584         if (hexstr2bin(param, buf, len) < 0) {
7585                 os_free(buf);
7586                 return -1;
7587         }
7588
7589         res = offchannel_send_action(wpa_s, freq, da, wpa_s->own_addr, bssid,
7590                                      buf, len, wait_time,
7591                                      wpas_ctrl_iface_mgmt_tx_cb, no_cck);
7592         os_free(buf);
7593         return res;
7594 }
7595
7596
7597 static void wpas_ctrl_iface_mgmt_tx_done(struct wpa_supplicant *wpa_s)
7598 {
7599         wpa_printf(MSG_DEBUG, "External MGMT TX - done waiting");
7600         offchannel_send_action_done(wpa_s);
7601 }
7602
7603
7604 static int wpas_ctrl_iface_driver_event(struct wpa_supplicant *wpa_s, char *cmd)
7605 {
7606         char *pos, *param;
7607         union wpa_event_data event;
7608         enum wpa_event_type ev;
7609
7610         /* <event name> [parameters..] */
7611
7612         wpa_dbg(wpa_s, MSG_DEBUG, "Testing - external driver event: %s", cmd);
7613
7614         pos = cmd;
7615         param = os_strchr(pos, ' ');
7616         if (param)
7617                 *param++ = '\0';
7618
7619         os_memset(&event, 0, sizeof(event));
7620
7621         if (os_strcmp(cmd, "INTERFACE_ENABLED") == 0) {
7622                 ev = EVENT_INTERFACE_ENABLED;
7623         } else if (os_strcmp(cmd, "INTERFACE_DISABLED") == 0) {
7624                 ev = EVENT_INTERFACE_DISABLED;
7625         } else if (os_strcmp(cmd, "AVOID_FREQUENCIES") == 0) {
7626                 ev = EVENT_AVOID_FREQUENCIES;
7627                 if (param == NULL)
7628                         param = "";
7629                 if (freq_range_list_parse(&event.freq_range, param) < 0)
7630                         return -1;
7631                 wpa_supplicant_event(wpa_s, ev, &event);
7632                 os_free(event.freq_range.range);
7633                 return 0;
7634         } else {
7635                 wpa_dbg(wpa_s, MSG_DEBUG, "Testing - unknown driver event: %s",
7636                         cmd);
7637                 return -1;
7638         }
7639
7640         wpa_supplicant_event(wpa_s, ev, &event);
7641
7642         return 0;
7643 }
7644
7645
7646 static int wpas_ctrl_iface_eapol_rx(struct wpa_supplicant *wpa_s, char *cmd)
7647 {
7648         char *pos;
7649         u8 src[ETH_ALEN], *buf;
7650         int used;
7651         size_t len;
7652
7653         wpa_printf(MSG_DEBUG, "External EAPOL RX: %s", cmd);
7654
7655         pos = cmd;
7656         used = hwaddr_aton2(pos, src);
7657         if (used < 0)
7658                 return -1;
7659         pos += used;
7660         while (*pos == ' ')
7661                 pos++;
7662
7663         len = os_strlen(pos);
7664         if (len & 1)
7665                 return -1;
7666         len /= 2;
7667
7668         buf = os_malloc(len);
7669         if (buf == NULL)
7670                 return -1;
7671
7672         if (hexstr2bin(pos, buf, len) < 0) {
7673                 os_free(buf);
7674                 return -1;
7675         }
7676
7677         wpa_supplicant_rx_eapol(wpa_s, src, buf, len);
7678         os_free(buf);
7679
7680         return 0;
7681 }
7682
7683
7684 static u16 ipv4_hdr_checksum(const void *buf, size_t len)
7685 {
7686         size_t i;
7687         u32 sum = 0;
7688         const u16 *pos = buf;
7689
7690         for (i = 0; i < len / 2; i++)
7691                 sum += *pos++;
7692
7693         while (sum >> 16)
7694                 sum = (sum & 0xffff) + (sum >> 16);
7695
7696         return sum ^ 0xffff;
7697 }
7698
7699
7700 #define HWSIM_PACKETLEN 1500
7701 #define HWSIM_IP_LEN (HWSIM_PACKETLEN - sizeof(struct ether_header))
7702
7703 void wpas_data_test_rx(void *ctx, const u8 *src_addr, const u8 *buf, size_t len)
7704 {
7705         struct wpa_supplicant *wpa_s = ctx;
7706         const struct ether_header *eth;
7707         struct iphdr ip;
7708         const u8 *pos;
7709         unsigned int i;
7710
7711         if (len != HWSIM_PACKETLEN)
7712                 return;
7713
7714         eth = (const struct ether_header *) buf;
7715         os_memcpy(&ip, eth + 1, sizeof(ip));
7716         pos = &buf[sizeof(*eth) + sizeof(ip)];
7717
7718         if (ip.ihl != 5 || ip.version != 4 ||
7719             ntohs(ip.tot_len) != HWSIM_IP_LEN)
7720                 return;
7721
7722         for (i = 0; i < HWSIM_IP_LEN - sizeof(ip); i++) {
7723                 if (*pos != (u8) i)
7724                         return;
7725                 pos++;
7726         }
7727
7728         wpa_msg(wpa_s, MSG_INFO, "DATA-TEST-RX " MACSTR " " MACSTR,
7729                 MAC2STR(eth->ether_dhost), MAC2STR(eth->ether_shost));
7730 }
7731
7732
7733 static int wpas_ctrl_iface_data_test_config(struct wpa_supplicant *wpa_s,
7734                                             char *cmd)
7735 {
7736         int enabled = atoi(cmd);
7737         char *pos;
7738         const char *ifname;
7739
7740         if (!enabled) {
7741                 if (wpa_s->l2_test) {
7742                         l2_packet_deinit(wpa_s->l2_test);
7743                         wpa_s->l2_test = NULL;
7744                         wpa_dbg(wpa_s, MSG_DEBUG, "test data: Disabled");
7745                 }
7746                 return 0;
7747         }
7748
7749         if (wpa_s->l2_test)
7750                 return 0;
7751
7752         pos = os_strstr(cmd, " ifname=");
7753         if (pos)
7754                 ifname = pos + 8;
7755         else
7756                 ifname = wpa_s->ifname;
7757
7758         wpa_s->l2_test = l2_packet_init(ifname, wpa_s->own_addr,
7759                                         ETHERTYPE_IP, wpas_data_test_rx,
7760                                         wpa_s, 1);
7761         if (wpa_s->l2_test == NULL)
7762                 return -1;
7763
7764         wpa_dbg(wpa_s, MSG_DEBUG, "test data: Enabled");
7765
7766         return 0;
7767 }
7768
7769
7770 static int wpas_ctrl_iface_data_test_tx(struct wpa_supplicant *wpa_s, char *cmd)
7771 {
7772         u8 dst[ETH_ALEN], src[ETH_ALEN];
7773         char *pos;
7774         int used;
7775         long int val;
7776         u8 tos;
7777         u8 buf[2 + HWSIM_PACKETLEN];
7778         struct ether_header *eth;
7779         struct iphdr *ip;
7780         u8 *dpos;
7781         unsigned int i;
7782
7783         if (wpa_s->l2_test == NULL)
7784                 return -1;
7785
7786         /* format: <dst> <src> <tos> */
7787
7788         pos = cmd;
7789         used = hwaddr_aton2(pos, dst);
7790         if (used < 0)
7791                 return -1;
7792         pos += used;
7793         while (*pos == ' ')
7794                 pos++;
7795         used = hwaddr_aton2(pos, src);
7796         if (used < 0)
7797                 return -1;
7798         pos += used;
7799
7800         val = strtol(pos, NULL, 0);
7801         if (val < 0 || val > 0xff)
7802                 return -1;
7803         tos = val;
7804
7805         eth = (struct ether_header *) &buf[2];
7806         os_memcpy(eth->ether_dhost, dst, ETH_ALEN);
7807         os_memcpy(eth->ether_shost, src, ETH_ALEN);
7808         eth->ether_type = htons(ETHERTYPE_IP);
7809         ip = (struct iphdr *) (eth + 1);
7810         os_memset(ip, 0, sizeof(*ip));
7811         ip->ihl = 5;
7812         ip->version = 4;
7813         ip->ttl = 64;
7814         ip->tos = tos;
7815         ip->tot_len = htons(HWSIM_IP_LEN);
7816         ip->protocol = 1;
7817         ip->saddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 1);
7818         ip->daddr = htonl(192U << 24 | 168 << 16 | 1 << 8 | 2);
7819         ip->check = ipv4_hdr_checksum(ip, sizeof(*ip));
7820         dpos = (u8 *) (ip + 1);
7821         for (i = 0; i < HWSIM_IP_LEN - sizeof(*ip); i++)
7822                 *dpos++ = i;
7823
7824         if (l2_packet_send(wpa_s->l2_test, dst, ETHERTYPE_IP, &buf[2],
7825                            HWSIM_PACKETLEN) < 0)
7826                 return -1;
7827
7828         wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX dst=" MACSTR " src=" MACSTR
7829                 " tos=0x%x", MAC2STR(dst), MAC2STR(src), tos);
7830
7831         return 0;
7832 }
7833
7834
7835 static int wpas_ctrl_iface_data_test_frame(struct wpa_supplicant *wpa_s,
7836                                            char *cmd)
7837 {
7838         u8 *buf;
7839         struct ether_header *eth;
7840         struct l2_packet_data *l2 = NULL;
7841         size_t len;
7842         u16 ethertype;
7843         int res = -1;
7844
7845         len = os_strlen(cmd);
7846         if (len & 1 || len < ETH_HLEN * 2)
7847                 return -1;
7848         len /= 2;
7849
7850         buf = os_malloc(len);
7851         if (buf == NULL)
7852                 return -1;
7853
7854         if (hexstr2bin(cmd, buf, len) < 0)
7855                 goto done;
7856
7857         eth = (struct ether_header *) buf;
7858         ethertype = ntohs(eth->ether_type);
7859
7860         l2 = l2_packet_init(wpa_s->ifname, wpa_s->own_addr, ethertype,
7861                             wpas_data_test_rx, wpa_s, 1);
7862         if (l2 == NULL)
7863                 goto done;
7864
7865         res = l2_packet_send(l2, eth->ether_dhost, ethertype, buf, len);
7866         wpa_dbg(wpa_s, MSG_DEBUG, "test data: TX frame res=%d", res);
7867 done:
7868         if (l2)
7869                 l2_packet_deinit(l2);
7870         os_free(buf);
7871
7872         return res < 0 ? -1 : 0;
7873 }
7874
7875
7876 static int wpas_ctrl_test_alloc_fail(struct wpa_supplicant *wpa_s, char *cmd)
7877 {
7878 #ifdef WPA_TRACE_BFD
7879         extern char wpa_trace_fail_func[256];
7880         extern unsigned int wpa_trace_fail_after;
7881         char *pos;
7882
7883         wpa_trace_fail_after = atoi(cmd);
7884         pos = os_strchr(cmd, ':');
7885         if (pos) {
7886                 pos++;
7887                 os_strlcpy(wpa_trace_fail_func, pos,
7888                            sizeof(wpa_trace_fail_func));
7889         } else {
7890                 wpa_trace_fail_after = 0;
7891         }
7892         return 0;
7893 #else /* WPA_TRACE_BFD */
7894         return -1;
7895 #endif /* WPA_TRACE_BFD */
7896 }
7897
7898
7899 static int wpas_ctrl_get_alloc_fail(struct wpa_supplicant *wpa_s,
7900                                     char *buf, size_t buflen)
7901 {
7902 #ifdef WPA_TRACE_BFD
7903         extern char wpa_trace_fail_func[256];
7904         extern unsigned int wpa_trace_fail_after;
7905
7906         return os_snprintf(buf, buflen, "%u:%s", wpa_trace_fail_after,
7907                            wpa_trace_fail_func);
7908 #else /* WPA_TRACE_BFD */
7909         return -1;
7910 #endif /* WPA_TRACE_BFD */
7911 }
7912
7913
7914 static int wpas_ctrl_test_fail(struct wpa_supplicant *wpa_s, char *cmd)
7915 {
7916 #ifdef WPA_TRACE_BFD
7917         extern char wpa_trace_test_fail_func[256];
7918         extern unsigned int wpa_trace_test_fail_after;
7919         char *pos;
7920
7921         wpa_trace_test_fail_after = atoi(cmd);
7922         pos = os_strchr(cmd, ':');
7923         if (pos) {
7924                 pos++;
7925                 os_strlcpy(wpa_trace_test_fail_func, pos,
7926                            sizeof(wpa_trace_test_fail_func));
7927         } else {
7928                 wpa_trace_test_fail_after = 0;
7929         }
7930         return 0;
7931 #else /* WPA_TRACE_BFD */
7932         return -1;
7933 #endif /* WPA_TRACE_BFD */
7934 }
7935
7936
7937 static int wpas_ctrl_get_fail(struct wpa_supplicant *wpa_s,
7938                                     char *buf, size_t buflen)
7939 {
7940 #ifdef WPA_TRACE_BFD
7941         extern char wpa_trace_test_fail_func[256];
7942         extern unsigned int wpa_trace_test_fail_after;
7943
7944         return os_snprintf(buf, buflen, "%u:%s", wpa_trace_test_fail_after,
7945                            wpa_trace_test_fail_func);
7946 #else /* WPA_TRACE_BFD */
7947         return -1;
7948 #endif /* WPA_TRACE_BFD */
7949 }
7950
7951
7952 static void wpas_ctrl_event_test_cb(void *eloop_ctx, void *timeout_ctx)
7953 {
7954         struct wpa_supplicant *wpa_s = eloop_ctx;
7955         int i, count = (intptr_t) timeout_ctx;
7956
7957         wpa_printf(MSG_DEBUG, "TEST: Send %d control interface event messages",
7958                    count);
7959         for (i = 0; i < count; i++) {
7960                 wpa_msg_ctrl(wpa_s, MSG_INFO, "TEST-EVENT-MESSAGE %d/%d",
7961                              i + 1, count);
7962         }
7963 }
7964
7965
7966 static int wpas_ctrl_event_test(struct wpa_supplicant *wpa_s, const char *cmd)
7967 {
7968         int count;
7969
7970         count = atoi(cmd);
7971         if (count <= 0)
7972                 return -1;
7973
7974         return eloop_register_timeout(0, 0, wpas_ctrl_event_test_cb, wpa_s,
7975                                       (void *) (intptr_t) count);
7976 }
7977
7978
7979 static int wpas_ctrl_test_assoc_ie(struct wpa_supplicant *wpa_s,
7980                                    const char *cmd)
7981 {
7982         struct wpabuf *buf;
7983         size_t len;
7984
7985         len = os_strlen(cmd);
7986         if (len & 1)
7987                 return -1;
7988         len /= 2;
7989
7990         if (len == 0) {
7991                 buf = NULL;
7992         } else {
7993                 buf = wpabuf_alloc(len);
7994                 if (buf == NULL)
7995                         return -1;
7996
7997                 if (hexstr2bin(cmd, wpabuf_put(buf, len), len) < 0) {
7998                         wpabuf_free(buf);
7999                         return -1;
8000                 }
8001         }
8002
8003         wpa_sm_set_test_assoc_ie(wpa_s->wpa, buf);
8004         return 0;
8005 }
8006
8007 #endif /* CONFIG_TESTING_OPTIONS */
8008
8009
8010 static int wpas_ctrl_vendor_elem_add(struct wpa_supplicant *wpa_s, char *cmd)
8011 {
8012         char *pos = cmd;
8013         int frame;
8014         size_t len;
8015         struct wpabuf *buf;
8016         struct ieee802_11_elems elems;
8017
8018         frame = atoi(pos);
8019         if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8020                 return -1;
8021         wpa_s = wpas_vendor_elem(wpa_s, frame);
8022
8023         pos = os_strchr(pos, ' ');
8024         if (pos == NULL)
8025                 return -1;
8026         pos++;
8027
8028         len = os_strlen(pos);
8029         if (len == 0)
8030                 return 0;
8031         if (len & 1)
8032                 return -1;
8033         len /= 2;
8034
8035         buf = wpabuf_alloc(len);
8036         if (buf == NULL)
8037                 return -1;
8038
8039         if (hexstr2bin(pos, wpabuf_put(buf, len), len) < 0) {
8040                 wpabuf_free(buf);
8041                 return -1;
8042         }
8043
8044         if (ieee802_11_parse_elems(wpabuf_head_u8(buf), len, &elems, 0) ==
8045             ParseFailed) {
8046                 wpabuf_free(buf);
8047                 return -1;
8048         }
8049
8050         if (wpa_s->vendor_elem[frame] == NULL) {
8051                 wpa_s->vendor_elem[frame] = buf;
8052                 wpas_vendor_elem_update(wpa_s);
8053                 return 0;
8054         }
8055
8056         if (wpabuf_resize(&wpa_s->vendor_elem[frame], len) < 0) {
8057                 wpabuf_free(buf);
8058                 return -1;
8059         }
8060
8061         wpabuf_put_buf(wpa_s->vendor_elem[frame], buf);
8062         wpabuf_free(buf);
8063         wpas_vendor_elem_update(wpa_s);
8064
8065         return 0;
8066 }
8067
8068
8069 static int wpas_ctrl_vendor_elem_get(struct wpa_supplicant *wpa_s, char *cmd,
8070                                      char *buf, size_t buflen)
8071 {
8072         int frame = atoi(cmd);
8073
8074         if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8075                 return -1;
8076         wpa_s = wpas_vendor_elem(wpa_s, frame);
8077
8078         if (wpa_s->vendor_elem[frame] == NULL)
8079                 return 0;
8080
8081         return wpa_snprintf_hex(buf, buflen,
8082                                 wpabuf_head_u8(wpa_s->vendor_elem[frame]),
8083                                 wpabuf_len(wpa_s->vendor_elem[frame]));
8084 }
8085
8086
8087 static int wpas_ctrl_vendor_elem_remove(struct wpa_supplicant *wpa_s, char *cmd)
8088 {
8089         char *pos = cmd;
8090         int frame;
8091         size_t len;
8092         u8 *buf;
8093         struct ieee802_11_elems elems;
8094         int res;
8095
8096         frame = atoi(pos);
8097         if (frame < 0 || frame >= NUM_VENDOR_ELEM_FRAMES)
8098                 return -1;
8099         wpa_s = wpas_vendor_elem(wpa_s, frame);
8100
8101         pos = os_strchr(pos, ' ');
8102         if (pos == NULL)
8103                 return -1;
8104         pos++;
8105
8106         if (*pos == '*') {
8107                 wpabuf_free(wpa_s->vendor_elem[frame]);
8108                 wpa_s->vendor_elem[frame] = NULL;
8109                 wpas_vendor_elem_update(wpa_s);
8110                 return 0;
8111         }
8112
8113         if (wpa_s->vendor_elem[frame] == NULL)
8114                 return -1;
8115
8116         len = os_strlen(pos);
8117         if (len == 0)
8118                 return 0;
8119         if (len & 1)
8120                 return -1;
8121         len /= 2;
8122
8123         buf = os_malloc(len);
8124         if (buf == NULL)
8125                 return -1;
8126
8127         if (hexstr2bin(pos, buf, len) < 0) {
8128                 os_free(buf);
8129                 return -1;
8130         }
8131
8132         if (ieee802_11_parse_elems(buf, len, &elems, 0) == ParseFailed) {
8133                 os_free(buf);
8134                 return -1;
8135         }
8136
8137         res = wpas_vendor_elem_remove(wpa_s, frame, buf, len);
8138         os_free(buf);
8139         return res;
8140 }
8141
8142
8143 static void wpas_ctrl_neighbor_rep_cb(void *ctx, struct wpabuf *neighbor_rep)
8144 {
8145         struct wpa_supplicant *wpa_s = ctx;
8146
8147         if (neighbor_rep) {
8148                 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_RXED
8149                              "length=%u",
8150                              (unsigned int) wpabuf_len(neighbor_rep));
8151                 wpabuf_free(neighbor_rep);
8152         } else {
8153                 wpa_msg_ctrl(wpa_s, MSG_INFO, RRM_EVENT_NEIGHBOR_REP_FAILED);
8154         }
8155 }
8156
8157
8158 static int wpas_ctrl_iface_send_neigbor_rep(struct wpa_supplicant *wpa_s,
8159                                             char *cmd)
8160 {
8161         struct wpa_ssid ssid;
8162         struct wpa_ssid *ssid_p = NULL;
8163         int ret = 0;
8164
8165         if (os_strncmp(cmd, " ssid=", 6) == 0) {
8166                 ssid.ssid_len = os_strlen(cmd + 6);
8167                 if (ssid.ssid_len > SSID_MAX_LEN)
8168                         return -1;
8169                 ssid.ssid = (u8 *) (cmd + 6);
8170                 ssid_p = &ssid;
8171         }
8172
8173         ret = wpas_rrm_send_neighbor_rep_request(wpa_s, ssid_p,
8174                                                  wpas_ctrl_neighbor_rep_cb,
8175                                                  wpa_s);
8176
8177         return ret;
8178 }
8179
8180
8181 static int wpas_ctrl_iface_erp_flush(struct wpa_supplicant *wpa_s)
8182 {
8183         eapol_sm_erp_flush(wpa_s->eapol);
8184         return 0;
8185 }
8186
8187
8188 static int wpas_ctrl_iface_mac_rand_scan(struct wpa_supplicant *wpa_s,
8189                                          char *cmd)
8190 {
8191         char *token, *context = NULL;
8192         unsigned int enable = ~0, type = 0;
8193         u8 _addr[ETH_ALEN], _mask[ETH_ALEN];
8194         u8 *addr = NULL, *mask = NULL;
8195
8196         while ((token = str_token(cmd, " ", &context))) {
8197                 if (os_strcasecmp(token, "scan") == 0) {
8198                         type |= MAC_ADDR_RAND_SCAN;
8199                 } else if (os_strcasecmp(token, "sched") == 0) {
8200                         type |= MAC_ADDR_RAND_SCHED_SCAN;
8201                 } else if (os_strcasecmp(token, "pno") == 0) {
8202                         type |= MAC_ADDR_RAND_PNO;
8203                 } else if (os_strcasecmp(token, "all") == 0) {
8204                         type = wpa_s->mac_addr_rand_supported;
8205                 } else if (os_strncasecmp(token, "enable=", 7) == 0) {
8206                         enable = atoi(token + 7);
8207                 } else if (os_strncasecmp(token, "addr=", 5) == 0) {
8208                         addr = _addr;
8209                         if (hwaddr_aton(token + 5, addr)) {
8210                                 wpa_printf(MSG_INFO,
8211                                            "CTRL: Invalid MAC address: %s",
8212                                            token);
8213                                 return -1;
8214                         }
8215                 } else if (os_strncasecmp(token, "mask=", 5) == 0) {
8216                         mask = _mask;
8217                         if (hwaddr_aton(token + 5, mask)) {
8218                                 wpa_printf(MSG_INFO,
8219                                            "CTRL: Invalid MAC address mask: %s",
8220                                            token);
8221                                 return -1;
8222                         }
8223                 } else {
8224                         wpa_printf(MSG_INFO,
8225                                    "CTRL: Invalid MAC_RAND_SCAN parameter: %s",
8226                                    token);
8227                         return -1;
8228                 }
8229         }
8230
8231         if (!type) {
8232                 wpa_printf(MSG_INFO, "CTRL: MAC_RAND_SCAN no type specified");
8233                 return -1;
8234         }
8235
8236         if ((wpa_s->mac_addr_rand_supported & type) != type) {
8237                 wpa_printf(MSG_INFO,
8238                            "CTRL: MAC_RAND_SCAN types=%u != supported=%u",
8239                            type, wpa_s->mac_addr_rand_supported);
8240                 return -1;
8241         }
8242
8243         if (enable > 1) {
8244                 wpa_printf(MSG_INFO,
8245                            "CTRL: MAC_RAND_SCAN enable=<0/1> not specified");
8246                 return -1;
8247         }
8248
8249         if (!enable) {
8250                 wpas_mac_addr_rand_scan_clear(wpa_s, type);
8251                 if (wpa_s->pno) {
8252                         if (type & MAC_ADDR_RAND_PNO) {
8253                                 wpas_stop_pno(wpa_s);
8254                                 wpas_start_pno(wpa_s);
8255                         }
8256                 } else if (wpa_s->sched_scanning &&
8257                            (type & MAC_ADDR_RAND_SCHED_SCAN)) {
8258                         /* simulate timeout to restart the sched scan */
8259                         wpa_s->sched_scan_timed_out = 1;
8260                         wpa_s->prev_sched_ssid = NULL;
8261                         wpa_supplicant_cancel_sched_scan(wpa_s);
8262                 }
8263                 return 0;
8264         }
8265
8266         if ((addr && !mask) || (!addr && mask)) {
8267                 wpa_printf(MSG_INFO,
8268                            "CTRL: MAC_RAND_SCAN invalid addr/mask combination");
8269                 return -1;
8270         }
8271
8272         if (addr && mask && (!(mask[0] & 0x01) || (addr[0] & 0x01))) {
8273                 wpa_printf(MSG_INFO,
8274                            "CTRL: MAC_RAND_SCAN cannot allow multicast address");
8275                 return -1;
8276         }
8277
8278         if (type & MAC_ADDR_RAND_SCAN) {
8279                 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCAN,
8280                                             addr, mask);
8281         }
8282
8283         if (type & MAC_ADDR_RAND_SCHED_SCAN) {
8284                 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_SCHED_SCAN,
8285                                             addr, mask);
8286
8287                 if (wpa_s->sched_scanning && !wpa_s->pno) {
8288                         /* simulate timeout to restart the sched scan */
8289                         wpa_s->sched_scan_timed_out = 1;
8290                         wpa_s->prev_sched_ssid = NULL;
8291                         wpa_supplicant_cancel_sched_scan(wpa_s);
8292                 }
8293         }
8294
8295         if (type & MAC_ADDR_RAND_PNO) {
8296                 wpas_mac_addr_rand_scan_set(wpa_s, MAC_ADDR_RAND_PNO,
8297                                             addr, mask);
8298                 if (wpa_s->pno) {
8299                         wpas_stop_pno(wpa_s);
8300                         wpas_start_pno(wpa_s);
8301                 }
8302         }
8303
8304         return 0;
8305 }
8306
8307
8308 static int wpas_ctrl_cmd_debug_level(const char *cmd)
8309 {
8310         if (os_strcmp(cmd, "PING") == 0 ||
8311             os_strncmp(cmd, "BSS ", 4) == 0 ||
8312             os_strncmp(cmd, "GET_NETWORK ", 12) == 0 ||
8313             os_strncmp(cmd, "STATUS", 6) == 0 ||
8314             os_strncmp(cmd, "STA ", 4) == 0 ||
8315             os_strncmp(cmd, "STA-", 4) == 0)
8316                 return MSG_EXCESSIVE;
8317         return MSG_DEBUG;
8318 }
8319
8320
8321 char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s,
8322                                          char *buf, size_t *resp_len)
8323 {
8324         char *reply;
8325         const int reply_size = 4096;
8326         int reply_len;
8327
8328         if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0 ||
8329             os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8330                 if (wpa_debug_show_keys)
8331                         wpa_dbg(wpa_s, MSG_DEBUG,
8332                                 "Control interface command '%s'", buf);
8333                 else
8334                         wpa_dbg(wpa_s, MSG_DEBUG,
8335                                 "Control interface command '%s [REMOVED]'",
8336                                 os_strncmp(buf, WPA_CTRL_RSP,
8337                                            os_strlen(WPA_CTRL_RSP)) == 0 ?
8338                                 WPA_CTRL_RSP : "SET_NETWORK");
8339         } else if (os_strncmp(buf, "WPS_NFC_TAG_READ", 16) == 0 ||
8340                    os_strncmp(buf, "NFC_REPORT_HANDOVER", 19) == 0) {
8341                 wpa_hexdump_ascii_key(MSG_DEBUG, "RX ctrl_iface",
8342                                       (const u8 *) buf, os_strlen(buf));
8343         } else {
8344                 int level = wpas_ctrl_cmd_debug_level(buf);
8345                 wpa_dbg(wpa_s, level, "Control interface command '%s'", buf);
8346         }
8347
8348         reply = os_malloc(reply_size);
8349         if (reply == NULL) {
8350                 *resp_len = 1;
8351                 return NULL;
8352         }
8353
8354         os_memcpy(reply, "OK\n", 3);
8355         reply_len = 3;
8356
8357         if (os_strcmp(buf, "PING") == 0) {
8358                 os_memcpy(reply, "PONG\n", 5);
8359                 reply_len = 5;
8360         } else if (os_strcmp(buf, "IFNAME") == 0) {
8361                 reply_len = os_strlen(wpa_s->ifname);
8362                 os_memcpy(reply, wpa_s->ifname, reply_len);
8363         } else if (os_strncmp(buf, "RELOG", 5) == 0) {
8364                 if (wpa_debug_reopen_file() < 0)
8365                         reply_len = -1;
8366         } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
8367                 wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
8368         } else if (os_strcmp(buf, "MIB") == 0) {
8369                 reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
8370                 if (reply_len >= 0) {
8371                         reply_len += eapol_sm_get_mib(wpa_s->eapol,
8372                                                       reply + reply_len,
8373                                                       reply_size - reply_len);
8374                 }
8375         } else if (os_strncmp(buf, "STATUS", 6) == 0) {
8376                 reply_len = wpa_supplicant_ctrl_iface_status(
8377                         wpa_s, buf + 6, reply, reply_size);
8378         } else if (os_strcmp(buf, "PMKSA") == 0) {
8379                 reply_len = wpa_sm_pmksa_cache_list(wpa_s->wpa, reply,
8380                                                     reply_size);
8381         } else if (os_strcmp(buf, "PMKSA_FLUSH") == 0) {
8382                 wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
8383         } else if (os_strncmp(buf, "SET ", 4) == 0) {
8384                 if (wpa_supplicant_ctrl_iface_set(wpa_s, buf + 4))
8385                         reply_len = -1;
8386         } else if (os_strncmp(buf, "DUMP", 4) == 0) {
8387                 reply_len = wpa_config_dump_values(wpa_s->conf,
8388                                                    reply, reply_size);
8389         } else if (os_strncmp(buf, "GET ", 4) == 0) {
8390                 reply_len = wpa_supplicant_ctrl_iface_get(wpa_s, buf + 4,
8391                                                           reply, reply_size);
8392         } else if (os_strcmp(buf, "LOGON") == 0) {
8393                 eapol_sm_notify_logoff(wpa_s->eapol, FALSE);
8394         } else if (os_strcmp(buf, "LOGOFF") == 0) {
8395                 eapol_sm_notify_logoff(wpa_s->eapol, TRUE);
8396         } else if (os_strcmp(buf, "REASSOCIATE") == 0) {
8397                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8398                         reply_len = -1;
8399                 else
8400                         wpas_request_connection(wpa_s);
8401         } else if (os_strcmp(buf, "REATTACH") == 0) {
8402                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED ||
8403                     !wpa_s->current_ssid)
8404                         reply_len = -1;
8405                 else {
8406                         wpa_s->reattach = 1;
8407                         wpas_request_connection(wpa_s);
8408                 }
8409         } else if (os_strcmp(buf, "RECONNECT") == 0) {
8410                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
8411                         reply_len = -1;
8412                 else if (wpa_s->disconnected)
8413                         wpas_request_connection(wpa_s);
8414 #ifdef IEEE8021X_EAPOL
8415         } else if (os_strncmp(buf, "PREAUTH ", 8) == 0) {
8416                 if (wpa_supplicant_ctrl_iface_preauth(wpa_s, buf + 8))
8417                         reply_len = -1;
8418 #endif /* IEEE8021X_EAPOL */
8419 #ifdef CONFIG_PEERKEY
8420         } else if (os_strncmp(buf, "STKSTART ", 9) == 0) {
8421                 if (wpa_supplicant_ctrl_iface_stkstart(wpa_s, buf + 9))
8422                         reply_len = -1;
8423 #endif /* CONFIG_PEERKEY */
8424 #ifdef CONFIG_IEEE80211R
8425         } else if (os_strncmp(buf, "FT_DS ", 6) == 0) {
8426                 if (wpa_supplicant_ctrl_iface_ft_ds(wpa_s, buf + 6))
8427                         reply_len = -1;
8428 #endif /* CONFIG_IEEE80211R */
8429 #ifdef CONFIG_WPS
8430         } else if (os_strcmp(buf, "WPS_PBC") == 0) {
8431                 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, NULL);
8432                 if (res == -2) {
8433                         os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8434                         reply_len = 17;
8435                 } else if (res)
8436                         reply_len = -1;
8437         } else if (os_strncmp(buf, "WPS_PBC ", 8) == 0) {
8438                 int res = wpa_supplicant_ctrl_iface_wps_pbc(wpa_s, buf + 8);
8439                 if (res == -2) {
8440                         os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8441                         reply_len = 17;
8442                 } else if (res)
8443                         reply_len = -1;
8444         } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
8445                 reply_len = wpa_supplicant_ctrl_iface_wps_pin(wpa_s, buf + 8,
8446                                                               reply,
8447                                                               reply_size);
8448         } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
8449                 reply_len = wpa_supplicant_ctrl_iface_wps_check_pin(
8450                         wpa_s, buf + 14, reply, reply_size);
8451         } else if (os_strcmp(buf, "WPS_CANCEL") == 0) {
8452                 if (wpas_wps_cancel(wpa_s))
8453                         reply_len = -1;
8454 #ifdef CONFIG_WPS_NFC
8455         } else if (os_strcmp(buf, "WPS_NFC") == 0) {
8456                 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, NULL))
8457                         reply_len = -1;
8458         } else if (os_strncmp(buf, "WPS_NFC ", 8) == 0) {
8459                 if (wpa_supplicant_ctrl_iface_wps_nfc(wpa_s, buf + 8))
8460                         reply_len = -1;
8461         } else if (os_strncmp(buf, "WPS_NFC_CONFIG_TOKEN ", 21) == 0) {
8462                 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_config_token(
8463                         wpa_s, buf + 21, reply, reply_size);
8464         } else if (os_strncmp(buf, "WPS_NFC_TOKEN ", 14) == 0) {
8465                 reply_len = wpa_supplicant_ctrl_iface_wps_nfc_token(
8466                         wpa_s, buf + 14, reply, reply_size);
8467         } else if (os_strncmp(buf, "WPS_NFC_TAG_READ ", 17) == 0) {
8468                 if (wpa_supplicant_ctrl_iface_wps_nfc_tag_read(wpa_s,
8469                                                                buf + 17))
8470                         reply_len = -1;
8471         } else if (os_strncmp(buf, "NFC_GET_HANDOVER_REQ ", 21) == 0) {
8472                 reply_len = wpas_ctrl_nfc_get_handover_req(
8473                         wpa_s, buf + 21, reply, reply_size);
8474         } else if (os_strncmp(buf, "NFC_GET_HANDOVER_SEL ", 21) == 0) {
8475                 reply_len = wpas_ctrl_nfc_get_handover_sel(
8476                         wpa_s, buf + 21, reply, reply_size);
8477         } else if (os_strncmp(buf, "NFC_REPORT_HANDOVER ", 20) == 0) {
8478                 if (wpas_ctrl_nfc_report_handover(wpa_s, buf + 20))
8479                         reply_len = -1;
8480 #endif /* CONFIG_WPS_NFC */
8481         } else if (os_strncmp(buf, "WPS_REG ", 8) == 0) {
8482                 if (wpa_supplicant_ctrl_iface_wps_reg(wpa_s, buf + 8))
8483                         reply_len = -1;
8484 #ifdef CONFIG_AP
8485         } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
8486                 reply_len = wpa_supplicant_ctrl_iface_wps_ap_pin(
8487                         wpa_s, buf + 11, reply, reply_size);
8488 #endif /* CONFIG_AP */
8489 #ifdef CONFIG_WPS_ER
8490         } else if (os_strcmp(buf, "WPS_ER_START") == 0) {
8491                 if (wpas_wps_er_start(wpa_s, NULL))
8492                         reply_len = -1;
8493         } else if (os_strncmp(buf, "WPS_ER_START ", 13) == 0) {
8494                 if (wpas_wps_er_start(wpa_s, buf + 13))
8495                         reply_len = -1;
8496         } else if (os_strcmp(buf, "WPS_ER_STOP") == 0) {
8497                 wpas_wps_er_stop(wpa_s);
8498         } else if (os_strncmp(buf, "WPS_ER_PIN ", 11) == 0) {
8499                 if (wpa_supplicant_ctrl_iface_wps_er_pin(wpa_s, buf + 11))
8500                         reply_len = -1;
8501         } else if (os_strncmp(buf, "WPS_ER_PBC ", 11) == 0) {
8502                 int ret = wpas_wps_er_pbc(wpa_s, buf + 11);
8503                 if (ret == -2) {
8504                         os_memcpy(reply, "FAIL-PBC-OVERLAP\n", 17);
8505                         reply_len = 17;
8506                 } else if (ret == -3) {
8507                         os_memcpy(reply, "FAIL-UNKNOWN-UUID\n", 18);
8508                         reply_len = 18;
8509                 } else if (ret == -4) {
8510                         os_memcpy(reply, "FAIL-NO-AP-SETTINGS\n", 20);
8511                         reply_len = 20;
8512                 } else if (ret)
8513                         reply_len = -1;
8514         } else if (os_strncmp(buf, "WPS_ER_LEARN ", 13) == 0) {
8515                 if (wpa_supplicant_ctrl_iface_wps_er_learn(wpa_s, buf + 13))
8516                         reply_len = -1;
8517         } else if (os_strncmp(buf, "WPS_ER_SET_CONFIG ", 18) == 0) {
8518                 if (wpa_supplicant_ctrl_iface_wps_er_set_config(wpa_s,
8519                                                                 buf + 18))
8520                         reply_len = -1;
8521         } else if (os_strncmp(buf, "WPS_ER_CONFIG ", 14) == 0) {
8522                 if (wpa_supplicant_ctrl_iface_wps_er_config(wpa_s, buf + 14))
8523                         reply_len = -1;
8524 #ifdef CONFIG_WPS_NFC
8525         } else if (os_strncmp(buf, "WPS_ER_NFC_CONFIG_TOKEN ", 24) == 0) {
8526                 reply_len = wpa_supplicant_ctrl_iface_wps_er_nfc_config_token(
8527                         wpa_s, buf + 24, reply, reply_size);
8528 #endif /* CONFIG_WPS_NFC */
8529 #endif /* CONFIG_WPS_ER */
8530 #endif /* CONFIG_WPS */
8531 #ifdef CONFIG_IBSS_RSN
8532         } else if (os_strncmp(buf, "IBSS_RSN ", 9) == 0) {
8533                 if (wpa_supplicant_ctrl_iface_ibss_rsn(wpa_s, buf + 9))
8534                         reply_len = -1;
8535 #endif /* CONFIG_IBSS_RSN */
8536 #ifdef CONFIG_MESH
8537         } else if (os_strncmp(buf, "MESH_INTERFACE_ADD ", 19) == 0) {
8538                 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8539                         wpa_s, buf + 19, reply, reply_size);
8540         } else if (os_strcmp(buf, "MESH_INTERFACE_ADD") == 0) {
8541                 reply_len = wpa_supplicant_ctrl_iface_mesh_interface_add(
8542                         wpa_s, "", reply, reply_size);
8543         } else if (os_strncmp(buf, "MESH_GROUP_ADD ", 15) == 0) {
8544                 if (wpa_supplicant_ctrl_iface_mesh_group_add(wpa_s, buf + 15))
8545                         reply_len = -1;
8546         } else if (os_strncmp(buf, "MESH_GROUP_REMOVE ", 18) == 0) {
8547                 if (wpa_supplicant_ctrl_iface_mesh_group_remove(wpa_s,
8548                                                                 buf + 18))
8549                         reply_len = -1;
8550 #endif /* CONFIG_MESH */
8551 #ifdef CONFIG_P2P
8552         } else if (os_strncmp(buf, "P2P_FIND ", 9) == 0) {
8553                 if (p2p_ctrl_find(wpa_s, buf + 8))
8554                         reply_len = -1;
8555         } else if (os_strcmp(buf, "P2P_FIND") == 0) {
8556                 if (p2p_ctrl_find(wpa_s, ""))
8557                         reply_len = -1;
8558         } else if (os_strcmp(buf, "P2P_STOP_FIND") == 0) {
8559                 wpas_p2p_stop_find(wpa_s);
8560         } else if (os_strncmp(buf, "P2P_ASP_PROVISION ", 18) == 0) {
8561                 if (p2p_ctrl_asp_provision(wpa_s, buf + 18))
8562                         reply_len = -1;
8563         } else if (os_strncmp(buf, "P2P_ASP_PROVISION_RESP ", 23) == 0) {
8564                 if (p2p_ctrl_asp_provision_resp(wpa_s, buf + 23))
8565                         reply_len = -1;
8566         } else if (os_strncmp(buf, "P2P_CONNECT ", 12) == 0) {
8567                 reply_len = p2p_ctrl_connect(wpa_s, buf + 12, reply,
8568                                              reply_size);
8569         } else if (os_strncmp(buf, "P2P_LISTEN ", 11) == 0) {
8570                 if (p2p_ctrl_listen(wpa_s, buf + 11))
8571                         reply_len = -1;
8572         } else if (os_strcmp(buf, "P2P_LISTEN") == 0) {
8573                 if (p2p_ctrl_listen(wpa_s, ""))
8574                         reply_len = -1;
8575         } else if (os_strncmp(buf, "P2P_GROUP_REMOVE ", 17) == 0) {
8576                 if (wpas_p2p_group_remove(wpa_s, buf + 17))
8577                         reply_len = -1;
8578         } else if (os_strcmp(buf, "P2P_GROUP_ADD") == 0) {
8579                 if (p2p_ctrl_group_add(wpa_s, ""))
8580                         reply_len = -1;
8581         } else if (os_strncmp(buf, "P2P_GROUP_ADD ", 14) == 0) {
8582                 if (p2p_ctrl_group_add(wpa_s, buf + 14))
8583                         reply_len = -1;
8584         } else if (os_strncmp(buf, "P2P_PROV_DISC ", 14) == 0) {
8585                 if (p2p_ctrl_prov_disc(wpa_s, buf + 14))
8586                         reply_len = -1;
8587         } else if (os_strcmp(buf, "P2P_GET_PASSPHRASE") == 0) {
8588                 reply_len = p2p_get_passphrase(wpa_s, reply, reply_size);
8589         } else if (os_strncmp(buf, "P2P_SERV_DISC_REQ ", 18) == 0) {
8590                 reply_len = p2p_ctrl_serv_disc_req(wpa_s, buf + 18, reply,
8591                                                    reply_size);
8592         } else if (os_strncmp(buf, "P2P_SERV_DISC_CANCEL_REQ ", 25) == 0) {
8593                 if (p2p_ctrl_serv_disc_cancel_req(wpa_s, buf + 25) < 0)
8594                         reply_len = -1;
8595         } else if (os_strncmp(buf, "P2P_SERV_DISC_RESP ", 19) == 0) {
8596                 if (p2p_ctrl_serv_disc_resp(wpa_s, buf + 19) < 0)
8597                         reply_len = -1;
8598         } else if (os_strcmp(buf, "P2P_SERVICE_UPDATE") == 0) {
8599                 wpas_p2p_sd_service_update(wpa_s);
8600         } else if (os_strncmp(buf, "P2P_SERV_DISC_EXTERNAL ", 23) == 0) {
8601                 if (p2p_ctrl_serv_disc_external(wpa_s, buf + 23) < 0)
8602                         reply_len = -1;
8603         } else if (os_strcmp(buf, "P2P_SERVICE_FLUSH") == 0) {
8604                 wpas_p2p_service_flush(wpa_s);
8605         } else if (os_strncmp(buf, "P2P_SERVICE_ADD ", 16) == 0) {
8606                 if (p2p_ctrl_service_add(wpa_s, buf + 16) < 0)
8607                         reply_len = -1;
8608         } else if (os_strncmp(buf, "P2P_SERVICE_DEL ", 16) == 0) {
8609                 if (p2p_ctrl_service_del(wpa_s, buf + 16) < 0)
8610                         reply_len = -1;
8611         } else if (os_strncmp(buf, "P2P_SERVICE_REP ", 16) == 0) {
8612                 if (p2p_ctrl_service_replace(wpa_s, buf + 16) < 0)
8613                         reply_len = -1;
8614         } else if (os_strncmp(buf, "P2P_REJECT ", 11) == 0) {
8615                 if (p2p_ctrl_reject(wpa_s, buf + 11) < 0)
8616                         reply_len = -1;
8617         } else if (os_strncmp(buf, "P2P_INVITE ", 11) == 0) {
8618                 if (p2p_ctrl_invite(wpa_s, buf + 11) < 0)
8619                         reply_len = -1;
8620         } else if (os_strncmp(buf, "P2P_PEER ", 9) == 0) {
8621                 reply_len = p2p_ctrl_peer(wpa_s, buf + 9, reply,
8622                                               reply_size);
8623         } else if (os_strncmp(buf, "P2P_SET ", 8) == 0) {
8624                 if (p2p_ctrl_set(wpa_s, buf + 8) < 0)
8625                         reply_len = -1;
8626         } else if (os_strcmp(buf, "P2P_FLUSH") == 0) {
8627                 p2p_ctrl_flush(wpa_s);
8628         } else if (os_strncmp(buf, "P2P_UNAUTHORIZE ", 16) == 0) {
8629                 if (wpas_p2p_unauthorize(wpa_s, buf + 16) < 0)
8630                         reply_len = -1;
8631         } else if (os_strcmp(buf, "P2P_CANCEL") == 0) {
8632                 if (wpas_p2p_cancel(wpa_s))
8633                         reply_len = -1;
8634         } else if (os_strncmp(buf, "P2P_PRESENCE_REQ ", 17) == 0) {
8635                 if (p2p_ctrl_presence_req(wpa_s, buf + 17) < 0)
8636                         reply_len = -1;
8637         } else if (os_strcmp(buf, "P2P_PRESENCE_REQ") == 0) {
8638                 if (p2p_ctrl_presence_req(wpa_s, "") < 0)
8639                         reply_len = -1;
8640         } else if (os_strncmp(buf, "P2P_EXT_LISTEN ", 15) == 0) {
8641                 if (p2p_ctrl_ext_listen(wpa_s, buf + 15) < 0)
8642                         reply_len = -1;
8643         } else if (os_strcmp(buf, "P2P_EXT_LISTEN") == 0) {
8644                 if (p2p_ctrl_ext_listen(wpa_s, "") < 0)
8645                         reply_len = -1;
8646         } else if (os_strncmp(buf, "P2P_REMOVE_CLIENT ", 18) == 0) {
8647                 if (p2p_ctrl_remove_client(wpa_s, buf + 18) < 0)
8648                         reply_len = -1;
8649 #endif /* CONFIG_P2P */
8650 #ifdef CONFIG_WIFI_DISPLAY
8651         } else if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0) {
8652                 if (wifi_display_subelem_set(wpa_s->global, buf + 16) < 0)
8653                         reply_len = -1;
8654         } else if (os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0) {
8655                 reply_len = wifi_display_subelem_get(wpa_s->global, buf + 16,
8656                                                      reply, reply_size);
8657 #endif /* CONFIG_WIFI_DISPLAY */
8658 #ifdef CONFIG_INTERWORKING
8659         } else if (os_strcmp(buf, "FETCH_ANQP") == 0) {
8660                 if (interworking_fetch_anqp(wpa_s) < 0)
8661                         reply_len = -1;
8662         } else if (os_strcmp(buf, "STOP_FETCH_ANQP") == 0) {
8663                 interworking_stop_fetch_anqp(wpa_s);
8664         } else if (os_strcmp(buf, "INTERWORKING_SELECT") == 0) {
8665                 if (ctrl_interworking_select(wpa_s, NULL) < 0)
8666                         reply_len = -1;
8667         } else if (os_strncmp(buf, "INTERWORKING_SELECT ", 20) == 0) {
8668                 if (ctrl_interworking_select(wpa_s, buf + 20) < 0)
8669                         reply_len = -1;
8670         } else if (os_strncmp(buf, "INTERWORKING_CONNECT ", 21) == 0) {
8671                 if (ctrl_interworking_connect(wpa_s, buf + 21, 0) < 0)
8672                         reply_len = -1;
8673         } else if (os_strncmp(buf, "INTERWORKING_ADD_NETWORK ", 25) == 0) {
8674                 int id;
8675
8676                 id = ctrl_interworking_connect(wpa_s, buf + 25, 1);
8677                 if (id < 0)
8678                         reply_len = -1;
8679                 else {
8680                         reply_len = os_snprintf(reply, reply_size, "%d\n", id);
8681                         if (os_snprintf_error(reply_size, reply_len))
8682                                 reply_len = -1;
8683                 }
8684         } else if (os_strncmp(buf, "ANQP_GET ", 9) == 0) {
8685                 if (get_anqp(wpa_s, buf + 9) < 0)
8686                         reply_len = -1;
8687         } else if (os_strncmp(buf, "GAS_REQUEST ", 12) == 0) {
8688                 if (gas_request(wpa_s, buf + 12) < 0)
8689                         reply_len = -1;
8690         } else if (os_strncmp(buf, "GAS_RESPONSE_GET ", 17) == 0) {
8691                 reply_len = gas_response_get(wpa_s, buf + 17, reply,
8692                                              reply_size);
8693 #endif /* CONFIG_INTERWORKING */
8694 #ifdef CONFIG_HS20
8695         } else if (os_strncmp(buf, "HS20_ANQP_GET ", 14) == 0) {
8696                 if (get_hs20_anqp(wpa_s, buf + 14) < 0)
8697                         reply_len = -1;
8698         } else if (os_strncmp(buf, "HS20_GET_NAI_HOME_REALM_LIST ", 29) == 0) {
8699                 if (hs20_get_nai_home_realm_list(wpa_s, buf + 29) < 0)
8700                         reply_len = -1;
8701         } else if (os_strncmp(buf, "HS20_ICON_REQUEST ", 18) == 0) {
8702                 if (hs20_icon_request(wpa_s, buf + 18, 0) < 0)
8703                         reply_len = -1;
8704         } else if (os_strncmp(buf, "REQ_HS20_ICON ", 14) == 0) {
8705                 if (hs20_icon_request(wpa_s, buf + 14, 1) < 0)
8706                         reply_len = -1;
8707         } else if (os_strncmp(buf, "GET_HS20_ICON ", 14) == 0) {
8708                 reply_len = get_hs20_icon(wpa_s, buf + 14, reply, reply_size);
8709         } else if (os_strncmp(buf, "DEL_HS20_ICON ", 14) == 0) {
8710                 if (del_hs20_icon(wpa_s, buf + 14) < 0)
8711                         reply_len = -1;
8712         } else if (os_strcmp(buf, "FETCH_OSU") == 0) {
8713                 if (hs20_fetch_osu(wpa_s) < 0)
8714                         reply_len = -1;
8715         } else if (os_strcmp(buf, "CANCEL_FETCH_OSU") == 0) {
8716                 hs20_cancel_fetch_osu(wpa_s);
8717 #endif /* CONFIG_HS20 */
8718         } else if (os_strncmp(buf, WPA_CTRL_RSP, os_strlen(WPA_CTRL_RSP)) == 0)
8719         {
8720                 if (wpa_supplicant_ctrl_iface_ctrl_rsp(
8721                             wpa_s, buf + os_strlen(WPA_CTRL_RSP)))
8722                         reply_len = -1;
8723                 else {
8724                         /*
8725                          * Notify response from timeout to allow the control
8726                          * interface response to be sent first.
8727                          */
8728                         eloop_register_timeout(0, 0, wpas_ctrl_eapol_response,
8729                                                wpa_s, NULL);
8730                 }
8731         } else if (os_strcmp(buf, "RECONFIGURE") == 0) {
8732                 if (wpa_supplicant_reload_configuration(wpa_s))
8733                         reply_len = -1;
8734         } else if (os_strcmp(buf, "TERMINATE") == 0) {
8735                 wpa_supplicant_terminate_proc(wpa_s->global);
8736         } else if (os_strncmp(buf, "BSSID ", 6) == 0) {
8737                 if (wpa_supplicant_ctrl_iface_bssid(wpa_s, buf + 6))
8738                         reply_len = -1;
8739         } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
8740                 reply_len = wpa_supplicant_ctrl_iface_blacklist(
8741                         wpa_s, buf + 9, reply, reply_size);
8742         } else if (os_strncmp(buf, "LOG_LEVEL", 9) == 0) {
8743                 reply_len = wpa_supplicant_ctrl_iface_log_level(
8744                         wpa_s, buf + 9, reply, reply_size);
8745         } else if (os_strncmp(buf, "LIST_NETWORKS ", 14) == 0) {
8746                 reply_len = wpa_supplicant_ctrl_iface_list_networks(
8747                         wpa_s, buf + 14, reply, reply_size);
8748         } else if (os_strcmp(buf, "LIST_NETWORKS") == 0) {
8749                 reply_len = wpa_supplicant_ctrl_iface_list_networks(
8750                         wpa_s, NULL, reply, reply_size);
8751         } else if (os_strcmp(buf, "DISCONNECT") == 0) {
8752 #ifdef CONFIG_SME
8753                 wpa_s->sme.prev_bssid_set = 0;
8754 #endif /* CONFIG_SME */
8755                 wpa_s->reassociate = 0;
8756                 wpa_s->disconnected = 1;
8757                 wpa_supplicant_cancel_sched_scan(wpa_s);
8758                 wpa_supplicant_cancel_scan(wpa_s);
8759                 wpa_supplicant_deauthenticate(wpa_s,
8760                                               WLAN_REASON_DEAUTH_LEAVING);
8761                 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
8762         } else if (os_strcmp(buf, "SCAN") == 0) {
8763                 wpas_ctrl_scan(wpa_s, NULL, reply, reply_size, &reply_len);
8764         } else if (os_strncmp(buf, "SCAN ", 5) == 0) {
8765                 wpas_ctrl_scan(wpa_s, buf + 5, reply, reply_size, &reply_len);
8766         } else if (os_strcmp(buf, "SCAN_RESULTS") == 0) {
8767                 reply_len = wpa_supplicant_ctrl_iface_scan_results(
8768                         wpa_s, reply, reply_size);
8769         } else if (os_strcmp(buf, "ABORT_SCAN") == 0) {
8770                 if (wpas_abort_ongoing_scan(wpa_s) < 0)
8771                         reply_len = -1;
8772         } else if (os_strncmp(buf, "SELECT_NETWORK ", 15) == 0) {
8773                 if (wpa_supplicant_ctrl_iface_select_network(wpa_s, buf + 15))
8774                         reply_len = -1;
8775         } else if (os_strncmp(buf, "ENABLE_NETWORK ", 15) == 0) {
8776                 if (wpa_supplicant_ctrl_iface_enable_network(wpa_s, buf + 15))
8777                         reply_len = -1;
8778         } else if (os_strncmp(buf, "DISABLE_NETWORK ", 16) == 0) {
8779                 if (wpa_supplicant_ctrl_iface_disable_network(wpa_s, buf + 16))
8780                         reply_len = -1;
8781         } else if (os_strcmp(buf, "ADD_NETWORK") == 0) {
8782                 reply_len = wpa_supplicant_ctrl_iface_add_network(
8783                         wpa_s, reply, reply_size);
8784         } else if (os_strncmp(buf, "REMOVE_NETWORK ", 15) == 0) {
8785                 if (wpa_supplicant_ctrl_iface_remove_network(wpa_s, buf + 15))
8786                         reply_len = -1;
8787         } else if (os_strncmp(buf, "SET_NETWORK ", 12) == 0) {
8788                 if (wpa_supplicant_ctrl_iface_set_network(wpa_s, buf + 12))
8789                         reply_len = -1;
8790         } else if (os_strncmp(buf, "GET_NETWORK ", 12) == 0) {
8791                 reply_len = wpa_supplicant_ctrl_iface_get_network(
8792                         wpa_s, buf + 12, reply, reply_size);
8793         } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
8794                 if (wpa_supplicant_ctrl_iface_dup_network(wpa_s, buf + 12,
8795                                                           wpa_s))
8796                         reply_len = -1;
8797         } else if (os_strcmp(buf, "LIST_CREDS") == 0) {
8798                 reply_len = wpa_supplicant_ctrl_iface_list_creds(
8799                         wpa_s, reply, reply_size);
8800         } else if (os_strcmp(buf, "ADD_CRED") == 0) {
8801                 reply_len = wpa_supplicant_ctrl_iface_add_cred(
8802                         wpa_s, reply, reply_size);
8803         } else if (os_strncmp(buf, "REMOVE_CRED ", 12) == 0) {
8804                 if (wpa_supplicant_ctrl_iface_remove_cred(wpa_s, buf + 12))
8805                         reply_len = -1;
8806         } else if (os_strncmp(buf, "SET_CRED ", 9) == 0) {
8807                 if (wpa_supplicant_ctrl_iface_set_cred(wpa_s, buf + 9))
8808                         reply_len = -1;
8809         } else if (os_strncmp(buf, "GET_CRED ", 9) == 0) {
8810                 reply_len = wpa_supplicant_ctrl_iface_get_cred(wpa_s, buf + 9,
8811                                                                reply,
8812                                                                reply_size);
8813 #ifndef CONFIG_NO_CONFIG_WRITE
8814         } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
8815                 if (wpa_supplicant_ctrl_iface_save_config(wpa_s))
8816                         reply_len = -1;
8817 #endif /* CONFIG_NO_CONFIG_WRITE */
8818         } else if (os_strncmp(buf, "GET_CAPABILITY ", 15) == 0) {
8819                 reply_len = wpa_supplicant_ctrl_iface_get_capability(
8820                         wpa_s, buf + 15, reply, reply_size);
8821         } else if (os_strncmp(buf, "AP_SCAN ", 8) == 0) {
8822                 if (wpa_supplicant_ctrl_iface_ap_scan(wpa_s, buf + 8))
8823                         reply_len = -1;
8824         } else if (os_strncmp(buf, "SCAN_INTERVAL ", 14) == 0) {
8825                 if (wpa_supplicant_ctrl_iface_scan_interval(wpa_s, buf + 14))
8826                         reply_len = -1;
8827         } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
8828                 reply_len = wpa_supplicant_global_iface_list(
8829                         wpa_s->global, reply, reply_size);
8830         } else if (os_strcmp(buf, "INTERFACES") == 0) {
8831                 reply_len = wpa_supplicant_global_iface_interfaces(
8832                         wpa_s->global, reply, reply_size);
8833         } else if (os_strncmp(buf, "BSS ", 4) == 0) {
8834                 reply_len = wpa_supplicant_ctrl_iface_bss(
8835                         wpa_s, buf + 4, reply, reply_size);
8836 #ifdef CONFIG_AP
8837         } else if (os_strcmp(buf, "STA-FIRST") == 0) {
8838                 reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
8839         } else if (os_strncmp(buf, "STA ", 4) == 0) {
8840                 reply_len = ap_ctrl_iface_sta(wpa_s, buf + 4, reply,
8841                                               reply_size);
8842         } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
8843                 reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
8844                                                    reply_size);
8845         } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
8846                 if (ap_ctrl_iface_sta_deauthenticate(wpa_s, buf + 15))
8847                         reply_len = -1;
8848         } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
8849                 if (ap_ctrl_iface_sta_disassociate(wpa_s, buf + 13))
8850                         reply_len = -1;
8851         } else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
8852                 if (ap_ctrl_iface_chanswitch(wpa_s, buf + 12))
8853                         reply_len = -1;
8854         } else if (os_strcmp(buf, "STOP_AP") == 0) {
8855                 if (wpas_ap_stop_ap(wpa_s))
8856                         reply_len = -1;
8857 #endif /* CONFIG_AP */
8858         } else if (os_strcmp(buf, "SUSPEND") == 0) {
8859                 wpas_notify_suspend(wpa_s->global);
8860         } else if (os_strcmp(buf, "RESUME") == 0) {
8861                 wpas_notify_resume(wpa_s->global);
8862 #ifdef CONFIG_TESTING_OPTIONS
8863         } else if (os_strcmp(buf, "DROP_SA") == 0) {
8864                 wpa_supplicant_ctrl_iface_drop_sa(wpa_s);
8865 #endif /* CONFIG_TESTING_OPTIONS */
8866         } else if (os_strncmp(buf, "ROAM ", 5) == 0) {
8867                 if (wpa_supplicant_ctrl_iface_roam(wpa_s, buf + 5))
8868                         reply_len = -1;
8869         } else if (os_strncmp(buf, "STA_AUTOCONNECT ", 16) == 0) {
8870                 wpa_s->auto_reconnect_disabled = atoi(buf + 16) == 0;
8871         } else if (os_strncmp(buf, "BSS_EXPIRE_AGE ", 15) == 0) {
8872                 if (wpa_supplicant_ctrl_iface_bss_expire_age(wpa_s, buf + 15))
8873                         reply_len = -1;
8874         } else if (os_strncmp(buf, "BSS_EXPIRE_COUNT ", 17) == 0) {
8875                 if (wpa_supplicant_ctrl_iface_bss_expire_count(wpa_s,
8876                                                                buf + 17))
8877                         reply_len = -1;
8878         } else if (os_strncmp(buf, "BSS_FLUSH ", 10) == 0) {
8879                 wpa_supplicant_ctrl_iface_bss_flush(wpa_s, buf + 10);
8880 #ifdef CONFIG_TDLS
8881         } else if (os_strncmp(buf, "TDLS_DISCOVER ", 14) == 0) {
8882                 if (wpa_supplicant_ctrl_iface_tdls_discover(wpa_s, buf + 14))
8883                         reply_len = -1;
8884         } else if (os_strncmp(buf, "TDLS_SETUP ", 11) == 0) {
8885                 if (wpa_supplicant_ctrl_iface_tdls_setup(wpa_s, buf + 11))
8886                         reply_len = -1;
8887         } else if (os_strncmp(buf, "TDLS_TEARDOWN ", 14) == 0) {
8888                 if (wpa_supplicant_ctrl_iface_tdls_teardown(wpa_s, buf + 14))
8889                         reply_len = -1;
8890         } else if (os_strncmp(buf, "TDLS_CHAN_SWITCH ", 17) == 0) {
8891                 if (wpa_supplicant_ctrl_iface_tdls_chan_switch(wpa_s,
8892                                                                buf + 17))
8893                         reply_len = -1;
8894         } else if (os_strncmp(buf, "TDLS_CANCEL_CHAN_SWITCH ", 24) == 0) {
8895                 if (wpa_supplicant_ctrl_iface_tdls_cancel_chan_switch(wpa_s,
8896                                                                       buf + 24))
8897                         reply_len = -1;
8898         } else if (os_strncmp(buf, "TDLS_LINK_STATUS ", 17) == 0) {
8899                 reply_len = wpa_supplicant_ctrl_iface_tdls_link_status(
8900                         wpa_s, buf + 17, reply, reply_size);
8901 #endif /* CONFIG_TDLS */
8902         } else if (os_strcmp(buf, "WMM_AC_STATUS") == 0) {
8903                 reply_len = wpas_wmm_ac_status(wpa_s, reply, reply_size);
8904         } else if (os_strncmp(buf, "WMM_AC_ADDTS ", 13) == 0) {
8905                 if (wmm_ac_ctrl_addts(wpa_s, buf + 13))
8906                         reply_len = -1;
8907         } else if (os_strncmp(buf, "WMM_AC_DELTS ", 13) == 0) {
8908                 if (wmm_ac_ctrl_delts(wpa_s, buf + 13))
8909                         reply_len = -1;
8910         } else if (os_strncmp(buf, "SIGNAL_POLL", 11) == 0) {
8911                 reply_len = wpa_supplicant_signal_poll(wpa_s, reply,
8912                                                        reply_size);
8913         } else if (os_strncmp(buf, "SIGNAL_MONITOR", 14) == 0) {
8914                 if (wpas_ctrl_iface_signal_monitor(wpa_s, buf + 14))
8915                         reply_len = -1;
8916         } else if (os_strncmp(buf, "PKTCNT_POLL", 11) == 0) {
8917                 reply_len = wpa_supplicant_pktcnt_poll(wpa_s, reply,
8918                                                        reply_size);
8919 #ifdef CONFIG_AUTOSCAN
8920         } else if (os_strncmp(buf, "AUTOSCAN ", 9) == 0) {
8921                 if (wpa_supplicant_ctrl_iface_autoscan(wpa_s, buf + 9))
8922                         reply_len = -1;
8923 #endif /* CONFIG_AUTOSCAN */
8924 #ifdef ANDROID
8925         } else if (os_strncmp(buf, "DRIVER ", 7) == 0) {
8926                 reply_len = wpa_supplicant_driver_cmd(wpa_s, buf + 7, reply,
8927                                                       reply_size);
8928 #endif /* ANDROID */
8929         } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
8930                 reply_len = wpa_supplicant_vendor_cmd(wpa_s, buf + 7, reply,
8931                                                       reply_size);
8932         } else if (os_strcmp(buf, "REAUTHENTICATE") == 0) {
8933                 pmksa_cache_clear_current(wpa_s->wpa);
8934                 eapol_sm_request_reauth(wpa_s->eapol);
8935 #ifdef CONFIG_WNM
8936         } else if (os_strncmp(buf, "WNM_SLEEP ", 10) == 0) {
8937                 if (wpas_ctrl_iface_wnm_sleep(wpa_s, buf + 10))
8938                         reply_len = -1;
8939         } else if (os_strncmp(buf, "WNM_BSS_QUERY ", 14) == 0) {
8940                 if (wpas_ctrl_iface_wnm_bss_query(wpa_s, buf + 14))
8941                                 reply_len = -1;
8942 #endif /* CONFIG_WNM */
8943         } else if (os_strcmp(buf, "FLUSH") == 0) {
8944                 wpa_supplicant_ctrl_iface_flush(wpa_s);
8945         } else if (os_strncmp(buf, "RADIO_WORK ", 11) == 0) {
8946                 reply_len = wpas_ctrl_radio_work(wpa_s, buf + 11, reply,
8947                                                  reply_size);
8948 #ifdef CONFIG_TESTING_OPTIONS
8949         } else if (os_strncmp(buf, "MGMT_TX ", 8) == 0) {
8950                 if (wpas_ctrl_iface_mgmt_tx(wpa_s, buf + 8) < 0)
8951                         reply_len = -1;
8952         } else if (os_strcmp(buf, "MGMT_TX_DONE") == 0) {
8953                 wpas_ctrl_iface_mgmt_tx_done(wpa_s);
8954         } else if (os_strncmp(buf, "DRIVER_EVENT ", 13) == 0) {
8955                 if (wpas_ctrl_iface_driver_event(wpa_s, buf + 13) < 0)
8956                         reply_len = -1;
8957         } else if (os_strncmp(buf, "EAPOL_RX ", 9) == 0) {
8958                 if (wpas_ctrl_iface_eapol_rx(wpa_s, buf + 9) < 0)
8959                         reply_len = -1;
8960         } else if (os_strncmp(buf, "DATA_TEST_CONFIG ", 17) == 0) {
8961                 if (wpas_ctrl_iface_data_test_config(wpa_s, buf + 17) < 0)
8962                         reply_len = -1;
8963         } else if (os_strncmp(buf, "DATA_TEST_TX ", 13) == 0) {
8964                 if (wpas_ctrl_iface_data_test_tx(wpa_s, buf + 13) < 0)
8965                         reply_len = -1;
8966         } else if (os_strncmp(buf, "DATA_TEST_FRAME ", 16) == 0) {
8967                 if (wpas_ctrl_iface_data_test_frame(wpa_s, buf + 16) < 0)
8968                         reply_len = -1;
8969         } else if (os_strncmp(buf, "TEST_ALLOC_FAIL ", 16) == 0) {
8970                 if (wpas_ctrl_test_alloc_fail(wpa_s, buf + 16) < 0)
8971                         reply_len = -1;
8972         } else if (os_strcmp(buf, "GET_ALLOC_FAIL") == 0) {
8973                 reply_len = wpas_ctrl_get_alloc_fail(wpa_s, reply, reply_size);
8974         } else if (os_strncmp(buf, "TEST_FAIL ", 10) == 0) {
8975                 if (wpas_ctrl_test_fail(wpa_s, buf + 10) < 0)
8976                         reply_len = -1;
8977         } else if (os_strcmp(buf, "GET_FAIL") == 0) {
8978                 reply_len = wpas_ctrl_get_fail(wpa_s, reply, reply_size);
8979         } else if (os_strncmp(buf, "EVENT_TEST ", 11) == 0) {
8980                 if (wpas_ctrl_event_test(wpa_s, buf + 11) < 0)
8981                         reply_len = -1;
8982         } else if (os_strncmp(buf, "TEST_ASSOC_IE ", 14) == 0) {
8983                 if (wpas_ctrl_test_assoc_ie(wpa_s, buf + 14) < 0)
8984                         reply_len = -1;
8985 #endif /* CONFIG_TESTING_OPTIONS */
8986         } else if (os_strncmp(buf, "VENDOR_ELEM_ADD ", 16) == 0) {
8987                 if (wpas_ctrl_vendor_elem_add(wpa_s, buf + 16) < 0)
8988                         reply_len = -1;
8989         } else if (os_strncmp(buf, "VENDOR_ELEM_GET ", 16) == 0) {
8990                 reply_len = wpas_ctrl_vendor_elem_get(wpa_s, buf + 16, reply,
8991                                                       reply_size);
8992         } else if (os_strncmp(buf, "VENDOR_ELEM_REMOVE ", 19) == 0) {
8993                 if (wpas_ctrl_vendor_elem_remove(wpa_s, buf + 19) < 0)
8994                         reply_len = -1;
8995         } else if (os_strncmp(buf, "NEIGHBOR_REP_REQUEST", 20) == 0) {
8996                 if (wpas_ctrl_iface_send_neigbor_rep(wpa_s, buf + 20))
8997                         reply_len = -1;
8998         } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
8999                 wpas_ctrl_iface_erp_flush(wpa_s);
9000         } else if (os_strncmp(buf, "MAC_RAND_SCAN ", 14) == 0) {
9001                 if (wpas_ctrl_iface_mac_rand_scan(wpa_s, buf + 14))
9002                         reply_len = -1;
9003         } else if (os_strncmp(buf, "GET_PREF_FREQ_LIST ", 19) == 0) {
9004                 reply_len = wpas_ctrl_iface_get_pref_freq_list(
9005                         wpa_s, buf + 19, reply, reply_size);
9006         } else {
9007                 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
9008                 reply_len = 16;
9009         }
9010
9011         if (reply_len < 0) {
9012                 os_memcpy(reply, "FAIL\n", 5);
9013                 reply_len = 5;
9014         }
9015
9016         *resp_len = reply_len;
9017         return reply;
9018 }
9019
9020
9021 static int wpa_supplicant_global_iface_add(struct wpa_global *global,
9022                                            char *cmd)
9023 {
9024         struct wpa_interface iface;
9025         char *pos, *extra;
9026         struct wpa_supplicant *wpa_s;
9027         unsigned int create_iface = 0;
9028         u8 mac_addr[ETH_ALEN];
9029         enum wpa_driver_if_type type = WPA_IF_STATION;
9030
9031         /*
9032          * <ifname>TAB<confname>TAB<driver>TAB<ctrl_interface>TAB<driver_param>
9033          * TAB<bridge_ifname>[TAB<create>[TAB<interface_type>]]
9034          */
9035         wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_ADD '%s'", cmd);
9036
9037         os_memset(&iface, 0, sizeof(iface));
9038
9039         do {
9040                 iface.ifname = pos = cmd;
9041                 pos = os_strchr(pos, '\t');
9042                 if (pos)
9043                         *pos++ = '\0';
9044                 if (iface.ifname[0] == '\0')
9045                         return -1;
9046                 if (pos == NULL)
9047                         break;
9048
9049                 iface.confname = pos;
9050                 pos = os_strchr(pos, '\t');
9051                 if (pos)
9052                         *pos++ = '\0';
9053                 if (iface.confname[0] == '\0')
9054                         iface.confname = NULL;
9055                 if (pos == NULL)
9056                         break;
9057
9058                 iface.driver = pos;
9059                 pos = os_strchr(pos, '\t');
9060                 if (pos)
9061                         *pos++ = '\0';
9062                 if (iface.driver[0] == '\0')
9063                         iface.driver = NULL;
9064                 if (pos == NULL)
9065                         break;
9066
9067                 iface.ctrl_interface = pos;
9068                 pos = os_strchr(pos, '\t');
9069                 if (pos)
9070                         *pos++ = '\0';
9071                 if (iface.ctrl_interface[0] == '\0')
9072                         iface.ctrl_interface = NULL;
9073                 if (pos == NULL)
9074                         break;
9075
9076                 iface.driver_param = pos;
9077                 pos = os_strchr(pos, '\t');
9078                 if (pos)
9079                         *pos++ = '\0';
9080                 if (iface.driver_param[0] == '\0')
9081                         iface.driver_param = NULL;
9082                 if (pos == NULL)
9083                         break;
9084
9085                 iface.bridge_ifname = pos;
9086                 pos = os_strchr(pos, '\t');
9087                 if (pos)
9088                         *pos++ = '\0';
9089                 if (iface.bridge_ifname[0] == '\0')
9090                         iface.bridge_ifname = NULL;
9091                 if (pos == NULL)
9092                         break;
9093
9094                 extra = pos;
9095                 pos = os_strchr(pos, '\t');
9096                 if (pos)
9097                         *pos++ = '\0';
9098                 if (!extra[0])
9099                         break;
9100
9101                 if (os_strcmp(extra, "create") == 0) {
9102                         create_iface = 1;
9103                         if (!pos)
9104                                 break;
9105
9106                         if (os_strcmp(pos, "sta") == 0) {
9107                                 type = WPA_IF_STATION;
9108                         } else if (os_strcmp(pos, "ap") == 0) {
9109                                 type = WPA_IF_AP_BSS;
9110                         } else {
9111                                 wpa_printf(MSG_DEBUG,
9112                                            "INTERFACE_ADD unsupported interface type: '%s'",
9113                                            pos);
9114                                 return -1;
9115                         }
9116                 } else {
9117                         wpa_printf(MSG_DEBUG,
9118                                    "INTERFACE_ADD unsupported extra parameter: '%s'",
9119                                    extra);
9120                         return -1;
9121                 }
9122         } while (0);
9123
9124         if (create_iface) {
9125                 wpa_printf(MSG_DEBUG, "CTRL_IFACE creating interface '%s'",
9126                            iface.ifname);
9127                 if (!global->ifaces)
9128                         return -1;
9129                 if (wpa_drv_if_add(global->ifaces, type, iface.ifname,
9130                                    NULL, NULL, NULL, mac_addr, NULL) < 0) {
9131                         wpa_printf(MSG_ERROR,
9132                                    "CTRL_IFACE interface creation failed");
9133                         return -1;
9134                 }
9135
9136                 wpa_printf(MSG_DEBUG,
9137                            "CTRL_IFACE interface '%s' created with MAC addr: "
9138                            MACSTR, iface.ifname, MAC2STR(mac_addr));
9139         }
9140
9141         if (wpa_supplicant_get_iface(global, iface.ifname))
9142                 goto fail;
9143
9144         wpa_s = wpa_supplicant_add_iface(global, &iface, NULL);
9145         if (!wpa_s)
9146                 goto fail;
9147         wpa_s->added_vif = create_iface;
9148         return 0;
9149
9150 fail:
9151         if (create_iface)
9152                 wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, iface.ifname);
9153         return -1;
9154 }
9155
9156
9157 static int wpa_supplicant_global_iface_remove(struct wpa_global *global,
9158                                               char *cmd)
9159 {
9160         struct wpa_supplicant *wpa_s;
9161         int ret;
9162         unsigned int delete_iface;
9163
9164         wpa_printf(MSG_DEBUG, "CTRL_IFACE GLOBAL INTERFACE_REMOVE '%s'", cmd);
9165
9166         wpa_s = wpa_supplicant_get_iface(global, cmd);
9167         if (wpa_s == NULL)
9168                 return -1;
9169         delete_iface = wpa_s->added_vif;
9170         ret = wpa_supplicant_remove_iface(global, wpa_s, 0);
9171         if (!ret && delete_iface) {
9172                 wpa_printf(MSG_DEBUG, "CTRL_IFACE deleting the interface '%s'",
9173                            cmd);
9174                 ret = wpa_drv_if_remove(global->ifaces, WPA_IF_STATION, cmd);
9175         }
9176         return ret;
9177 }
9178
9179
9180 static void wpa_free_iface_info(struct wpa_interface_info *iface)
9181 {
9182         struct wpa_interface_info *prev;
9183
9184         while (iface) {
9185                 prev = iface;
9186                 iface = iface->next;
9187
9188                 os_free(prev->ifname);
9189                 os_free(prev->desc);
9190                 os_free(prev);
9191         }
9192 }
9193
9194
9195 static int wpa_supplicant_global_iface_list(struct wpa_global *global,
9196                                             char *buf, int len)
9197 {
9198         int i, res;
9199         struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
9200         char *pos, *end;
9201
9202         for (i = 0; wpa_drivers[i]; i++) {
9203                 const struct wpa_driver_ops *drv = wpa_drivers[i];
9204                 if (drv->get_interfaces == NULL)
9205                         continue;
9206                 tmp = drv->get_interfaces(global->drv_priv[i]);
9207                 if (tmp == NULL)
9208                         continue;
9209
9210                 if (last == NULL)
9211                         iface = last = tmp;
9212                 else
9213                         last->next = tmp;
9214                 while (last->next)
9215                         last = last->next;
9216         }
9217
9218         pos = buf;
9219         end = buf + len;
9220         for (tmp = iface; tmp; tmp = tmp->next) {
9221                 res = os_snprintf(pos, end - pos, "%s\t%s\t%s\n",
9222                                   tmp->drv_name, tmp->ifname,
9223                                   tmp->desc ? tmp->desc : "");
9224                 if (os_snprintf_error(end - pos, res)) {
9225                         *pos = '\0';
9226                         break;
9227                 }
9228                 pos += res;
9229         }
9230
9231         wpa_free_iface_info(iface);
9232
9233         return pos - buf;
9234 }
9235
9236
9237 static int wpa_supplicant_global_iface_interfaces(struct wpa_global *global,
9238                                                   char *buf, int len)
9239 {
9240         int res;
9241         char *pos, *end;
9242         struct wpa_supplicant *wpa_s;
9243
9244         wpa_s = global->ifaces;
9245         pos = buf;
9246         end = buf + len;
9247
9248         while (wpa_s) {
9249                 res = os_snprintf(pos, end - pos, "%s\n", wpa_s->ifname);
9250                 if (os_snprintf_error(end - pos, res)) {
9251                         *pos = '\0';
9252                         break;
9253                 }
9254                 pos += res;
9255                 wpa_s = wpa_s->next;
9256         }
9257         return pos - buf;
9258 }
9259
9260
9261 static char * wpas_global_ctrl_iface_ifname(struct wpa_global *global,
9262                                             const char *ifname,
9263                                             char *cmd, size_t *resp_len)
9264 {
9265         struct wpa_supplicant *wpa_s;
9266
9267         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9268                 if (os_strcmp(ifname, wpa_s->ifname) == 0)
9269                         break;
9270         }
9271
9272         if (wpa_s == NULL) {
9273                 char *resp = os_strdup("FAIL-NO-IFNAME-MATCH\n");
9274                 if (resp)
9275                         *resp_len = os_strlen(resp);
9276                 else
9277                         *resp_len = 1;
9278                 return resp;
9279         }
9280
9281         return wpa_supplicant_ctrl_iface_process(wpa_s, cmd, resp_len);
9282 }
9283
9284
9285 static char * wpas_global_ctrl_iface_redir_p2p(struct wpa_global *global,
9286                                                char *buf, size_t *resp_len)
9287 {
9288 #ifdef CONFIG_P2P
9289         static const char * cmd[] = {
9290                 "LIST_NETWORKS",
9291                 "P2P_FIND",
9292                 "P2P_STOP_FIND",
9293                 "P2P_LISTEN",
9294                 "P2P_GROUP_ADD",
9295                 "P2P_GET_PASSPHRASE",
9296                 "P2P_SERVICE_UPDATE",
9297                 "P2P_SERVICE_FLUSH",
9298                 "P2P_FLUSH",
9299                 "P2P_CANCEL",
9300                 "P2P_PRESENCE_REQ",
9301                 "P2P_EXT_LISTEN",
9302                 NULL
9303         };
9304         static const char * prefix[] = {
9305 #ifdef ANDROID
9306                 "DRIVER ",
9307 #endif /* ANDROID */
9308                 "GET_NETWORK ",
9309                 "REMOVE_NETWORK ",
9310                 "P2P_FIND ",
9311                 "P2P_CONNECT ",
9312                 "P2P_LISTEN ",
9313                 "P2P_GROUP_REMOVE ",
9314                 "P2P_GROUP_ADD ",
9315                 "P2P_PROV_DISC ",
9316                 "P2P_SERV_DISC_REQ ",
9317                 "P2P_SERV_DISC_CANCEL_REQ ",
9318                 "P2P_SERV_DISC_RESP ",
9319                 "P2P_SERV_DISC_EXTERNAL ",
9320                 "P2P_SERVICE_ADD ",
9321                 "P2P_SERVICE_DEL ",
9322                 "P2P_SERVICE_REP ",
9323                 "P2P_REJECT ",
9324                 "P2P_INVITE ",
9325                 "P2P_PEER ",
9326                 "P2P_SET ",
9327                 "P2P_UNAUTHORIZE ",
9328                 "P2P_PRESENCE_REQ ",
9329                 "P2P_EXT_LISTEN ",
9330                 "P2P_REMOVE_CLIENT ",
9331                 "WPS_NFC_TOKEN ",
9332                 "WPS_NFC_TAG_READ ",
9333                 "NFC_GET_HANDOVER_SEL ",
9334                 "NFC_GET_HANDOVER_REQ ",
9335                 "NFC_REPORT_HANDOVER ",
9336                 "P2P_ASP_PROVISION ",
9337                 "P2P_ASP_PROVISION_RESP ",
9338                 NULL
9339         };
9340         int found = 0;
9341         int i;
9342
9343         if (global->p2p_init_wpa_s == NULL)
9344                 return NULL;
9345
9346         for (i = 0; !found && cmd[i]; i++) {
9347                 if (os_strcmp(buf, cmd[i]) == 0)
9348                         found = 1;
9349         }
9350
9351         for (i = 0; !found && prefix[i]; i++) {
9352                 if (os_strncmp(buf, prefix[i], os_strlen(prefix[i])) == 0)
9353                         found = 1;
9354         }
9355
9356         if (found)
9357                 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9358                                                          buf, resp_len);
9359 #endif /* CONFIG_P2P */
9360         return NULL;
9361 }
9362
9363
9364 static char * wpas_global_ctrl_iface_redir_wfd(struct wpa_global *global,
9365                                                char *buf, size_t *resp_len)
9366 {
9367 #ifdef CONFIG_WIFI_DISPLAY
9368         if (global->p2p_init_wpa_s == NULL)
9369                 return NULL;
9370         if (os_strncmp(buf, "WFD_SUBELEM_SET ", 16) == 0 ||
9371             os_strncmp(buf, "WFD_SUBELEM_GET ", 16) == 0)
9372                 return wpa_supplicant_ctrl_iface_process(global->p2p_init_wpa_s,
9373                                                          buf, resp_len);
9374 #endif /* CONFIG_WIFI_DISPLAY */
9375         return NULL;
9376 }
9377
9378
9379 static char * wpas_global_ctrl_iface_redir(struct wpa_global *global,
9380                                            char *buf, size_t *resp_len)
9381 {
9382         char *ret;
9383
9384         ret = wpas_global_ctrl_iface_redir_p2p(global, buf, resp_len);
9385         if (ret)
9386                 return ret;
9387
9388         ret = wpas_global_ctrl_iface_redir_wfd(global, buf, resp_len);
9389         if (ret)
9390                 return ret;
9391
9392         return NULL;
9393 }
9394
9395
9396 static int wpas_global_ctrl_iface_set(struct wpa_global *global, char *cmd)
9397 {
9398         char *value;
9399
9400         value = os_strchr(cmd, ' ');
9401         if (value == NULL)
9402                 return -1;
9403         *value++ = '\0';
9404
9405         wpa_printf(MSG_DEBUG, "GLOBAL_CTRL_IFACE SET '%s'='%s'", cmd, value);
9406
9407 #ifdef CONFIG_WIFI_DISPLAY
9408         if (os_strcasecmp(cmd, "wifi_display") == 0) {
9409                 wifi_display_enable(global, !!atoi(value));
9410                 return 0;
9411         }
9412 #endif /* CONFIG_WIFI_DISPLAY */
9413
9414         /* Restore cmd to its original value to allow redirection */
9415         value[-1] = ' ';
9416
9417         return -1;
9418 }
9419
9420
9421 static int wpas_global_ctrl_iface_dup_network(struct wpa_global *global,
9422                                               char *cmd)
9423 {
9424         struct wpa_supplicant *wpa_s[2]; /* src, dst */
9425         char *p;
9426         unsigned int i;
9427
9428         /* cmd: "<src ifname> <dst ifname> <src network id> <dst network id>
9429          * <variable name> */
9430
9431         for (i = 0; i < ARRAY_SIZE(wpa_s) ; i++) {
9432                 p = os_strchr(cmd, ' ');
9433                 if (p == NULL)
9434                         return -1;
9435                 *p = '\0';
9436
9437                 wpa_s[i] = global->ifaces;
9438                 for (; wpa_s[i]; wpa_s[i] = wpa_s[i]->next) {
9439                         if (os_strcmp(cmd, wpa_s[i]->ifname) == 0)
9440                                 break;
9441                 }
9442
9443                 if (!wpa_s[i]) {
9444                         wpa_printf(MSG_DEBUG,
9445                                    "CTRL_IFACE: Could not find iface=%s", cmd);
9446                         return -1;
9447                 }
9448
9449                 cmd = p + 1;
9450         }
9451
9452         return wpa_supplicant_ctrl_iface_dup_network(wpa_s[0], cmd, wpa_s[1]);
9453 }
9454
9455
9456 #ifndef CONFIG_NO_CONFIG_WRITE
9457 static int wpas_global_ctrl_iface_save_config(struct wpa_global *global)
9458 {
9459         int ret = 0, saved = 0;
9460         struct wpa_supplicant *wpa_s;
9461
9462         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9463                 if (!wpa_s->conf->update_config) {
9464                         wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Not allowed to update configuration (update_config=0)");
9465                         continue;
9466                 }
9467
9468                 if (wpa_config_write(wpa_s->confname, wpa_s->conf)) {
9469                         wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Failed to update configuration");
9470                         ret = 1;
9471                 } else {
9472                         wpa_dbg(wpa_s, MSG_DEBUG, "CTRL_IFACE: SAVE_CONFIG - Configuration updated");
9473                         saved++;
9474                 }
9475         }
9476
9477         if (!saved && !ret) {
9478                 wpa_dbg(wpa_s, MSG_DEBUG,
9479                         "CTRL_IFACE: SAVE_CONFIG - No configuration files could be updated");
9480                 ret = 1;
9481         }
9482
9483         return ret;
9484 }
9485 #endif /* CONFIG_NO_CONFIG_WRITE */
9486
9487
9488 static int wpas_global_ctrl_iface_status(struct wpa_global *global,
9489                                          char *buf, size_t buflen)
9490 {
9491         char *pos, *end;
9492         int ret;
9493         struct wpa_supplicant *wpa_s;
9494
9495         pos = buf;
9496         end = buf + buflen;
9497
9498 #ifdef CONFIG_P2P
9499         if (global->p2p && !global->p2p_disabled) {
9500                 ret = os_snprintf(pos, end - pos, "p2p_device_address=" MACSTR
9501                                   "\n"
9502                                   "p2p_state=%s\n",
9503                                   MAC2STR(global->p2p_dev_addr),
9504                                   p2p_get_state_txt(global->p2p));
9505                 if (os_snprintf_error(end - pos, ret))
9506                         return pos - buf;
9507                 pos += ret;
9508         } else if (global->p2p) {
9509                 ret = os_snprintf(pos, end - pos, "p2p_state=DISABLED\n");
9510                 if (os_snprintf_error(end - pos, ret))
9511                         return pos - buf;
9512                 pos += ret;
9513         }
9514 #endif /* CONFIG_P2P */
9515
9516 #ifdef CONFIG_WIFI_DISPLAY
9517         ret = os_snprintf(pos, end - pos, "wifi_display=%d\n",
9518                           !!global->wifi_display);
9519         if (os_snprintf_error(end - pos, ret))
9520                 return pos - buf;
9521         pos += ret;
9522 #endif /* CONFIG_WIFI_DISPLAY */
9523
9524         for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
9525                 ret = os_snprintf(pos, end - pos, "ifname=%s\n"
9526                                   "address=" MACSTR "\n",
9527                                   wpa_s->ifname, MAC2STR(wpa_s->own_addr));
9528                 if (os_snprintf_error(end - pos, ret))
9529                         return pos - buf;
9530                 pos += ret;
9531         }
9532
9533         return pos - buf;
9534 }
9535
9536
9537 #ifdef CONFIG_FST
9538
9539 static int wpas_global_ctrl_iface_fst_attach(struct wpa_global *global,
9540                                              char *cmd, char *buf,
9541                                              size_t reply_size)
9542 {
9543         char ifname[IFNAMSIZ + 1];
9544         struct fst_iface_cfg cfg;
9545         struct wpa_supplicant *wpa_s;
9546         struct fst_wpa_obj iface_obj;
9547
9548         if (!fst_parse_attach_command(cmd, ifname, sizeof(ifname), &cfg)) {
9549                 wpa_s = wpa_supplicant_get_iface(global, ifname);
9550                 if (wpa_s) {
9551                         if (wpa_s->fst) {
9552                                 wpa_printf(MSG_INFO, "FST: Already attached");
9553                                 return -1;
9554                         }
9555                         fst_wpa_supplicant_fill_iface_obj(wpa_s, &iface_obj);
9556                         wpa_s->fst = fst_attach(ifname, wpa_s->own_addr,
9557                                                 &iface_obj, &cfg);
9558                         if (wpa_s->fst)
9559                                 return os_snprintf(buf, reply_size, "OK\n");
9560                 }
9561         }
9562
9563         return -1;
9564 }
9565
9566
9567 static int wpas_global_ctrl_iface_fst_detach(struct wpa_global *global,
9568                                              char *cmd, char *buf,
9569                                              size_t reply_size)
9570 {
9571         char ifname[IFNAMSIZ + 1];
9572         struct wpa_supplicant *wpa_s;
9573
9574         if (!fst_parse_detach_command(cmd, ifname, sizeof(ifname))) {
9575                 wpa_s = wpa_supplicant_get_iface(global, ifname);
9576                 if (wpa_s) {
9577                         if (!fst_iface_detach(ifname)) {
9578                                 wpa_s->fst = NULL;
9579                                 return os_snprintf(buf, reply_size, "OK\n");
9580                         }
9581                 }
9582         }
9583
9584         return -1;
9585 }
9586
9587 #endif /* CONFIG_FST */
9588
9589
9590 char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global,
9591                                                 char *buf, size_t *resp_len)
9592 {
9593         char *reply;
9594         const int reply_size = 2048;
9595         int reply_len;
9596         int level = MSG_DEBUG;
9597
9598         if (os_strncmp(buf, "IFNAME=", 7) == 0) {
9599                 char *pos = os_strchr(buf + 7, ' ');
9600                 if (pos) {
9601                         *pos++ = '\0';
9602                         return wpas_global_ctrl_iface_ifname(global,
9603                                                              buf + 7, pos,
9604                                                              resp_len);
9605                 }
9606         }
9607
9608         reply = wpas_global_ctrl_iface_redir(global, buf, resp_len);
9609         if (reply)
9610                 return reply;
9611
9612         if (os_strcmp(buf, "PING") == 0)
9613                 level = MSG_EXCESSIVE;
9614         wpa_hexdump_ascii(level, "RX global ctrl_iface",
9615                           (const u8 *) buf, os_strlen(buf));
9616
9617         reply = os_malloc(reply_size);
9618         if (reply == NULL) {
9619                 *resp_len = 1;
9620                 return NULL;
9621         }
9622
9623         os_memcpy(reply, "OK\n", 3);
9624         reply_len = 3;
9625
9626         if (os_strcmp(buf, "PING") == 0) {
9627                 os_memcpy(reply, "PONG\n", 5);
9628                 reply_len = 5;
9629         } else if (os_strncmp(buf, "INTERFACE_ADD ", 14) == 0) {
9630                 if (wpa_supplicant_global_iface_add(global, buf + 14))
9631                         reply_len = -1;
9632         } else if (os_strncmp(buf, "INTERFACE_REMOVE ", 17) == 0) {
9633                 if (wpa_supplicant_global_iface_remove(global, buf + 17))
9634                         reply_len = -1;
9635         } else if (os_strcmp(buf, "INTERFACE_LIST") == 0) {
9636                 reply_len = wpa_supplicant_global_iface_list(
9637                         global, reply, reply_size);
9638         } else if (os_strcmp(buf, "INTERFACES") == 0) {
9639                 reply_len = wpa_supplicant_global_iface_interfaces(
9640                         global, reply, reply_size);
9641 #ifdef CONFIG_FST
9642         } else if (os_strncmp(buf, "FST-ATTACH ", 11) == 0) {
9643                 reply_len = wpas_global_ctrl_iface_fst_attach(global, buf + 11,
9644                                                               reply,
9645                                                               reply_size);
9646         } else if (os_strncmp(buf, "FST-DETACH ", 11) == 0) {
9647                 reply_len = wpas_global_ctrl_iface_fst_detach(global, buf + 11,
9648                                                               reply,
9649                                                               reply_size);
9650         } else if (os_strncmp(buf, "FST-MANAGER ", 12) == 0) {
9651                 reply_len = fst_ctrl_iface_receive(buf + 12, reply, reply_size);
9652 #endif /* CONFIG_FST */
9653         } else if (os_strcmp(buf, "TERMINATE") == 0) {
9654                 wpa_supplicant_terminate_proc(global);
9655         } else if (os_strcmp(buf, "SUSPEND") == 0) {
9656                 wpas_notify_suspend(global);
9657         } else if (os_strcmp(buf, "RESUME") == 0) {
9658                 wpas_notify_resume(global);
9659         } else if (os_strncmp(buf, "SET ", 4) == 0) {
9660                 if (wpas_global_ctrl_iface_set(global, buf + 4)) {
9661 #ifdef CONFIG_P2P
9662                         if (global->p2p_init_wpa_s) {
9663                                 os_free(reply);
9664                                 /* Check if P2P redirection would work for this
9665                                  * command. */
9666                                 return wpa_supplicant_ctrl_iface_process(
9667                                         global->p2p_init_wpa_s,
9668                                         buf, resp_len);
9669                         }
9670 #endif /* CONFIG_P2P */
9671                         reply_len = -1;
9672                 }
9673         } else if (os_strncmp(buf, "DUP_NETWORK ", 12) == 0) {
9674                 if (wpas_global_ctrl_iface_dup_network(global, buf + 12))
9675                         reply_len = -1;
9676 #ifndef CONFIG_NO_CONFIG_WRITE
9677         } else if (os_strcmp(buf, "SAVE_CONFIG") == 0) {
9678                 if (wpas_global_ctrl_iface_save_config(global))
9679                         reply_len = -1;
9680 #endif /* CONFIG_NO_CONFIG_WRITE */
9681         } else if (os_strcmp(buf, "STATUS") == 0) {
9682                 reply_len = wpas_global_ctrl_iface_status(global, reply,
9683                                                           reply_size);
9684 #ifdef CONFIG_MODULE_TESTS
9685         } else if (os_strcmp(buf, "MODULE_TESTS") == 0) {
9686                 int wpas_module_tests(void);
9687                 if (wpas_module_tests() < 0)
9688                         reply_len = -1;
9689 #endif /* CONFIG_MODULE_TESTS */
9690         } else if (os_strncmp(buf, "RELOG", 5) == 0) {
9691                 if (wpa_debug_reopen_file() < 0)
9692                         reply_len = -1;
9693         } else {
9694                 os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
9695                 reply_len = 16;
9696         }
9697
9698         if (reply_len < 0) {
9699                 os_memcpy(reply, "FAIL\n", 5);
9700                 reply_len = 5;
9701         }
9702
9703         *resp_len = reply_len;
9704         return reply;
9705 }