preauth.c 6.7 KB

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