pmksa_cache.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. /*
  2. * hostapd - PMKSA cache for IEEE 802.11i RSN
  3. * Copyright (c) 2004-2008, 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. #include "includes.h"
  15. #include "common.h"
  16. #include "sta_info.h"
  17. #include "config.h"
  18. #include "common.h"
  19. #include "eloop.h"
  20. #include "eapol_auth/eapol_auth_sm.h"
  21. #include "eapol_auth/eapol_auth_sm_i.h"
  22. #include "pmksa_cache.h"
  23. static const int pmksa_cache_max_entries = 1024;
  24. static const int dot11RSNAConfigPMKLifetime = 43200;
  25. struct rsn_pmksa_cache {
  26. #define PMKID_HASH_SIZE 128
  27. #define PMKID_HASH(pmkid) (unsigned int) ((pmkid)[0] & 0x7f)
  28. struct rsn_pmksa_cache_entry *pmkid[PMKID_HASH_SIZE];
  29. struct rsn_pmksa_cache_entry *pmksa;
  30. int pmksa_count;
  31. void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx);
  32. void *ctx;
  33. };
  34. static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa);
  35. static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry)
  36. {
  37. if (entry == NULL)
  38. return;
  39. os_free(entry->identity);
  40. #ifndef CONFIG_NO_RADIUS
  41. radius_free_class(&entry->radius_class);
  42. #endif /* CONFIG_NO_RADIUS */
  43. os_free(entry);
  44. }
  45. static void pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa,
  46. struct rsn_pmksa_cache_entry *entry)
  47. {
  48. struct rsn_pmksa_cache_entry *pos, *prev;
  49. pmksa->pmksa_count--;
  50. pmksa->free_cb(entry, pmksa->ctx);
  51. pos = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
  52. prev = NULL;
  53. while (pos) {
  54. if (pos == entry) {
  55. if (prev != NULL) {
  56. prev->hnext = pos->hnext;
  57. } else {
  58. pmksa->pmkid[PMKID_HASH(entry->pmkid)] =
  59. pos->hnext;
  60. }
  61. break;
  62. }
  63. prev = pos;
  64. pos = pos->hnext;
  65. }
  66. pos = pmksa->pmksa;
  67. prev = NULL;
  68. while (pos) {
  69. if (pos == entry) {
  70. if (prev != NULL)
  71. prev->next = pos->next;
  72. else
  73. pmksa->pmksa = pos->next;
  74. break;
  75. }
  76. prev = pos;
  77. pos = pos->next;
  78. }
  79. _pmksa_cache_free_entry(entry);
  80. }
  81. static void pmksa_cache_expire(void *eloop_ctx, void *timeout_ctx)
  82. {
  83. struct rsn_pmksa_cache *pmksa = eloop_ctx;
  84. struct os_time now;
  85. os_get_time(&now);
  86. while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
  87. struct rsn_pmksa_cache_entry *entry = pmksa->pmksa;
  88. pmksa->pmksa = entry->next;
  89. wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
  90. MACSTR, MAC2STR(entry->spa));
  91. pmksa_cache_free_entry(pmksa, entry);
  92. }
  93. pmksa_cache_set_expiration(pmksa);
  94. }
  95. static void pmksa_cache_set_expiration(struct rsn_pmksa_cache *pmksa)
  96. {
  97. int sec;
  98. struct os_time now;
  99. eloop_cancel_timeout(pmksa_cache_expire, pmksa, NULL);
  100. if (pmksa->pmksa == NULL)
  101. return;
  102. os_get_time(&now);
  103. sec = pmksa->pmksa->expiration - now.sec;
  104. if (sec < 0)
  105. sec = 0;
  106. eloop_register_timeout(sec + 1, 0, pmksa_cache_expire, pmksa, NULL);
  107. }
  108. static void pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry,
  109. struct eapol_state_machine *eapol)
  110. {
  111. if (eapol == NULL)
  112. return;
  113. if (eapol->identity) {
  114. entry->identity = os_malloc(eapol->identity_len);
  115. if (entry->identity) {
  116. entry->identity_len = eapol->identity_len;
  117. os_memcpy(entry->identity, eapol->identity,
  118. eapol->identity_len);
  119. }
  120. }
  121. #ifndef CONFIG_NO_RADIUS
  122. radius_copy_class(&entry->radius_class, &eapol->radius_class);
  123. #endif /* CONFIG_NO_RADIUS */
  124. entry->eap_type_authsrv = eapol->eap_type_authsrv;
  125. entry->vlan_id = ((struct sta_info *) eapol->sta)->vlan_id;
  126. }
  127. void pmksa_cache_to_eapol_data(struct rsn_pmksa_cache_entry *entry,
  128. struct eapol_state_machine *eapol)
  129. {
  130. if (entry == NULL || eapol == NULL)
  131. return;
  132. if (entry->identity) {
  133. os_free(eapol->identity);
  134. eapol->identity = os_malloc(entry->identity_len);
  135. if (eapol->identity) {
  136. eapol->identity_len = entry->identity_len;
  137. os_memcpy(eapol->identity, entry->identity,
  138. entry->identity_len);
  139. }
  140. wpa_hexdump_ascii(MSG_DEBUG, "STA identity from PMKSA",
  141. eapol->identity, eapol->identity_len);
  142. }
  143. #ifndef CONFIG_NO_RADIUS
  144. radius_free_class(&eapol->radius_class);
  145. radius_copy_class(&eapol->radius_class, &entry->radius_class);
  146. #endif /* CONFIG_NO_RADIUS */
  147. if (eapol->radius_class.attr) {
  148. wpa_printf(MSG_DEBUG, "Copied %lu Class attribute(s) from "
  149. "PMKSA", (unsigned long) eapol->radius_class.count);
  150. }
  151. eapol->eap_type_authsrv = entry->eap_type_authsrv;
  152. ((struct sta_info *) eapol->sta)->vlan_id = entry->vlan_id;
  153. }
  154. static void pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa,
  155. struct rsn_pmksa_cache_entry *entry)
  156. {
  157. struct rsn_pmksa_cache_entry *pos, *prev;
  158. /* Add the new entry; order by expiration time */
  159. pos = pmksa->pmksa;
  160. prev = NULL;
  161. while (pos) {
  162. if (pos->expiration > entry->expiration)
  163. break;
  164. prev = pos;
  165. pos = pos->next;
  166. }
  167. if (prev == NULL) {
  168. entry->next = pmksa->pmksa;
  169. pmksa->pmksa = entry;
  170. } else {
  171. entry->next = prev->next;
  172. prev->next = entry;
  173. }
  174. entry->hnext = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
  175. pmksa->pmkid[PMKID_HASH(entry->pmkid)] = entry;
  176. pmksa->pmksa_count++;
  177. wpa_printf(MSG_DEBUG, "RSN: added PMKSA cache entry for " MACSTR,
  178. MAC2STR(entry->spa));
  179. wpa_hexdump(MSG_DEBUG, "RSN: added PMKID", entry->pmkid, PMKID_LEN);
  180. }
  181. /**
  182. * pmksa_cache_auth_add - Add a PMKSA cache entry
  183. * @pmksa: Pointer to PMKSA cache data from pmksa_cache_auth_init()
  184. * @pmk: The new pairwise master key
  185. * @pmk_len: PMK length in bytes, usually PMK_LEN (32)
  186. * @aa: Authenticator address
  187. * @spa: Supplicant address
  188. * @session_timeout: Session timeout
  189. * @eapol: Pointer to EAPOL state machine data
  190. * @akmp: WPA_KEY_MGMT_* used in key derivation
  191. * Returns: Pointer to the added PMKSA cache entry or %NULL on error
  192. *
  193. * This function create a PMKSA entry for a new PMK and adds it to the PMKSA
  194. * cache. If an old entry is already in the cache for the same Supplicant,
  195. * this entry will be replaced with the new entry. PMKID will be calculated
  196. * based on the PMK.
  197. */
  198. struct rsn_pmksa_cache_entry *
  199. pmksa_cache_auth_add(struct rsn_pmksa_cache *pmksa,
  200. const u8 *pmk, size_t pmk_len,
  201. const u8 *aa, const u8 *spa, int session_timeout,
  202. struct eapol_state_machine *eapol, int akmp)
  203. {
  204. struct rsn_pmksa_cache_entry *entry, *pos;
  205. struct os_time now;
  206. if (pmk_len > PMK_LEN)
  207. return NULL;
  208. entry = os_zalloc(sizeof(*entry));
  209. if (entry == NULL)
  210. return NULL;
  211. os_memcpy(entry->pmk, pmk, pmk_len);
  212. entry->pmk_len = pmk_len;
  213. rsn_pmkid(pmk, pmk_len, aa, spa, entry->pmkid,
  214. wpa_key_mgmt_sha256(akmp));
  215. os_get_time(&now);
  216. entry->expiration = now.sec;
  217. if (session_timeout > 0)
  218. entry->expiration += session_timeout;
  219. else
  220. entry->expiration += dot11RSNAConfigPMKLifetime;
  221. entry->akmp = akmp;
  222. os_memcpy(entry->spa, spa, ETH_ALEN);
  223. pmksa_cache_from_eapol_data(entry, eapol);
  224. /* Replace an old entry for the same STA (if found) with the new entry
  225. */
  226. pos = pmksa_cache_auth_get(pmksa, spa, NULL);
  227. if (pos)
  228. pmksa_cache_free_entry(pmksa, pos);
  229. if (pmksa->pmksa_count >= pmksa_cache_max_entries && pmksa->pmksa) {
  230. /* Remove the oldest entry to make room for the new entry */
  231. wpa_printf(MSG_DEBUG, "RSN: removed the oldest PMKSA cache "
  232. "entry (for " MACSTR ") to make room for new one",
  233. MAC2STR(pmksa->pmksa->spa));
  234. pmksa_cache_free_entry(pmksa, pmksa->pmksa);
  235. }
  236. pmksa_cache_link_entry(pmksa, entry);
  237. return entry;
  238. }
  239. struct rsn_pmksa_cache_entry *
  240. pmksa_cache_add_okc(struct rsn_pmksa_cache *pmksa,
  241. const struct rsn_pmksa_cache_entry *old_entry,
  242. const u8 *aa, const u8 *pmkid)
  243. {
  244. struct rsn_pmksa_cache_entry *entry;
  245. entry = os_zalloc(sizeof(*entry));
  246. if (entry == NULL)
  247. return NULL;
  248. os_memcpy(entry->pmkid, pmkid, PMKID_LEN);
  249. os_memcpy(entry->pmk, old_entry->pmk, old_entry->pmk_len);
  250. entry->pmk_len = old_entry->pmk_len;
  251. entry->expiration = old_entry->expiration;
  252. entry->akmp = old_entry->akmp;
  253. os_memcpy(entry->spa, old_entry->spa, ETH_ALEN);
  254. entry->opportunistic = 1;
  255. if (old_entry->identity) {
  256. entry->identity = os_malloc(old_entry->identity_len);
  257. if (entry->identity) {
  258. entry->identity_len = old_entry->identity_len;
  259. os_memcpy(entry->identity, old_entry->identity,
  260. old_entry->identity_len);
  261. }
  262. }
  263. #ifndef CONFIG_NO_RADIUS
  264. radius_copy_class(&entry->radius_class, &old_entry->radius_class);
  265. #endif /* CONFIG_NO_RADIUS */
  266. entry->eap_type_authsrv = old_entry->eap_type_authsrv;
  267. entry->vlan_id = old_entry->vlan_id;
  268. entry->opportunistic = 1;
  269. pmksa_cache_link_entry(pmksa, entry);
  270. return entry;
  271. }
  272. /**
  273. * pmksa_cache_auth_deinit - Free all entries in PMKSA cache
  274. * @pmksa: Pointer to PMKSA cache data from pmksa_cache_auth_init()
  275. */
  276. void pmksa_cache_auth_deinit(struct rsn_pmksa_cache *pmksa)
  277. {
  278. struct rsn_pmksa_cache_entry *entry, *prev;
  279. int i;
  280. if (pmksa == NULL)
  281. return;
  282. entry = pmksa->pmksa;
  283. while (entry) {
  284. prev = entry;
  285. entry = entry->next;
  286. _pmksa_cache_free_entry(prev);
  287. }
  288. eloop_cancel_timeout(pmksa_cache_expire, pmksa, NULL);
  289. for (i = 0; i < PMKID_HASH_SIZE; i++)
  290. pmksa->pmkid[i] = NULL;
  291. os_free(pmksa);
  292. }
  293. /**
  294. * pmksa_cache_auth_get - Fetch a PMKSA cache entry
  295. * @pmksa: Pointer to PMKSA cache data from pmksa_cache_auth_init()
  296. * @spa: Supplicant address or %NULL to match any
  297. * @pmkid: PMKID or %NULL to match any
  298. * Returns: Pointer to PMKSA cache entry or %NULL if no match was found
  299. */
  300. struct rsn_pmksa_cache_entry *
  301. pmksa_cache_auth_get(struct rsn_pmksa_cache *pmksa,
  302. const u8 *spa, const u8 *pmkid)
  303. {
  304. struct rsn_pmksa_cache_entry *entry;
  305. if (pmkid)
  306. entry = pmksa->pmkid[PMKID_HASH(pmkid)];
  307. else
  308. entry = pmksa->pmksa;
  309. while (entry) {
  310. if ((spa == NULL ||
  311. os_memcmp(entry->spa, spa, ETH_ALEN) == 0) &&
  312. (pmkid == NULL ||
  313. os_memcmp(entry->pmkid, pmkid, PMKID_LEN) == 0))
  314. return entry;
  315. entry = pmkid ? entry->hnext : entry->next;
  316. }
  317. return NULL;
  318. }
  319. /**
  320. * pmksa_cache_get_okc - Fetch a PMKSA cache entry using OKC
  321. * @pmksa: Pointer to PMKSA cache data from pmksa_cache_auth_init()
  322. * @aa: Authenticator address
  323. * @spa: Supplicant address
  324. * @pmkid: PMKID
  325. * Returns: Pointer to PMKSA cache entry or %NULL if no match was found
  326. *
  327. * Use opportunistic key caching (OKC) to find a PMK for a supplicant.
  328. */
  329. struct rsn_pmksa_cache_entry * pmksa_cache_get_okc(
  330. struct rsn_pmksa_cache *pmksa, const u8 *aa, const u8 *spa,
  331. const u8 *pmkid)
  332. {
  333. struct rsn_pmksa_cache_entry *entry;
  334. u8 new_pmkid[PMKID_LEN];
  335. entry = pmksa->pmksa;
  336. while (entry) {
  337. if (os_memcmp(entry->spa, spa, ETH_ALEN) != 0)
  338. continue;
  339. rsn_pmkid(entry->pmk, entry->pmk_len, aa, spa, new_pmkid,
  340. wpa_key_mgmt_sha256(entry->akmp));
  341. if (os_memcmp(new_pmkid, pmkid, PMKID_LEN) == 0)
  342. return entry;
  343. entry = entry->next;
  344. }
  345. return NULL;
  346. }
  347. /**
  348. * pmksa_cache_auth_init - Initialize PMKSA cache
  349. * @free_cb: Callback function to be called when a PMKSA cache entry is freed
  350. * @ctx: Context pointer for free_cb function
  351. * Returns: Pointer to PMKSA cache data or %NULL on failure
  352. */
  353. struct rsn_pmksa_cache *
  354. pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry,
  355. void *ctx), void *ctx)
  356. {
  357. struct rsn_pmksa_cache *pmksa;
  358. pmksa = os_zalloc(sizeof(*pmksa));
  359. if (pmksa) {
  360. pmksa->free_cb = free_cb;
  361. pmksa->ctx = ctx;
  362. }
  363. return pmksa;
  364. }