blob: c3ef93bf7b998bb459801fb8e8ac973cae2d2483 [file] [log] [blame]
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07001/*
2 * IEEE 802.1X-2010 KaY Interface
3 * Copyright (c) 2013-2014, Qualcomm Atheros, Inc.
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
Roshan Pius3a1667e2018-07-03 15:17:14 -07008
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07009#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "eap_peer/eap.h"
13#include "eap_peer/eap_i.h"
14#include "eapol_supp/eapol_supp_sm.h"
15#include "pae/ieee802_1x_key.h"
16#include "pae/ieee802_1x_kay.h"
17#include "wpa_supplicant_i.h"
18#include "config.h"
19#include "config_ssid.h"
20#include "driver_i.h"
21#include "wpas_kay.h"
22
23
24#define DEFAULT_KEY_LEN 16
25/* secure Connectivity Association Key Name (CKN) */
26#define DEFAULT_CKN_LEN 16
27
28
29static int wpas_macsec_init(void *priv, struct macsec_init_params *params)
30{
31 return wpa_drv_macsec_init(priv, params);
32}
33
34
35static int wpas_macsec_deinit(void *priv)
36{
37 return wpa_drv_macsec_deinit(priv);
38}
39
40
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080041static int wpas_macsec_get_capability(void *priv, enum macsec_cap *cap)
42{
43 return wpa_drv_macsec_get_capability(priv, cap);
44}
45
46
Hai Shalome21d4e82020-04-29 16:34:06 -070047static int wpas_enable_protect_frames(void *wpa_s, bool enabled)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070048{
49 return wpa_drv_enable_protect_frames(wpa_s, enabled);
50}
51
52
Hai Shalome21d4e82020-04-29 16:34:06 -070053static int wpas_enable_encrypt(void *wpa_s, bool enabled)
Dmitry Shmidtabb90a32016-12-05 15:34:39 -080054{
55 return wpa_drv_enable_encrypt(wpa_s, enabled);
56}
57
58
Hai Shalome21d4e82020-04-29 16:34:06 -070059static int wpas_set_replay_protect(void *wpa_s, bool enabled, u32 window)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070060{
61 return wpa_drv_set_replay_protect(wpa_s, enabled, window);
62}
63
64
Dmitry Shmidt7d175302016-09-06 13:11:34 -070065static int wpas_set_current_cipher_suite(void *wpa_s, u64 cs)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070066{
Dmitry Shmidt7d175302016-09-06 13:11:34 -070067 return wpa_drv_set_current_cipher_suite(wpa_s, cs);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070068}
69
70
Hai Shalome21d4e82020-04-29 16:34:06 -070071static int wpas_enable_controlled_port(void *wpa_s, bool enabled)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070072{
73 return wpa_drv_enable_controlled_port(wpa_s, enabled);
74}
75
76
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080077static int wpas_get_receive_lowest_pn(void *wpa_s, struct receive_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070078{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080079 return wpa_drv_get_receive_lowest_pn(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070080}
81
82
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080083static int wpas_get_transmit_next_pn(void *wpa_s, struct transmit_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070084{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080085 return wpa_drv_get_transmit_next_pn(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070086}
87
88
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080089static int wpas_set_transmit_next_pn(void *wpa_s, struct transmit_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070090{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080091 return wpa_drv_set_transmit_next_pn(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070092}
93
94
Hai Shalom74f70d42019-02-11 14:42:39 -080095static int wpas_set_receive_lowest_pn(void *wpa_s, struct receive_sa *sa)
96{
97 return wpa_drv_set_receive_lowest_pn(wpa_s, sa);
98}
99
100
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700101static unsigned int conf_offset_val(enum confidentiality_offset co)
102{
103 switch (co) {
104 case CONFIDENTIALITY_OFFSET_30:
105 return 30;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700106 case CONFIDENTIALITY_OFFSET_50:
107 return 50;
108 default:
109 return 0;
110 }
111}
112
113
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800114static int wpas_create_receive_sc(void *wpa_s, struct receive_sc *sc,
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700115 enum validate_frames vf,
116 enum confidentiality_offset co)
117{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800118 return wpa_drv_create_receive_sc(wpa_s, sc, conf_offset_val(co), vf);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700119}
120
121
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800122static int wpas_delete_receive_sc(void *wpa_s, struct receive_sc *sc)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700123{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800124 return wpa_drv_delete_receive_sc(wpa_s, sc);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700125}
126
127
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800128static int wpas_create_receive_sa(void *wpa_s, struct receive_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700129{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800130 return wpa_drv_create_receive_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700131}
132
133
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800134static int wpas_delete_receive_sa(void *wpa_s, struct receive_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700135{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800136 return wpa_drv_delete_receive_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700137}
138
139
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800140static int wpas_enable_receive_sa(void *wpa_s, struct receive_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700141{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800142 return wpa_drv_enable_receive_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700143}
144
145
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800146static int wpas_disable_receive_sa(void *wpa_s, struct receive_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700147{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800148 return wpa_drv_disable_receive_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700149}
150
151
152static int
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800153wpas_create_transmit_sc(void *wpa_s, struct transmit_sc *sc,
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700154 enum confidentiality_offset co)
155{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800156 return wpa_drv_create_transmit_sc(wpa_s, sc, conf_offset_val(co));
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700157}
158
159
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800160static int wpas_delete_transmit_sc(void *wpa_s, struct transmit_sc *sc)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700161{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800162 return wpa_drv_delete_transmit_sc(wpa_s, sc);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700163}
164
165
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800166static int wpas_create_transmit_sa(void *wpa_s, struct transmit_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700167{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800168 return wpa_drv_create_transmit_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700169}
170
171
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800172static int wpas_delete_transmit_sa(void *wpa_s, struct transmit_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700173{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800174 return wpa_drv_delete_transmit_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700175}
176
177
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800178static int wpas_enable_transmit_sa(void *wpa_s, struct transmit_sa *sa)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700179{
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800180 return wpa_drv_enable_transmit_sa(wpa_s, sa);
181}
182
183
184static int wpas_disable_transmit_sa(void *wpa_s, struct transmit_sa *sa)
185{
186 return wpa_drv_disable_transmit_sa(wpa_s, sa);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700187}
188
189
190int ieee802_1x_alloc_kay_sm(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
191{
192 struct ieee802_1x_kay_ctx *kay_ctx;
193 struct ieee802_1x_kay *res = NULL;
194 enum macsec_policy policy;
195
196 ieee802_1x_dealloc_kay_sm(wpa_s);
197
198 if (!ssid || ssid->macsec_policy == 0)
199 return 0;
200
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800201 if (ssid->macsec_policy == 1) {
202 if (ssid->macsec_integ_only == 1)
203 policy = SHOULD_SECURE;
204 else
205 policy = SHOULD_ENCRYPT;
206 } else {
207 policy = DO_NOT_SECURE;
208 }
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700209
210 kay_ctx = os_zalloc(sizeof(*kay_ctx));
211 if (!kay_ctx)
212 return -1;
213
214 kay_ctx->ctx = wpa_s;
215
216 kay_ctx->macsec_init = wpas_macsec_init;
217 kay_ctx->macsec_deinit = wpas_macsec_deinit;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800218 kay_ctx->macsec_get_capability = wpas_macsec_get_capability;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700219 kay_ctx->enable_protect_frames = wpas_enable_protect_frames;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800220 kay_ctx->enable_encrypt = wpas_enable_encrypt;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700221 kay_ctx->set_replay_protect = wpas_set_replay_protect;
222 kay_ctx->set_current_cipher_suite = wpas_set_current_cipher_suite;
223 kay_ctx->enable_controlled_port = wpas_enable_controlled_port;
224 kay_ctx->get_receive_lowest_pn = wpas_get_receive_lowest_pn;
225 kay_ctx->get_transmit_next_pn = wpas_get_transmit_next_pn;
226 kay_ctx->set_transmit_next_pn = wpas_set_transmit_next_pn;
Hai Shalom74f70d42019-02-11 14:42:39 -0800227 kay_ctx->set_receive_lowest_pn = wpas_set_receive_lowest_pn;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700228 kay_ctx->create_receive_sc = wpas_create_receive_sc;
229 kay_ctx->delete_receive_sc = wpas_delete_receive_sc;
230 kay_ctx->create_receive_sa = wpas_create_receive_sa;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800231 kay_ctx->delete_receive_sa = wpas_delete_receive_sa;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700232 kay_ctx->enable_receive_sa = wpas_enable_receive_sa;
233 kay_ctx->disable_receive_sa = wpas_disable_receive_sa;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700234 kay_ctx->create_transmit_sc = wpas_create_transmit_sc;
235 kay_ctx->delete_transmit_sc = wpas_delete_transmit_sc;
236 kay_ctx->create_transmit_sa = wpas_create_transmit_sa;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800237 kay_ctx->delete_transmit_sa = wpas_delete_transmit_sa;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700238 kay_ctx->enable_transmit_sa = wpas_enable_transmit_sa;
239 kay_ctx->disable_transmit_sa = wpas_disable_transmit_sa;
240
Hai Shalom74f70d42019-02-11 14:42:39 -0800241 res = ieee802_1x_kay_init(kay_ctx, policy, ssid->macsec_replay_protect,
242 ssid->macsec_replay_window, ssid->macsec_port,
Sunil Ravia04bd252022-05-02 22:54:18 -0700243 ssid->mka_priority, ssid->macsec_csindex,
244 wpa_s->ifname, wpa_s->own_addr);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700245 /* ieee802_1x_kay_init() frees kay_ctx on failure */
246 if (res == NULL)
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700247 return -1;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700248
249 wpa_s->kay = res;
250
251 return 0;
252}
253
254
255void ieee802_1x_dealloc_kay_sm(struct wpa_supplicant *wpa_s)
256{
257 if (!wpa_s->kay)
258 return;
259
260 ieee802_1x_kay_deinit(wpa_s->kay);
261 wpa_s->kay = NULL;
262}
263
264
265static int ieee802_1x_auth_get_session_id(struct wpa_supplicant *wpa_s,
266 const u8 *addr, u8 *sid, size_t *len)
267{
268 const u8 *session_id;
269 size_t id_len, need_len;
270
271 session_id = eapol_sm_get_session_id(wpa_s->eapol, &id_len);
272 if (session_id == NULL) {
273 wpa_printf(MSG_DEBUG,
274 "Failed to get SessionID from EAPOL state machines");
275 return -1;
276 }
277
Roshan Pius3a1667e2018-07-03 15:17:14 -0700278 need_len = 1 + 2 * 32 /* random size */;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700279 if (need_len > id_len) {
280 wpa_printf(MSG_DEBUG, "EAP Session-Id not long enough");
281 return -1;
282 }
283
284 os_memcpy(sid, session_id, need_len);
285 *len = need_len;
286
287 return 0;
288}
289
290
291static int ieee802_1x_auth_get_msk(struct wpa_supplicant *wpa_s, const u8 *addr,
292 u8 *msk, size_t *len)
293{
294 u8 key[EAP_MSK_LEN];
295 size_t keylen;
296 struct eapol_sm *sm;
297 int res;
298
299 sm = wpa_s->eapol;
300 if (sm == NULL)
301 return -1;
302
303 keylen = EAP_MSK_LEN;
304 res = eapol_sm_get_key(sm, key, keylen);
305 if (res) {
306 wpa_printf(MSG_DEBUG,
307 "Failed to get MSK from EAPOL state machines");
308 return -1;
309 }
310
311 if (keylen > *len)
312 keylen = *len;
313 os_memcpy(msk, key, keylen);
314 *len = keylen;
315
316 return 0;
317}
318
319
320void * ieee802_1x_notify_create_actor(struct wpa_supplicant *wpa_s,
321 const u8 *peer_addr)
322{
323 u8 *sid;
324 size_t sid_len = 128;
325 struct mka_key_name *ckn;
326 struct mka_key *cak;
327 struct mka_key *msk;
328 void *res = NULL;
329
330 if (!wpa_s->kay || wpa_s->kay->policy == DO_NOT_SECURE)
331 return NULL;
332
333 wpa_printf(MSG_DEBUG,
334 "IEEE 802.1X: External notification - Create MKA for "
335 MACSTR, MAC2STR(peer_addr));
336
337 msk = os_zalloc(sizeof(*msk));
338 sid = os_zalloc(sid_len);
339 ckn = os_zalloc(sizeof(*ckn));
340 cak = os_zalloc(sizeof(*cak));
341 if (!msk || !sid || !ckn || !cak)
342 goto fail;
343
344 msk->len = DEFAULT_KEY_LEN;
345 if (ieee802_1x_auth_get_msk(wpa_s, wpa_s->bssid, msk->key, &msk->len)) {
346 wpa_printf(MSG_ERROR, "IEEE 802.1X: Could not get MSK");
347 goto fail;
348 }
349
350 if (ieee802_1x_auth_get_session_id(wpa_s, wpa_s->bssid, sid, &sid_len))
351 {
352 wpa_printf(MSG_ERROR,
353 "IEEE 802.1X: Could not get EAP Session Id");
354 goto fail;
355 }
356
357 /* Derive CAK from MSK */
358 cak->len = DEFAULT_KEY_LEN;
Hai Shalom74f70d42019-02-11 14:42:39 -0800359 if (ieee802_1x_cak_aes_cmac(msk->key, msk->len, wpa_s->own_addr,
360 peer_addr, cak->key, cak->len)) {
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700361 wpa_printf(MSG_ERROR,
362 "IEEE 802.1X: Deriving CAK failed");
363 goto fail;
364 }
365 wpa_hexdump_key(MSG_DEBUG, "Derived CAK", cak->key, cak->len);
366
367 /* Derive CKN from MSK */
368 ckn->len = DEFAULT_CKN_LEN;
Hai Shalom74f70d42019-02-11 14:42:39 -0800369 if (ieee802_1x_ckn_aes_cmac(msk->key, msk->len, wpa_s->own_addr,
370 peer_addr, sid, sid_len, ckn->name)) {
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700371 wpa_printf(MSG_ERROR,
372 "IEEE 802.1X: Deriving CKN failed");
373 goto fail;
374 }
375 wpa_hexdump(MSG_DEBUG, "Derived CKN", ckn->name, ckn->len);
376
377 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0,
Hai Shalome21d4e82020-04-29 16:34:06 -0700378 EAP_EXCHANGE, false);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700379
380fail:
381 if (msk) {
382 os_memset(msk, 0, sizeof(*msk));
383 os_free(msk);
384 }
385 os_free(sid);
386 os_free(ckn);
387 if (cak) {
388 os_memset(cak, 0, sizeof(*cak));
389 os_free(cak);
390 }
391
392 return res;
393}
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800394
395
396void * ieee802_1x_create_preshared_mka(struct wpa_supplicant *wpa_s,
397 struct wpa_ssid *ssid)
398{
399 struct mka_key *cak;
400 struct mka_key_name *ckn;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700401 void *res = NULL;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800402
403 if ((ssid->mka_psk_set & MKA_PSK_SET) != MKA_PSK_SET)
Roshan Pius3a1667e2018-07-03 15:17:14 -0700404 goto end;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800405
406 ckn = os_zalloc(sizeof(*ckn));
407 if (!ckn)
Roshan Pius3a1667e2018-07-03 15:17:14 -0700408 goto end;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800409
410 cak = os_zalloc(sizeof(*cak));
411 if (!cak)
412 goto free_ckn;
413
Roshan Pius3a1667e2018-07-03 15:17:14 -0700414 if (ieee802_1x_alloc_kay_sm(wpa_s, ssid) < 0 || !wpa_s->kay)
415 goto free_cak;
416
417 if (wpa_s->kay->policy == DO_NOT_SECURE)
418 goto dealloc;
419
Hai Shalom74f70d42019-02-11 14:42:39 -0800420 cak->len = ssid->mka_cak_len;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800421 os_memcpy(cak->key, ssid->mka_cak, cak->len);
422
Hai Shalom74f70d42019-02-11 14:42:39 -0800423 ckn->len = ssid->mka_ckn_len;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800424 os_memcpy(ckn->name, ssid->mka_ckn, ckn->len);
425
Hai Shalome21d4e82020-04-29 16:34:06 -0700426 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, PSK, false);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800427 if (res)
Roshan Pius3a1667e2018-07-03 15:17:14 -0700428 goto free_cak;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800429
Roshan Pius3a1667e2018-07-03 15:17:14 -0700430dealloc:
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800431 /* Failed to create MKA */
Roshan Pius3a1667e2018-07-03 15:17:14 -0700432 ieee802_1x_dealloc_kay_sm(wpa_s);
433free_cak:
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800434 os_free(cak);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800435free_ckn:
436 os_free(ckn);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700437end:
438 return res;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800439}