blob: c48a286592d5af3fb11a0de33918d93ca28cf863 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
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 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07008 */
9
10#include "utils/includes.h"
11
12#include "utils/common.h"
13#include "utils/eloop.h"
14#include "utils/uuid.h"
15#include "common/ieee802_11_defs.h"
16#include "common/wpa_ctrl.h"
17#include "ap/hostapd.h"
18#include "ap/ap_config.h"
19#include "ap/ap_drv_ops.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080020#ifdef NEED_AP_MLME
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070021#include "ap/ieee802_11.h"
22#endif /* NEED_AP_MLME */
23#include "ap/beacon.h"
24#include "ap/ieee802_1x.h"
25#include "ap/wps_hostapd.h"
26#include "ap/ctrl_iface_ap.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070027#include "wps/wps.h"
28#include "common/ieee802_11_defs.h"
29#include "config_ssid.h"
30#include "config.h"
31#include "wpa_supplicant_i.h"
32#include "driver_i.h"
33#include "p2p_supplicant.h"
34#include "ap.h"
35#include "ap/sta_info.h"
36#include "notify.h"
37
38
39#ifdef CONFIG_WPS
40static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx);
41#endif /* CONFIG_WPS */
42
43
44static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s,
45 struct wpa_ssid *ssid,
46 struct hostapd_config *conf)
47{
48 struct hostapd_bss_config *bss = &conf->bss[0];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070049
50 conf->driver = wpa_s->driver;
51
52 os_strlcpy(bss->iface, wpa_s->ifname, sizeof(bss->iface));
53
54 if (ssid->frequency == 0) {
55 /* default channel 11 */
56 conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
57 conf->channel = 11;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070058 } else {
Dmitry Shmidt4b060592013-04-29 16:42:49 -070059 conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency,
60 &conf->channel);
61 if (conf->hw_mode == NUM_HOSTAPD_MODES) {
62 wpa_printf(MSG_ERROR, "Unsupported AP mode frequency: "
63 "%d MHz", ssid->frequency);
64 return -1;
65 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070066 }
67
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070068 /* TODO: enable HT40 if driver supports it;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070069 * drop to 11b if driver does not support 11g */
70
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070071#ifdef CONFIG_IEEE80211N
72 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080073 * Enable HT20 if the driver supports it, by setting conf->ieee80211n
74 * and a mask of allowed capabilities within conf->ht_capab.
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070075 * Using default config settings for: conf->ht_op_mode_fixed,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080076 * conf->secondary_channel, conf->require_ht
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070077 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080078 if (wpa_s->hw.modes) {
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070079 struct hostapd_hw_modes *mode = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -070080 int i, no_ht = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080081 for (i = 0; i < wpa_s->hw.num_modes; i++) {
82 if (wpa_s->hw.modes[i].mode == conf->hw_mode) {
83 mode = &wpa_s->hw.modes[i];
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070084 break;
85 }
86 }
Dmitry Shmidt04949592012-07-19 12:16:46 -070087
88#ifdef CONFIG_HT_OVERRIDES
89 if (ssid->disable_ht) {
90 conf->ieee80211n = 0;
91 conf->ht_capab = 0;
92 no_ht = 1;
93 }
94#endif /* CONFIG_HT_OVERRIDES */
95
96 if (!no_ht && mode && mode->ht_capab) {
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070097 conf->ieee80211n = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070098#ifdef CONFIG_P2P
99 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211A &&
100 (mode->ht_capab &
101 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) &&
102 ssid->ht40)
103 conf->secondary_channel =
104 wpas_p2p_get_ht40_mode(wpa_s, mode,
105 conf->channel);
106 if (conf->secondary_channel)
107 conf->ht_capab |=
108 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
109#endif /* CONFIG_P2P */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800110
111 /*
112 * white-list capabilities that won't cause issues
113 * to connecting stations, while leaving the current
114 * capabilities intact (currently disabled SMPS).
115 */
116 conf->ht_capab |= mode->ht_capab &
117 (HT_CAP_INFO_GREEN_FIELD |
118 HT_CAP_INFO_SHORT_GI20MHZ |
119 HT_CAP_INFO_SHORT_GI40MHZ |
120 HT_CAP_INFO_RX_STBC_MASK |
121 HT_CAP_INFO_MAX_AMSDU_SIZE);
122 }
Dmitry Shmidtc55524a2011-07-07 11:18:38 -0700123 }
124#endif /* CONFIG_IEEE80211N */
125
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700126#ifdef CONFIG_P2P
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700127 if (conf->hw_mode == HOSTAPD_MODE_IEEE80211G &&
128 (ssid->mode == WPAS_MODE_P2P_GO ||
129 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700130 /* Remove 802.11b rates from supported and basic rate sets */
131 int *list = os_malloc(4 * sizeof(int));
132 if (list) {
133 list[0] = 60;
134 list[1] = 120;
135 list[2] = 240;
136 list[3] = -1;
137 }
138 conf->basic_rates = list;
139
140 list = os_malloc(9 * sizeof(int));
141 if (list) {
142 list[0] = 60;
143 list[1] = 90;
144 list[2] = 120;
145 list[3] = 180;
146 list[4] = 240;
147 list[5] = 360;
148 list[6] = 480;
149 list[7] = 540;
150 list[8] = -1;
151 }
152 conf->supported_rates = list;
153 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800154
155 bss->isolate = !wpa_s->conf->p2p_intra_bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700156#endif /* CONFIG_P2P */
157
158 if (ssid->ssid_len == 0) {
159 wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
160 return -1;
161 }
162 os_memcpy(bss->ssid.ssid, ssid->ssid, ssid->ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700163 bss->ssid.ssid_len = ssid->ssid_len;
164 bss->ssid.ssid_set = 1;
165
Dmitry Shmidt04949592012-07-19 12:16:46 -0700166 bss->ignore_broadcast_ssid = ssid->ignore_broadcast_ssid;
167
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800168 if (ssid->auth_alg)
169 bss->auth_algs = ssid->auth_alg;
170
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700171 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt))
172 bss->wpa = ssid->proto;
173 bss->wpa_key_mgmt = ssid->key_mgmt;
174 bss->wpa_pairwise = ssid->pairwise_cipher;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800175 if (ssid->psk_set) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700176 os_free(bss->ssid.wpa_psk);
177 bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
178 if (bss->ssid.wpa_psk == NULL)
179 return -1;
180 os_memcpy(bss->ssid.wpa_psk->psk, ssid->psk, PMK_LEN);
181 bss->ssid.wpa_psk->group = 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800182 } else if (ssid->passphrase) {
183 bss->ssid.wpa_passphrase = os_strdup(ssid->passphrase);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800184 } else if (ssid->wep_key_len[0] || ssid->wep_key_len[1] ||
185 ssid->wep_key_len[2] || ssid->wep_key_len[3]) {
186 struct hostapd_wep_keys *wep = &bss->ssid.wep;
187 int i;
188 for (i = 0; i < NUM_WEP_KEYS; i++) {
189 if (ssid->wep_key_len[i] == 0)
190 continue;
191 wep->key[i] = os_malloc(ssid->wep_key_len[i]);
192 if (wep->key[i] == NULL)
193 return -1;
194 os_memcpy(wep->key[i], ssid->wep_key[i],
195 ssid->wep_key_len[i]);
196 wep->len[i] = ssid->wep_key_len[i];
197 }
198 wep->idx = ssid->wep_tx_keyidx;
199 wep->keys_set = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700200 }
201
Dmitry Shmidt04949592012-07-19 12:16:46 -0700202 if (ssid->ap_max_inactivity)
203 bss->ap_max_inactivity = ssid->ap_max_inactivity;
204
205 if (ssid->dtim_period)
206 bss->dtim_period = ssid->dtim_period;
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -0800207 else if (wpa_s->conf->dtim_period)
208 bss->dtim_period = wpa_s->conf->dtim_period;
209
210 if (ssid->beacon_int)
211 conf->beacon_int = ssid->beacon_int;
212 else if (wpa_s->conf->beacon_int)
213 conf->beacon_int = wpa_s->conf->beacon_int;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700214
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800215 if ((bss->wpa & 2) && bss->rsn_pairwise == 0)
216 bss->rsn_pairwise = bss->wpa_pairwise;
217 bss->wpa_group = wpa_select_ap_group_cipher(bss->wpa, bss->wpa_pairwise,
218 bss->rsn_pairwise);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700219
220 if (bss->wpa && bss->ieee802_1x)
221 bss->ssid.security_policy = SECURITY_WPA;
222 else if (bss->wpa)
223 bss->ssid.security_policy = SECURITY_WPA_PSK;
224 else if (bss->ieee802_1x) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800225 int cipher = WPA_CIPHER_NONE;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700226 bss->ssid.security_policy = SECURITY_IEEE_802_1X;
227 bss->ssid.wep.default_len = bss->default_wep_key_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800228 if (bss->default_wep_key_len)
229 cipher = bss->default_wep_key_len >= 13 ?
230 WPA_CIPHER_WEP104 : WPA_CIPHER_WEP40;
231 bss->wpa_group = cipher;
232 bss->wpa_pairwise = cipher;
233 bss->rsn_pairwise = cipher;
234 } else if (bss->ssid.wep.keys_set) {
235 int cipher = WPA_CIPHER_WEP40;
236 if (bss->ssid.wep.len[0] >= 13)
237 cipher = WPA_CIPHER_WEP104;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700238 bss->ssid.security_policy = SECURITY_STATIC_WEP;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800239 bss->wpa_group = cipher;
240 bss->wpa_pairwise = cipher;
241 bss->rsn_pairwise = cipher;
242 } else {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700243 bss->ssid.security_policy = SECURITY_PLAINTEXT;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800244 bss->wpa_group = WPA_CIPHER_NONE;
245 bss->wpa_pairwise = WPA_CIPHER_NONE;
246 bss->rsn_pairwise = WPA_CIPHER_NONE;
247 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700248
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700249 if (bss->wpa_group_rekey < 86400 && (bss->wpa & 2) &&
250 (bss->wpa_group == WPA_CIPHER_CCMP ||
251 bss->wpa_group == WPA_CIPHER_GCMP)) {
252 /*
253 * Strong ciphers do not need frequent rekeying, so increase
254 * the default GTK rekeying period to 24 hours.
255 */
256 bss->wpa_group_rekey = 86400;
257 }
258
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700259#ifdef CONFIG_WPS
260 /*
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800261 * Enable WPS by default for open and WPA/WPA2-Personal network, but
262 * require user interaction to actually use it. Only the internal
263 * Registrar is supported.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700264 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800265 if (bss->ssid.security_policy != SECURITY_WPA_PSK &&
266 bss->ssid.security_policy != SECURITY_PLAINTEXT)
267 goto no_wps;
268#ifdef CONFIG_WPS2
269 if (bss->ssid.security_policy == SECURITY_WPA_PSK &&
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800270 (!(bss->rsn_pairwise & WPA_CIPHER_CCMP) || !(bss->wpa & 2)))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800271 goto no_wps; /* WPS2 does not allow WPA/TKIP-only
272 * configuration */
273#endif /* CONFIG_WPS2 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700274 bss->eap_server = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700275
276 if (!ssid->ignore_broadcast_ssid)
277 bss->wps_state = 2;
278
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700279 bss->ap_setup_locked = 2;
280 if (wpa_s->conf->config_methods)
281 bss->config_methods = os_strdup(wpa_s->conf->config_methods);
282 os_memcpy(bss->device_type, wpa_s->conf->device_type,
283 WPS_DEV_TYPE_LEN);
284 if (wpa_s->conf->device_name) {
285 bss->device_name = os_strdup(wpa_s->conf->device_name);
286 bss->friendly_name = os_strdup(wpa_s->conf->device_name);
287 }
288 if (wpa_s->conf->manufacturer)
289 bss->manufacturer = os_strdup(wpa_s->conf->manufacturer);
290 if (wpa_s->conf->model_name)
291 bss->model_name = os_strdup(wpa_s->conf->model_name);
292 if (wpa_s->conf->model_number)
293 bss->model_number = os_strdup(wpa_s->conf->model_number);
294 if (wpa_s->conf->serial_number)
295 bss->serial_number = os_strdup(wpa_s->conf->serial_number);
296 if (is_nil_uuid(wpa_s->conf->uuid))
297 os_memcpy(bss->uuid, wpa_s->wps->uuid, WPS_UUID_LEN);
298 else
299 os_memcpy(bss->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
300 os_memcpy(bss->os_version, wpa_s->conf->os_version, 4);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700301 bss->pbc_in_m1 = wpa_s->conf->pbc_in_m1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800302no_wps:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700303#endif /* CONFIG_WPS */
304
305 if (wpa_s->max_stations &&
306 wpa_s->max_stations < wpa_s->conf->max_num_sta)
307 bss->max_num_sta = wpa_s->max_stations;
308 else
309 bss->max_num_sta = wpa_s->conf->max_num_sta;
310
311 bss->disassoc_low_ack = wpa_s->conf->disassoc_low_ack;
312
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -0700313 if (wpa_s->conf->ap_vendor_elements) {
314 bss->vendor_elements =
315 wpabuf_dup(wpa_s->conf->ap_vendor_elements);
316 }
317
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700318 return 0;
319}
320
321
322static void ap_public_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
323{
324#ifdef CONFIG_P2P
325 struct wpa_supplicant *wpa_s = ctx;
326 const struct ieee80211_mgmt *mgmt;
327 size_t hdr_len;
328
329 mgmt = (const struct ieee80211_mgmt *) buf;
330 hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
331 if (hdr_len > len)
332 return;
333 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
334 mgmt->u.action.category,
335 &mgmt->u.action.u.vs_public_action.action,
336 len - hdr_len, freq);
337#endif /* CONFIG_P2P */
338}
339
340
341static void ap_wps_event_cb(void *ctx, enum wps_event event,
342 union wps_event_data *data)
343{
344#ifdef CONFIG_P2P
345 struct wpa_supplicant *wpa_s = ctx;
346
Jouni Malinen75ecf522011-06-27 15:19:46 -0700347 if (event == WPS_EV_FAIL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700348 struct wps_event_fail *fail = &data->fail;
349
Jouni Malinen75ecf522011-06-27 15:19:46 -0700350 if (wpa_s->parent && wpa_s->parent != wpa_s &&
351 wpa_s == wpa_s->global->p2p_group_formation) {
352 /*
353 * src/ap/wps_hostapd.c has already sent this on the
354 * main interface, so only send on the parent interface
355 * here if needed.
356 */
357 wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
358 "msg=%d config_error=%d",
359 fail->msg, fail->config_error);
360 }
361 wpas_p2p_wps_failed(wpa_s, fail);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700362 }
363#endif /* CONFIG_P2P */
364}
365
366
367static void ap_sta_authorized_cb(void *ctx, const u8 *mac_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800368 int authorized, const u8 *p2p_dev_addr)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700369{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800370 wpas_notify_sta_authorized(ctx, mac_addr, authorized, p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700371}
372
373
374static int ap_vendor_action_rx(void *ctx, const u8 *buf, size_t len, int freq)
375{
376#ifdef CONFIG_P2P
377 struct wpa_supplicant *wpa_s = ctx;
378 const struct ieee80211_mgmt *mgmt;
379 size_t hdr_len;
380
381 mgmt = (const struct ieee80211_mgmt *) buf;
382 hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
383 if (hdr_len > len)
384 return -1;
385 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
386 mgmt->u.action.category,
387 &mgmt->u.action.u.vs_public_action.action,
388 len - hdr_len, freq);
389#endif /* CONFIG_P2P */
390 return 0;
391}
392
393
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800394static int ap_probe_req_rx(void *ctx, const u8 *sa, const u8 *da,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700395 const u8 *bssid, const u8 *ie, size_t ie_len,
396 int ssi_signal)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700397{
398#ifdef CONFIG_P2P
399 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700400 return wpas_p2p_probe_req_rx(wpa_s, sa, da, bssid, ie, ie_len,
401 ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700402#else /* CONFIG_P2P */
403 return 0;
404#endif /* CONFIG_P2P */
405}
406
407
408static void ap_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
409 const u8 *uuid_e)
410{
411#ifdef CONFIG_P2P
412 struct wpa_supplicant *wpa_s = ctx;
413 wpas_p2p_wps_success(wpa_s, mac_addr, 1);
414#endif /* CONFIG_P2P */
415}
416
417
418static void wpas_ap_configured_cb(void *ctx)
419{
420 struct wpa_supplicant *wpa_s = ctx;
421
422 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
423
424 if (wpa_s->ap_configured_cb)
425 wpa_s->ap_configured_cb(wpa_s->ap_configured_cb_ctx,
426 wpa_s->ap_configured_cb_data);
427}
428
429
430int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
431 struct wpa_ssid *ssid)
432{
433 struct wpa_driver_associate_params params;
434 struct hostapd_iface *hapd_iface;
435 struct hostapd_config *conf;
436 size_t i;
437
438 if (ssid->ssid == NULL || ssid->ssid_len == 0) {
439 wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
440 return -1;
441 }
442
443 wpa_supplicant_ap_deinit(wpa_s);
444
445 wpa_printf(MSG_DEBUG, "Setting up AP (SSID='%s')",
446 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
447
448 os_memset(&params, 0, sizeof(params));
449 params.ssid = ssid->ssid;
450 params.ssid_len = ssid->ssid_len;
451 switch (ssid->mode) {
452 case WPAS_MODE_INFRA:
453 params.mode = IEEE80211_MODE_INFRA;
454 break;
455 case WPAS_MODE_IBSS:
456 params.mode = IEEE80211_MODE_IBSS;
457 break;
458 case WPAS_MODE_AP:
459 case WPAS_MODE_P2P_GO:
460 case WPAS_MODE_P2P_GROUP_FORMATION:
461 params.mode = IEEE80211_MODE_AP;
462 break;
463 }
464 params.freq = ssid->frequency;
465
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800466 params.wpa_proto = ssid->proto;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700467 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK)
468 wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
469 else
470 wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
471 params.key_mgmt_suite = key_mgmt2driver(wpa_s->key_mgmt);
472
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800473 wpa_s->pairwise_cipher = wpa_pick_pairwise_cipher(ssid->pairwise_cipher,
474 1);
475 if (wpa_s->pairwise_cipher < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700476 wpa_printf(MSG_WARNING, "WPA: Failed to select pairwise "
477 "cipher.");
478 return -1;
479 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800480 params.pairwise_suite =
481 wpa_cipher_to_suite_driver(wpa_s->pairwise_cipher);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700482 params.group_suite = params.pairwise_suite;
483
484#ifdef CONFIG_P2P
485 if (ssid->mode == WPAS_MODE_P2P_GO ||
486 ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
487 params.p2p = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700488#endif /* CONFIG_P2P */
489
490 if (wpa_s->parent->set_ap_uapsd)
491 params.uapsd = wpa_s->parent->ap_uapsd;
492 else
493 params.uapsd = -1;
494
495 if (wpa_drv_associate(wpa_s, &params) < 0) {
496 wpa_msg(wpa_s, MSG_INFO, "Failed to start AP functionality");
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700497#ifdef CONFIG_P2P
498 if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION &&
499 wpa_s->global->p2p_group_formation == wpa_s)
500 wpas_p2p_group_formation_failed(wpa_s->parent);
501#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700502 return -1;
503 }
504
505 wpa_s->ap_iface = hapd_iface = os_zalloc(sizeof(*wpa_s->ap_iface));
506 if (hapd_iface == NULL)
507 return -1;
508 hapd_iface->owner = wpa_s;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800509 hapd_iface->drv_flags = wpa_s->drv_flags;
510 hapd_iface->probe_resp_offloads = wpa_s->probe_resp_offloads;
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700511 hapd_iface->extended_capa = wpa_s->extended_capa;
512 hapd_iface->extended_capa_mask = wpa_s->extended_capa_mask;
513 hapd_iface->extended_capa_len = wpa_s->extended_capa_len;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700514
515 wpa_s->ap_iface->conf = conf = hostapd_config_defaults();
516 if (conf == NULL) {
517 wpa_supplicant_ap_deinit(wpa_s);
518 return -1;
519 }
520
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700521 os_memcpy(wpa_s->ap_iface->conf->wmm_ac_params,
522 wpa_s->conf->wmm_ac_params,
523 sizeof(wpa_s->conf->wmm_ac_params));
524
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800525 if (params.uapsd > 0) {
526 conf->bss->wmm_enabled = 1;
527 conf->bss->wmm_uapsd = 1;
528 }
529
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700530 if (wpa_supplicant_conf_ap(wpa_s, ssid, conf)) {
531 wpa_printf(MSG_ERROR, "Failed to create AP configuration");
532 wpa_supplicant_ap_deinit(wpa_s);
533 return -1;
534 }
535
536#ifdef CONFIG_P2P
537 if (ssid->mode == WPAS_MODE_P2P_GO)
538 conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER;
539 else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
540 conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER |
541 P2P_GROUP_FORMATION;
542#endif /* CONFIG_P2P */
543
544 hapd_iface->num_bss = conf->num_bss;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700545 hapd_iface->bss = os_calloc(conf->num_bss,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700546 sizeof(struct hostapd_data *));
547 if (hapd_iface->bss == NULL) {
548 wpa_supplicant_ap_deinit(wpa_s);
549 return -1;
550 }
551
552 for (i = 0; i < conf->num_bss; i++) {
553 hapd_iface->bss[i] =
554 hostapd_alloc_bss_data(hapd_iface, conf,
555 &conf->bss[i]);
556 if (hapd_iface->bss[i] == NULL) {
557 wpa_supplicant_ap_deinit(wpa_s);
558 return -1;
559 }
560
561 hapd_iface->bss[i]->msg_ctx = wpa_s;
Dmitry Shmidt497c1d52011-07-21 15:19:46 -0700562 hapd_iface->bss[i]->msg_ctx_parent = wpa_s->parent;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700563 hapd_iface->bss[i]->public_action_cb = ap_public_action_rx;
564 hapd_iface->bss[i]->public_action_cb_ctx = wpa_s;
565 hapd_iface->bss[i]->vendor_action_cb = ap_vendor_action_rx;
566 hapd_iface->bss[i]->vendor_action_cb_ctx = wpa_s;
567 hostapd_register_probereq_cb(hapd_iface->bss[i],
568 ap_probe_req_rx, wpa_s);
569 hapd_iface->bss[i]->wps_reg_success_cb = ap_wps_reg_success_cb;
570 hapd_iface->bss[i]->wps_reg_success_cb_ctx = wpa_s;
571 hapd_iface->bss[i]->wps_event_cb = ap_wps_event_cb;
572 hapd_iface->bss[i]->wps_event_cb_ctx = wpa_s;
573 hapd_iface->bss[i]->sta_authorized_cb = ap_sta_authorized_cb;
574 hapd_iface->bss[i]->sta_authorized_cb_ctx = wpa_s;
575#ifdef CONFIG_P2P
576 hapd_iface->bss[i]->p2p = wpa_s->global->p2p;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700577 hapd_iface->bss[i]->p2p_group = wpas_p2p_group_init(wpa_s,
578 ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700579#endif /* CONFIG_P2P */
580 hapd_iface->bss[i]->setup_complete_cb = wpas_ap_configured_cb;
581 hapd_iface->bss[i]->setup_complete_cb_ctx = wpa_s;
582 }
583
584 os_memcpy(hapd_iface->bss[0]->own_addr, wpa_s->own_addr, ETH_ALEN);
585 hapd_iface->bss[0]->driver = wpa_s->driver;
586 hapd_iface->bss[0]->drv_priv = wpa_s->drv_priv;
587
588 wpa_s->current_ssid = ssid;
589 os_memcpy(wpa_s->bssid, wpa_s->own_addr, ETH_ALEN);
590 wpa_s->assoc_freq = ssid->frequency;
591
592 if (hostapd_setup_interface(wpa_s->ap_iface)) {
593 wpa_printf(MSG_ERROR, "Failed to initialize AP interface");
594 wpa_supplicant_ap_deinit(wpa_s);
595 return -1;
596 }
597
598 return 0;
599}
600
601
602void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s)
603{
604#ifdef CONFIG_WPS
605 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
606#endif /* CONFIG_WPS */
607
608 if (wpa_s->ap_iface == NULL)
609 return;
610
611 wpa_s->current_ssid = NULL;
612 wpa_s->assoc_freq = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700613#ifdef CONFIG_P2P
614 if (wpa_s->ap_iface->bss)
615 wpa_s->ap_iface->bss[0]->p2p_group = NULL;
616 wpas_p2p_group_deinit(wpa_s);
617#endif /* CONFIG_P2P */
618 hostapd_interface_deinit(wpa_s->ap_iface);
619 hostapd_interface_free(wpa_s->ap_iface);
620 wpa_s->ap_iface = NULL;
621 wpa_drv_deinit_ap(wpa_s);
622}
623
624
625void ap_tx_status(void *ctx, const u8 *addr,
626 const u8 *buf, size_t len, int ack)
627{
628#ifdef NEED_AP_MLME
629 struct wpa_supplicant *wpa_s = ctx;
630 hostapd_tx_status(wpa_s->ap_iface->bss[0], addr, buf, len, ack);
631#endif /* NEED_AP_MLME */
632}
633
634
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800635void ap_eapol_tx_status(void *ctx, const u8 *dst,
636 const u8 *data, size_t len, int ack)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700637{
638#ifdef NEED_AP_MLME
639 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800640 hostapd_tx_status(wpa_s->ap_iface->bss[0], dst, data, len, ack);
641#endif /* NEED_AP_MLME */
642}
643
644
645void ap_client_poll_ok(void *ctx, const u8 *addr)
646{
647#ifdef NEED_AP_MLME
648 struct wpa_supplicant *wpa_s = ctx;
649 if (wpa_s->ap_iface)
650 hostapd_client_poll_ok(wpa_s->ap_iface->bss[0], addr);
651#endif /* NEED_AP_MLME */
652}
653
654
655void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds)
656{
657#ifdef NEED_AP_MLME
658 struct wpa_supplicant *wpa_s = ctx;
659 ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], addr, wds);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700660#endif /* NEED_AP_MLME */
661}
662
663
664void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt)
665{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800666#ifdef NEED_AP_MLME
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700667 struct wpa_supplicant *wpa_s = ctx;
668 struct hostapd_frame_info fi;
669 os_memset(&fi, 0, sizeof(fi));
670 fi.datarate = rx_mgmt->datarate;
671 fi.ssi_signal = rx_mgmt->ssi_signal;
672 ieee802_11_mgmt(wpa_s->ap_iface->bss[0], rx_mgmt->frame,
673 rx_mgmt->frame_len, &fi);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800674#endif /* NEED_AP_MLME */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700675}
676
677
678void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok)
679{
680#ifdef NEED_AP_MLME
681 struct wpa_supplicant *wpa_s = ctx;
682 ieee802_11_mgmt_cb(wpa_s->ap_iface->bss[0], buf, len, stype, ok);
683#endif /* NEED_AP_MLME */
684}
685
686
687void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
688 const u8 *src_addr, const u8 *buf, size_t len)
689{
690 ieee802_1x_receive(wpa_s->ap_iface->bss[0], src_addr, buf, len);
691}
692
693
694#ifdef CONFIG_WPS
695
696int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
697 const u8 *p2p_dev_addr)
698{
699 if (!wpa_s->ap_iface)
700 return -1;
701 return hostapd_wps_button_pushed(wpa_s->ap_iface->bss[0],
702 p2p_dev_addr);
703}
704
705
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700706int wpa_supplicant_ap_wps_cancel(struct wpa_supplicant *wpa_s)
707{
708 struct wps_registrar *reg;
709 int reg_sel = 0, wps_sta = 0;
710
711 if (!wpa_s->ap_iface || !wpa_s->ap_iface->bss[0]->wps)
712 return -1;
713
714 reg = wpa_s->ap_iface->bss[0]->wps->registrar;
715 reg_sel = wps_registrar_wps_cancel(reg);
716 wps_sta = ap_for_each_sta(wpa_s->ap_iface->bss[0],
Dmitry Shmidt04949592012-07-19 12:16:46 -0700717 ap_sta_wps_cancel, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700718
719 if (!reg_sel && !wps_sta) {
720 wpa_printf(MSG_DEBUG, "No WPS operation in progress at this "
721 "time");
722 return -1;
723 }
724
725 /*
726 * There are 2 cases to return wps cancel as success:
727 * 1. When wps cancel was initiated but no connection has been
728 * established with client yet.
729 * 2. Client is in the middle of exchanging WPS messages.
730 */
731
732 return 0;
733}
734
735
736int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800737 const char *pin, char *buf, size_t buflen,
738 int timeout)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700739{
740 int ret, ret_len = 0;
741
742 if (!wpa_s->ap_iface)
743 return -1;
744
745 if (pin == NULL) {
746 unsigned int rpin = wps_generate_pin();
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800747 ret_len = os_snprintf(buf, buflen, "%08d", rpin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700748 pin = buf;
749 } else
750 ret_len = os_snprintf(buf, buflen, "%s", pin);
751
752 ret = hostapd_wps_add_pin(wpa_s->ap_iface->bss[0], bssid, "any", pin,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800753 timeout);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700754 if (ret)
755 return -1;
756 return ret_len;
757}
758
759
760static void wpas_wps_ap_pin_timeout(void *eloop_data, void *user_ctx)
761{
762 struct wpa_supplicant *wpa_s = eloop_data;
763 wpa_printf(MSG_DEBUG, "WPS: AP PIN timed out");
764 wpas_wps_ap_pin_disable(wpa_s);
765}
766
767
768static void wpas_wps_ap_pin_enable(struct wpa_supplicant *wpa_s, int timeout)
769{
770 struct hostapd_data *hapd;
771
772 if (wpa_s->ap_iface == NULL)
773 return;
774 hapd = wpa_s->ap_iface->bss[0];
775 wpa_printf(MSG_DEBUG, "WPS: Enabling AP PIN (timeout=%d)", timeout);
776 hapd->ap_pin_failures = 0;
777 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
778 if (timeout > 0)
779 eloop_register_timeout(timeout, 0,
780 wpas_wps_ap_pin_timeout, wpa_s, NULL);
781}
782
783
784void wpas_wps_ap_pin_disable(struct wpa_supplicant *wpa_s)
785{
786 struct hostapd_data *hapd;
787
788 if (wpa_s->ap_iface == NULL)
789 return;
790 wpa_printf(MSG_DEBUG, "WPS: Disabling AP PIN");
791 hapd = wpa_s->ap_iface->bss[0];
792 os_free(hapd->conf->ap_pin);
793 hapd->conf->ap_pin = NULL;
794 eloop_cancel_timeout(wpas_wps_ap_pin_timeout, wpa_s, NULL);
795}
796
797
798const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout)
799{
800 struct hostapd_data *hapd;
801 unsigned int pin;
802 char pin_txt[9];
803
804 if (wpa_s->ap_iface == NULL)
805 return NULL;
806 hapd = wpa_s->ap_iface->bss[0];
807 pin = wps_generate_pin();
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800808 os_snprintf(pin_txt, sizeof(pin_txt), "%08u", pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700809 os_free(hapd->conf->ap_pin);
810 hapd->conf->ap_pin = os_strdup(pin_txt);
811 if (hapd->conf->ap_pin == NULL)
812 return NULL;
813 wpas_wps_ap_pin_enable(wpa_s, timeout);
814
815 return hapd->conf->ap_pin;
816}
817
818
819const char * wpas_wps_ap_pin_get(struct wpa_supplicant *wpa_s)
820{
821 struct hostapd_data *hapd;
822 if (wpa_s->ap_iface == NULL)
823 return NULL;
824 hapd = wpa_s->ap_iface->bss[0];
825 return hapd->conf->ap_pin;
826}
827
828
829int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin,
830 int timeout)
831{
832 struct hostapd_data *hapd;
833 char pin_txt[9];
834 int ret;
835
836 if (wpa_s->ap_iface == NULL)
837 return -1;
838 hapd = wpa_s->ap_iface->bss[0];
839 ret = os_snprintf(pin_txt, sizeof(pin_txt), "%s", pin);
840 if (ret < 0 || ret >= (int) sizeof(pin_txt))
841 return -1;
842 os_free(hapd->conf->ap_pin);
843 hapd->conf->ap_pin = os_strdup(pin_txt);
844 if (hapd->conf->ap_pin == NULL)
845 return -1;
846 wpas_wps_ap_pin_enable(wpa_s, timeout);
847
848 return 0;
849}
850
851
852void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s)
853{
854 struct hostapd_data *hapd;
855
856 if (wpa_s->ap_iface == NULL)
857 return;
858 hapd = wpa_s->ap_iface->bss[0];
859
860 /*
861 * Registrar failed to prove its knowledge of the AP PIN. Disable AP
862 * PIN if this happens multiple times to slow down brute force attacks.
863 */
864 hapd->ap_pin_failures++;
865 wpa_printf(MSG_DEBUG, "WPS: AP PIN authentication failure number %u",
866 hapd->ap_pin_failures);
867 if (hapd->ap_pin_failures < 3)
868 return;
869
870 wpa_printf(MSG_DEBUG, "WPS: Disable AP PIN");
871 hapd->ap_pin_failures = 0;
872 os_free(hapd->conf->ap_pin);
873 hapd->conf->ap_pin = NULL;
874}
875
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800876
877#ifdef CONFIG_WPS_NFC
878
879struct wpabuf * wpas_ap_wps_nfc_config_token(struct wpa_supplicant *wpa_s,
880 int ndef)
881{
882 struct hostapd_data *hapd;
883
884 if (wpa_s->ap_iface == NULL)
885 return NULL;
886 hapd = wpa_s->ap_iface->bss[0];
887 return hostapd_wps_nfc_config_token(hapd, ndef);
888}
889
890
891struct wpabuf * wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s,
892 int ndef)
893{
894 struct hostapd_data *hapd;
895
896 if (wpa_s->ap_iface == NULL)
897 return NULL;
898 hapd = wpa_s->ap_iface->bss[0];
899 return hostapd_wps_nfc_hs_cr(hapd, ndef);
900}
901
902#endif /* CONFIG_WPS_NFC */
903
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700904#endif /* CONFIG_WPS */
905
906
907#ifdef CONFIG_CTRL_IFACE
908
909int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s,
910 char *buf, size_t buflen)
911{
912 if (wpa_s->ap_iface == NULL)
913 return -1;
914 return hostapd_ctrl_iface_sta_first(wpa_s->ap_iface->bss[0],
915 buf, buflen);
916}
917
918
919int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr,
920 char *buf, size_t buflen)
921{
922 if (wpa_s->ap_iface == NULL)
923 return -1;
924 return hostapd_ctrl_iface_sta(wpa_s->ap_iface->bss[0], txtaddr,
925 buf, buflen);
926}
927
928
929int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr,
930 char *buf, size_t buflen)
931{
932 if (wpa_s->ap_iface == NULL)
933 return -1;
934 return hostapd_ctrl_iface_sta_next(wpa_s->ap_iface->bss[0], txtaddr,
935 buf, buflen);
936}
937
938
Dmitry Shmidt04949592012-07-19 12:16:46 -0700939int ap_ctrl_iface_sta_disassociate(struct wpa_supplicant *wpa_s,
940 const char *txtaddr)
941{
942 if (wpa_s->ap_iface == NULL)
943 return -1;
944 return hostapd_ctrl_iface_disassociate(wpa_s->ap_iface->bss[0],
945 txtaddr);
946}
947
948
949int ap_ctrl_iface_sta_deauthenticate(struct wpa_supplicant *wpa_s,
950 const char *txtaddr)
951{
952 if (wpa_s->ap_iface == NULL)
953 return -1;
954 return hostapd_ctrl_iface_deauthenticate(wpa_s->ap_iface->bss[0],
955 txtaddr);
956}
957
958
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700959int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf,
960 size_t buflen, int verbose)
961{
962 char *pos = buf, *end = buf + buflen;
963 int ret;
964 struct hostapd_bss_config *conf;
965
966 if (wpa_s->ap_iface == NULL)
967 return -1;
968
969 conf = wpa_s->ap_iface->bss[0]->conf;
970 if (conf->wpa == 0)
971 return 0;
972
973 ret = os_snprintf(pos, end - pos,
974 "pairwise_cipher=%s\n"
975 "group_cipher=%s\n"
976 "key_mgmt=%s\n",
977 wpa_cipher_txt(conf->rsn_pairwise),
978 wpa_cipher_txt(conf->wpa_group),
979 wpa_key_mgmt_txt(conf->wpa_key_mgmt,
980 conf->wpa));
981 if (ret < 0 || ret >= end - pos)
982 return pos - buf;
983 pos += ret;
984 return pos - buf;
985}
986
987#endif /* CONFIG_CTRL_IFACE */
988
989
990int wpa_supplicant_ap_update_beacon(struct wpa_supplicant *wpa_s)
991{
992 struct hostapd_iface *iface = wpa_s->ap_iface;
993 struct wpa_ssid *ssid = wpa_s->current_ssid;
994 struct hostapd_data *hapd;
995
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800996 if (ssid == NULL || wpa_s->ap_iface == NULL ||
997 ssid->mode == WPAS_MODE_INFRA ||
998 ssid->mode == WPAS_MODE_IBSS)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700999 return -1;
1000
1001#ifdef CONFIG_P2P
1002 if (ssid->mode == WPAS_MODE_P2P_GO)
1003 iface->conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER;
1004 else if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
1005 iface->conf->bss[0].p2p = P2P_ENABLED | P2P_GROUP_OWNER |
1006 P2P_GROUP_FORMATION;
1007#endif /* CONFIG_P2P */
1008
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001009 hapd = iface->bss[0];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001010 if (hapd->drv_priv == NULL)
1011 return -1;
1012 ieee802_11_set_beacons(iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001013 hostapd_set_ap_wps_ie(hapd);
1014
1015 return 0;
1016}
1017
1018
Dmitry Shmidt04949592012-07-19 12:16:46 -07001019void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht,
1020 int offset)
1021{
1022 if (!wpa_s->ap_iface)
1023 return;
1024
1025 wpa_s->assoc_freq = freq;
1026 hostapd_event_ch_switch(wpa_s->ap_iface->bss[0], freq, ht, offset);
1027}
1028
1029
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001030int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s,
1031 const u8 *addr)
1032{
1033 struct hostapd_data *hapd;
1034 struct hostapd_bss_config *conf;
1035
1036 if (!wpa_s->ap_iface)
1037 return -1;
1038
1039 if (addr)
1040 wpa_printf(MSG_DEBUG, "AP: Set MAC address filter: " MACSTR,
1041 MAC2STR(addr));
1042 else
1043 wpa_printf(MSG_DEBUG, "AP: Clear MAC address filter");
1044
1045 hapd = wpa_s->ap_iface->bss[0];
1046 conf = hapd->conf;
1047
1048 os_free(conf->accept_mac);
1049 conf->accept_mac = NULL;
1050 conf->num_accept_mac = 0;
1051 os_free(conf->deny_mac);
1052 conf->deny_mac = NULL;
1053 conf->num_deny_mac = 0;
1054
1055 if (addr == NULL) {
1056 conf->macaddr_acl = ACCEPT_UNLESS_DENIED;
1057 return 0;
1058 }
1059
1060 conf->macaddr_acl = DENY_UNLESS_ACCEPTED;
1061 conf->accept_mac = os_zalloc(sizeof(struct mac_acl_entry));
1062 if (conf->accept_mac == NULL)
1063 return -1;
1064 os_memcpy(conf->accept_mac[0].addr, addr, ETH_ALEN);
1065 conf->num_accept_mac = 1;
1066
1067 return 0;
1068}