]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/ap/ap_config.c
hostapd: Allow per-BSS (vif) configuration files
[thirdparty/hostap.git] / src / ap / ap_config.c
CommitLineData
6fc6879b 1/*
41d719d6 2 * hostapd / Configuration helper functions
759fd76b 3 * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
6226e38d 9#include "utils/includes.h"
6fc6879b 10
6226e38d 11#include "utils/common.h"
03da66bd 12#include "crypto/sha1.h"
6fc6879b 13#include "radius/radius_client.h"
df84268a 14#include "common/ieee802_11_defs.h"
41d719d6 15#include "common/eapol_common.h"
03da66bd
JM
16#include "eap_common/eap_wsc_common.h"
17#include "eap_server/eap.h"
6226e38d 18#include "wpa_auth.h"
97234b50 19#include "sta_info.h"
6226e38d 20#include "ap_config.h"
6fc6879b
JM
21
22
6fc6879b
JM
23static void hostapd_config_free_vlan(struct hostapd_bss_config *bss)
24{
25 struct hostapd_vlan *vlan, *prev;
26
27 vlan = bss->vlan;
28 prev = NULL;
29 while (vlan) {
30 prev = vlan;
31 vlan = vlan->next;
32 os_free(prev);
33 }
34
35 bss->vlan = NULL;
36}
37
38
41d719d6 39void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
6fc6879b
JM
40{
41 bss->logger_syslog_level = HOSTAPD_LEVEL_INFO;
42 bss->logger_stdout_level = HOSTAPD_LEVEL_INFO;
43 bss->logger_syslog = (unsigned int) -1;
44 bss->logger_stdout = (unsigned int) -1;
45
46 bss->auth_algs = WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED;
47
48 bss->wep_rekeying_period = 300;
49 /* use key0 in individual key and key1 in broadcast key */
50 bss->broadcast_key_idx_min = 1;
51 bss->broadcast_key_idx_max = 2;
52 bss->eap_reauth_period = 3600;
53
54 bss->wpa_group_rekey = 600;
55 bss->wpa_gmk_rekey = 86400;
56 bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK;
57 bss->wpa_pairwise = WPA_CIPHER_TKIP;
58 bss->wpa_group = WPA_CIPHER_TKIP;
59 bss->rsn_pairwise = 0;
60
61 bss->max_num_sta = MAX_STA_COUNT;
62
63 bss->dtim_period = 2;
64
65 bss->radius_server_auth_port = 1812;
66 bss->ap_max_inactivity = AP_MAX_INACTIVITY;
67 bss->eapol_version = EAPOL_VERSION;
b0194fe0
JM
68
69 bss->max_listen_interval = 65535;
5d22a1d5 70
df684d82
DH
71 bss->pwd_group = 19; /* ECC: GF(p=256) */
72
5d22a1d5 73#ifdef CONFIG_IEEE80211W
45c94154
JM
74 bss->assoc_sa_query_max_timeout = 1000;
75 bss->assoc_sa_query_retry_timeout = 201;
5d22a1d5 76#endif /* CONFIG_IEEE80211W */
1e5839e0 77#ifdef EAP_SERVER_FAST
378eae5e
JM
78 /* both anonymous and authenticated provisioning */
79 bss->eap_fast_prov = 3;
a11c90a6
JM
80 bss->pac_key_lifetime = 7 * 24 * 60 * 60;
81 bss->pac_key_refresh_time = 1 * 24 * 60 * 60;
1e5839e0 82#endif /* EAP_SERVER_FAST */
d2da2249
JB
83
84 /* Set to -1 as defaults depends on HT in setup */
85 bss->wmm_enabled = -1;
d7956add
SP
86
87#ifdef CONFIG_IEEE80211R
88 bss->ft_over_ds = 1;
89#endif /* CONFIG_IEEE80211R */
bde7ba6c
JM
90
91 bss->radius_das_time_window = 300;
d136c376
JM
92
93 bss->sae_anti_clogging_threshold = 5;
6fc6879b
JM
94}
95
96
89111f3b 97struct hostapd_config * hostapd_config_defaults(void)
6fc6879b 98{
d2da2249
JB
99#define ecw2cw(ecw) ((1 << (ecw)) - 1)
100
6fc6879b
JM
101 struct hostapd_config *conf;
102 struct hostapd_bss_config *bss;
594cf8b9 103 const int aCWmin = 4, aCWmax = 10;
3ae0800c 104 const struct hostapd_wmm_ac_params ac_bk =
6fc6879b 105 { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
3ae0800c 106 const struct hostapd_wmm_ac_params ac_be =
6fc6879b 107 { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
3ae0800c 108 const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
623ecdd5 109 { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
3ae0800c 110 const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
623ecdd5 111 { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
d2da2249
JB
112 const struct hostapd_tx_queue_params txq_bk =
113 { 7, ecw2cw(aCWmin), ecw2cw(aCWmax), 0 };
114 const struct hostapd_tx_queue_params txq_be =
115 { 3, ecw2cw(aCWmin), 4 * (ecw2cw(aCWmin) + 1) - 1, 0};
116 const struct hostapd_tx_queue_params txq_vi =
117 { 1, (ecw2cw(aCWmin) + 1) / 2 - 1, ecw2cw(aCWmin), 30};
118 const struct hostapd_tx_queue_params txq_vo =
119 { 1, (ecw2cw(aCWmin) + 1) / 4 - 1,
120 (ecw2cw(aCWmin) + 1) / 2 - 1, 15};
121
122#undef ecw2cw
6fc6879b
JM
123
124 conf = os_zalloc(sizeof(*conf));
125 bss = os_zalloc(sizeof(*bss));
126 if (conf == NULL || bss == NULL) {
10656fc2
JM
127 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
128 "configuration data.");
6fc6879b
JM
129 os_free(conf);
130 os_free(bss);
131 return NULL;
132 }
ebd79f07
JM
133 conf->bss = os_calloc(1, sizeof(struct hostapd_bss_config *));
134 if (conf->bss == NULL) {
135 os_free(conf);
136 os_free(bss);
137 return NULL;
138 }
139 conf->bss[0] = bss;
6fc6879b 140
6fc6879b
JM
141 bss->radius = os_zalloc(sizeof(*bss->radius));
142 if (bss->radius == NULL) {
143 os_free(conf);
144 os_free(bss);
145 return NULL;
146 }
147
148 hostapd_config_defaults_bss(bss);
149
150 conf->num_bss = 1;
6fc6879b
JM
151
152 conf->beacon_int = 100;
153 conf->rts_threshold = -1; /* use driver default: 2347 */
154 conf->fragm_threshold = -1; /* user driver default: 2346 */
155 conf->send_probe_response = 1;
6fc6879b 156
3ae0800c
JM
157 conf->wmm_ac_params[0] = ac_be;
158 conf->wmm_ac_params[1] = ac_bk;
159 conf->wmm_ac_params[2] = ac_vi;
160 conf->wmm_ac_params[3] = ac_vo;
6fc6879b 161
d2da2249
JB
162 conf->tx_queue[0] = txq_vo;
163 conf->tx_queue[1] = txq_vi;
164 conf->tx_queue[2] = txq_be;
165 conf->tx_queue[3] = txq_bk;
166
fc14f567 167 conf->ht_capab = HT_CAP_INFO_SMPS_DISABLED;
de9289c8 168
f1b44874
SE
169 conf->ap_table_max_size = 255;
170 conf->ap_table_expiration_time = 60;
171
c2aff6b1
JB
172#ifdef CONFIG_TESTING_OPTIONS
173 conf->ignore_probe_probability = 0.0d;
174 conf->ignore_auth_probability = 0.0d;
175 conf->ignore_assoc_probability = 0.0d;
176 conf->ignore_reassoc_probability = 0.0d;
7af092a0 177 conf->corrupt_gtk_rekey_mic_probability = 0.0d;
c2aff6b1
JB
178#endif /* CONFIG_TESTING_OPTIONS */
179
50f4f2a0
MK
180#ifdef CONFIG_ACS
181 conf->acs_num_scans = 5;
182#endif /* CONFIG_ACS */
183
6fc6879b
JM
184 return conf;
185}
186
187
188int hostapd_mac_comp(const void *a, const void *b)
189{
190 return os_memcmp(a, b, sizeof(macaddr));
191}
192
193
194int hostapd_mac_comp_empty(const void *a)
195{
196 macaddr empty = { 0 };
197 return os_memcmp(a, empty, sizeof(macaddr));
198}
199
200
6fc6879b
JM
201static int hostapd_config_read_wpa_psk(const char *fname,
202 struct hostapd_ssid *ssid)
203{
204 FILE *f;
205 char buf[128], *pos;
206 int line = 0, ret = 0, len, ok;
207 u8 addr[ETH_ALEN];
208 struct hostapd_wpa_psk *psk;
209
210 if (!fname)
211 return 0;
212
213 f = fopen(fname, "r");
214 if (!f) {
10656fc2 215 wpa_printf(MSG_ERROR, "WPA PSK file '%s' not found.", fname);
6fc6879b
JM
216 return -1;
217 }
218
219 while (fgets(buf, sizeof(buf), f)) {
220 line++;
221
222 if (buf[0] == '#')
223 continue;
224 pos = buf;
225 while (*pos != '\0') {
226 if (*pos == '\n') {
227 *pos = '\0';
228 break;
229 }
230 pos++;
231 }
232 if (buf[0] == '\0')
233 continue;
234
235 if (hwaddr_aton(buf, addr)) {
10656fc2
JM
236 wpa_printf(MSG_ERROR, "Invalid MAC address '%s' on "
237 "line %d in '%s'", buf, line, fname);
6fc6879b
JM
238 ret = -1;
239 break;
240 }
241
242 psk = os_zalloc(sizeof(*psk));
243 if (psk == NULL) {
10656fc2 244 wpa_printf(MSG_ERROR, "WPA PSK allocation failed");
6fc6879b
JM
245 ret = -1;
246 break;
247 }
a8e16edc 248 if (is_zero_ether_addr(addr))
6fc6879b
JM
249 psk->group = 1;
250 else
251 os_memcpy(psk->addr, addr, ETH_ALEN);
252
253 pos = buf + 17;
5306f43f 254 if (*pos == '\0') {
10656fc2
JM
255 wpa_printf(MSG_ERROR, "No PSK on line %d in '%s'",
256 line, fname);
6fc6879b
JM
257 os_free(psk);
258 ret = -1;
259 break;
260 }
261 pos++;
262
263 ok = 0;
264 len = os_strlen(pos);
265 if (len == 64 && hexstr2bin(pos, psk->psk, PMK_LEN) == 0)
266 ok = 1;
267 else if (len >= 8 && len < 64) {
268 pbkdf2_sha1(pos, ssid->ssid, ssid->ssid_len,
269 4096, psk->psk, PMK_LEN);
270 ok = 1;
271 }
272 if (!ok) {
10656fc2
JM
273 wpa_printf(MSG_ERROR, "Invalid PSK '%s' on line %d in "
274 "'%s'", pos, line, fname);
6fc6879b
JM
275 os_free(psk);
276 ret = -1;
277 break;
278 }
279
280 psk->next = ssid->wpa_psk;
281 ssid->wpa_psk = psk;
282 }
283
284 fclose(f);
285
286 return ret;
287}
288
289
0ae687bd
JM
290static int hostapd_derive_psk(struct hostapd_ssid *ssid)
291{
292 ssid->wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
293 if (ssid->wpa_psk == NULL) {
294 wpa_printf(MSG_ERROR, "Unable to alloc space for PSK");
295 return -1;
296 }
297 wpa_hexdump_ascii(MSG_DEBUG, "SSID",
298 (u8 *) ssid->ssid, ssid->ssid_len);
299 wpa_hexdump_ascii_key(MSG_DEBUG, "PSK (ASCII passphrase)",
300 (u8 *) ssid->wpa_passphrase,
301 os_strlen(ssid->wpa_passphrase));
302 pbkdf2_sha1(ssid->wpa_passphrase,
303 ssid->ssid, ssid->ssid_len,
304 4096, ssid->wpa_psk->psk, PMK_LEN);
305 wpa_hexdump_key(MSG_DEBUG, "PSK (from passphrase)",
306 ssid->wpa_psk->psk, PMK_LEN);
307 return 0;
308}
309
310
6fc6879b
JM
311int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf)
312{
313 struct hostapd_ssid *ssid = &conf->ssid;
314
315 if (ssid->wpa_passphrase != NULL) {
316 if (ssid->wpa_psk != NULL) {
0ae687bd
JM
317 wpa_printf(MSG_DEBUG, "Using pre-configured WPA PSK "
318 "instead of passphrase");
319 } else {
320 wpa_printf(MSG_DEBUG, "Deriving WPA PSK based on "
321 "passphrase");
322 if (hostapd_derive_psk(ssid) < 0)
323 return -1;
6fc6879b 324 }
6fc6879b 325 ssid->wpa_psk->group = 1;
6fc6879b
JM
326 }
327
328 if (ssid->wpa_psk_file) {
329 if (hostapd_config_read_wpa_psk(ssid->wpa_psk_file,
330 &conf->ssid))
331 return -1;
332 }
333
334 return 0;
335}
336
337
6fc6879b
JM
338int hostapd_wep_key_cmp(struct hostapd_wep_keys *a, struct hostapd_wep_keys *b)
339{
340 int i;
341
342 if (a->idx != b->idx || a->default_len != b->default_len)
343 return 1;
344 for (i = 0; i < NUM_WEP_KEYS; i++)
345 if (a->len[i] != b->len[i] ||
346 os_memcmp(a->key[i], b->key[i], a->len[i]) != 0)
347 return 1;
348 return 0;
349}
350
351
352static void hostapd_config_free_radius(struct hostapd_radius_server *servers,
353 int num_servers)
354{
355 int i;
356
357 for (i = 0; i < num_servers; i++) {
358 os_free(servers[i].shared_secret);
359 }
360 os_free(servers);
361}
362
363
af35e7af
JM
364struct hostapd_radius_attr *
365hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type)
366{
367 for (; attr; attr = attr->next) {
368 if (attr->type == type)
369 return attr;
370 }
371 return NULL;
372}
373
374
375static void hostapd_config_free_radius_attr(struct hostapd_radius_attr *attr)
376{
377 struct hostapd_radius_attr *prev;
378
379 while (attr) {
380 prev = attr;
381 attr = attr->next;
382 wpabuf_free(prev->val);
383 os_free(prev);
384 }
385}
386
387
6fc6879b
JM
388static void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
389{
390 os_free(user->identity);
391 os_free(user->password);
392 os_free(user);
393}
394
395
396static void hostapd_config_free_wep(struct hostapd_wep_keys *keys)
397{
398 int i;
399 for (i = 0; i < NUM_WEP_KEYS; i++) {
400 os_free(keys->key[i]);
401 keys->key[i] = NULL;
402 }
403}
404
405
406static void hostapd_config_free_bss(struct hostapd_bss_config *conf)
407{
408 struct hostapd_wpa_psk *psk, *prev;
409 struct hostapd_eap_user *user, *prev_user;
410
411 if (conf == NULL)
412 return;
413
414 psk = conf->ssid.wpa_psk;
415 while (psk) {
416 prev = psk;
417 psk = psk->next;
418 os_free(prev);
419 }
420
421 os_free(conf->ssid.wpa_passphrase);
422 os_free(conf->ssid.wpa_psk_file);
43dd46b3 423 hostapd_config_free_wep(&conf->ssid.wep);
6fc6879b
JM
424#ifdef CONFIG_FULL_DYNAMIC_VLAN
425 os_free(conf->ssid.vlan_tagged_interface);
426#endif /* CONFIG_FULL_DYNAMIC_VLAN */
427
428 user = conf->eap_user;
429 while (user) {
430 prev_user = user;
431 user = user->next;
432 hostapd_config_free_eap_user(prev_user);
433 }
ee431d77 434 os_free(conf->eap_user_sqlite);
6fc6879b
JM
435
436 os_free(conf->dump_log_name);
437 os_free(conf->eap_req_id_text);
438 os_free(conf->accept_mac);
439 os_free(conf->deny_mac);
440 os_free(conf->nas_identifier);
5afaa067
JM
441 if (conf->radius) {
442 hostapd_config_free_radius(conf->radius->auth_servers,
443 conf->radius->num_auth_servers);
444 hostapd_config_free_radius(conf->radius->acct_servers,
445 conf->radius->num_acct_servers);
446 }
af35e7af
JM
447 hostapd_config_free_radius_attr(conf->radius_auth_req_attr);
448 hostapd_config_free_radius_attr(conf->radius_acct_req_attr);
6fc6879b
JM
449 os_free(conf->rsn_preauth_interfaces);
450 os_free(conf->ctrl_interface);
451 os_free(conf->ca_cert);
452 os_free(conf->server_cert);
453 os_free(conf->private_key);
454 os_free(conf->private_key_passwd);
080585c0 455 os_free(conf->ocsp_stapling_response);
6fc6879b
JM
456 os_free(conf->dh_file);
457 os_free(conf->pac_opaque_encr_key);
458 os_free(conf->eap_fast_a_id);
2d867244 459 os_free(conf->eap_fast_a_id_info);
6fc6879b
JM
460 os_free(conf->eap_sim_db);
461 os_free(conf->radius_server_clients);
462 os_free(conf->test_socket);
463 os_free(conf->radius);
b031338c 464 os_free(conf->radius_das_shared_secret);
6fc6879b 465 hostapd_config_free_vlan(conf);
39b97072
JM
466 os_free(conf->time_zone);
467
6fc6879b
JM
468#ifdef CONFIG_IEEE80211R
469 {
470 struct ft_remote_r0kh *r0kh, *r0kh_prev;
471 struct ft_remote_r1kh *r1kh, *r1kh_prev;
472
473 r0kh = conf->r0kh_list;
474 conf->r0kh_list = NULL;
475 while (r0kh) {
476 r0kh_prev = r0kh;
477 r0kh = r0kh->next;
478 os_free(r0kh_prev);
479 }
480
481 r1kh = conf->r1kh_list;
482 conf->r1kh_list = NULL;
483 while (r1kh) {
484 r1kh_prev = r1kh;
485 r1kh = r1kh->next;
486 os_free(r1kh_prev);
487 }
488 }
489#endif /* CONFIG_IEEE80211R */
ad08c363
JM
490
491#ifdef CONFIG_WPS
492 os_free(conf->wps_pin_requests);
493 os_free(conf->device_name);
494 os_free(conf->manufacturer);
495 os_free(conf->model_name);
496 os_free(conf->model_number);
497 os_free(conf->serial_number);
ad08c363
JM
498 os_free(conf->config_methods);
499 os_free(conf->ap_pin);
62966253 500 os_free(conf->extra_cred);
4c29cae9 501 os_free(conf->ap_settings);
f620268f
JM
502 os_free(conf->upnp_iface);
503 os_free(conf->friendly_name);
504 os_free(conf->manufacturer_url);
505 os_free(conf->model_description);
506 os_free(conf->model_url);
507 os_free(conf->upc);
ffdaa05a
JM
508 wpabuf_free(conf->wps_nfc_dh_pubkey);
509 wpabuf_free(conf->wps_nfc_dh_privkey);
510 wpabuf_free(conf->wps_nfc_dev_pw);
ad08c363 511#endif /* CONFIG_WPS */
4b2a77ab
JM
512
513 os_free(conf->roaming_consortium);
648cc711 514 os_free(conf->venue_name);
8047b186 515 os_free(conf->nai_realm_data);
550a3958 516 os_free(conf->network_auth_type);
7515adb2 517 os_free(conf->anqp_3gpp_cell_net);
26fac8b6 518 os_free(conf->domain_name);
505a3694
JM
519
520#ifdef CONFIG_RADIUS_TEST
521 os_free(conf->dump_msk_file);
522#endif /* CONFIG_RADIUS_TEST */
df5934f1
JK
523
524#ifdef CONFIG_HS20
a9277e85 525 os_free(conf->hs20_oper_friendly_name);
4065a309 526 os_free(conf->hs20_wan_metrics);
5ccc54aa 527 os_free(conf->hs20_connection_capability);
df5934f1
JK
528 os_free(conf->hs20_operating_class);
529#endif /* CONFIG_HS20 */
b52f084c
JM
530
531 wpabuf_free(conf->vendor_elements);
625f202a
JM
532
533 os_free(conf->sae_groups);
67fe933d
JM
534
535 os_free(conf->server_id);
ebd79f07
JM
536
537 os_free(conf);
6fc6879b
JM
538}
539
540
1c6e69cc
JM
541/**
542 * hostapd_config_free - Free hostapd configuration
543 * @conf: Configuration data from hostapd_config_read().
544 */
6fc6879b
JM
545void hostapd_config_free(struct hostapd_config *conf)
546{
547 size_t i;
548
549 if (conf == NULL)
550 return;
551
552 for (i = 0; i < conf->num_bss; i++)
ebd79f07 553 hostapd_config_free_bss(conf->bss[i]);
6fc6879b 554 os_free(conf->bss);
79d6c85f
JM
555 os_free(conf->supported_rates);
556 os_free(conf->basic_rates);
6fc6879b
JM
557
558 os_free(conf);
559}
560
561
1c6e69cc
JM
562/**
563 * hostapd_maclist_found - Find a MAC address from a list
564 * @list: MAC address list
565 * @num_entries: Number of addresses in the list
566 * @addr: Address to search for
567 * @vlan_id: Buffer for returning VLAN ID or %NULL if not needed
568 * Returns: 1 if address is in the list or 0 if not.
569 *
570 * Perform a binary search for given MAC address from a pre-sorted list.
571 */
271d2830
JM
572int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
573 const u8 *addr, int *vlan_id)
6fc6879b
JM
574{
575 int start, end, middle, res;
576
577 start = 0;
578 end = num_entries - 1;
579
580 while (start <= end) {
581 middle = (start + end) / 2;
271d2830
JM
582 res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
583 if (res == 0) {
584 if (vlan_id)
585 *vlan_id = list[middle].vlan_id;
6fc6879b 586 return 1;
271d2830 587 }
6fc6879b
JM
588 if (res < 0)
589 start = middle + 1;
590 else
591 end = middle - 1;
592 }
593
594 return 0;
595}
596
597
598int hostapd_rate_found(int *list, int rate)
599{
600 int i;
601
602 if (list == NULL)
603 return 0;
604
605 for (i = 0; list[i] >= 0; i++)
606 if (list[i] == rate)
607 return 1;
608
609 return 0;
610}
611
612
80ebfd95 613int hostapd_vlan_id_valid(struct hostapd_vlan *vlan, int vlan_id)
6fc6879b
JM
614{
615 struct hostapd_vlan *v = vlan;
616 while (v) {
617 if (v->vlan_id == vlan_id || v->vlan_id == VLAN_ID_WILDCARD)
80ebfd95
MB
618 return 1;
619 v = v->next;
620 }
621 return 0;
622}
623
624
625const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan, int vlan_id)
626{
627 struct hostapd_vlan *v = vlan;
628 while (v) {
629 if (v->vlan_id == vlan_id)
6fc6879b
JM
630 return v->ifname;
631 v = v->next;
632 }
633 return NULL;
634}
635
636
637const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
759fd76b
JM
638 const u8 *addr, const u8 *p2p_dev_addr,
639 const u8 *prev_psk)
6fc6879b
JM
640{
641 struct hostapd_wpa_psk *psk;
642 int next_ok = prev_psk == NULL;
643
759fd76b
JM
644 if (p2p_dev_addr) {
645 wpa_printf(MSG_DEBUG, "Searching a PSK for " MACSTR
646 " p2p_dev_addr=" MACSTR " prev_psk=%p",
647 MAC2STR(addr), MAC2STR(p2p_dev_addr), prev_psk);
648 if (!is_zero_ether_addr(p2p_dev_addr))
649 addr = NULL; /* Use P2P Device Address for matching */
650 } else {
651 wpa_printf(MSG_DEBUG, "Searching a PSK for " MACSTR
652 " prev_psk=%p",
653 MAC2STR(addr), prev_psk);
654 }
655
6fc6879b
JM
656 for (psk = conf->ssid.wpa_psk; psk != NULL; psk = psk->next) {
657 if (next_ok &&
759fd76b
JM
658 (psk->group ||
659 (addr && os_memcmp(psk->addr, addr, ETH_ALEN) == 0) ||
660 (!addr && p2p_dev_addr &&
661 os_memcmp(psk->p2p_dev_addr, p2p_dev_addr, ETH_ALEN) ==
662 0)))
6fc6879b
JM
663 return psk->psk;
664
665 if (psk->psk == prev_psk)
666 next_ok = 1;
667 }
668
669 return NULL;
670}