]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/ap.c
HS 2.0: Match credentials based on required_roaming_consortium
[thirdparty/hostap.git] / wpa_supplicant / ap.c
CommitLineData
f1a48710
JM
1/*
2 * WPA Supplicant - Basic AP mode support routines
3 * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
4 * Copyright (c) 2009, Atheros Communications
5 *
0f3d578e
JM
6 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
f1a48710
JM
8 */
9
6226e38d 10#include "utils/includes.h"
f1a48710 11
6226e38d 12#include "utils/common.h"
70d84f11 13#include "utils/eloop.h"
ab45223b 14#include "utils/uuid.h"
58c26600 15#include "common/ieee802_11_defs.h"
a0dee797 16#include "common/wpa_ctrl.h"
25a8f9e3 17#include "eapol_supp/eapol_supp_sm.h"
db6ae69e 18#include "crypto/dh_group5.h"
1057d78e 19#include "ap/hostapd.h"
6226e38d 20#include "ap/ap_config.h"
fe99fb74 21#include "ap/ap_drv_ops.h"
fe6bdb77 22#ifdef NEED_AP_MLME
1057d78e 23#include "ap/ieee802_11.h"
fe6bdb77 24#endif /* NEED_AP_MLME */
b22128ef 25#include "ap/beacon.h"
a8e0505b 26#include "ap/ieee802_1x.h"
363b9e60 27#include "ap/wps_hostapd.h"
0e2d35c6 28#include "ap/ctrl_iface_ap.h"
bd0f68c4 29#include "ap/dfs.h"
3ec97afe 30#include "wps/wps.h"
e44f8bf2 31#include "common/ieee802_11_defs.h"
1f1b62a0 32#include "config_ssid.h"
094393b1 33#include "config.h"
1f1b62a0 34#include "wpa_supplicant_i.h"
2d5b792d 35#include "driver_i.h"
e44f8bf2 36#include "p2p_supplicant.h"
2d5b792d 37#include "ap.h"
2f9929ff 38#include "ap/sta_info.h"
d8a43924 39#include "notify.h"
f1a48710
JM
40
41
0fe620de 42#ifdef CONFIG_WPS
70d84f11 43static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx);
0fe620de 44#endif /* CONFIG_WPS */
70d84f11
JM
45
46
c20bc9d4 47#ifdef CONFIG_IEEE80211N
ca9bc5b5 48static void wpas_conf_ap_vht(struct wpa_supplicant *wpa_s,
2124a615 49 struct wpa_ssid *ssid,
ca9bc5b5
EP
50 struct hostapd_config *conf,
51 struct hostapd_hw_modes *mode)
52{
fbba28f8 53#ifdef CONFIG_P2P
ca9bc5b5
EP
54 u8 center_chan = 0;
55 u8 channel = conf->channel;
fbba28f8 56#endif /* CONFIG_P2P */
ca9bc5b5
EP
57
58 if (!conf->secondary_channel)
59 goto no_vht;
60
2124a615
JB
61 /* Use the maximum oper channel width if it's given. */
62 if (ssid->max_oper_chwidth)
63 conf->vht_oper_chwidth = ssid->max_oper_chwidth;
64
65 ieee80211_freq_to_chan(ssid->vht_center_freq2,
66 &conf->vht_oper_centr_freq_seg1_idx);
67
68 if (!ssid->p2p_group) {
69 if (!ssid->vht_center_freq1 ||
464dcfd0 70 conf->vht_oper_chwidth == CHANWIDTH_USE_HT)
2124a615
JB
71 goto no_vht;
72 ieee80211_freq_to_chan(ssid->vht_center_freq1,
73 &conf->vht_oper_centr_freq_seg0_idx);
616178a2
JM
74 wpa_printf(MSG_DEBUG, "VHT seg0 index %d for AP",
75 conf->vht_oper_centr_freq_seg0_idx);
2124a615
JB
76 return;
77 }
78
79#ifdef CONFIG_P2P
c27f4c90 80 switch (conf->vht_oper_chwidth) {
464dcfd0
JC
81 case CHANWIDTH_80MHZ:
82 case CHANWIDTH_80P80MHZ:
c27f4c90 83 center_chan = wpas_p2p_get_vht80_center(wpa_s, mode, channel);
616178a2
JM
84 wpa_printf(MSG_DEBUG,
85 "VHT center channel %u for 80 or 80+80 MHz bandwidth",
86 center_chan);
c27f4c90 87 break;
464dcfd0 88 case CHANWIDTH_160MHZ:
c27f4c90 89 center_chan = wpas_p2p_get_vht160_center(wpa_s, mode, channel);
616178a2
JM
90 wpa_printf(MSG_DEBUG,
91 "VHT center channel %u for 160 MHz bandwidth",
92 center_chan);
c27f4c90
AK
93 break;
94 default:
95 /*
96 * conf->vht_oper_chwidth might not be set for non-P2P GO cases,
97 * try oper_cwidth 160 MHz first then VHT 80 MHz, if 160 MHz is
98 * not supported.
99 */
464dcfd0 100 conf->vht_oper_chwidth = CHANWIDTH_160MHZ;
c27f4c90 101 center_chan = wpas_p2p_get_vht160_center(wpa_s, mode, channel);
616178a2
JM
102 if (center_chan) {
103 wpa_printf(MSG_DEBUG,
104 "VHT center channel %u for auto-selected 160 MHz bandwidth",
105 center_chan);
106 } else {
464dcfd0 107 conf->vht_oper_chwidth = CHANWIDTH_80MHZ;
c27f4c90
AK
108 center_chan = wpas_p2p_get_vht80_center(wpa_s, mode,
109 channel);
616178a2
JM
110 wpa_printf(MSG_DEBUG,
111 "VHT center channel %u for auto-selected 80 MHz bandwidth",
112 center_chan);
c27f4c90
AK
113 }
114 break;
115 }
ca9bc5b5
EP
116 if (!center_chan)
117 goto no_vht;
118
ca9bc5b5 119 conf->vht_oper_centr_freq_seg0_idx = center_chan;
616178a2
JM
120 wpa_printf(MSG_DEBUG, "VHT seg0 index %d for P2P GO",
121 conf->vht_oper_centr_freq_seg0_idx);
ca9bc5b5 122 return;
2124a615 123#endif /* CONFIG_P2P */
ca9bc5b5
EP
124
125no_vht:
616178a2
JM
126 wpa_printf(MSG_DEBUG,
127 "No VHT higher bandwidth support for the selected channel %d",
128 conf->channel);
f8b10c17
JM
129 conf->vht_oper_centr_freq_seg0_idx =
130 conf->channel + conf->secondary_channel * 2;
464dcfd0 131 conf->vht_oper_chwidth = CHANWIDTH_USE_HT;
ca9bc5b5 132}
c20bc9d4 133#endif /* CONFIG_IEEE80211N */
ca9bc5b5
EP
134
135
73afc20d
AO
136int wpa_supplicant_conf_ap_ht(struct wpa_supplicant *wpa_s,
137 struct wpa_ssid *ssid,
138 struct hostapd_config *conf)
07f117ed 139{
73afc20d
AO
140 conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency,
141 &conf->channel);
142
143 if (conf->hw_mode == NUM_HOSTAPD_MODES) {
144 wpa_printf(MSG_ERROR, "Unsupported AP mode frequency: %d MHz",
145 ssid->frequency);
146 return -1;
147 }
148
2db91745 149 /* TODO: enable HT40 if driver supports it;
07f117ed
JM
150 * drop to 11b if driver does not support 11g */
151
2db91745
AC
152#ifdef CONFIG_IEEE80211N
153 /*
79b8c60f
AN
154 * Enable HT20 if the driver supports it, by setting conf->ieee80211n
155 * and a mask of allowed capabilities within conf->ht_capab.
2db91745 156 * Using default config settings for: conf->ht_op_mode_fixed,
79b8c60f 157 * conf->secondary_channel, conf->require_ht
2db91745 158 */
6bf731e8 159 if (wpa_s->hw.modes) {
2db91745 160 struct hostapd_hw_modes *mode = NULL;
5cbf5fd9 161 int i, no_ht = 0;
616178a2
JM
162
163 wpa_printf(MSG_DEBUG,
164 "Determining HT/VHT options based on driver capabilities (freq=%u chan=%u)",
165 ssid->frequency, conf->channel);
166
6bf731e8
CL
167 for (i = 0; i < wpa_s->hw.num_modes; i++) {
168 if (wpa_s->hw.modes[i].mode == conf->hw_mode) {
169 mode = &wpa_s->hw.modes[i];
2db91745
AC
170 break;
171 }
172 }
5cbf5fd9
VT
173
174#ifdef CONFIG_HT_OVERRIDES
b07ff9cb
JB
175 if (ssid->disable_ht)
176 ssid->ht = 0;
177#endif /* CONFIG_HT_OVERRIDES */
178
179 if (!ssid->ht) {
616178a2
JM
180 wpa_printf(MSG_DEBUG,
181 "HT not enabled in network profile");
5cbf5fd9
VT
182 conf->ieee80211n = 0;
183 conf->ht_capab = 0;
184 no_ht = 1;
185 }
5cbf5fd9
VT
186
187 if (!no_ht && mode && mode->ht_capab) {
616178a2
JM
188 wpa_printf(MSG_DEBUG,
189 "Enable HT support (p2p_group=%d 11a=%d ht40_hw_capab=%d ssid->ht40=%d)",
190 ssid->p2p_group,
191 conf->hw_mode == HOSTAPD_MODE_IEEE80211A,
192 !!(mode->ht_capab &
193 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET),
194 ssid->ht40);
2db91745 195 conf->ieee80211n = 1;
7aeac985 196#ifdef CONFIG_P2P
2124a615
JB
197 if (ssid->p2p_group &&
198 conf->hw_mode == HOSTAPD_MODE_IEEE80211A &&
7aeac985
RM
199 (mode->ht_capab &
200 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) &&
616178a2 201 ssid->ht40) {
7aeac985
RM
202 conf->secondary_channel =
203 wpas_p2p_get_ht40_mode(wpa_s, mode,
204 conf->channel);
616178a2
JM
205 wpa_printf(MSG_DEBUG,
206 "HT secondary channel offset %d for P2P group",
207 conf->secondary_channel);
208 }
2124a615
JB
209#endif /* CONFIG_P2P */
210
211 if (!ssid->p2p_group &&
212 (mode->ht_capab &
616178a2 213 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)) {
2124a615 214 conf->secondary_channel = ssid->ht40;
616178a2
JM
215 wpa_printf(MSG_DEBUG,
216 "HT secondary channel offset %d for AP",
217 conf->secondary_channel);
218 }
2124a615 219
7aeac985
RM
220 if (conf->secondary_channel)
221 conf->ht_capab |=
222 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
79b8c60f
AN
223
224 /*
225 * white-list capabilities that won't cause issues
226 * to connecting stations, while leaving the current
227 * capabilities intact (currently disabled SMPS).
228 */
229 conf->ht_capab |= mode->ht_capab &
230 (HT_CAP_INFO_GREEN_FIELD |
231 HT_CAP_INFO_SHORT_GI20MHZ |
232 HT_CAP_INFO_SHORT_GI40MHZ |
233 HT_CAP_INFO_RX_STBC_MASK |
fd83335f 234 HT_CAP_INFO_TX_STBC |
79b8c60f 235 HT_CAP_INFO_MAX_AMSDU_SIZE);
ca9bc5b5
EP
236
237 if (mode->vht_capab && ssid->vht) {
238 conf->ieee80211ac = 1;
f3e15705 239 conf->vht_capab |= mode->vht_capab;
2124a615 240 wpas_conf_ap_vht(wpa_s, ssid, conf, mode);
ca9bc5b5 241 }
3459c54a
SE
242
243 if (mode->he_capab[wpas_mode_to_ieee80211_mode(
244 ssid->mode)].he_supported &&
245 ssid->he)
246 conf->ieee80211ax = 1;
79b8c60f 247 }
2db91745 248 }
55413ce0
JM
249
250 if (conf->secondary_channel) {
251 struct wpa_supplicant *iface;
252
253 for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
254 {
255 if (iface == wpa_s ||
256 iface->wpa_state < WPA_AUTHENTICATING ||
257 (int) iface->assoc_freq != ssid->frequency)
258 continue;
259
260 /*
261 * Do not allow 40 MHz co-ex PRI/SEC switch to force us
262 * to change our PRI channel since we have an existing,
263 * concurrent connection on that channel and doing
264 * multi-channel concurrency is likely to cause more
265 * harm than using different PRI/SEC selection in
266 * environment with multiple BSSes on these two channels
267 * with mixed 20 MHz or PRI channel selection.
268 */
269 conf->no_pri_sec_switch = 1;
270 }
271 }
2db91745 272#endif /* CONFIG_IEEE80211N */
73afc20d
AO
273
274 return 0;
5cfb672d
JM
275}
276
277
278static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s,
279 struct wpa_ssid *ssid,
280 struct hostapd_config *conf)
281{
282 struct hostapd_bss_config *bss = conf->bss[0];
283
284 conf->driver = wpa_s->driver;
285
286 os_strlcpy(bss->iface, wpa_s->ifname, sizeof(bss->iface));
287
73afc20d 288 if (wpa_supplicant_conf_ap_ht(wpa_s, ssid, conf))
5cfb672d 289 return -1;
2db91745 290
90f14962
LD
291 if (ssid->pbss > 1) {
292 wpa_printf(MSG_ERROR, "Invalid pbss value(%d) for AP mode",
293 ssid->pbss);
294 return -1;
295 }
296 bss->pbss = ssid->pbss;
297
d9909717
TB
298#ifdef CONFIG_ACS
299 if (ssid->acs) {
300 /* Setting channel to 0 in order to enable ACS */
301 conf->channel = 0;
302 wpa_printf(MSG_DEBUG, "Use automatic channel selection");
303 }
304#endif /* CONFIG_ACS */
305
d239ab39 306 if (ieee80211_is_dfs(ssid->frequency, wpa_s->hw.modes,
307 wpa_s->hw.num_modes) && wpa_s->conf->country[0]) {
6e9023ea
JM
308 conf->ieee80211h = 1;
309 conf->ieee80211d = 1;
310 conf->country[0] = wpa_s->conf->country[0];
311 conf->country[1] = wpa_s->conf->country[1];
8f315d05 312 conf->country[2] = ' ';
6e9023ea
JM
313 }
314
4c2c3028 315#ifdef CONFIG_P2P
1e0e943e
AB
316 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G &&
317 (ssid->mode == WPAS_MODE_P2P_GO ||
318 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)) {
4c2c3028
JM
319 /* Remove 802.11b rates from supported and basic rate sets */
320 int *list = os_malloc(4 * sizeof(int));
321 if (list) {
322 list[0] = 60;
323 list[1] = 120;
324 list[2] = 240;
325 list[3] = -1;
326 }
327 conf->basic_rates = list;
328
329 list = os_malloc(9 * sizeof(int));
330 if (list) {
331 list[0] = 60;
332 list[1] = 90;
333 list[2] = 120;
334 list[3] = 180;
335 list[4] = 240;
336 list[5] = 360;
337 list[6] = 480;
338 list[7] = 540;
339 list[8] = -1;
340 }
341 conf->supported_rates = list;
edcaf16f
PX
342 }
343
5a3319ab 344#ifdef CONFIG_IEEE80211AX
edcaf16f
PX
345 if (ssid->mode == WPAS_MODE_P2P_GO ||
346 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
5a3319ab
PX
347 conf->ieee80211ax = ssid->he;
348#endif /* CONFIG_IEEE80211AX */
6cd930cb
JB
349
350 bss->isolate = !wpa_s->conf->p2p_intra_bss;
05766ed8 351 bss->force_per_enrollee_psk = wpa_s->global->p2p_per_sta_psk;
25ef8529
JM
352
353 if (ssid->p2p_group) {
ba307f85
LD
354 os_memcpy(bss->ip_addr_go, wpa_s->p2pdev->conf->ip_addr_go, 4);
355 os_memcpy(bss->ip_addr_mask, wpa_s->p2pdev->conf->ip_addr_mask,
25ef8529
JM
356 4);
357 os_memcpy(bss->ip_addr_start,
ba307f85
LD
358 wpa_s->p2pdev->conf->ip_addr_start, 4);
359 os_memcpy(bss->ip_addr_end, wpa_s->p2pdev->conf->ip_addr_end,
25ef8529
JM
360 4);
361 }
4c2c3028
JM
362#endif /* CONFIG_P2P */
363
07f117ed
JM
364 if (ssid->ssid_len == 0) {
365 wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
366 return -1;
367 }
368 os_memcpy(bss->ssid.ssid, ssid->ssid, ssid->ssid_len);
07f117ed
JM
369 bss->ssid.ssid_len = ssid->ssid_len;
370 bss->ssid.ssid_set = 1;
371
e62f4ed0
VN
372 bss->ignore_broadcast_ssid = ssid->ignore_broadcast_ssid;
373
0399f2e4
VT
374 if (ssid->auth_alg)
375 bss->auth_algs = ssid->auth_alg;
376
07f117ed
JM
377 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt))
378 bss->wpa = ssid->proto;
66419543
JM
379 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
380 bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK;
381 else
382 bss->wpa_key_mgmt = ssid->key_mgmt;
07f117ed 383 bss->wpa_pairwise = ssid->pairwise_cipher;
30c371e8 384 if (ssid->psk_set) {
ce52d031 385 bin_clear_free(bss->ssid.wpa_psk, sizeof(*bss->ssid.wpa_psk));
07f117ed
JM
386 bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
387 if (bss->ssid.wpa_psk == NULL)
388 return -1;
389 os_memcpy(bss->ssid.wpa_psk->psk, ssid->psk, PMK_LEN);
390 bss->ssid.wpa_psk->group = 1;
23d71a02 391 bss->ssid.wpa_psk_set = 1;
30c371e8
MH
392 } else if (ssid->passphrase) {
393 bss->ssid.wpa_passphrase = os_strdup(ssid->passphrase);
6bcb1c2b
JM
394 } else if (ssid->wep_key_len[0] || ssid->wep_key_len[1] ||
395 ssid->wep_key_len[2] || ssid->wep_key_len[3]) {
396 struct hostapd_wep_keys *wep = &bss->ssid.wep;
397 int i;
398 for (i = 0; i < NUM_WEP_KEYS; i++) {
399 if (ssid->wep_key_len[i] == 0)
400 continue;
a1f11e34
JB
401 wep->key[i] = os_memdup(ssid->wep_key[i],
402 ssid->wep_key_len[i]);
6bcb1c2b
JM
403 if (wep->key[i] == NULL)
404 return -1;
6bcb1c2b
JM
405 wep->len[i] = ssid->wep_key_len[i];
406 }
407 wep->idx = ssid->wep_tx_keyidx;
408 wep->keys_set = 1;
07f117ed
JM
409 }
410
63bc0ab0
SD
411 if (wpa_s->conf->go_interworking) {
412 wpa_printf(MSG_DEBUG,
413 "P2P: Enable Interworking with access_network_type: %d",
414 wpa_s->conf->go_access_network_type);
415 bss->interworking = wpa_s->conf->go_interworking;
416 bss->access_network_type = wpa_s->conf->go_access_network_type;
417 bss->internet = wpa_s->conf->go_internet;
418 if (wpa_s->conf->go_venue_group) {
419 wpa_printf(MSG_DEBUG,
420 "P2P: Venue group: %d Venue type: %d",
421 wpa_s->conf->go_venue_group,
422 wpa_s->conf->go_venue_type);
423 bss->venue_group = wpa_s->conf->go_venue_group;
424 bss->venue_type = wpa_s->conf->go_venue_type;
425 bss->venue_info_set = 1;
426 }
427 }
428
07f53b8c
VT
429 if (ssid->ap_max_inactivity)
430 bss->ap_max_inactivity = ssid->ap_max_inactivity;
431
fdfb1c8b
EL
432 if (ssid->dtim_period)
433 bss->dtim_period = ssid->dtim_period;
18206e02
JM
434 else if (wpa_s->conf->dtim_period)
435 bss->dtim_period = wpa_s->conf->dtim_period;
436
437 if (ssid->beacon_int)
438 conf->beacon_int = ssid->beacon_int;
439 else if (wpa_s->conf->beacon_int)
440 conf->beacon_int = wpa_s->conf->beacon_int;
fdfb1c8b 441
0b8bcaa5 442#ifdef CONFIG_P2P
0aed3f5a
AS
443 if (ssid->mode == WPAS_MODE_P2P_GO ||
444 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
445 if (wpa_s->conf->p2p_go_ctwindow > conf->beacon_int) {
446 wpa_printf(MSG_INFO,
447 "CTWindow (%d) is bigger than beacon interval (%d) - avoid configuring it",
448 wpa_s->conf->p2p_go_ctwindow,
449 conf->beacon_int);
450 conf->p2p_go_ctwindow = 0;
451 } else {
452 conf->p2p_go_ctwindow = wpa_s->conf->p2p_go_ctwindow;
453 }
0b8bcaa5
EP
454 }
455#endif /* CONFIG_P2P */
456
cf830c1c
JM
457 if ((bss->wpa & 2) && bss->rsn_pairwise == 0)
458 bss->rsn_pairwise = bss->wpa_pairwise;
459 bss->wpa_group = wpa_select_ap_group_cipher(bss->wpa, bss->wpa_pairwise,
460 bss->rsn_pairwise);
07d9a552
JM
461
462 if (bss->wpa && bss->ieee802_1x)
463 bss->ssid.security_policy = SECURITY_WPA;
464 else if (bss->wpa)
465 bss->ssid.security_policy = SECURITY_WPA_PSK;
466 else if (bss->ieee802_1x) {
697cd03f 467 int cipher = WPA_CIPHER_NONE;
07d9a552
JM
468 bss->ssid.security_policy = SECURITY_IEEE_802_1X;
469 bss->ssid.wep.default_len = bss->default_wep_key_len;
697cd03f
JM
470 if (bss->default_wep_key_len)
471 cipher = bss->default_wep_key_len >= 13 ?
472 WPA_CIPHER_WEP104 : WPA_CIPHER_WEP40;
473 bss->wpa_group = cipher;
474 bss->wpa_pairwise = cipher;
475 bss->rsn_pairwise = cipher;
476 } else if (bss->ssid.wep.keys_set) {
477 int cipher = WPA_CIPHER_WEP40;
478 if (bss->ssid.wep.len[0] >= 13)
479 cipher = WPA_CIPHER_WEP104;
07d9a552 480 bss->ssid.security_policy = SECURITY_STATIC_WEP;
697cd03f
JM
481 bss->wpa_group = cipher;
482 bss->wpa_pairwise = cipher;
483 bss->rsn_pairwise = cipher;
484 } else {
07d9a552 485 bss->ssid.security_policy = SECURITY_PLAINTEXT;
697cd03f
JM
486 bss->wpa_group = WPA_CIPHER_NONE;
487 bss->wpa_pairwise = WPA_CIPHER_NONE;
488 bss->rsn_pairwise = WPA_CIPHER_NONE;
489 }
07d9a552 490
2a07a276
JM
491 if (bss->wpa_group_rekey < 86400 && (bss->wpa & 2) &&
492 (bss->wpa_group == WPA_CIPHER_CCMP ||
30675c34
JM
493 bss->wpa_group == WPA_CIPHER_GCMP ||
494 bss->wpa_group == WPA_CIPHER_CCMP_256 ||
495 bss->wpa_group == WPA_CIPHER_GCMP_256)) {
2a07a276
JM
496 /*
497 * Strong ciphers do not need frequent rekeying, so increase
498 * the default GTK rekeying period to 24 hours.
499 */
500 bss->wpa_group_rekey = 86400;
501 }
502
9a1a538f
JM
503#ifdef CONFIG_IEEE80211W
504 if (ssid->ieee80211w != MGMT_FRAME_PROTECTION_DEFAULT)
505 bss->ieee80211w = ssid->ieee80211w;
506#endif /* CONFIG_IEEE80211W */
875ab60d
MV
507
508#ifdef CONFIG_OCV
509 bss->ocv = ssid->ocv;
510#endif /* CONFIG_OCV */
9a1a538f 511
3ec97afe
JM
512#ifdef CONFIG_WPS
513 /*
04ed4e98
JM
514 * Enable WPS by default for open and WPA/WPA2-Personal network, but
515 * require user interaction to actually use it. Only the internal
516 * Registrar is supported.
3ec97afe 517 */
04ed4e98
JM
518 if (bss->ssid.security_policy != SECURITY_WPA_PSK &&
519 bss->ssid.security_policy != SECURITY_PLAINTEXT)
520 goto no_wps;
c0f83f31 521 if (bss->ssid.security_policy == SECURITY_WPA_PSK &&
d77419d2
AM
522 (!(bss->rsn_pairwise & (WPA_CIPHER_CCMP | WPA_CIPHER_GCMP)) ||
523 !(bss->wpa & 2)))
c0f83f31
JM
524 goto no_wps; /* WPS2 does not allow WPA/TKIP-only
525 * configuration */
b6317b41
LD
526 if (ssid->wps_disabled)
527 goto no_wps;
3ec97afe 528 bss->eap_server = 1;
e62f4ed0
VN
529
530 if (!ssid->ignore_broadcast_ssid)
531 bss->wps_state = 2;
532
9dd7d6b0 533 bss->ap_setup_locked = 2;
094393b1
JM
534 if (wpa_s->conf->config_methods)
535 bss->config_methods = os_strdup(wpa_s->conf->config_methods);
2f646b6e
JB
536 os_memcpy(bss->device_type, wpa_s->conf->device_type,
537 WPS_DEV_TYPE_LEN);
e44f8bf2
JM
538 if (wpa_s->conf->device_name) {
539 bss->device_name = os_strdup(wpa_s->conf->device_name);
540 bss->friendly_name = os_strdup(wpa_s->conf->device_name);
541 }
56815b2b
JM
542 if (wpa_s->conf->manufacturer)
543 bss->manufacturer = os_strdup(wpa_s->conf->manufacturer);
544 if (wpa_s->conf->model_name)
545 bss->model_name = os_strdup(wpa_s->conf->model_name);
546 if (wpa_s->conf->model_number)
547 bss->model_number = os_strdup(wpa_s->conf->model_number);
548 if (wpa_s->conf->serial_number)
549 bss->serial_number = os_strdup(wpa_s->conf->serial_number);
ab45223b
JM
550 if (is_nil_uuid(wpa_s->conf->uuid))
551 os_memcpy(bss->uuid, wpa_s->wps->uuid, WPS_UUID_LEN);
552 else
553 os_memcpy(bss->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
56815b2b 554 os_memcpy(bss->os_version, wpa_s->conf->os_version, 4);
1298c145 555 bss->pbc_in_m1 = wpa_s->conf->pbc_in_m1;
b94fff1d
LD
556 if (ssid->eap.fragment_size != DEFAULT_FRAGMENT_SIZE)
557 bss->fragment_size = ssid->eap.fragment_size;
04ed4e98 558no_wps:
56815b2b 559#endif /* CONFIG_WPS */
e44f8bf2 560
de979d8f
JM
561 if (wpa_s->max_stations &&
562 wpa_s->max_stations < wpa_s->conf->max_num_sta)
563 bss->max_num_sta = wpa_s->max_stations;
564 else
565 bss->max_num_sta = wpa_s->conf->max_num_sta;
dae608d5 566
19e20c14
DR
567 if (!bss->isolate)
568 bss->isolate = wpa_s->conf->ap_isolate;
569
0d7e5a3a
JB
570 bss->disassoc_low_ack = wpa_s->conf->disassoc_low_ack;
571
18a2eaab
JM
572 if (wpa_s->conf->ap_vendor_elements) {
573 bss->vendor_elements =
574 wpabuf_dup(wpa_s->conf->ap_vendor_elements);
575 }
576
d1723c55
LD
577 bss->ftm_responder = wpa_s->conf->ftm_responder;
578 bss->ftm_initiator = wpa_s->conf->ftm_initiator;
579
07f117ed
JM
580 return 0;
581}
582
583
c706d5aa
JM
584static void ap_public_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
585{
e44f8bf2
JM
586#ifdef CONFIG_P2P
587 struct wpa_supplicant *wpa_s = ctx;
588 const struct ieee80211_mgmt *mgmt;
e44f8bf2
JM
589
590 mgmt = (const struct ieee80211_mgmt *) buf;
35c03184 591 if (len < IEEE80211_HDRLEN + 1)
e44f8bf2 592 return;
5ce00d09
JM
593 if (mgmt->u.action.category != WLAN_ACTION_PUBLIC)
594 return;
e44f8bf2
JM
595 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
596 mgmt->u.action.category,
35c03184
JM
597 buf + IEEE80211_HDRLEN + 1,
598 len - IEEE80211_HDRLEN - 1, freq);
e44f8bf2
JM
599#endif /* CONFIG_P2P */
600}
601
602
a0dee797
AGS
603static void ap_wps_event_cb(void *ctx, enum wps_event event,
604 union wps_event_data *data)
605{
ca806fb5 606#ifdef CONFIG_P2P
a0dee797 607 struct wpa_supplicant *wpa_s = ctx;
8be6450c
JMB
608
609 if (event == WPS_EV_FAIL) {
610 struct wps_event_fail *fail = &data->fail;
611
ba307f85 612 if (wpa_s->p2pdev && wpa_s->p2pdev != wpa_s &&
8be6450c
JMB
613 wpa_s == wpa_s->global->p2p_group_formation) {
614 /*
615 * src/ap/wps_hostapd.c has already sent this on the
616 * main interface, so only send on the parent interface
617 * here if needed.
618 */
ba307f85 619 wpa_msg(wpa_s->p2pdev, MSG_INFO, WPS_EVENT_FAIL
8be6450c
JMB
620 "msg=%d config_error=%d",
621 fail->msg, fail->config_error);
622 }
623 wpas_p2p_wps_failed(wpa_s, fail);
a0dee797 624 }
ca806fb5 625#endif /* CONFIG_P2P */
a0dee797
AGS
626}
627
628
d8a43924 629static void ap_sta_authorized_cb(void *ctx, const u8 *mac_addr,
fbdcfd57 630 int authorized, const u8 *p2p_dev_addr)
d8a43924 631{
fbdcfd57 632 wpas_notify_sta_authorized(ctx, mac_addr, authorized, p2p_dev_addr);
d8a43924
JB
633}
634
635
01a57fe4
JM
636#ifdef CONFIG_P2P
637static void ap_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *p2p_dev_addr,
638 const u8 *psk, size_t psk_len)
639{
640
641 struct wpa_supplicant *wpa_s = ctx;
642 if (wpa_s->ap_iface == NULL || wpa_s->current_ssid == NULL)
643 return;
644 wpas_p2p_new_psk_cb(wpa_s, mac_addr, p2p_dev_addr, psk, psk_len);
645}
646#endif /* CONFIG_P2P */
647
648
e44f8bf2
JM
649static int ap_vendor_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
650{
651#ifdef CONFIG_P2P
652 struct wpa_supplicant *wpa_s = ctx;
653 const struct ieee80211_mgmt *mgmt;
e44f8bf2
JM
654
655 mgmt = (const struct ieee80211_mgmt *) buf;
fb5d4171 656 if (len < IEEE80211_HDRLEN + 1)
e44f8bf2
JM
657 return -1;
658 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
659 mgmt->u.action.category,
fb5d4171
JM
660 buf + IEEE80211_HDRLEN + 1,
661 len - IEEE80211_HDRLEN - 1, freq);
e44f8bf2
JM
662#endif /* CONFIG_P2P */
663 return 0;
c706d5aa
JM
664}
665
666
04a85e44 667static int ap_probe_req_rx(void *ctx, const u8 *sa, const u8 *da,
baf513d6
JB
668 const u8 *bssid, const u8 *ie, size_t ie_len,
669 int ssi_signal)
c706d5aa 670{
e44f8bf2 671 struct wpa_supplicant *wpa_s = ctx;
0799b3f8
AO
672 unsigned int freq = 0;
673
674 if (wpa_s->ap_iface)
675 freq = wpa_s->ap_iface->freq;
676
baf513d6 677 return wpas_p2p_probe_req_rx(wpa_s, sa, da, bssid, ie, ie_len,
0799b3f8 678 freq, ssi_signal);
c706d5aa
JM
679}
680
681
682static void ap_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
683 const u8 *uuid_e)
684{
e44f8bf2
JM
685 struct wpa_supplicant *wpa_s = ctx;
686 wpas_p2p_wps_success(wpa_s, mac_addr, 1);
c706d5aa
JM
687}
688
689
c76e5d7f
JB
690static void wpas_ap_configured_cb(void *ctx)
691{
692 struct wpa_supplicant *wpa_s = ctx;
693
c4315e66
TM
694 wpa_printf(MSG_DEBUG, "AP interface setup completed - state %s",
695 hostapd_state_text(wpa_s->ap_iface->state));
696 if (wpa_s->ap_iface->state == HAPD_IFACE_DISABLED) {
697 wpa_supplicant_ap_deinit(wpa_s);
698 return;
699 }
700
d9909717 701#ifdef CONFIG_ACS
37ed3254 702 if (wpa_s->current_ssid && wpa_s->current_ssid->acs) {
d9909717 703 wpa_s->assoc_freq = wpa_s->ap_iface->freq;
37ed3254
SD
704 wpa_s->current_ssid->frequency = wpa_s->ap_iface->freq;
705 }
d9909717
TB
706#endif /* CONFIG_ACS */
707
c76e5d7f
JB
708 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
709
710 if (wpa_s->ap_configured_cb)
711 wpa_s->ap_configured_cb(wpa_s->ap_configured_cb_ctx,
712 wpa_s->ap_configured_cb_data);
713}
714
715
2d5b792d
JM
716int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
717 struct wpa_ssid *ssid)
718{
719 struct wpa_driver_associate_params params;
720 struct hostapd_iface *hapd_iface;
721 struct hostapd_config *conf;
722 size_t i;
f1a48710 723
2d5b792d
JM
724 if (ssid->ssid == NULL || ssid->ssid_len == 0) {
725 wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
726 return -1;
f1a48710
JM
727 }
728
2d5b792d 729 wpa_supplicant_ap_deinit(wpa_s);
d2440ba0
JM
730
731 wpa_printf(MSG_DEBUG, "Setting up AP (SSID='%s')",
732 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
733
734 os_memset(&params, 0, sizeof(params));
735 params.ssid = ssid->ssid;
736 params.ssid_len = ssid->ssid_len;
d7dcba70 737 switch (ssid->mode) {
d7dcba70 738 case WPAS_MODE_AP:
2c5d725c
JM
739 case WPAS_MODE_P2P_GO:
740 case WPAS_MODE_P2P_GROUP_FORMATION:
d7dcba70
JM
741 params.mode = IEEE80211_MODE_AP;
742 break;
94ff22ea
JM
743 default:
744 return -1;
d7dcba70 745 }
973622cd
AS
746 if (ssid->frequency == 0)
747 ssid->frequency = 2462; /* default channel 11 */
4ec68377 748 params.freq.freq = ssid->frequency;
d2440ba0 749
64fa840a 750 params.wpa_proto = ssid->proto;
508545f3
JM
751 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK)
752 wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
753 else
754 wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
4848a38d 755 params.key_mgmt_suite = wpa_s->key_mgmt;
508545f3 756
edbd2a19
JM
757 wpa_s->pairwise_cipher = wpa_pick_pairwise_cipher(ssid->pairwise_cipher,
758 1);
759 if (wpa_s->pairwise_cipher < 0) {
508545f3
JM
760 wpa_printf(MSG_WARNING, "WPA: Failed to select pairwise "
761 "cipher.");
762 return -1;
763 }
4848a38d 764 params.pairwise_suite = wpa_s->pairwise_cipher;
508545f3
JM
765 params.group_suite = params.pairwise_suite;
766
6e3f4b89
JM
767#ifdef CONFIG_P2P
768 if (ssid->mode == WPAS_MODE_P2P_GO ||
769 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
770 params.p2p = 1;
771#endif /* CONFIG_P2P */
772
ba307f85
LD
773 if (wpa_s->p2pdev->set_ap_uapsd)
774 params.uapsd = wpa_s->p2pdev->ap_uapsd;
94a3df50
JM
775 else if (params.p2p && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_UAPSD))
776 params.uapsd = 1; /* mandatory for P2P GO */
eea2fd9e
JM
777 else
778 params.uapsd = -1;
779
d239ab39 780 if (ieee80211_is_dfs(params.freq.freq, wpa_s->hw.modes,
781 wpa_s->hw.num_modes))
6e9023ea
JM
782 params.freq.freq = 0; /* set channel after CAC */
783
cc9a2575
KV
784 if (params.p2p)
785 wpa_drv_get_ext_capa(wpa_s, WPA_IF_P2P_GO);
786 else
787 wpa_drv_get_ext_capa(wpa_s, WPA_IF_AP_BSS);
788
d2440ba0
JM
789 if (wpa_drv_associate(wpa_s, &params) < 0) {
790 wpa_msg(wpa_s, MSG_INFO, "Failed to start AP functionality");
791 return -1;
792 }
793
5e993390 794 wpa_s->ap_iface = hapd_iface = hostapd_alloc_iface();
2d5b792d
JM
795 if (hapd_iface == NULL)
796 return -1;
0f2b2c19 797 hapd_iface->owner = wpa_s;
a57db49c 798 hapd_iface->drv_flags = wpa_s->drv_flags;
04ee647d 799 hapd_iface->smps_modes = wpa_s->drv_smps_modes;
4f73d88a 800 hapd_iface->probe_resp_offloads = wpa_s->probe_resp_offloads;
8cd6b7bc
JB
801 hapd_iface->extended_capa = wpa_s->extended_capa;
802 hapd_iface->extended_capa_mask = wpa_s->extended_capa_mask;
803 hapd_iface->extended_capa_len = wpa_s->extended_capa_len;
1f1b62a0 804
2d5b792d
JM
805 wpa_s->ap_iface->conf = conf = hostapd_config_defaults();
806 if (conf == NULL) {
807 wpa_supplicant_ap_deinit(wpa_s);
808 return -1;
809 }
1f1b62a0 810
c26effe1
YD
811 os_memcpy(wpa_s->ap_iface->conf->wmm_ac_params,
812 wpa_s->conf->wmm_ac_params,
813 sizeof(wpa_s->conf->wmm_ac_params));
814
d26e45a4 815 if (params.uapsd > 0) {
ebd79f07
JM
816 conf->bss[0]->wmm_enabled = 1;
817 conf->bss[0]->wmm_uapsd = 1;
d26e45a4
EP
818 }
819
07f117ed
JM
820 if (wpa_supplicant_conf_ap(wpa_s, ssid, conf)) {
821 wpa_printf(MSG_ERROR, "Failed to create AP configuration");
822 wpa_supplicant_ap_deinit(wpa_s);
823 return -1;
824 }
825
e44f8bf2
JM
826#ifdef CONFIG_P2P
827 if (ssid->mode == WPAS_MODE_P2P_GO)
ebd79f07 828 conf->bss[0]->p2p = P2P_ENABLED | P2P_GROUP_OWNER;
e44f8bf2 829 else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
ebd79f07 830 conf->bss[0]->p2p = P2P_ENABLED | P2P_GROUP_OWNER |
e44f8bf2
JM
831 P2P_GROUP_FORMATION;
832#endif /* CONFIG_P2P */
833
2d5b792d 834 hapd_iface->num_bss = conf->num_bss;
f9884c09 835 hapd_iface->bss = os_calloc(conf->num_bss,
2d5b792d
JM
836 sizeof(struct hostapd_data *));
837 if (hapd_iface->bss == NULL) {
838 wpa_supplicant_ap_deinit(wpa_s);
839 return -1;
840 }
1f1b62a0 841
2d5b792d
JM
842 for (i = 0; i < conf->num_bss; i++) {
843 hapd_iface->bss[i] =
844 hostapd_alloc_bss_data(hapd_iface, conf,
ebd79f07 845 conf->bss[i]);
2d5b792d
JM
846 if (hapd_iface->bss[i] == NULL) {
847 wpa_supplicant_ap_deinit(wpa_s);
848 return -1;
849 }
4f760fcc
JM
850
851 hapd_iface->bss[i]->msg_ctx = wpa_s;
ba307f85 852 hapd_iface->bss[i]->msg_ctx_parent = wpa_s->p2pdev;
c706d5aa
JM
853 hapd_iface->bss[i]->public_action_cb = ap_public_action_rx;
854 hapd_iface->bss[i]->public_action_cb_ctx = wpa_s;
e44f8bf2
JM
855 hapd_iface->bss[i]->vendor_action_cb = ap_vendor_action_rx;
856 hapd_iface->bss[i]->vendor_action_cb_ctx = wpa_s;
c706d5aa
JM
857 hostapd_register_probereq_cb(hapd_iface->bss[i],
858 ap_probe_req_rx, wpa_s);
859 hapd_iface->bss[i]->wps_reg_success_cb = ap_wps_reg_success_cb;
860 hapd_iface->bss[i]->wps_reg_success_cb_ctx = wpa_s;
a0dee797
AGS
861 hapd_iface->bss[i]->wps_event_cb = ap_wps_event_cb;
862 hapd_iface->bss[i]->wps_event_cb_ctx = wpa_s;
d8a43924
JB
863 hapd_iface->bss[i]->sta_authorized_cb = ap_sta_authorized_cb;
864 hapd_iface->bss[i]->sta_authorized_cb_ctx = wpa_s;
e44f8bf2 865#ifdef CONFIG_P2P
01a57fe4
JM
866 hapd_iface->bss[i]->new_psk_cb = ap_new_psk_cb;
867 hapd_iface->bss[i]->new_psk_cb_ctx = wpa_s;
e44f8bf2 868 hapd_iface->bss[i]->p2p = wpa_s->global->p2p;
6f251b6b
JM
869 hapd_iface->bss[i]->p2p_group = wpas_p2p_group_init(wpa_s,
870 ssid);
e44f8bf2 871#endif /* CONFIG_P2P */
c76e5d7f
JB
872 hapd_iface->bss[i]->setup_complete_cb = wpas_ap_configured_cb;
873 hapd_iface->bss[i]->setup_complete_cb_ctx = wpa_s;
9d4ff04a
JM
874#ifdef CONFIG_TESTING_OPTIONS
875 hapd_iface->bss[i]->ext_eapol_frame_io =
876 wpa_s->ext_eapol_frame_io;
877#endif /* CONFIG_TESTING_OPTIONS */
2d5b792d
JM
878 }
879
a911a6e6
JM
880 os_memcpy(hapd_iface->bss[0]->own_addr, wpa_s->own_addr, ETH_ALEN);
881 hapd_iface->bss[0]->driver = wpa_s->driver;
882 hapd_iface->bss[0]->drv_priv = wpa_s->drv_priv;
883
e73edcaa 884 wpa_s->current_ssid = ssid;
25a8f9e3 885 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
e73edcaa
JM
886 os_memcpy(wpa_s->bssid, wpa_s->own_addr, ETH_ALEN);
887 wpa_s->assoc_freq = ssid->frequency;
888
37ed3254
SD
889#if defined(CONFIG_P2P) && defined(CONFIG_ACS)
890 if (wpa_s->p2p_go_do_acs) {
891 wpa_s->ap_iface->conf->channel = 0;
892 wpa_s->ap_iface->conf->hw_mode = wpa_s->p2p_go_acs_band;
893 ssid->acs = 1;
894 }
895#endif /* CONFIG_P2P && CONFIG_ACS */
896
a911a6e6 897 if (hostapd_setup_interface(wpa_s->ap_iface)) {
2d5b792d
JM
898 wpa_printf(MSG_ERROR, "Failed to initialize AP interface");
899 wpa_supplicant_ap_deinit(wpa_s);
900 return -1;
1f1b62a0
JM
901 }
902
2d5b792d
JM
903 return 0;
904}
905
906
907void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s)
908{
0fe620de 909#ifdef CONFIG_WPS
70d84f11 910 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
0fe620de 911#endif /* CONFIG_WPS */
70d84f11 912
2d5b792d
JM
913 if (wpa_s->ap_iface == NULL)
914 return;
915
7a649c7d 916 wpa_s->current_ssid = NULL;
25a8f9e3 917 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
3c85f144 918 wpa_s->assoc_freq = 0;
bd10d938 919 wpas_p2p_ap_deinit(wpa_s);
354c903f
MB
920 wpa_s->ap_iface->driver_ap_teardown =
921 !!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
922
2d5b792d 923 hostapd_interface_deinit(wpa_s->ap_iface);
f7c47833 924 hostapd_interface_free(wpa_s->ap_iface);
2d5b792d 925 wpa_s->ap_iface = NULL;
7a649c7d 926 wpa_drv_deinit_ap(wpa_s);
f10487e1
JM
927 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
928 " reason=%d locally_generated=1",
929 MAC2STR(wpa_s->own_addr), WLAN_REASON_DEAUTH_LEAVING);
1f1b62a0 930}
0915d02c
JM
931
932
933void ap_tx_status(void *ctx, const u8 *addr,
934 const u8 *buf, size_t len, int ack)
935{
f8b1f695 936#ifdef NEED_AP_MLME
0915d02c
JM
937 struct wpa_supplicant *wpa_s = ctx;
938 hostapd_tx_status(wpa_s->ap_iface->bss[0], addr, buf, len, ack);
f8b1f695 939#endif /* NEED_AP_MLME */
0915d02c
JM
940}
941
942
dd840f79
JB
943void ap_eapol_tx_status(void *ctx, const u8 *dst,
944 const u8 *data, size_t len, int ack)
945{
946#ifdef NEED_AP_MLME
947 struct wpa_supplicant *wpa_s = ctx;
6fc61e18
JM
948 if (!wpa_s->ap_iface)
949 return;
dd840f79
JB
950 hostapd_tx_status(wpa_s->ap_iface->bss[0], dst, data, len, ack);
951#endif /* NEED_AP_MLME */
952}
953
954
bcf24348
JB
955void ap_client_poll_ok(void *ctx, const u8 *addr)
956{
957#ifdef NEED_AP_MLME
958 struct wpa_supplicant *wpa_s = ctx;
959 if (wpa_s->ap_iface)
960 hostapd_client_poll_ok(wpa_s->ap_iface->bss[0], addr);
961#endif /* NEED_AP_MLME */
962}
963
964
9b90955e 965void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds)
0915d02c 966{
f8b1f695 967#ifdef NEED_AP_MLME
0915d02c 968 struct wpa_supplicant *wpa_s = ctx;
9b90955e 969 ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], addr, wds);
f8b1f695 970#endif /* NEED_AP_MLME */
0915d02c
JM
971}
972
973
2a8b7416 974void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt)
0915d02c 975{
f8b1f695 976#ifdef NEED_AP_MLME
0915d02c 977 struct wpa_supplicant *wpa_s = ctx;
2a8b7416
JM
978 struct hostapd_frame_info fi;
979 os_memset(&fi, 0, sizeof(fi));
980 fi.datarate = rx_mgmt->datarate;
981 fi.ssi_signal = rx_mgmt->ssi_signal;
982 ieee802_11_mgmt(wpa_s->ap_iface->bss[0], rx_mgmt->frame,
983 rx_mgmt->frame_len, &fi);
f8b1f695 984#endif /* NEED_AP_MLME */
0915d02c
JM
985}
986
987
f8b1f695 988void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok)
0915d02c 989{
f8b1f695 990#ifdef NEED_AP_MLME
0915d02c
JM
991 struct wpa_supplicant *wpa_s = ctx;
992 ieee802_11_mgmt_cb(wpa_s->ap_iface->bss[0], buf, len, stype, ok);
fe6bdb77 993#endif /* NEED_AP_MLME */
f8b1f695 994}
db149ac9
JM
995
996
997void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
998 const u8 *src_addr, const u8 *buf, size_t len)
999{
a8e0505b 1000 ieee802_1x_receive(wpa_s->ap_iface->bss[0], src_addr, buf, len);
db149ac9 1001}
3ec97afe
JM
1002
1003
1004#ifdef CONFIG_WPS
1005
d601247c
JM
1006int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
1007 const u8 *p2p_dev_addr)
3ec97afe 1008{
48b357a9
JM
1009 if (!wpa_s->ap_iface)
1010 return -1;
d601247c
JM
1011 return hostapd_wps_button_pushed(wpa_s->ap_iface->bss[0],
1012 p2p_dev_addr);
3ec97afe
JM
1013}
1014
1015
2f9929ff
AC
1016int wpa_supplicant_ap_wps_cancel(struct wpa_supplicant *wpa_s)
1017{
1018 struct wps_registrar *reg;
1019 int reg_sel = 0, wps_sta = 0;
1020
1021 if (!wpa_s->ap_iface || !wpa_s->ap_iface->bss[0]->wps)
1022 return -1;
1023
1024 reg = wpa_s->ap_iface->bss[0]->wps->registrar;
1025 reg_sel = wps_registrar_wps_cancel(reg);
1026 wps_sta = ap_for_each_sta(wpa_s->ap_iface->bss[0],
4c374cde 1027 ap_sta_wps_cancel, NULL);
2f9929ff
AC
1028
1029 if (!reg_sel && !wps_sta) {
1030 wpa_printf(MSG_DEBUG, "No WPS operation in progress at this "
1031 "time");
1032 return -1;
1033 }
1034
1035 /*
1036 * There are 2 cases to return wps cancel as success:
1037 * 1. When wps cancel was initiated but no connection has been
1038 * established with client yet.
1039 * 2. Client is in the middle of exchanging WPS messages.
1040 */
1041
1042 return 0;
1043}
1044
1045
3ec97afe 1046int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
c423708f
JM
1047 const char *pin, char *buf, size_t buflen,
1048 int timeout)
3ec97afe
JM
1049{
1050 int ret, ret_len = 0;
1051
48b357a9
JM
1052 if (!wpa_s->ap_iface)
1053 return -1;
1054
3ec97afe 1055 if (pin == NULL) {
98a516ea
NL
1056 unsigned int rpin;
1057
1058 if (wps_generate_pin(&rpin) < 0)
1059 return -1;
9337e876 1060 ret_len = os_snprintf(buf, buflen, "%08d", rpin);
aaadd727
JM
1061 if (os_snprintf_error(buflen, ret_len))
1062 return -1;
3ec97afe 1063 pin = buf;
aaadd727 1064 } else if (buf) {
f80a2237 1065 ret_len = os_snprintf(buf, buflen, "%s", pin);
aaadd727
JM
1066 if (os_snprintf_error(buflen, ret_len))
1067 return -1;
1068 }
3ec97afe 1069
31fcea93 1070 ret = hostapd_wps_add_pin(wpa_s->ap_iface->bss[0], bssid, "any", pin,
c423708f 1071 timeout);
3ec97afe
JM
1072 if (ret)
1073 return -1;
1074 return ret_len;
1075}
1076
70d84f11
JM
1077
1078static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx)
1079{
1080 struct wpa_supplicant *wpa_s = eloop_data;
1081 wpa_printf(MSG_DEBUG, "WPS: AP PIN timed out");
1082 wpas_wps_ap_pin_disable(wpa_s);
1083}
1084
1085
1086static void wpas_wps_ap_pin_enable(struct wpa_supplicant *wpa_s, int timeout)
1087{
1088 struct hostapd_data *hapd;
1089
1090 if (wpa_s->ap_iface == NULL)
1091 return;
1092 hapd = wpa_s->ap_iface->bss[0];
1093 wpa_printf(MSG_DEBUG, "WPS: Enabling AP PIN (timeout=%d)", timeout);
1094 hapd->ap_pin_failures = 0;
1095 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
1096 if (timeout > 0)
1097 eloop_register_timeout(timeout, 0,
1098 wpas_wps_ap_pin_timeout, wpa_s, NULL);
1099}
1100
1101
1102void wpas_wps_ap_pin_disable(struct wpa_supplicant *wpa_s)
1103{
1104 struct hostapd_data *hapd;
1105
1106 if (wpa_s->ap_iface == NULL)
1107 return;
1108 wpa_printf(MSG_DEBUG, "WPS: Disabling AP PIN");
1109 hapd = wpa_s->ap_iface->bss[0];
1110 os_free(hapd->conf->ap_pin);
1111 hapd->conf->ap_pin = NULL;
1112 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
1113}
1114
1115
1116const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout)
1117{
1118 struct hostapd_data *hapd;
1119 unsigned int pin;
1120 char pin_txt[9];
1121
1122 if (wpa_s->ap_iface == NULL)
1123 return NULL;
1124 hapd = wpa_s->ap_iface->bss[0];
98a516ea
NL
1125 if (wps_generate_pin(&pin) < 0)
1126 return NULL;
9337e876 1127 os_snprintf(pin_txt, sizeof(pin_txt), "%08u", pin);
70d84f11
JM
1128 os_free(hapd->conf->ap_pin);
1129 hapd->conf->ap_pin = os_strdup(pin_txt);
1130 if (hapd->conf->ap_pin == NULL)
1131 return NULL;
1132 wpas_wps_ap_pin_enable(wpa_s, timeout);
1133
1134 return hapd->conf->ap_pin;
1135}
1136
1137
1138const char * wpas_wps_ap_pin_get(struct wpa_supplicant *wpa_s)
1139{
1140 struct hostapd_data *hapd;
1141 if (wpa_s->ap_iface == NULL)
1142 return NULL;
1143 hapd = wpa_s->ap_iface->bss[0];
1144 return hapd->conf->ap_pin;
1145}
1146
1147
1148int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin,
1149 int timeout)
1150{
1151 struct hostapd_data *hapd;
1152 char pin_txt[9];
1153 int ret;
1154
1155 if (wpa_s->ap_iface == NULL)
1156 return -1;
1157 hapd = wpa_s->ap_iface->bss[0];
1158 ret = os_snprintf(pin_txt, sizeof(pin_txt), "%s", pin);
d85e1fc8 1159 if (os_snprintf_error(sizeof(pin_txt), ret))
70d84f11
JM
1160 return -1;
1161 os_free(hapd->conf->ap_pin);
1162 hapd->conf->ap_pin = os_strdup(pin_txt);
1163 if (hapd->conf->ap_pin == NULL)
1164 return -1;
1165 wpas_wps_ap_pin_enable(wpa_s, timeout);
1166
1167 return 0;
1168}
1169
1170
1171void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s)
1172{
1173 struct hostapd_data *hapd;
1174
1175 if (wpa_s->ap_iface == NULL)
1176 return;
1177 hapd = wpa_s->ap_iface->bss[0];
1178
1179 /*
1180 * Registrar failed to prove its knowledge of the AP PIN. Disable AP
1181 * PIN if this happens multiple times to slow down brute force attacks.
1182 */
1183 hapd->ap_pin_failures++;
1184 wpa_printf(MSG_DEBUG, "WPS: AP PIN authentication failure number %u",
1185 hapd->ap_pin_failures);
1186 if (hapd->ap_pin_failures < 3)
1187 return;
1188
1189 wpa_printf(MSG_DEBUG, "WPS: Disable AP PIN");
1190 hapd->ap_pin_failures = 0;
1191 os_free(hapd->conf->ap_pin);
1192 hapd->conf->ap_pin = NULL;
1193}
1194
bbf41865 1195
87470ea2
JM
1196#ifdef CONFIG_WPS_NFC
1197
bbf41865
JM
1198struct wpabuf * wpas_ap_wps_nfc_config_token(struct wpa_supplicant *wpa_s,
1199 int ndef)
1200{
1201 struct hostapd_data *hapd;
1202
1203 if (wpa_s->ap_iface == NULL)
1204 return NULL;
1205 hapd = wpa_s->ap_iface->bss[0];
1206 return hostapd_wps_nfc_config_token(hapd, ndef);
1207}
1208
5ab9a6a5
JM
1209
1210struct wpabuf * wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s,
1211 int ndef)
1212{
1213 struct hostapd_data *hapd;
1214
1215 if (wpa_s->ap_iface == NULL)
1216 return NULL;
1217 hapd = wpa_s->ap_iface->bss[0];
1218 return hostapd_wps_nfc_hs_cr(hapd, ndef);
1219}
1220
d9507936
JM
1221
1222int wpas_ap_wps_nfc_report_handover(struct wpa_supplicant *wpa_s,
1223 const struct wpabuf *req,
1224 const struct wpabuf *sel)
1225{
1226 struct hostapd_data *hapd;
1227
1228 if (wpa_s->ap_iface == NULL)
1229 return -1;
1230 hapd = wpa_s->ap_iface->bss[0];
1231 return hostapd_wps_nfc_report_handover(hapd, req, sel);
1232}
1233
87470ea2
JM
1234#endif /* CONFIG_WPS_NFC */
1235
3ec97afe 1236#endif /* CONFIG_WPS */
e653b622
JM
1237
1238
35deb646
JM
1239#ifdef CONFIG_CTRL_IFACE
1240
e653b622
JM
1241int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s,
1242 char *buf, size_t buflen)
1243{
e7700713
JM
1244 struct hostapd_data *hapd;
1245
1246 if (wpa_s->ap_iface)
1247 hapd = wpa_s->ap_iface->bss[0];
1248 else if (wpa_s->ifmsh)
1249 hapd = wpa_s->ifmsh->bss[0];
1250 else
e653b622 1251 return -1;
e7700713 1252 return hostapd_ctrl_iface_sta_first(hapd, buf, buflen);
e653b622
JM
1253}
1254
1255
1256int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr,
1257 char *buf, size_t buflen)
1258{
e7700713
JM
1259 struct hostapd_data *hapd;
1260
1261 if (wpa_s->ap_iface)
1262 hapd = wpa_s->ap_iface->bss[0];
1263 else if (wpa_s->ifmsh)
1264 hapd = wpa_s->ifmsh->bss[0];
1265 else
e653b622 1266 return -1;
e7700713 1267 return hostapd_ctrl_iface_sta(hapd, txtaddr, buf, buflen);
e653b622
JM
1268}
1269
1270
1271int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr,
1272 char *buf, size_t buflen)
1273{
e7700713
JM
1274 struct hostapd_data *hapd;
1275
1276 if (wpa_s->ap_iface)
1277 hapd = wpa_s->ap_iface->bss[0];
1278 else if (wpa_s->ifmsh)
1279 hapd = wpa_s->ifmsh->bss[0];
1280 else
e653b622 1281 return -1;
e7700713 1282 return hostapd_ctrl_iface_sta_next(hapd, txtaddr, buf, buflen);
e653b622 1283}
35deb646 1284
43fb5297 1285
e60b2951
JJ
1286int ap_ctrl_iface_sta_disassociate(struct wpa_supplicant *wpa_s,
1287 const char *txtaddr)
1288{
1289 if (wpa_s->ap_iface == NULL)
1290 return -1;
1291 return hostapd_ctrl_iface_disassociate(wpa_s->ap_iface->bss[0],
1292 txtaddr);
1293}
1294
1295
1296int ap_ctrl_iface_sta_deauthenticate(struct wpa_supplicant *wpa_s,
1297 const char *txtaddr)
1298{
1299 if (wpa_s->ap_iface == NULL)
1300 return -1;
1301 return hostapd_ctrl_iface_deauthenticate(wpa_s->ap_iface->bss[0],
1302 txtaddr);
1303}
1304
1305
43fb5297
JM
1306int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf,
1307 size_t buflen, int verbose)
1308{
1309 char *pos = buf, *end = buf + buflen;
1310 int ret;
1311 struct hostapd_bss_config *conf;
1312
1313 if (wpa_s->ap_iface == NULL)
1314 return -1;
1315
1316 conf = wpa_s->ap_iface->bss[0]->conf;
1317 if (conf->wpa == 0)
1318 return 0;
1319
1320 ret = os_snprintf(pos, end - pos,
1321 "pairwise_cipher=%s\n"
1322 "group_cipher=%s\n"
1323 "key_mgmt=%s\n",
1324 wpa_cipher_txt(conf->rsn_pairwise),
1325 wpa_cipher_txt(conf->wpa_group),
1326 wpa_key_mgmt_txt(conf->wpa_key_mgmt,
1327 conf->wpa));
d85e1fc8 1328 if (os_snprintf_error(end - pos, ret))
43fb5297
JM
1329 return pos - buf;
1330 pos += ret;
1331 return pos - buf;
1332}
1333
35deb646 1334#endif /* CONFIG_CTRL_IFACE */
f90ceeaa
JM
1335
1336
b22128ef
JM
1337int wpa_supplicant_ap_update_beacon(struct wpa_supplicant *wpa_s)
1338{
1339 struct hostapd_iface *iface = wpa_s->ap_iface;
1340 struct wpa_ssid *ssid = wpa_s->current_ssid;
1341 struct hostapd_data *hapd;
1342
72d48a80
JM
1343 if (ssid == NULL || wpa_s->ap_iface == NULL ||
1344 ssid->mode == WPAS_MODE_INFRA ||
1345 ssid->mode == WPAS_MODE_IBSS)
b22128ef
JM
1346 return -1;
1347
e44f8bf2
JM
1348#ifdef CONFIG_P2P
1349 if (ssid->mode == WPAS_MODE_P2P_GO)
ebd79f07 1350 iface->conf->bss[0]->p2p = P2P_ENABLED | P2P_GROUP_OWNER;
e44f8bf2 1351 else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
ebd79f07 1352 iface->conf->bss[0]->p2p = P2P_ENABLED | P2P_GROUP_OWNER |
e44f8bf2
JM
1353 P2P_GROUP_FORMATION;
1354#endif /* CONFIG_P2P */
1355
b22128ef 1356 hapd = iface->bss[0];
72d48a80
JM
1357 if (hapd->drv_priv == NULL)
1358 return -1;
1359 ieee802_11_set_beacons(iface);
fe99fb74 1360 hostapd_set_ap_wps_ie(hapd);
b22128ef
JM
1361
1362 return 0;
1363}
1364
1365
bf281c12
AO
1366int ap_switch_channel(struct wpa_supplicant *wpa_s,
1367 struct csa_settings *settings)
1368{
1369#ifdef NEED_AP_MLME
1370 if (!wpa_s->ap_iface || !wpa_s->ap_iface->bss[0])
1371 return -1;
1372
1373 return hostapd_switch_channel(wpa_s->ap_iface->bss[0], settings);
1374#else /* NEED_AP_MLME */
1375 return -1;
1376#endif /* NEED_AP_MLME */
1377}
1378
1379
b7991185 1380#ifdef CONFIG_CTRL_IFACE
334bf36a
AO
1381int ap_ctrl_iface_chanswitch(struct wpa_supplicant *wpa_s, const char *pos)
1382{
1383 struct csa_settings settings;
1384 int ret = hostapd_parse_csa_settings(pos, &settings);
1385
1386 if (ret)
1387 return ret;
1388
1389 return ap_switch_channel(wpa_s, &settings);
1390}
b7991185 1391#endif /* CONFIG_CTRL_IFACE */
334bf36a
AO
1392
1393
1b487b8b 1394void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht,
95f556f3 1395 int offset, int width, int cf1, int cf2, int finished)
1b487b8b 1396{
0332c27e 1397 struct hostapd_iface *iface = wpa_s->ap_iface;
1b487b8b 1398
0332c27e
PO
1399 if (!iface)
1400 iface = wpa_s->ifmsh;
1401 if (!iface)
1402 return;
1b487b8b 1403 wpa_s->assoc_freq = freq;
d7ded547
AO
1404 if (wpa_s->current_ssid)
1405 wpa_s->current_ssid->frequency = freq;
0332c27e 1406 hostapd_event_ch_switch(iface->bss[0], freq, ht,
95f556f3 1407 offset, width, cf1, cf2, finished);
1b487b8b
TP
1408}
1409
1410
f90ceeaa
JM
1411int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s,
1412 const u8 *addr)
1413{
1414 struct hostapd_data *hapd;
1415 struct hostapd_bss_config *conf;
1416
1417 if (!wpa_s->ap_iface)
1418 return -1;
1419
1420 if (addr)
1421 wpa_printf(MSG_DEBUG, "AP: Set MAC address filter: " MACSTR,
1422 MAC2STR(addr));
1423 else
1424 wpa_printf(MSG_DEBUG, "AP: Clear MAC address filter");
1425
1426 hapd = wpa_s->ap_iface->bss[0];
1427 conf = hapd->conf;
1428
1429 os_free(conf->accept_mac);
1430 conf->accept_mac = NULL;
1431 conf->num_accept_mac = 0;
1432 os_free(conf->deny_mac);
1433 conf->deny_mac = NULL;
1434 conf->num_deny_mac = 0;
1435
1436 if (addr == NULL) {
1437 conf->macaddr_acl = ACCEPT_UNLESS_DENIED;
1438 return 0;
1439 }
1440
1441 conf->macaddr_acl = DENY_UNLESS_ACCEPTED;
1442 conf->accept_mac = os_zalloc(sizeof(struct mac_acl_entry));
1443 if (conf->accept_mac == NULL)
1444 return -1;
1445 os_memcpy(conf->accept_mac[0].addr, addr, ETH_ALEN);
1446 conf->num_accept_mac = 1;
1447
1448 return 0;
1449}
db6ae69e
JM
1450
1451
1452#ifdef CONFIG_WPS_NFC
1453int wpas_ap_wps_add_nfc_pw(struct wpa_supplicant *wpa_s, u16 pw_id,
1454 const struct wpabuf *pw, const u8 *pubkey_hash)
1455{
1456 struct hostapd_data *hapd;
1457 struct wps_context *wps;
1458
1459 if (!wpa_s->ap_iface)
1460 return -1;
1461 hapd = wpa_s->ap_iface->bss[0];
1462 wps = hapd->wps;
1463
ba307f85
LD
1464 if (wpa_s->p2pdev->conf->wps_nfc_dh_pubkey == NULL ||
1465 wpa_s->p2pdev->conf->wps_nfc_dh_privkey == NULL) {
db6ae69e
JM
1466 wpa_printf(MSG_DEBUG, "P2P: No NFC DH key known");
1467 return -1;
1468 }
1469
1470 dh5_free(wps->dh_ctx);
1471 wpabuf_free(wps->dh_pubkey);
1472 wpabuf_free(wps->dh_privkey);
1473 wps->dh_privkey = wpabuf_dup(
ba307f85 1474 wpa_s->p2pdev->conf->wps_nfc_dh_privkey);
db6ae69e 1475 wps->dh_pubkey = wpabuf_dup(
ba307f85 1476 wpa_s->p2pdev->conf->wps_nfc_dh_pubkey);
db6ae69e
JM
1477 if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) {
1478 wps->dh_ctx = NULL;
1479 wpabuf_free(wps->dh_pubkey);
1480 wps->dh_pubkey = NULL;
1481 wpabuf_free(wps->dh_privkey);
1482 wps->dh_privkey = NULL;
1483 return -1;
1484 }
1485 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey);
1486 if (wps->dh_ctx == NULL)
1487 return -1;
1488
1489 return wps_registrar_add_nfc_pw_token(hapd->wps->registrar, pubkey_hash,
1490 pw_id,
1491 pw ? wpabuf_head(pw) : NULL,
1492 pw ? wpabuf_len(pw) : 0, 1);
1493}
1494#endif /* CONFIG_WPS_NFC */
99650cad
JM
1495
1496
b7991185 1497#ifdef CONFIG_CTRL_IFACE
99650cad
JM
1498int wpas_ap_stop_ap(struct wpa_supplicant *wpa_s)
1499{
1500 struct hostapd_data *hapd;
1501
1502 if (!wpa_s->ap_iface)
1503 return -1;
1504 hapd = wpa_s->ap_iface->bss[0];
1505 return hostapd_ctrl_iface_stop_ap(hapd);
1506}
bd0f68c4
AK
1507
1508
b8daac18
MH
1509int wpas_ap_pmksa_cache_list(struct wpa_supplicant *wpa_s, char *buf,
1510 size_t len)
1511{
1512 size_t reply_len = 0, i;
1513 char ap_delimiter[] = "---- AP ----\n";
1514 char mesh_delimiter[] = "---- mesh ----\n";
1515 size_t dlen;
1516
1517 if (wpa_s->ap_iface) {
1518 dlen = os_strlen(ap_delimiter);
1519 if (dlen > len - reply_len)
1520 return reply_len;
1521 os_memcpy(&buf[reply_len], ap_delimiter, dlen);
1522 reply_len += dlen;
1523
1524 for (i = 0; i < wpa_s->ap_iface->num_bss; i++) {
1525 reply_len += hostapd_ctrl_iface_pmksa_list(
1526 wpa_s->ap_iface->bss[i],
1527 &buf[reply_len], len - reply_len);
1528 }
1529 }
1530
1531 if (wpa_s->ifmsh) {
1532 dlen = os_strlen(mesh_delimiter);
1533 if (dlen > len - reply_len)
1534 return reply_len;
1535 os_memcpy(&buf[reply_len], mesh_delimiter, dlen);
1536 reply_len += dlen;
1537
1538 reply_len += hostapd_ctrl_iface_pmksa_list(
1539 wpa_s->ifmsh->bss[0], &buf[reply_len],
1540 len - reply_len);
1541 }
1542
1543 return reply_len;
1544}
1545
1546
4c522c77
MH
1547void wpas_ap_pmksa_cache_flush(struct wpa_supplicant *wpa_s)
1548{
1549 size_t i;
1550
1551 if (wpa_s->ap_iface) {
1552 for (i = 0; i < wpa_s->ap_iface->num_bss; i++)
1553 hostapd_ctrl_iface_pmksa_flush(wpa_s->ap_iface->bss[i]);
1554 }
1555
1556 if (wpa_s->ifmsh)
1557 hostapd_ctrl_iface_pmksa_flush(wpa_s->ifmsh->bss[0]);
1558}
4d77d80e
MH
1559
1560
1561#ifdef CONFIG_PMKSA_CACHE_EXTERNAL
1562#ifdef CONFIG_MESH
1563
1564int wpas_ap_pmksa_cache_list_mesh(struct wpa_supplicant *wpa_s, const u8 *addr,
1565 char *buf, size_t len)
1566{
1567 return hostapd_ctrl_iface_pmksa_list_mesh(wpa_s->ifmsh->bss[0], addr,
1568 &buf[0], len);
1569}
1570
1571
1572int wpas_ap_pmksa_cache_add_external(struct wpa_supplicant *wpa_s, char *cmd)
1573{
1574 struct external_pmksa_cache *entry;
1575 void *pmksa_cache;
1576
1577 pmksa_cache = hostapd_ctrl_iface_pmksa_create_entry(wpa_s->own_addr,
1578 cmd);
1579 if (!pmksa_cache)
1580 return -1;
1581
1582 entry = os_zalloc(sizeof(struct external_pmksa_cache));
1583 if (!entry)
1584 return -1;
1585
1586 entry->pmksa_cache = pmksa_cache;
1587
1588 dl_list_add(&wpa_s->mesh_external_pmksa_cache, &entry->list);
1589
1590 return 0;
1591}
1592
1593#endif /* CONFIG_MESH */
1594#endif /* CONFIG_PMKSA_CACHE_EXTERNAL */
1595
3dd0e9e4 1596#endif /* CONFIG_CTRL_IFACE */
4c522c77
MH
1597
1598
bd0f68c4 1599#ifdef NEED_AP_MLME
2dd5fbbf
DL
1600void wpas_ap_event_dfs_radar_detected(struct wpa_supplicant *wpa_s,
1601 struct dfs_event *radar)
bd0f68c4 1602{
0332c27e
PO
1603 struct hostapd_iface *iface = wpa_s->ap_iface;
1604
1605 if (!iface)
1606 iface = wpa_s->ifmsh;
1607 if (!iface || !iface->bss[0])
bd0f68c4
AK
1608 return;
1609 wpa_printf(MSG_DEBUG, "DFS radar detected on %d MHz", radar->freq);
0332c27e 1610 hostapd_dfs_radar_detected(iface, radar->freq,
bd0f68c4
AK
1611 radar->ht_enabled, radar->chan_offset,
1612 radar->chan_width,
1613 radar->cf1, radar->cf2);
1614}
1615
1616
2dd5fbbf
DL
1617void wpas_ap_event_dfs_cac_started(struct wpa_supplicant *wpa_s,
1618 struct dfs_event *radar)
bd0f68c4 1619{
0332c27e
PO
1620 struct hostapd_iface *iface = wpa_s->ap_iface;
1621
1622 if (!iface)
1623 iface = wpa_s->ifmsh;
1624 if (!iface || !iface->bss[0])
bd0f68c4
AK
1625 return;
1626 wpa_printf(MSG_DEBUG, "DFS CAC started on %d MHz", radar->freq);
0332c27e 1627 hostapd_dfs_start_cac(iface, radar->freq,
bd0f68c4
AK
1628 radar->ht_enabled, radar->chan_offset,
1629 radar->chan_width, radar->cf1, radar->cf2);
1630}
1631
1632
2dd5fbbf
DL
1633void wpas_ap_event_dfs_cac_finished(struct wpa_supplicant *wpa_s,
1634 struct dfs_event *radar)
bd0f68c4 1635{
0332c27e
PO
1636 struct hostapd_iface *iface = wpa_s->ap_iface;
1637
1638 if (!iface)
1639 iface = wpa_s->ifmsh;
1640 if (!iface || !iface->bss[0])
bd0f68c4
AK
1641 return;
1642 wpa_printf(MSG_DEBUG, "DFS CAC finished on %d MHz", radar->freq);
0332c27e 1643 hostapd_dfs_complete_cac(iface, 1, radar->freq,
bd0f68c4
AK
1644 radar->ht_enabled, radar->chan_offset,
1645 radar->chan_width, radar->cf1, radar->cf2);
1646}
1647
1648
2dd5fbbf
DL
1649void wpas_ap_event_dfs_cac_aborted(struct wpa_supplicant *wpa_s,
1650 struct dfs_event *radar)
bd0f68c4 1651{
0332c27e
PO
1652 struct hostapd_iface *iface = wpa_s->ap_iface;
1653
1654 if (!iface)
1655 iface = wpa_s->ifmsh;
1656 if (!iface || !iface->bss[0])
bd0f68c4
AK
1657 return;
1658 wpa_printf(MSG_DEBUG, "DFS CAC aborted on %d MHz", radar->freq);
0332c27e 1659 hostapd_dfs_complete_cac(iface, 0, radar->freq,
bd0f68c4
AK
1660 radar->ht_enabled, radar->chan_offset,
1661 radar->chan_width, radar->cf1, radar->cf2);
1662}
1663
1664
2dd5fbbf
DL
1665void wpas_ap_event_dfs_cac_nop_finished(struct wpa_supplicant *wpa_s,
1666 struct dfs_event *radar)
bd0f68c4 1667{
0332c27e
PO
1668 struct hostapd_iface *iface = wpa_s->ap_iface;
1669
1670 if (!iface)
1671 iface = wpa_s->ifmsh;
1672 if (!iface || !iface->bss[0])
bd0f68c4
AK
1673 return;
1674 wpa_printf(MSG_DEBUG, "DFS NOP finished on %d MHz", radar->freq);
0332c27e 1675 hostapd_dfs_nop_finished(iface, radar->freq,
bd0f68c4
AK
1676 radar->ht_enabled, radar->chan_offset,
1677 radar->chan_width, radar->cf1, radar->cf2);
1678}
1679#endif /* NEED_AP_MLME */
3188aaba
JM
1680
1681
1682void ap_periodic(struct wpa_supplicant *wpa_s)
1683{
1684 if (wpa_s->ap_iface)
1685 hostapd_periodic_iface(wpa_s->ap_iface);
1686}