preauth.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /*
  2. * hostapd - Authenticator for IEEE 802.11i RSN pre-authentication
  3. * Copyright (c) 2004-2007, 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. #ifdef CONFIG_RSN_PREAUTH
  16. #include "hostapd.h"
  17. #include "config.h"
  18. #include "l2_packet/l2_packet.h"
  19. #include "ieee802_1x.h"
  20. #include "eloop.h"
  21. #include "sta_flags.h"
  22. #include "sta_info.h"
  23. #include "common/wpa_common.h"
  24. #include "eapol_sm.h"
  25. #include "wpa.h"
  26. #include "preauth.h"
  27. #ifndef ETH_P_PREAUTH
  28. #define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
  29. #endif /* ETH_P_PREAUTH */
  30. static const int dot11RSNAConfigPMKLifetime = 43200;
  31. struct rsn_preauth_interface {
  32. struct rsn_preauth_interface *next;
  33. struct hostapd_data *hapd;
  34. struct l2_packet_data *l2;
  35. char *ifname;
  36. int ifindex;
  37. };
  38. static void rsn_preauth_receive(void *ctx, const u8 *src_addr,
  39. const u8 *buf, size_t len)
  40. {
  41. struct rsn_preauth_interface *piface = ctx;
  42. struct hostapd_data *hapd = piface->hapd;
  43. struct ieee802_1x_hdr *hdr;
  44. struct sta_info *sta;
  45. struct l2_ethhdr *ethhdr;
  46. wpa_printf(MSG_DEBUG, "RSN: receive pre-auth packet "
  47. "from interface '%s'", piface->ifname);
  48. if (len < sizeof(*ethhdr) + sizeof(*hdr)) {
  49. wpa_printf(MSG_DEBUG, "RSN: too short pre-auth packet "
  50. "(len=%lu)", (unsigned long) len);
  51. return;
  52. }
  53. ethhdr = (struct l2_ethhdr *) buf;
  54. hdr = (struct ieee802_1x_hdr *) (ethhdr + 1);
  55. if (os_memcmp(ethhdr->h_dest, hapd->own_addr, ETH_ALEN) != 0) {
  56. wpa_printf(MSG_DEBUG, "RSN: pre-auth for foreign address "
  57. MACSTR, MAC2STR(ethhdr->h_dest));
  58. return;
  59. }
  60. sta = ap_get_sta(hapd, ethhdr->h_source);
  61. if (sta && (sta->flags & WLAN_STA_ASSOC)) {
  62. wpa_printf(MSG_DEBUG, "RSN: pre-auth for already association "
  63. "STA " MACSTR, MAC2STR(sta->addr));
  64. return;
  65. }
  66. if (!sta && hdr->type == IEEE802_1X_TYPE_EAPOL_START) {
  67. sta = ap_sta_add(hapd, ethhdr->h_source);
  68. if (sta == NULL)
  69. return;
  70. sta->flags = WLAN_STA_PREAUTH;
  71. ieee802_1x_new_station(hapd, sta);
  72. if (sta->eapol_sm == NULL) {
  73. ap_free_sta(hapd, sta);
  74. sta = NULL;
  75. } else {
  76. sta->eapol_sm->radius_identifier = -1;
  77. sta->eapol_sm->portValid = TRUE;
  78. sta->eapol_sm->flags |= EAPOL_SM_PREAUTH;
  79. }
  80. }
  81. if (sta == NULL)
  82. return;
  83. sta->preauth_iface = piface;
  84. ieee802_1x_receive(hapd, ethhdr->h_source, (u8 *) (ethhdr + 1),
  85. len - sizeof(*ethhdr));
  86. }
  87. static int rsn_preauth_iface_add(struct hostapd_data *hapd, const char *ifname)
  88. {
  89. struct rsn_preauth_interface *piface;
  90. wpa_printf(MSG_DEBUG, "RSN pre-auth interface '%s'", ifname);
  91. piface = os_zalloc(sizeof(*piface));
  92. if (piface == NULL)
  93. return -1;
  94. piface->hapd = hapd;
  95. piface->ifname = os_strdup(ifname);
  96. if (piface->ifname == NULL) {
  97. goto fail1;
  98. }
  99. piface->l2 = l2_packet_init(piface->ifname, NULL, ETH_P_PREAUTH,
  100. rsn_preauth_receive, piface, 1);
  101. if (piface->l2 == NULL) {
  102. wpa_printf(MSG_ERROR, "Failed to open register layer 2 access "
  103. "to ETH_P_PREAUTH");
  104. goto fail2;
  105. }
  106. piface->next = hapd->preauth_iface;
  107. hapd->preauth_iface = piface;
  108. return 0;
  109. fail2:
  110. os_free(piface->ifname);
  111. fail1:
  112. os_free(piface);
  113. return -1;
  114. }
  115. void rsn_preauth_iface_deinit(struct hostapd_data *hapd)
  116. {
  117. struct rsn_preauth_interface *piface, *prev;
  118. piface = hapd->preauth_iface;
  119. hapd->preauth_iface = NULL;
  120. while (piface) {
  121. prev = piface;
  122. piface = piface->next;
  123. l2_packet_deinit(prev->l2);
  124. os_free(prev->ifname);
  125. os_free(prev);
  126. }
  127. }
  128. int rsn_preauth_iface_init(struct hostapd_data *hapd)
  129. {
  130. char *tmp, *start, *end;
  131. if (hapd->conf->rsn_preauth_interfaces == NULL)
  132. return 0;
  133. tmp = os_strdup(hapd->conf->rsn_preauth_interfaces);
  134. if (tmp == NULL)
  135. return -1;
  136. start = tmp;
  137. for (;;) {
  138. while (*start == ' ')
  139. start++;
  140. if (*start == '\0')
  141. break;
  142. end = os_strchr(start, ' ');
  143. if (end)
  144. *end = '\0';
  145. if (rsn_preauth_iface_add(hapd, start)) {
  146. rsn_preauth_iface_deinit(hapd);
  147. return -1;
  148. }
  149. if (end)
  150. start = end + 1;
  151. else
  152. break;
  153. }
  154. os_free(tmp);
  155. return 0;
  156. }
  157. static void rsn_preauth_finished_cb(void *eloop_ctx, void *timeout_ctx)
  158. {
  159. struct hostapd_data *hapd = eloop_ctx;
  160. struct sta_info *sta = timeout_ctx;
  161. wpa_printf(MSG_DEBUG, "RSN: Removing pre-authentication STA entry for "
  162. MACSTR, MAC2STR(sta->addr));
  163. ap_free_sta(hapd, sta);
  164. }
  165. void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta,
  166. int success)
  167. {
  168. const u8 *key;
  169. size_t len;
  170. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  171. HOSTAPD_LEVEL_INFO, "pre-authentication %s",
  172. success ? "succeeded" : "failed");
  173. key = ieee802_1x_get_key(sta->eapol_sm, &len);
  174. if (len > PMK_LEN)
  175. len = PMK_LEN;
  176. if (success && key) {
  177. if (wpa_auth_pmksa_add_preauth(hapd->wpa_auth, key, len,
  178. sta->addr,
  179. dot11RSNAConfigPMKLifetime,
  180. sta->eapol_sm) == 0) {
  181. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  182. HOSTAPD_LEVEL_DEBUG,
  183. "added PMKSA cache entry (pre-auth)");
  184. } else {
  185. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  186. HOSTAPD_LEVEL_DEBUG,
  187. "failed to add PMKSA cache entry "
  188. "(pre-auth)");
  189. }
  190. }
  191. /*
  192. * Finish STA entry removal from timeout in order to avoid freeing
  193. * STA data before the caller has finished processing.
  194. */
  195. eloop_register_timeout(0, 0, rsn_preauth_finished_cb, hapd, sta);
  196. }
  197. void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta,
  198. u8 *buf, size_t len)
  199. {
  200. struct rsn_preauth_interface *piface;
  201. struct l2_ethhdr *ethhdr;
  202. piface = hapd->preauth_iface;
  203. while (piface) {
  204. if (piface == sta->preauth_iface)
  205. break;
  206. piface = piface->next;
  207. }
  208. if (piface == NULL) {
  209. wpa_printf(MSG_DEBUG, "RSN: Could not find pre-authentication "
  210. "interface for " MACSTR, MAC2STR(sta->addr));
  211. return;
  212. }
  213. ethhdr = os_malloc(sizeof(*ethhdr) + len);
  214. if (ethhdr == NULL)
  215. return;
  216. os_memcpy(ethhdr->h_dest, sta->addr, ETH_ALEN);
  217. os_memcpy(ethhdr->h_source, hapd->own_addr, ETH_ALEN);
  218. ethhdr->h_proto = host_to_be16(ETH_P_PREAUTH);
  219. os_memcpy(ethhdr + 1, buf, len);
  220. if (l2_packet_send(piface->l2, sta->addr, ETH_P_PREAUTH, (u8 *) ethhdr,
  221. sizeof(*ethhdr) + len) < 0) {
  222. wpa_printf(MSG_ERROR, "Failed to send preauth packet using "
  223. "l2_packet_send\n");
  224. }
  225. os_free(ethhdr);
  226. }
  227. void rsn_preauth_free_station(struct hostapd_data *hapd, struct sta_info *sta)
  228. {
  229. eloop_cancel_timeout(rsn_preauth_finished_cb, hapd, sta);
  230. }
  231. #endif /* CONFIG_RSN_PREAUTH */