Introduced new helper function is_zero_ether_addr()
[mech_eap.git] / wpa_supplicant / wpas_glue.c
1 /*
2  * WPA Supplicant - Glue code to setup EAPOL and RSN modules
3  * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16
17 #include "common.h"
18 #include "eapol_supp/eapol_supp_sm.h"
19 #include "wpa.h"
20 #include "eloop.h"
21 #include "config.h"
22 #include "l2_packet/l2_packet.h"
23 #include "wpa_common.h"
24 #include "wpa_supplicant_i.h"
25 #include "pmksa_cache.h"
26 #include "mlme.h"
27 #include "ieee802_11_defs.h"
28 #include "wpa_ctrl.h"
29 #include "wpas_glue.h"
30
31
32 #ifndef CONFIG_NO_CONFIG_BLOBS
33 #if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
34 static void wpa_supplicant_set_config_blob(void *ctx,
35                                            struct wpa_config_blob *blob)
36 {
37         struct wpa_supplicant *wpa_s = ctx;
38         wpa_config_set_blob(wpa_s->conf, blob);
39 }
40
41
42 static const struct wpa_config_blob *
43 wpa_supplicant_get_config_blob(void *ctx, const char *name)
44 {
45         struct wpa_supplicant *wpa_s = ctx;
46         return wpa_config_get_blob(wpa_s->conf, name);
47 }
48 #endif /* defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA) */
49 #endif /* CONFIG_NO_CONFIG_BLOBS */
50
51
52 #if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
53 static u8 * wpa_alloc_eapol(const struct wpa_supplicant *wpa_s, u8 type,
54                             const void *data, u16 data_len,
55                             size_t *msg_len, void **data_pos)
56 {
57         struct ieee802_1x_hdr *hdr;
58
59         *msg_len = sizeof(*hdr) + data_len;
60         hdr = os_malloc(*msg_len);
61         if (hdr == NULL)
62                 return NULL;
63
64         hdr->version = wpa_s->conf->eapol_version;
65         hdr->type = type;
66         hdr->length = host_to_be16(data_len);
67
68         if (data)
69                 os_memcpy(hdr + 1, data, data_len);
70         else
71                 os_memset(hdr + 1, 0, data_len);
72
73         if (data_pos)
74                 *data_pos = hdr + 1;
75
76         return (u8 *) hdr;
77 }
78
79
80 /**
81  * wpa_ether_send - Send Ethernet frame
82  * @wpa_s: Pointer to wpa_supplicant data
83  * @dest: Destination MAC address
84  * @proto: Ethertype in host byte order
85  * @buf: Frame payload starting from IEEE 802.1X header
86  * @len: Frame payload length
87  * Returns: >=0 on success, <0 on failure
88  */
89 static int wpa_ether_send(struct wpa_supplicant *wpa_s, const u8 *dest,
90                           u16 proto, const u8 *buf, size_t len)
91 {
92         if (wpa_s->l2) {
93                 return l2_packet_send(wpa_s->l2, dest, proto, buf, len);
94         }
95
96         return wpa_drv_send_eapol(wpa_s, dest, proto, buf, len);
97 }
98 #endif /* IEEE8021X_EAPOL || !CONFIG_NO_WPA */
99
100
101 #ifdef IEEE8021X_EAPOL
102
103 /**
104  * wpa_supplicant_eapol_send - Send IEEE 802.1X EAPOL packet to Authenticator
105  * @ctx: Pointer to wpa_supplicant data (wpa_s)
106  * @type: IEEE 802.1X packet type (IEEE802_1X_TYPE_*)
107  * @buf: EAPOL payload (after IEEE 802.1X header)
108  * @len: EAPOL payload length
109  * Returns: >=0 on success, <0 on failure
110  *
111  * This function adds Ethernet and IEEE 802.1X header and sends the EAPOL frame
112  * to the current Authenticator.
113  */
114 static int wpa_supplicant_eapol_send(void *ctx, int type, const u8 *buf,
115                                      size_t len)
116 {
117         struct wpa_supplicant *wpa_s = ctx;
118         u8 *msg, *dst, bssid[ETH_ALEN];
119         size_t msglen;
120         int res;
121
122         /* TODO: could add l2_packet_sendmsg that allows fragments to avoid
123          * extra copy here */
124
125         if (wpa_s->key_mgmt == WPA_KEY_MGMT_PSK ||
126             wpa_s->key_mgmt == WPA_KEY_MGMT_FT_PSK ||
127             wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
128                 /* Current SSID is not using IEEE 802.1X/EAP, so drop possible
129                  * EAPOL frames (mainly, EAPOL-Start) from EAPOL state
130                  * machines. */
131                 wpa_printf(MSG_DEBUG, "WPA: drop TX EAPOL in non-IEEE 802.1X "
132                            "mode (type=%d len=%lu)", type,
133                            (unsigned long) len);
134                 return -1;
135         }
136
137         if (pmksa_cache_get_current(wpa_s->wpa) &&
138             type == IEEE802_1X_TYPE_EAPOL_START) {
139                 /* Trying to use PMKSA caching - do not send EAPOL-Start frames
140                  * since they will trigger full EAPOL authentication. */
141                 wpa_printf(MSG_DEBUG, "RSN: PMKSA caching - do not send "
142                            "EAPOL-Start");
143                 return -1;
144         }
145
146         if (is_zero_ether_addr(wpa_s->bssid)) {
147                 wpa_printf(MSG_DEBUG, "BSSID not set when trying to send an "
148                            "EAPOL frame");
149                 if (wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
150                     !is_zero_ether_addr(bssid)) {
151                         dst = bssid;
152                         wpa_printf(MSG_DEBUG, "Using current BSSID " MACSTR
153                                    " from the driver as the EAPOL destination",
154                                    MAC2STR(dst));
155                 } else {
156                         dst = wpa_s->last_eapol_src;
157                         wpa_printf(MSG_DEBUG, "Using the source address of the"
158                                    " last received EAPOL frame " MACSTR " as "
159                                    "the EAPOL destination",
160                                    MAC2STR(dst));
161                 }
162         } else {
163                 /* BSSID was already set (from (Re)Assoc event, so use it as
164                  * the EAPOL destination. */
165                 dst = wpa_s->bssid;
166         }
167
168         msg = wpa_alloc_eapol(wpa_s, type, buf, len, &msglen, NULL);
169         if (msg == NULL)
170                 return -1;
171
172         wpa_printf(MSG_DEBUG, "TX EAPOL: dst=" MACSTR, MAC2STR(dst));
173         wpa_hexdump(MSG_MSGDUMP, "TX EAPOL", msg, msglen);
174         res = wpa_ether_send(wpa_s, dst, ETH_P_EAPOL, msg, msglen);
175         os_free(msg);
176         return res;
177 }
178
179
180 /**
181  * wpa_eapol_set_wep_key - set WEP key for the driver
182  * @ctx: Pointer to wpa_supplicant data (wpa_s)
183  * @unicast: 1 = individual unicast key, 0 = broadcast key
184  * @keyidx: WEP key index (0..3)
185  * @key: Pointer to key data
186  * @keylen: Key length in bytes
187  * Returns: 0 on success or < 0 on error.
188  */
189 static int wpa_eapol_set_wep_key(void *ctx, int unicast, int keyidx,
190                                  const u8 *key, size_t keylen)
191 {
192         struct wpa_supplicant *wpa_s = ctx;
193         if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
194                 int cipher = (keylen == 5) ? WPA_CIPHER_WEP40 :
195                         WPA_CIPHER_WEP104;
196                 if (unicast)
197                         wpa_s->pairwise_cipher = cipher;
198                 else
199                         wpa_s->group_cipher = cipher;
200         }
201         return wpa_drv_set_key(wpa_s, WPA_ALG_WEP,
202                                unicast ? wpa_s->bssid :
203                                (u8 *) "\xff\xff\xff\xff\xff\xff",
204                                keyidx, unicast, (u8 *) "", 0, key, keylen);
205 }
206
207
208 static void wpa_supplicant_aborted_cached(void *ctx)
209 {
210         struct wpa_supplicant *wpa_s = ctx;
211         wpa_sm_aborted_cached(wpa_s->wpa);
212 }
213
214
215 static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
216                                     void *ctx)
217 {
218         struct wpa_supplicant *wpa_s = ctx;
219         int res, pmk_len;
220         u8 pmk[PMK_LEN];
221
222         wpa_printf(MSG_DEBUG, "EAPOL authentication completed %ssuccessfully",
223                    success ? "" : "un");
224
225         if (!success || !wpa_s->driver_4way_handshake)
226                 return;
227
228         if (wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X &&
229             wpa_s->key_mgmt != WPA_KEY_MGMT_FT_IEEE8021X)
230                 return;
231
232         wpa_printf(MSG_DEBUG, "Configure PMK for driver-based RSN 4-way "
233                    "handshake");
234
235         pmk_len = PMK_LEN;
236         res = eapol_sm_get_key(eapol, pmk, PMK_LEN);
237         if (res) {
238                 /*
239                  * EAP-LEAP is an exception from other EAP methods: it
240                  * uses only 16-byte PMK.
241                  */
242                 res = eapol_sm_get_key(eapol, pmk, 16);
243                 pmk_len = 16;
244         }
245
246         if (res) {
247                 wpa_printf(MSG_DEBUG, "Failed to get PMK from EAPOL state "
248                            "machines");
249                 return;
250         }
251
252         if (wpa_drv_set_key(wpa_s, WPA_ALG_PMK, NULL, 0, 0, NULL, 0, pmk,
253                             pmk_len)) {
254                 wpa_printf(MSG_DEBUG, "Failed to set PMK to the driver");
255         }
256
257         wpa_supplicant_cancel_scan(wpa_s);
258         wpa_supplicant_cancel_auth_timeout(wpa_s);
259         wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
260
261 }
262
263
264 static void wpa_supplicant_notify_eapol_done(void *ctx)
265 {
266         struct wpa_supplicant *wpa_s = ctx;
267         wpa_msg(wpa_s, MSG_DEBUG, "WPA: EAPOL processing complete");
268         if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X ||
269             wpa_s->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) {
270                 wpa_supplicant_set_state(wpa_s, WPA_4WAY_HANDSHAKE);
271         } else {
272                 wpa_supplicant_cancel_scan(wpa_s);
273                 wpa_supplicant_cancel_auth_timeout(wpa_s);
274                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
275         }
276 }
277
278 #endif /* IEEE8021X_EAPOL */
279
280
281 #ifndef CONFIG_NO_WPA
282
283 static int wpa_get_beacon_ie(struct wpa_supplicant *wpa_s)
284 {
285         size_t i;
286         int ret = 0;
287         struct wpa_scan_res *curr = NULL;
288         struct wpa_ssid *ssid = wpa_s->current_ssid;
289         const u8 *ie;
290
291         if (wpa_s->scan_res == NULL)
292                 return -1;
293
294         for (i = 0; i < wpa_s->scan_res->num; i++) {
295                 struct wpa_scan_res *r = wpa_s->scan_res->res[i];
296                 if (os_memcmp(r->bssid, wpa_s->bssid, ETH_ALEN) != 0)
297                         continue;
298                 ie = wpa_scan_get_ie(r, WLAN_EID_SSID);
299                 if (ssid == NULL ||
300                     ((ie && ie[1] == ssid->ssid_len &&
301                       os_memcmp(ie + 2, ssid->ssid, ssid->ssid_len) == 0) ||
302                      ssid->ssid_len == 0)) {
303                         curr = r;
304                         break;
305                 }
306         }
307
308         if (curr) {
309                 ie = wpa_scan_get_vendor_ie(curr, WPA_IE_VENDOR_TYPE);
310                 if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0))
311                         ret = -1;
312
313                 ie = wpa_scan_get_ie(curr, WLAN_EID_RSN);
314                 if (wpa_sm_set_ap_rsn_ie(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0))
315                         ret = -1;
316         } else {
317                 ret = -1;
318         }
319
320         return ret;
321 }
322
323
324 static int wpa_supplicant_get_beacon_ie(void *ctx)
325 {
326         struct wpa_supplicant *wpa_s = ctx;
327         if (wpa_get_beacon_ie(wpa_s) == 0) {
328                 return 0;
329         }
330
331         /* No WPA/RSN IE found in the cached scan results. Try to get updated
332          * scan results from the driver. */
333         if (wpa_supplicant_get_scan_results(wpa_s) < 0) {
334                 return -1;
335         }
336
337         return wpa_get_beacon_ie(wpa_s);
338 }
339
340
341 static u8 * _wpa_alloc_eapol(void *wpa_s, u8 type,
342                              const void *data, u16 data_len,
343                              size_t *msg_len, void **data_pos)
344 {
345         return wpa_alloc_eapol(wpa_s, type, data, data_len, msg_len, data_pos);
346 }
347
348
349 static int _wpa_ether_send(void *wpa_s, const u8 *dest, u16 proto,
350                            const u8 *buf, size_t len)
351 {
352         return wpa_ether_send(wpa_s, dest, proto, buf, len);
353 }
354
355
356 static void _wpa_supplicant_req_scan(void *wpa_s, int sec, int usec)
357 {
358         wpa_supplicant_req_scan(wpa_s, sec, usec);
359 }
360
361
362 static void _wpa_supplicant_cancel_scan(void *wpa_s)
363 {
364         wpa_supplicant_cancel_scan(wpa_s);
365 }
366
367
368 static void _wpa_supplicant_cancel_auth_timeout(void *wpa_s)
369 {
370         wpa_supplicant_cancel_auth_timeout(wpa_s);
371 }
372
373
374 static void _wpa_supplicant_set_state(void *wpa_s, wpa_states state)
375 {
376         wpa_supplicant_set_state(wpa_s, state);
377 }
378
379
380 /**
381  * wpa_supplicant_get_state - Get the connection state
382  * @wpa_s: Pointer to wpa_supplicant data
383  * Returns: The current connection state (WPA_*)
384  */
385 static wpa_states wpa_supplicant_get_state(struct wpa_supplicant *wpa_s)
386 {
387         return wpa_s->wpa_state;
388 }
389
390
391 static wpa_states _wpa_supplicant_get_state(void *wpa_s)
392 {
393         return wpa_supplicant_get_state(wpa_s);
394 }
395
396
397 static void _wpa_supplicant_disassociate(void *wpa_s, int reason_code)
398 {
399         wpa_supplicant_disassociate(wpa_s, reason_code);
400 }
401
402
403 static void _wpa_supplicant_deauthenticate(void *wpa_s, int reason_code)
404 {
405         wpa_supplicant_deauthenticate(wpa_s, reason_code);
406 }
407
408
409 static void * wpa_supplicant_get_network_ctx(void *wpa_s)
410 {
411         return wpa_supplicant_get_ssid(wpa_s);
412 }
413
414
415 static int wpa_supplicant_get_bssid(void *ctx, u8 *bssid)
416 {
417         struct wpa_supplicant *wpa_s = ctx;
418         if (wpa_s->use_client_mlme) {
419                 os_memcpy(bssid, wpa_s->bssid, ETH_ALEN);
420                 return 0;
421         }
422         return wpa_drv_get_bssid(wpa_s, bssid);
423 }
424
425
426 static int wpa_supplicant_set_key(void *wpa_s, wpa_alg alg,
427                                   const u8 *addr, int key_idx, int set_tx,
428                                   const u8 *seq, size_t seq_len,
429                                   const u8 *key, size_t key_len)
430 {
431         return wpa_drv_set_key(wpa_s, alg, addr, key_idx, set_tx, seq, seq_len,
432                                key, key_len);
433 }
434
435
436 static int wpa_supplicant_mlme_setprotection(void *wpa_s, const u8 *addr,
437                                              int protection_type,
438                                              int key_type)
439 {
440         return wpa_drv_mlme_setprotection(wpa_s, addr, protection_type,
441                                           key_type);
442 }
443
444
445 static int wpa_supplicant_add_pmkid(void *wpa_s,
446                                     const u8 *bssid, const u8 *pmkid)
447 {
448         return wpa_drv_add_pmkid(wpa_s, bssid, pmkid);
449 }
450
451
452 static int wpa_supplicant_remove_pmkid(void *wpa_s,
453                                        const u8 *bssid, const u8 *pmkid)
454 {
455         return wpa_drv_remove_pmkid(wpa_s, bssid, pmkid);
456 }
457
458
459 #ifdef CONFIG_IEEE80211R
460 static int wpa_supplicant_update_ft_ies(void *ctx, const u8 *md,
461                                         const u8 *ies, size_t ies_len)
462 {
463         struct wpa_supplicant *wpa_s = ctx;
464         if (wpa_s->use_client_mlme)
465                 return ieee80211_sta_update_ft_ies(wpa_s, md, ies, ies_len);
466         return wpa_drv_update_ft_ies(wpa_s, md, ies, ies_len);
467 }
468
469
470 static int wpa_supplicant_send_ft_action(void *ctx, u8 action,
471                                          const u8 *target_ap,
472                                          const u8 *ies, size_t ies_len)
473 {
474         struct wpa_supplicant *wpa_s = ctx;
475         if (wpa_s->use_client_mlme)
476                 return ieee80211_sta_send_ft_action(wpa_s, action, target_ap,
477                                                     ies, ies_len);
478         return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len);
479 }
480 #endif /* CONFIG_IEEE80211R */
481
482 #endif /* CONFIG_NO_WPA */
483
484
485 #if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
486 static void wpa_supplicant_eap_param_needed(void *ctx, const char *field,
487                                             const char *txt)
488 {
489         struct wpa_supplicant *wpa_s = ctx;
490         struct wpa_ssid *ssid = wpa_s->current_ssid;
491         char *buf;
492         size_t buflen;
493         int len;
494
495         if (ssid == NULL)
496                 return;
497
498         buflen = 100 + os_strlen(txt) + ssid->ssid_len;
499         buf = os_malloc(buflen);
500         if (buf == NULL)
501                 return;
502         len = os_snprintf(buf, buflen,
503                           WPA_CTRL_REQ "%s-%d:%s needed for SSID ",
504                           field, ssid->id, txt);
505         if (len < 0 || (size_t) len >= buflen) {
506                 os_free(buf);
507                 return;
508         }
509         if (ssid->ssid && buflen > len + ssid->ssid_len) {
510                 os_memcpy(buf + len, ssid->ssid, ssid->ssid_len);
511                 len += ssid->ssid_len;
512                 buf[len] = '\0';
513         }
514         buf[buflen - 1] = '\0';
515         wpa_msg(wpa_s, MSG_INFO, "%s", buf);
516         os_free(buf);
517 }
518 #else /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
519 #define wpa_supplicant_eap_param_needed NULL
520 #endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
521
522
523 int wpa_supplicant_init_eapol(struct wpa_supplicant *wpa_s)
524 {
525 #ifdef IEEE8021X_EAPOL
526         struct eapol_ctx *ctx;
527         ctx = os_zalloc(sizeof(*ctx));
528         if (ctx == NULL) {
529                 wpa_printf(MSG_ERROR, "Failed to allocate EAPOL context.");
530                 return -1;
531         }
532
533         ctx->ctx = wpa_s;
534         ctx->msg_ctx = wpa_s;
535         ctx->eapol_send_ctx = wpa_s;
536         ctx->preauth = 0;
537         ctx->eapol_done_cb = wpa_supplicant_notify_eapol_done;
538         ctx->eapol_send = wpa_supplicant_eapol_send;
539         ctx->set_wep_key = wpa_eapol_set_wep_key;
540         ctx->set_config_blob = wpa_supplicant_set_config_blob;
541         ctx->get_config_blob = wpa_supplicant_get_config_blob;
542         ctx->aborted_cached = wpa_supplicant_aborted_cached;
543 #ifdef EAP_TLS_OPENSSL
544         ctx->opensc_engine_path = wpa_s->conf->opensc_engine_path;
545         ctx->pkcs11_engine_path = wpa_s->conf->pkcs11_engine_path;
546         ctx->pkcs11_module_path = wpa_s->conf->pkcs11_module_path;
547 #endif /* EAP_TLS_OPENSSL */
548         ctx->eap_param_needed = wpa_supplicant_eap_param_needed;
549         ctx->cb = wpa_supplicant_eapol_cb;
550         ctx->cb_ctx = wpa_s;
551         wpa_s->eapol = eapol_sm_init(ctx);
552         if (wpa_s->eapol == NULL) {
553                 os_free(ctx);
554                 wpa_printf(MSG_ERROR, "Failed to initialize EAPOL state "
555                            "machines.");
556                 return -1;
557         }
558 #endif /* IEEE8021X_EAPOL */
559
560         return 0;
561 }
562
563
564 int wpa_supplicant_init_wpa(struct wpa_supplicant *wpa_s)
565 {
566 #ifndef CONFIG_NO_WPA
567         struct wpa_sm_ctx *ctx;
568         ctx = os_zalloc(sizeof(*ctx));
569         if (ctx == NULL) {
570                 wpa_printf(MSG_ERROR, "Failed to allocate WPA context.");
571                 return -1;
572         }
573
574         ctx->ctx = wpa_s;
575         ctx->set_state = _wpa_supplicant_set_state;
576         ctx->get_state = _wpa_supplicant_get_state;
577         ctx->req_scan = _wpa_supplicant_req_scan;
578         ctx->cancel_scan = _wpa_supplicant_cancel_scan;
579         ctx->deauthenticate = _wpa_supplicant_deauthenticate;
580         ctx->disassociate = _wpa_supplicant_disassociate;
581         ctx->set_key = wpa_supplicant_set_key;
582         ctx->get_network_ctx = wpa_supplicant_get_network_ctx;
583         ctx->get_bssid = wpa_supplicant_get_bssid;
584         ctx->ether_send = _wpa_ether_send;
585         ctx->get_beacon_ie = wpa_supplicant_get_beacon_ie;
586         ctx->alloc_eapol = _wpa_alloc_eapol;
587         ctx->cancel_auth_timeout = _wpa_supplicant_cancel_auth_timeout;
588         ctx->add_pmkid = wpa_supplicant_add_pmkid;
589         ctx->remove_pmkid = wpa_supplicant_remove_pmkid;
590 #ifndef CONFIG_NO_CONFIG_BLOBS
591         ctx->set_config_blob = wpa_supplicant_set_config_blob;
592         ctx->get_config_blob = wpa_supplicant_get_config_blob;
593 #endif /* CONFIG_NO_CONFIG_BLOBS */
594         ctx->mlme_setprotection = wpa_supplicant_mlme_setprotection;
595 #ifdef CONFIG_IEEE80211R
596         ctx->update_ft_ies = wpa_supplicant_update_ft_ies;
597         ctx->send_ft_action = wpa_supplicant_send_ft_action;
598 #endif /* CONFIG_IEEE80211R */
599
600         wpa_s->wpa = wpa_sm_init(ctx);
601         if (wpa_s->wpa == NULL) {
602                 wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
603                            "machine");
604                 return -1;
605         }
606 #endif /* CONFIG_NO_WPA */
607
608         return 0;
609 }
610
611
612 void wpa_supplicant_rsn_supp_set_config(struct wpa_supplicant *wpa_s,
613                                         struct wpa_ssid *ssid)
614 {
615         struct rsn_supp_config conf;
616         if (ssid) {
617                 os_memset(&conf, 0, sizeof(conf));
618                 conf.peerkey_enabled = ssid->peerkey;
619                 conf.allowed_pairwise_cipher = ssid->pairwise_cipher;
620 #ifdef IEEE8021X_EAPOL
621                 conf.eap_workaround = ssid->eap_workaround;
622                 conf.eap_conf_ctx = &ssid->eap;
623 #endif /* IEEE8021X_EAPOL */
624                 conf.ssid = ssid->ssid;
625                 conf.ssid_len = ssid->ssid_len;
626         }
627         wpa_sm_set_config(wpa_s->wpa, ssid ? &conf : NULL);
628 }