preauth.c 6.6 KB

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