Line data Source code
1 : /*
2 : * WPA Supplicant - RSN PMKSA cache
3 : * Copyright (c) 2004-2009, 2011-2012, Jouni Malinen <j@w1.fi>
4 : *
5 : * This software may be distributed under the terms of the BSD license.
6 : * See README for more details.
7 : */
8 :
9 : #include "includes.h"
10 :
11 : #include "common.h"
12 : #include "eloop.h"
13 : #include "eapol_supp/eapol_supp_sm.h"
14 : #include "wpa.h"
15 : #include "wpa_i.h"
16 : #include "pmksa_cache.h"
17 :
18 : #ifdef IEEE8021X_EAPOL
19 :
20 : static const int pmksa_cache_max_entries = 32;
21 :
22 : struct rsn_pmksa_cache {
23 : struct rsn_pmksa_cache_entry *pmksa; /* PMKSA cache */
24 : int pmksa_count; /* number of entries in PMKSA cache */
25 : struct wpa_sm *sm; /* TODO: get rid of this reference(?) */
26 :
27 : void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx,
28 : enum pmksa_free_reason reason);
29 : void *ctx;
30 : };
31 :
32 :
33 : static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa);
34 :
35 :
36 274 : static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry)
37 : {
38 274 : os_free(entry);
39 274 : }
40 :
41 :
42 274 : static void pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa,
43 : struct rsn_pmksa_cache_entry *entry,
44 : enum pmksa_free_reason reason)
45 : {
46 274 : wpa_sm_remove_pmkid(pmksa->sm, entry->aa, entry->pmkid);
47 274 : pmksa->pmksa_count--;
48 274 : pmksa->free_cb(entry, pmksa->ctx, reason);
49 274 : _pmksa_cache_free_entry(entry);
50 274 : }
51 :
52 :
53 1 : static void pmksa_cache_expire(void *eloop_ctx, void *timeout_ctx)
54 : {
55 1 : struct rsn_pmksa_cache *pmksa = eloop_ctx;
56 : struct os_reltime now;
57 :
58 1 : os_get_reltime(&now);
59 3 : while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
60 1 : struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
61 1 : pmksa->pmksa = entry->next;
62 6 : wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
63 6 : MACSTR, MAC2STR(entry->aa));
64 1 : pmksa_cache_free_entry(pmksa, entry, PMKSA_EXPIRE);
65 : }
66 :
67 1 : pmksa_cache_set_expiration(pmksa);
68 1 : }
69 :
70 :
71 2 : static void pmksa_cache_reauth(void *eloop_ctx, void *timeout_ctx)
72 : {
73 2 : struct rsn_pmksa_cache *pmksa = eloop_ctx;
74 2 : pmksa->sm->cur_pmksa = NULL;
75 2 : eapol_sm_request_reauth(pmksa->sm->eapol);
76 2 : }
77 :
78 :
79 559 : static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa)
80 : {
81 : int sec;
82 : struct rsn_pmksa_cache_entry *entry;
83 : struct os_reltime now;
84 :
85 559 : eloop_cancel_timeout(pmksa_cache_expire, pmksa, NULL);
86 559 : eloop_cancel_timeout(pmksa_cache_reauth, pmksa, NULL);
87 559 : if (pmksa->pmksa == NULL)
88 850 : return;
89 268 : os_get_reltime(&now);
90 268 : sec = pmksa->pmksa->expiration - now.sec;
91 268 : if (sec < 0)
92 0 : sec = 0;
93 268 : eloop_register_timeout(sec + 1, 0, pmksa_cache_expire, pmksa, NULL);
94 :
95 536 : entry = pmksa->sm->cur_pmksa ? pmksa->sm->cur_pmksa :
96 268 : pmksa_cache_get(pmksa, pmksa->sm->bssid, NULL, NULL);
97 268 : if (entry) {
98 268 : sec = pmksa->pmksa->reauth_time - now.sec;
99 268 : if (sec < 0)
100 0 : sec = 0;
101 268 : eloop_register_timeout(sec, 0, pmksa_cache_reauth, pmksa,
102 : NULL);
103 : }
104 : }
105 :
106 :
107 : /**
108 : * pmksa_cache_add - Add a PMKSA cache entry
109 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
110 : * @pmk: The new pairwise master key
111 : * @pmk_len: PMK length in bytes, usually PMK_LEN (32)
112 : * @aa: Authenticator address
113 : * @spa: Supplicant address
114 : * @network_ctx: Network configuration context for this PMK
115 : * @akmp: WPA_KEY_MGMT_* used in key derivation
116 : * Returns: Pointer to the added PMKSA cache entry or %NULL on error
117 : *
118 : * This function create a PMKSA entry for a new PMK and adds it to the PMKSA
119 : * cache. If an old entry is already in the cache for the same Authenticator,
120 : * this entry will be replaced with the new entry. PMKID will be calculated
121 : * based on the PMK and the driver interface is notified of the new PMKID.
122 : */
123 : struct rsn_pmksa_cache_entry *
124 274 : pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
125 : const u8 *aa, const u8 *spa, void *network_ctx, int akmp)
126 : {
127 : struct rsn_pmksa_cache_entry *entry, *pos, *prev;
128 : struct os_reltime now;
129 :
130 274 : if (pmk_len > PMK_LEN)
131 0 : return NULL;
132 :
133 274 : entry = os_zalloc(sizeof(*entry));
134 274 : if (entry == NULL)
135 0 : return NULL;
136 274 : os_memcpy(entry->pmk, pmk, pmk_len);
137 274 : entry->pmk_len = pmk_len;
138 274 : rsn_pmkid(pmk, pmk_len, aa, spa, entry->pmkid,
139 : wpa_key_mgmt_sha256(akmp));
140 274 : os_get_reltime(&now);
141 274 : entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
142 822 : entry->reauth_time = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime *
143 548 : pmksa->sm->dot11RSNAConfigPMKReauthThreshold / 100;
144 274 : entry->akmp = akmp;
145 274 : os_memcpy(entry->aa, aa, ETH_ALEN);
146 274 : entry->network_ctx = network_ctx;
147 :
148 : /* Replace an old entry for the same Authenticator (if found) with the
149 : * new entry */
150 274 : pos = pmksa->pmksa;
151 274 : prev = NULL;
152 557 : while (pos) {
153 65 : if (os_memcmp(aa, pos->aa, ETH_ALEN) == 0) {
154 112 : if (pos->pmk_len == pmk_len &&
155 56 : os_memcmp(pos->pmk, pmk, pmk_len) == 0 &&
156 0 : os_memcmp(pos->pmkid, entry->pmkid, PMKID_LEN) ==
157 : 0) {
158 0 : wpa_printf(MSG_DEBUG, "WPA: reusing previous "
159 : "PMKSA entry");
160 0 : os_free(entry);
161 0 : return pos;
162 : }
163 56 : if (prev == NULL)
164 55 : pmksa->pmksa = pos->next;
165 : else
166 1 : prev->next = pos->next;
167 :
168 : /*
169 : * If OKC is used, there may be other PMKSA cache
170 : * entries based on the same PMK. These needs to be
171 : * flushed so that a new entry can be created based on
172 : * the new PMK. Only clear other entries if they have a
173 : * matching PMK and this PMK has been used successfully
174 : * with the current AP, i.e., if opportunistic flag has
175 : * been cleared in wpa_supplicant_key_neg_complete().
176 : */
177 56 : wpa_printf(MSG_DEBUG, "RSN: Replace PMKSA entry for "
178 : "the current AP and any PMKSA cache entry "
179 : "that was based on the old PMK");
180 56 : if (!pos->opportunistic)
181 55 : pmksa_cache_flush(pmksa, network_ctx, pos->pmk,
182 : pos->pmk_len);
183 56 : pmksa_cache_free_entry(pmksa, pos, PMKSA_REPLACE);
184 56 : break;
185 : }
186 9 : prev = pos;
187 9 : pos = pos->next;
188 : }
189 :
190 274 : if (pmksa->pmksa_count >= pmksa_cache_max_entries && pmksa->pmksa) {
191 : /* Remove the oldest entry to make room for the new entry */
192 0 : pos = pmksa->pmksa;
193 :
194 0 : if (pos == pmksa->sm->cur_pmksa) {
195 : /*
196 : * Never remove the current PMKSA cache entry, since
197 : * it's in use, and removing it triggers a needless
198 : * deauthentication.
199 : */
200 0 : pos = pos->next;
201 0 : pmksa->pmksa->next = pos ? pos->next : NULL;
202 : } else
203 0 : pmksa->pmksa = pos->next;
204 :
205 0 : if (pos) {
206 0 : wpa_printf(MSG_DEBUG, "RSN: removed the oldest idle "
207 : "PMKSA cache entry (for " MACSTR ") to "
208 : "make room for new one",
209 0 : MAC2STR(pos->aa));
210 0 : pmksa_cache_free_entry(pmksa, pos, PMKSA_FREE);
211 : }
212 : }
213 :
214 : /* Add the new entry; order by expiration time */
215 274 : pos = pmksa->pmksa;
216 274 : prev = NULL;
217 557 : while (pos) {
218 9 : if (pos->expiration > entry->expiration)
219 0 : break;
220 9 : prev = pos;
221 9 : pos = pos->next;
222 : }
223 274 : if (prev == NULL) {
224 265 : entry->next = pmksa->pmksa;
225 265 : pmksa->pmksa = entry;
226 265 : pmksa_cache_set_expiration(pmksa);
227 : } else {
228 9 : entry->next = prev->next;
229 9 : prev->next = entry;
230 : }
231 274 : pmksa->pmksa_count++;
232 1644 : wpa_printf(MSG_DEBUG, "RSN: Added PMKSA cache entry for " MACSTR
233 1644 : " network_ctx=%p", MAC2STR(entry->aa), network_ctx);
234 274 : wpa_sm_add_pmkid(pmksa->sm, entry->aa, entry->pmkid);
235 :
236 274 : return entry;
237 : }
238 :
239 :
240 : /**
241 : * pmksa_cache_flush - Flush PMKSA cache entries for a specific network
242 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
243 : * @network_ctx: Network configuration context or %NULL to flush all entries
244 : * @pmk: PMK to match for or %NYLL to match all PMKs
245 : * @pmk_len: PMK length
246 : */
247 3784 : void pmksa_cache_flush(struct rsn_pmksa_cache *pmksa, void *network_ctx,
248 : const u8 *pmk, size_t pmk_len)
249 : {
250 3784 : struct rsn_pmksa_cache_entry *entry, *prev = NULL, *tmp;
251 3784 : int removed = 0;
252 :
253 3784 : entry = pmksa->pmksa;
254 7789 : while (entry) {
255 221 : if ((entry->network_ctx == network_ctx ||
256 217 : network_ctx == NULL) &&
257 0 : (pmk == NULL ||
258 0 : (pmk_len == entry->pmk_len &&
259 0 : os_memcmp(pmk, entry->pmk, pmk_len) == 0))) {
260 1302 : wpa_printf(MSG_DEBUG, "RSN: Flush PMKSA cache entry "
261 1302 : "for " MACSTR, MAC2STR(entry->aa));
262 217 : if (prev)
263 0 : prev->next = entry->next;
264 : else
265 217 : pmksa->pmksa = entry->next;
266 217 : tmp = entry;
267 217 : entry = entry->next;
268 217 : pmksa_cache_free_entry(pmksa, tmp, PMKSA_FREE);
269 217 : removed++;
270 : } else {
271 4 : prev = entry;
272 4 : entry = entry->next;
273 : }
274 : }
275 3784 : if (removed)
276 212 : pmksa_cache_set_expiration(pmksa);
277 3784 : }
278 :
279 :
280 : /**
281 : * pmksa_cache_deinit - Free all entries in PMKSA cache
282 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
283 : */
284 81 : void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa)
285 : {
286 : struct rsn_pmksa_cache_entry *entry, *prev;
287 :
288 81 : if (pmksa == NULL)
289 81 : return;
290 :
291 81 : entry = pmksa->pmksa;
292 81 : pmksa->pmksa = NULL;
293 162 : while (entry) {
294 0 : prev = entry;
295 0 : entry = entry->next;
296 0 : os_free(prev);
297 : }
298 81 : pmksa_cache_set_expiration(pmksa);
299 81 : os_free(pmksa);
300 : }
301 :
302 :
303 : /**
304 : * pmksa_cache_get - Fetch a PMKSA cache entry
305 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
306 : * @aa: Authenticator address or %NULL to match any
307 : * @pmkid: PMKID or %NULL to match any
308 : * @network_ctx: Network context or %NULL to match any
309 : * Returns: Pointer to PMKSA cache entry or %NULL if no match was found
310 : */
311 1503 : struct rsn_pmksa_cache_entry * pmksa_cache_get(struct rsn_pmksa_cache *pmksa,
312 : const u8 *aa, const u8 *pmkid,
313 : const void *network_ctx)
314 : {
315 1503 : struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
316 3088 : while (entry) {
317 642 : if ((aa == NULL || os_memcmp(entry->aa, aa, ETH_ALEN) == 0) &&
318 328 : (pmkid == NULL ||
319 888 : os_memcmp(entry->pmkid, pmkid, PMKID_LEN) == 0) &&
320 8 : (network_ctx == NULL || network_ctx == entry->network_ctx))
321 560 : return entry;
322 82 : entry = entry->next;
323 : }
324 943 : return NULL;
325 : }
326 :
327 :
328 : static struct rsn_pmksa_cache_entry *
329 3 : pmksa_cache_clone_entry(struct rsn_pmksa_cache *pmksa,
330 : const struct rsn_pmksa_cache_entry *old_entry,
331 : const u8 *aa)
332 : {
333 : struct rsn_pmksa_cache_entry *new_entry;
334 :
335 6 : new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len,
336 3 : aa, pmksa->sm->own_addr,
337 : old_entry->network_ctx, old_entry->akmp);
338 3 : if (new_entry == NULL)
339 0 : return NULL;
340 :
341 : /* TODO: reorder entries based on expiration time? */
342 3 : new_entry->expiration = old_entry->expiration;
343 3 : new_entry->opportunistic = 1;
344 :
345 3 : return new_entry;
346 : }
347 :
348 :
349 : /**
350 : * pmksa_cache_get_opportunistic - Try to get an opportunistic PMKSA entry
351 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
352 : * @network_ctx: Network configuration context
353 : * @aa: Authenticator address for the new AP
354 : * Returns: Pointer to a new PMKSA cache entry or %NULL if not available
355 : *
356 : * Try to create a new PMKSA cache entry opportunistically by guessing that the
357 : * new AP is sharing the same PMK as another AP that has the same SSID and has
358 : * already an entry in PMKSA cache.
359 : */
360 : struct rsn_pmksa_cache_entry *
361 6 : pmksa_cache_get_opportunistic(struct rsn_pmksa_cache *pmksa, void *network_ctx,
362 : const u8 *aa)
363 : {
364 6 : struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
365 :
366 6 : wpa_printf(MSG_DEBUG, "RSN: Consider " MACSTR " for OKC", MAC2STR(aa));
367 6 : if (network_ctx == NULL)
368 0 : return NULL;
369 12 : while (entry) {
370 3 : if (entry->network_ctx == network_ctx) {
371 3 : entry = pmksa_cache_clone_entry(pmksa, entry, aa);
372 3 : if (entry) {
373 18 : wpa_printf(MSG_DEBUG, "RSN: added "
374 : "opportunistic PMKSA cache entry "
375 18 : "for " MACSTR, MAC2STR(aa));
376 : }
377 3 : return entry;
378 : }
379 0 : entry = entry->next;
380 : }
381 3 : return NULL;
382 : }
383 :
384 :
385 : /**
386 : * pmksa_cache_get_current - Get the current used PMKSA entry
387 : * @sm: Pointer to WPA state machine data from wpa_sm_init()
388 : * Returns: Pointer to the current PMKSA cache entry or %NULL if not available
389 : */
390 3016 : struct rsn_pmksa_cache_entry * pmksa_cache_get_current(struct wpa_sm *sm)
391 : {
392 3016 : if (sm == NULL)
393 0 : return NULL;
394 3016 : return sm->cur_pmksa;
395 : }
396 :
397 :
398 : /**
399 : * pmksa_cache_clear_current - Clear the current PMKSA entry selection
400 : * @sm: Pointer to WPA state machine data from wpa_sm_init()
401 : */
402 1573 : void pmksa_cache_clear_current(struct wpa_sm *sm)
403 : {
404 1573 : if (sm == NULL)
405 1573 : return;
406 1573 : sm->cur_pmksa = NULL;
407 : }
408 :
409 :
410 : /**
411 : * pmksa_cache_set_current - Set the current PMKSA entry selection
412 : * @sm: Pointer to WPA state machine data from wpa_sm_init()
413 : * @pmkid: PMKID for selecting PMKSA or %NULL if not used
414 : * @bssid: BSSID for PMKSA or %NULL if not used
415 : * @network_ctx: Network configuration context
416 : * @try_opportunistic: Whether to allow opportunistic PMKSA caching
417 : * Returns: 0 if PMKSA was found or -1 if no matching entry was found
418 : */
419 671 : int pmksa_cache_set_current(struct wpa_sm *sm, const u8 *pmkid,
420 : const u8 *bssid, void *network_ctx,
421 : int try_opportunistic)
422 : {
423 671 : struct rsn_pmksa_cache *pmksa = sm->pmksa;
424 671 : wpa_printf(MSG_DEBUG, "RSN: PMKSA cache search - network_ctx=%p "
425 : "try_opportunistic=%d", network_ctx, try_opportunistic);
426 671 : if (pmkid)
427 0 : wpa_hexdump(MSG_DEBUG, "RSN: Search for PMKID",
428 : pmkid, PMKID_LEN);
429 671 : if (bssid)
430 4026 : wpa_printf(MSG_DEBUG, "RSN: Search for BSSID " MACSTR,
431 4026 : MAC2STR(bssid));
432 :
433 671 : sm->cur_pmksa = NULL;
434 671 : if (pmkid)
435 0 : sm->cur_pmksa = pmksa_cache_get(pmksa, NULL, pmkid,
436 : network_ctx);
437 671 : if (sm->cur_pmksa == NULL && bssid)
438 671 : sm->cur_pmksa = pmksa_cache_get(pmksa, bssid, NULL,
439 : network_ctx);
440 671 : if (sm->cur_pmksa == NULL && try_opportunistic && bssid)
441 3 : sm->cur_pmksa = pmksa_cache_get_opportunistic(pmksa,
442 : network_ctx,
443 : bssid);
444 671 : if (sm->cur_pmksa) {
445 15 : wpa_hexdump(MSG_DEBUG, "RSN: PMKSA cache entry found - PMKID",
446 15 : sm->cur_pmksa->pmkid, PMKID_LEN);
447 15 : return 0;
448 : }
449 656 : wpa_printf(MSG_DEBUG, "RSN: No PMKSA cache entry found");
450 656 : return -1;
451 : }
452 :
453 :
454 : /**
455 : * pmksa_cache_list - Dump text list of entries in PMKSA cache
456 : * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
457 : * @buf: Buffer for the list
458 : * @len: Length of the buffer
459 : * Returns: number of bytes written to buffer
460 : *
461 : * This function is used to generate a text format representation of the
462 : * current PMKSA cache contents for the ctrl_iface PMKSA command.
463 : */
464 30 : int pmksa_cache_list(struct rsn_pmksa_cache *pmksa, char *buf, size_t len)
465 : {
466 : int i, ret;
467 30 : char *pos = buf;
468 : struct rsn_pmksa_cache_entry *entry;
469 : struct os_reltime now;
470 :
471 30 : os_get_reltime(&now);
472 30 : ret = os_snprintf(pos, buf + len - pos,
473 : "Index / AA / PMKID / expiration (in seconds) / "
474 : "opportunistic\n");
475 30 : if (ret < 0 || ret >= buf + len - pos)
476 0 : return pos - buf;
477 30 : pos += ret;
478 30 : i = 0;
479 30 : entry = pmksa->pmksa;
480 100 : while (entry) {
481 40 : i++;
482 240 : ret = os_snprintf(pos, buf + len - pos, "%d " MACSTR " ",
483 240 : i, MAC2STR(entry->aa));
484 40 : if (ret < 0 || ret >= buf + len - pos)
485 0 : return pos - buf;
486 40 : pos += ret;
487 40 : pos += wpa_snprintf_hex(pos, buf + len - pos, entry->pmkid,
488 : PMKID_LEN);
489 120 : ret = os_snprintf(pos, buf + len - pos, " %d %d\n",
490 80 : (int) (entry->expiration - now.sec),
491 : entry->opportunistic);
492 40 : if (ret < 0 || ret >= buf + len - pos)
493 0 : return pos - buf;
494 40 : pos += ret;
495 40 : entry = entry->next;
496 : }
497 30 : return pos - buf;
498 : }
499 :
500 :
501 : /**
502 : * pmksa_cache_init - Initialize PMKSA cache
503 : * @free_cb: Callback function to be called when a PMKSA cache entry is freed
504 : * @ctx: Context pointer for free_cb function
505 : * @sm: Pointer to WPA state machine data from wpa_sm_init()
506 : * Returns: Pointer to PMKSA cache data or %NULL on failure
507 : */
508 : struct rsn_pmksa_cache *
509 81 : pmksa_cache_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry,
510 : void *ctx, enum pmksa_free_reason reason),
511 : void *ctx, struct wpa_sm *sm)
512 : {
513 : struct rsn_pmksa_cache *pmksa;
514 :
515 81 : pmksa = os_zalloc(sizeof(*pmksa));
516 81 : if (pmksa) {
517 81 : pmksa->free_cb = free_cb;
518 81 : pmksa->ctx = ctx;
519 81 : pmksa->sm = sm;
520 : }
521 :
522 81 : return pmksa;
523 : }
524 :
525 : #endif /* IEEE8021X_EAPOL */
|