Branch data 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 : 82 : static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry)
37 : : {
38 : 82 : os_free(entry);
39 : 82 : }
40 : :
41 : :
42 : 82 : 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 : 82 : wpa_sm_remove_pmkid(pmksa->sm, entry->aa, entry->pmkid);
47 : 82 : pmksa->pmksa_count--;
48 : 82 : pmksa->free_cb(entry, pmksa->ctx, reason);
49 : 82 : _pmksa_cache_free_entry(entry);
50 : 82 : }
51 : :
52 : :
53 : 0 : static void pmksa_cache_expire(void *eloop_ctx, void *timeout_ctx)
54 : : {
55 : 0 : struct rsn_pmksa_cache *pmksa = eloop_ctx;
56 : : struct os_reltime now;
57 : :
58 : 0 : os_get_reltime(&now);
59 [ # # ][ # # ]: 0 : while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
60 : 0 : struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
61 : 0 : pmksa->pmksa = entry->next;
62 : 0 : wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
63 : 0 : MACSTR, MAC2STR(entry->aa));
64 : 0 : pmksa_cache_free_entry(pmksa, entry, PMKSA_EXPIRE);
65 : : }
66 : :
67 : 0 : pmksa_cache_set_expiration(pmksa);
68 : 0 : }
69 : :
70 : :
71 : 1 : static void pmksa_cache_reauth(void *eloop_ctx, void *timeout_ctx)
72 : : {
73 : 1 : struct rsn_pmksa_cache *pmksa = eloop_ctx;
74 : 1 : pmksa->sm->cur_pmksa = NULL;
75 : 1 : eapol_sm_request_reauth(pmksa->sm->eapol);
76 : 1 : }
77 : :
78 : :
79 : 172 : 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 : 172 : eloop_cancel_timeout(pmksa_cache_expire, pmksa, NULL);
86 : 172 : eloop_cancel_timeout(pmksa_cache_reauth, pmksa, NULL);
87 [ + + ]: 172 : if (pmksa->pmksa == NULL)
88 : 172 : return;
89 : 78 : os_get_reltime(&now);
90 : 78 : sec = pmksa->pmksa->expiration - now.sec;
91 [ - + ]: 78 : if (sec < 0)
92 : 0 : sec = 0;
93 : 78 : eloop_register_timeout(sec + 1, 0, pmksa_cache_expire, pmksa, NULL);
94 : :
95 [ - + ]: 78 : entry = pmksa->sm->cur_pmksa ? pmksa->sm->cur_pmksa :
96 : 78 : pmksa_cache_get(pmksa, pmksa->sm->bssid, NULL, NULL);
97 [ + - ]: 78 : if (entry) {
98 : 78 : sec = pmksa->pmksa->reauth_time - now.sec;
99 [ - + ]: 78 : if (sec < 0)
100 : 0 : sec = 0;
101 : 78 : 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 : 82 : 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 [ - + ]: 82 : if (pmk_len > PMK_LEN)
131 : 0 : return NULL;
132 : :
133 : 82 : entry = os_zalloc(sizeof(*entry));
134 [ - + ]: 82 : if (entry == NULL)
135 : 0 : return NULL;
136 : 82 : os_memcpy(entry->pmk, pmk, pmk_len);
137 : 82 : entry->pmk_len = pmk_len;
138 : 82 : rsn_pmkid(pmk, pmk_len, aa, spa, entry->pmkid,
139 : : wpa_key_mgmt_sha256(akmp));
140 : 82 : os_get_reltime(&now);
141 : 82 : entry->expiration = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime;
142 : 246 : entry->reauth_time = now.sec + pmksa->sm->dot11RSNAConfigPMKLifetime *
143 : 164 : pmksa->sm->dot11RSNAConfigPMKReauthThreshold / 100;
144 : 82 : entry->akmp = akmp;
145 : 82 : os_memcpy(entry->aa, aa, ETH_ALEN);
146 : 82 : entry->network_ctx = network_ctx;
147 : :
148 : : /* Replace an old entry for the same Authenticator (if found) with the
149 : : * new entry */
150 : 82 : pos = pmksa->pmksa;
151 : 82 : prev = NULL;
152 [ + + ]: 86 : while (pos) {
153 [ + + ]: 26 : if (os_memcmp(aa, pos->aa, ETH_ALEN) == 0) {
154 [ + - ][ - + ]: 22 : if (pos->pmk_len == pmk_len &&
155 [ # # ]: 0 : 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 [ + + ]: 22 : if (prev == NULL)
164 : 21 : 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 : 22 : 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 [ + + ]: 22 : if (!pos->opportunistic)
181 : 21 : pmksa_cache_flush(pmksa, network_ctx, pos->pmk,
182 : : pos->pmk_len);
183 : 22 : pmksa_cache_free_entry(pmksa, pos, PMKSA_REPLACE);
184 : 22 : break;
185 : : }
186 : 4 : prev = pos;
187 : 4 : pos = pos->next;
188 : : }
189 : :
190 [ - + ][ # # ]: 82 : 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 : 82 : pos = pmksa->pmksa;
216 : 82 : prev = NULL;
217 [ + + ]: 86 : while (pos) {
218 [ - + ]: 4 : if (pos->expiration > entry->expiration)
219 : 0 : break;
220 : 4 : prev = pos;
221 : 4 : pos = pos->next;
222 : : }
223 [ + + ]: 82 : if (prev == NULL) {
224 : 78 : entry->next = pmksa->pmksa;
225 : 78 : pmksa->pmksa = entry;
226 : 78 : pmksa_cache_set_expiration(pmksa);
227 : : } else {
228 : 4 : entry->next = prev->next;
229 : 4 : prev->next = entry;
230 : : }
231 : 82 : pmksa->pmksa_count++;
232 : 82 : wpa_printf(MSG_DEBUG, "RSN: Added PMKSA cache entry for " MACSTR
233 : 492 : " network_ctx=%p", MAC2STR(entry->aa), network_ctx);
234 : 82 : wpa_sm_add_pmkid(pmksa->sm, entry->aa, entry->pmkid);
235 : :
236 : 82 : 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 : 1336 : void pmksa_cache_flush(struct rsn_pmksa_cache *pmksa, void *network_ctx,
248 : : const u8 *pmk, size_t pmk_len)
249 : : {
250 : 1336 : struct rsn_pmksa_cache_entry *entry, *prev = NULL, *tmp;
251 : 1336 : int removed = 0;
252 : :
253 : 1336 : entry = pmksa->pmksa;
254 [ + + ]: 1396 : while (entry) {
255 [ - + ][ # # ]: 60 : if ((entry->network_ctx == network_ctx ||
256 [ - + ]: 60 : 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 : 60 : wpa_printf(MSG_DEBUG, "RSN: Flush PMKSA cache entry "
261 : 360 : "for " MACSTR, MAC2STR(entry->aa));
262 [ - + ]: 60 : if (prev)
263 : 0 : prev->next = entry->next;
264 : : else
265 : 60 : pmksa->pmksa = entry->next;
266 : 60 : tmp = entry;
267 : 60 : entry = entry->next;
268 : 60 : pmksa_cache_free_entry(pmksa, tmp, PMKSA_FREE);
269 : 60 : removed++;
270 : : } else {
271 : 0 : prev = entry;
272 : 0 : entry = entry->next;
273 : : }
274 : : }
275 [ + + ]: 1336 : if (removed)
276 : 57 : pmksa_cache_set_expiration(pmksa);
277 : 1336 : }
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 : 37 : void pmksa_cache_deinit(struct rsn_pmksa_cache *pmksa)
285 : : {
286 : : struct rsn_pmksa_cache_entry *entry, *prev;
287 : :
288 [ - + ]: 37 : if (pmksa == NULL)
289 : 37 : return;
290 : :
291 : 37 : entry = pmksa->pmksa;
292 : 37 : pmksa->pmksa = NULL;
293 [ - + ]: 37 : while (entry) {
294 : 0 : prev = entry;
295 : 0 : entry = entry->next;
296 : 0 : os_free(prev);
297 : : }
298 : 37 : pmksa_cache_set_expiration(pmksa);
299 : 37 : 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 : 566 : 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 : 566 : struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
316 [ + + ]: 598 : while (entry) {
317 [ + - ][ + + ]: 199 : if ((aa == NULL || os_memcmp(entry->aa, aa, ETH_ALEN) == 0) &&
[ + + ]
318 [ + + ]: 102 : (pmkid == NULL ||
319 [ + + ]: 167 : os_memcmp(entry->pmkid, pmkid, PMKID_LEN) == 0) &&
320 [ + - ]: 5 : (network_ctx == NULL || network_ctx == entry->network_ctx))
321 : 167 : return entry;
322 : 32 : entry = entry->next;
323 : : }
324 : 566 : return NULL;
325 : : }
326 : :
327 : :
328 : : static struct rsn_pmksa_cache_entry *
329 : 2 : 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 : 2 : new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len,
336 : 2 : aa, pmksa->sm->own_addr,
337 : : old_entry->network_ctx, old_entry->akmp);
338 [ - + ]: 2 : if (new_entry == NULL)
339 : 0 : return NULL;
340 : :
341 : : /* TODO: reorder entries based on expiration time? */
342 : 2 : new_entry->expiration = old_entry->expiration;
343 : 2 : new_entry->opportunistic = 1;
344 : :
345 : 2 : 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 [ + + ]: 6 : while (entry) {
370 [ + - ]: 2 : if (entry->network_ctx == network_ctx) {
371 : 2 : entry = pmksa_cache_clone_entry(pmksa, entry, aa);
372 [ + - ]: 2 : if (entry) {
373 : 2 : wpa_printf(MSG_DEBUG, "RSN: added "
374 : : "opportunistic PMKSA cache entry "
375 : 12 : "for " MACSTR, MAC2STR(aa));
376 : : }
377 : 2 : return entry;
378 : : }
379 : 0 : entry = entry->next;
380 : : }
381 : 6 : 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 : 1037 : struct rsn_pmksa_cache_entry * pmksa_cache_get_current(struct wpa_sm *sm)
391 : : {
392 [ - + ]: 1037 : if (sm == NULL)
393 : 0 : return NULL;
394 : 1037 : 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 : 1013 : void pmksa_cache_clear_current(struct wpa_sm *sm)
403 : : {
404 [ - + ]: 1013 : if (sm == NULL)
405 : 1013 : return;
406 : 1013 : 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 : 275 : 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 : 275 : struct rsn_pmksa_cache *pmksa = sm->pmksa;
424 : 275 : wpa_printf(MSG_DEBUG, "RSN: PMKSA cache search - network_ctx=%p "
425 : : "try_opportunistic=%d", network_ctx, try_opportunistic);
426 [ - + ]: 275 : if (pmkid)
427 : 0 : wpa_hexdump(MSG_DEBUG, "RSN: Search for PMKID",
428 : : pmkid, PMKID_LEN);
429 [ + - ]: 275 : if (bssid)
430 : 275 : wpa_printf(MSG_DEBUG, "RSN: Search for BSSID " MACSTR,
431 : 1650 : MAC2STR(bssid));
432 : :
433 : 275 : sm->cur_pmksa = NULL;
434 [ - + ]: 275 : if (pmkid)
435 : 0 : sm->cur_pmksa = pmksa_cache_get(pmksa, NULL, pmkid,
436 : : network_ctx);
437 [ + - ][ + - ]: 275 : if (sm->cur_pmksa == NULL && bssid)
438 : 275 : sm->cur_pmksa = pmksa_cache_get(pmksa, bssid, NULL,
439 : : network_ctx);
440 [ + + ][ + + ]: 275 : if (sm->cur_pmksa == NULL && try_opportunistic && bssid)
[ + - ]
441 : 2 : sm->cur_pmksa = pmksa_cache_get_opportunistic(pmksa,
442 : : network_ctx,
443 : : bssid);
444 [ + + ]: 275 : if (sm->cur_pmksa) {
445 : 6 : wpa_hexdump(MSG_DEBUG, "RSN: PMKSA cache entry found - PMKID",
446 : 6 : sm->cur_pmksa->pmkid, PMKID_LEN);
447 : 6 : return 0;
448 : : }
449 : 269 : wpa_printf(MSG_DEBUG, "RSN: No PMKSA cache entry found");
450 : 275 : 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 : 11 : int pmksa_cache_list(struct rsn_pmksa_cache *pmksa, char *buf, size_t len)
465 : : {
466 : : int i, ret;
467 : 11 : char *pos = buf;
468 : : struct rsn_pmksa_cache_entry *entry;
469 : : struct os_reltime now;
470 : :
471 : 11 : os_get_reltime(&now);
472 : 11 : ret = os_snprintf(pos, buf + len - pos,
473 : : "Index / AA / PMKID / expiration (in seconds) / "
474 : : "opportunistic\n");
475 [ + - ][ - + ]: 11 : if (ret < 0 || ret >= buf + len - pos)
476 : 0 : return pos - buf;
477 : 11 : pos += ret;
478 : 11 : i = 0;
479 : 11 : entry = pmksa->pmksa;
480 [ + + ]: 28 : while (entry) {
481 : 17 : i++;
482 : 102 : ret = os_snprintf(pos, buf + len - pos, "%d " MACSTR " ",
483 : 102 : i, MAC2STR(entry->aa));
484 [ + - ][ - + ]: 17 : if (ret < 0 || ret >= buf + len - pos)
485 : 0 : return pos - buf;
486 : 17 : pos += ret;
487 : 17 : pos += wpa_snprintf_hex(pos, buf + len - pos, entry->pmkid,
488 : : PMKID_LEN);
489 : 51 : ret = os_snprintf(pos, buf + len - pos, " %d %d\n",
490 : 34 : (int) (entry->expiration - now.sec),
491 : : entry->opportunistic);
492 [ + - ][ - + ]: 17 : if (ret < 0 || ret >= buf + len - pos)
493 : 0 : return pos - buf;
494 : 17 : pos += ret;
495 : 17 : entry = entry->next;
496 : : }
497 : 11 : 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 : 37 : 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 : 37 : pmksa = os_zalloc(sizeof(*pmksa));
516 [ + - ]: 37 : if (pmksa) {
517 : 37 : pmksa->free_cb = free_cb;
518 : 37 : pmksa->ctx = ctx;
519 : 37 : pmksa->sm = sm;
520 : : }
521 : :
522 : 37 : return pmksa;
523 : : }
524 : :
525 : : #endif /* IEEE8021X_EAPOL */
|