pmksa_cache.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. #ifndef PMKSA_CACHE_H
  15. #define PMKSA_CACHE_H
  16. #include "radius/radius.h"
  17. /**
  18. * struct rsn_pmksa_cache_entry - PMKSA cache entry
  19. */
  20. struct rsn_pmksa_cache_entry {
  21. struct rsn_pmksa_cache_entry *next, *hnext;
  22. u8 pmkid[PMKID_LEN];
  23. u8 pmk[PMK_LEN];
  24. size_t pmk_len;
  25. os_time_t expiration;
  26. int akmp; /* WPA_KEY_MGMT_* */
  27. u8 spa[ETH_ALEN];
  28. u8 *identity;
  29. size_t identity_len;
  30. struct radius_class_data radius_class;
  31. u8 eap_type_authsrv;
  32. int vlan_id;
  33. int opportunistic;
  34. };
  35. struct rsn_pmksa_cache;
  36. struct rsn_pmksa_cache *
  37. pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry,
  38. void *ctx), void *ctx);
  39. void pmksa_cache_auth_deinit(struct rsn_pmksa_cache *pmksa);
  40. struct rsn_pmksa_cache_entry *
  41. pmksa_cache_auth_get(struct rsn_pmksa_cache *pmksa,
  42. const u8 *spa, const u8 *pmkid);
  43. struct rsn_pmksa_cache_entry * pmksa_cache_get_okc(
  44. struct rsn_pmksa_cache *pmksa, const u8 *spa, const u8 *aa,
  45. const u8 *pmkid);
  46. struct rsn_pmksa_cache_entry *
  47. pmksa_cache_auth_add(struct rsn_pmksa_cache *pmksa,
  48. const u8 *pmk, size_t pmk_len,
  49. const u8 *aa, const u8 *spa, int session_timeout,
  50. struct eapol_state_machine *eapol, int akmp);
  51. struct rsn_pmksa_cache_entry *
  52. pmksa_cache_add_okc(struct rsn_pmksa_cache *pmksa,
  53. const struct rsn_pmksa_cache_entry *old_entry,
  54. const u8 *aa, const u8 *pmkid);
  55. void pmksa_cache_to_eapol_data(struct rsn_pmksa_cache_entry *entry,
  56. struct eapol_state_machine *eapol);
  57. #endif /* PMKSA_CACHE_H */