ieee802_1x.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. /*
  2. * hostapd / IEEE 802.1X-2004 Authenticator
  3. * Copyright (c) 2002-2009, 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 "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "utils/eloop.h"
  17. #include "crypto/md5.h"
  18. #include "crypto/crypto.h"
  19. #include "common/ieee802_11_defs.h"
  20. #include "common/wpa_ctrl.h"
  21. #include "radius/radius.h"
  22. #include "radius/radius_client.h"
  23. #include "eap_server/eap.h"
  24. #include "eap_common/eap_wsc_common.h"
  25. #include "eapol_auth/eapol_auth_sm.h"
  26. #include "eapol_auth/eapol_auth_sm_i.h"
  27. #include "hostapd.h"
  28. #include "accounting.h"
  29. #include "sta_info.h"
  30. #include "wpa_auth.h"
  31. #include "preauth_auth.h"
  32. #include "pmksa_cache_auth.h"
  33. #include "ap_config.h"
  34. #include "ieee802_1x.h"
  35. static void ieee802_1x_finished(struct hostapd_data *hapd,
  36. struct sta_info *sta, int success);
  37. static void ieee802_1x_send(struct hostapd_data *hapd, struct sta_info *sta,
  38. u8 type, const u8 *data, size_t datalen)
  39. {
  40. u8 *buf;
  41. struct ieee802_1x_hdr *xhdr;
  42. size_t len;
  43. int encrypt = 0;
  44. len = sizeof(*xhdr) + datalen;
  45. buf = os_zalloc(len);
  46. if (buf == NULL) {
  47. wpa_printf(MSG_ERROR, "malloc() failed for "
  48. "ieee802_1x_send(len=%lu)",
  49. (unsigned long) len);
  50. return;
  51. }
  52. xhdr = (struct ieee802_1x_hdr *) buf;
  53. xhdr->version = hapd->conf->eapol_version;
  54. xhdr->type = type;
  55. xhdr->length = host_to_be16(datalen);
  56. if (datalen > 0 && data != NULL)
  57. os_memcpy(xhdr + 1, data, datalen);
  58. if (wpa_auth_pairwise_set(sta->wpa_sm))
  59. encrypt = 1;
  60. if (sta->flags & WLAN_STA_PREAUTH) {
  61. rsn_preauth_send(hapd, sta, buf, len);
  62. } else {
  63. hapd->drv.send_eapol(hapd, sta->addr, buf, len, encrypt);
  64. }
  65. os_free(buf);
  66. }
  67. void ieee802_1x_set_sta_authorized(struct hostapd_data *hapd,
  68. struct sta_info *sta, int authorized)
  69. {
  70. int res;
  71. if (sta->flags & WLAN_STA_PREAUTH)
  72. return;
  73. if (authorized) {
  74. if (!(sta->flags & WLAN_STA_AUTHORIZED))
  75. wpa_msg(hapd->msg_ctx, MSG_INFO,
  76. AP_STA_CONNECTED MACSTR, MAC2STR(sta->addr));
  77. sta->flags |= WLAN_STA_AUTHORIZED;
  78. res = hapd->drv.set_authorized(hapd, sta, 1);
  79. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  80. HOSTAPD_LEVEL_DEBUG, "authorizing port");
  81. } else {
  82. if ((sta->flags & (WLAN_STA_AUTHORIZED | WLAN_STA_ASSOC)) ==
  83. (WLAN_STA_AUTHORIZED | WLAN_STA_ASSOC))
  84. wpa_msg(hapd->msg_ctx, MSG_INFO,
  85. AP_STA_DISCONNECTED MACSTR,
  86. MAC2STR(sta->addr));
  87. sta->flags &= ~WLAN_STA_AUTHORIZED;
  88. res = hapd->drv.set_authorized(hapd, sta, 0);
  89. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  90. HOSTAPD_LEVEL_DEBUG, "unauthorizing port");
  91. }
  92. if (res && errno != ENOENT) {
  93. printf("Could not set station " MACSTR " flags for kernel "
  94. "driver (errno=%d).\n", MAC2STR(sta->addr), errno);
  95. }
  96. if (authorized)
  97. accounting_sta_start(hapd, sta);
  98. }
  99. static void ieee802_1x_tx_key_one(struct hostapd_data *hapd,
  100. struct sta_info *sta,
  101. int idx, int broadcast,
  102. u8 *key_data, size_t key_len)
  103. {
  104. u8 *buf, *ekey;
  105. struct ieee802_1x_hdr *hdr;
  106. struct ieee802_1x_eapol_key *key;
  107. size_t len, ekey_len;
  108. struct eapol_state_machine *sm = sta->eapol_sm;
  109. if (sm == NULL)
  110. return;
  111. len = sizeof(*key) + key_len;
  112. buf = os_zalloc(sizeof(*hdr) + len);
  113. if (buf == NULL)
  114. return;
  115. hdr = (struct ieee802_1x_hdr *) buf;
  116. key = (struct ieee802_1x_eapol_key *) (hdr + 1);
  117. key->type = EAPOL_KEY_TYPE_RC4;
  118. key->key_length = htons(key_len);
  119. wpa_get_ntp_timestamp(key->replay_counter);
  120. if (os_get_random(key->key_iv, sizeof(key->key_iv))) {
  121. wpa_printf(MSG_ERROR, "Could not get random numbers");
  122. os_free(buf);
  123. return;
  124. }
  125. key->key_index = idx | (broadcast ? 0 : BIT(7));
  126. if (hapd->conf->eapol_key_index_workaround) {
  127. /* According to some information, WinXP Supplicant seems to
  128. * interpret bit7 as an indication whether the key is to be
  129. * activated, so make it possible to enable workaround that
  130. * sets this bit for all keys. */
  131. key->key_index |= BIT(7);
  132. }
  133. /* Key is encrypted using "Key-IV + MSK[0..31]" as the RC4-key and
  134. * MSK[32..63] is used to sign the message. */
  135. if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
  136. wpa_printf(MSG_ERROR, "No eapKeyData available for encrypting "
  137. "and signing EAPOL-Key");
  138. os_free(buf);
  139. return;
  140. }
  141. os_memcpy((u8 *) (key + 1), key_data, key_len);
  142. ekey_len = sizeof(key->key_iv) + 32;
  143. ekey = os_malloc(ekey_len);
  144. if (ekey == NULL) {
  145. wpa_printf(MSG_ERROR, "Could not encrypt key");
  146. os_free(buf);
  147. return;
  148. }
  149. os_memcpy(ekey, key->key_iv, sizeof(key->key_iv));
  150. os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
  151. rc4_skip(ekey, ekey_len, 0, (u8 *) (key + 1), key_len);
  152. os_free(ekey);
  153. /* This header is needed here for HMAC-MD5, but it will be regenerated
  154. * in ieee802_1x_send() */
  155. hdr->version = hapd->conf->eapol_version;
  156. hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
  157. hdr->length = host_to_be16(len);
  158. hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
  159. key->key_signature);
  160. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key to " MACSTR
  161. " (%s index=%d)", MAC2STR(sm->addr),
  162. broadcast ? "broadcast" : "unicast", idx);
  163. ieee802_1x_send(hapd, sta, IEEE802_1X_TYPE_EAPOL_KEY, (u8 *) key, len);
  164. if (sta->eapol_sm)
  165. sta->eapol_sm->dot1xAuthEapolFramesTx++;
  166. os_free(buf);
  167. }
  168. #ifndef CONFIG_NO_VLAN
  169. static struct hostapd_wep_keys *
  170. ieee802_1x_group_alloc(struct hostapd_data *hapd, const char *ifname)
  171. {
  172. struct hostapd_wep_keys *key;
  173. key = os_zalloc(sizeof(*key));
  174. if (key == NULL)
  175. return NULL;
  176. key->default_len = hapd->conf->default_wep_key_len;
  177. if (key->idx >= hapd->conf->broadcast_key_idx_max ||
  178. key->idx < hapd->conf->broadcast_key_idx_min)
  179. key->idx = hapd->conf->broadcast_key_idx_min;
  180. else
  181. key->idx++;
  182. if (!key->key[key->idx])
  183. key->key[key->idx] = os_malloc(key->default_len);
  184. if (key->key[key->idx] == NULL ||
  185. os_get_random(key->key[key->idx], key->default_len)) {
  186. printf("Could not generate random WEP key (dynamic VLAN).\n");
  187. os_free(key->key[key->idx]);
  188. key->key[key->idx] = NULL;
  189. os_free(key);
  190. return NULL;
  191. }
  192. key->len[key->idx] = key->default_len;
  193. wpa_printf(MSG_DEBUG, "%s: Default WEP idx %d for dynamic VLAN\n",
  194. ifname, key->idx);
  195. wpa_hexdump_key(MSG_DEBUG, "Default WEP key (dynamic VLAN)",
  196. key->key[key->idx], key->len[key->idx]);
  197. if (hapd->drv.set_key(ifname, hapd, WPA_ALG_WEP, NULL, key->idx, 1,
  198. NULL, 0, key->key[key->idx], key->len[key->idx]))
  199. printf("Could not set dynamic VLAN WEP encryption key.\n");
  200. hapd->drv.set_drv_ieee8021x(hapd, ifname, 1);
  201. return key;
  202. }
  203. static struct hostapd_wep_keys *
  204. ieee802_1x_get_group(struct hostapd_data *hapd, struct hostapd_ssid *ssid,
  205. size_t vlan_id)
  206. {
  207. const char *ifname;
  208. if (vlan_id == 0)
  209. return &ssid->wep;
  210. if (vlan_id <= ssid->max_dyn_vlan_keys && ssid->dyn_vlan_keys &&
  211. ssid->dyn_vlan_keys[vlan_id])
  212. return ssid->dyn_vlan_keys[vlan_id];
  213. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Creating new group "
  214. "state machine for VLAN ID %lu",
  215. (unsigned long) vlan_id);
  216. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan, vlan_id);
  217. if (ifname == NULL) {
  218. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Unknown VLAN ID %lu - "
  219. "cannot create group key state machine",
  220. (unsigned long) vlan_id);
  221. return NULL;
  222. }
  223. if (ssid->dyn_vlan_keys == NULL) {
  224. int size = (vlan_id + 1) * sizeof(ssid->dyn_vlan_keys[0]);
  225. ssid->dyn_vlan_keys = os_zalloc(size);
  226. if (ssid->dyn_vlan_keys == NULL)
  227. return NULL;
  228. ssid->max_dyn_vlan_keys = vlan_id;
  229. }
  230. if (ssid->max_dyn_vlan_keys < vlan_id) {
  231. struct hostapd_wep_keys **na;
  232. int size = (vlan_id + 1) * sizeof(ssid->dyn_vlan_keys[0]);
  233. na = os_realloc(ssid->dyn_vlan_keys, size);
  234. if (na == NULL)
  235. return NULL;
  236. ssid->dyn_vlan_keys = na;
  237. os_memset(&ssid->dyn_vlan_keys[ssid->max_dyn_vlan_keys + 1], 0,
  238. (vlan_id - ssid->max_dyn_vlan_keys) *
  239. sizeof(ssid->dyn_vlan_keys[0]));
  240. ssid->max_dyn_vlan_keys = vlan_id;
  241. }
  242. ssid->dyn_vlan_keys[vlan_id] = ieee802_1x_group_alloc(hapd, ifname);
  243. return ssid->dyn_vlan_keys[vlan_id];
  244. }
  245. #endif /* CONFIG_NO_VLAN */
  246. void ieee802_1x_tx_key(struct hostapd_data *hapd, struct sta_info *sta)
  247. {
  248. struct eapol_authenticator *eapol = hapd->eapol_auth;
  249. struct eapol_state_machine *sm = sta->eapol_sm;
  250. #ifndef CONFIG_NO_VLAN
  251. struct hostapd_wep_keys *key = NULL;
  252. int vlan_id;
  253. #endif /* CONFIG_NO_VLAN */
  254. if (sm == NULL || !sm->eap_if->eapKeyData)
  255. return;
  256. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key(s) to " MACSTR,
  257. MAC2STR(sta->addr));
  258. #ifndef CONFIG_NO_VLAN
  259. vlan_id = sta->vlan_id;
  260. if (vlan_id < 0 || vlan_id > MAX_VLAN_ID)
  261. vlan_id = 0;
  262. if (vlan_id) {
  263. key = ieee802_1x_get_group(hapd, sta->ssid, vlan_id);
  264. if (key && key->key[key->idx])
  265. ieee802_1x_tx_key_one(hapd, sta, key->idx, 1,
  266. key->key[key->idx],
  267. key->len[key->idx]);
  268. } else
  269. #endif /* CONFIG_NO_VLAN */
  270. if (eapol->default_wep_key) {
  271. ieee802_1x_tx_key_one(hapd, sta, eapol->default_wep_key_idx, 1,
  272. eapol->default_wep_key,
  273. hapd->conf->default_wep_key_len);
  274. }
  275. if (hapd->conf->individual_wep_key_len > 0) {
  276. u8 *ikey;
  277. ikey = os_malloc(hapd->conf->individual_wep_key_len);
  278. if (ikey == NULL ||
  279. os_get_random(ikey, hapd->conf->individual_wep_key_len)) {
  280. wpa_printf(MSG_ERROR, "Could not generate random "
  281. "individual WEP key.");
  282. os_free(ikey);
  283. return;
  284. }
  285. wpa_hexdump_key(MSG_DEBUG, "Individual WEP key",
  286. ikey, hapd->conf->individual_wep_key_len);
  287. ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
  288. hapd->conf->individual_wep_key_len);
  289. /* TODO: set encryption in TX callback, i.e., only after STA
  290. * has ACKed EAPOL-Key frame */
  291. if (hapd->drv.set_key(hapd->conf->iface, hapd, WPA_ALG_WEP,
  292. sta->addr, 0, 1, NULL, 0, ikey,
  293. hapd->conf->individual_wep_key_len)) {
  294. wpa_printf(MSG_ERROR, "Could not set individual WEP "
  295. "encryption.");
  296. }
  297. os_free(ikey);
  298. }
  299. }
  300. const char *radius_mode_txt(struct hostapd_data *hapd)
  301. {
  302. switch (hapd->iface->conf->hw_mode) {
  303. case HOSTAPD_MODE_IEEE80211A:
  304. return "802.11a";
  305. case HOSTAPD_MODE_IEEE80211G:
  306. return "802.11g";
  307. case HOSTAPD_MODE_IEEE80211B:
  308. default:
  309. return "802.11b";
  310. }
  311. }
  312. int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *sta)
  313. {
  314. int i;
  315. u8 rate = 0;
  316. for (i = 0; i < sta->supported_rates_len; i++)
  317. if ((sta->supported_rates[i] & 0x7f) > rate)
  318. rate = sta->supported_rates[i] & 0x7f;
  319. return rate;
  320. }
  321. #ifndef CONFIG_NO_RADIUS
  322. static void ieee802_1x_learn_identity(struct hostapd_data *hapd,
  323. struct eapol_state_machine *sm,
  324. const u8 *eap, size_t len)
  325. {
  326. const u8 *identity;
  327. size_t identity_len;
  328. if (len <= sizeof(struct eap_hdr) ||
  329. eap[sizeof(struct eap_hdr)] != EAP_TYPE_IDENTITY)
  330. return;
  331. identity = eap_get_identity(sm->eap, &identity_len);
  332. if (identity == NULL)
  333. return;
  334. /* Save station identity for future RADIUS packets */
  335. os_free(sm->identity);
  336. sm->identity = os_malloc(identity_len + 1);
  337. if (sm->identity == NULL) {
  338. sm->identity_len = 0;
  339. return;
  340. }
  341. os_memcpy(sm->identity, identity, identity_len);
  342. sm->identity_len = identity_len;
  343. sm->identity[identity_len] = '\0';
  344. hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
  345. HOSTAPD_LEVEL_DEBUG, "STA identity '%s'", sm->identity);
  346. sm->dot1xAuthEapolRespIdFramesRx++;
  347. }
  348. static void ieee802_1x_encapsulate_radius(struct hostapd_data *hapd,
  349. struct sta_info *sta,
  350. const u8 *eap, size_t len)
  351. {
  352. struct radius_msg *msg;
  353. char buf[128];
  354. struct eapol_state_machine *sm = sta->eapol_sm;
  355. if (sm == NULL)
  356. return;
  357. ieee802_1x_learn_identity(hapd, sm, eap, len);
  358. wpa_printf(MSG_DEBUG, "Encapsulating EAP message into a RADIUS "
  359. "packet");
  360. sm->radius_identifier = radius_client_get_id(hapd->radius);
  361. msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
  362. sm->radius_identifier);
  363. if (msg == NULL) {
  364. printf("Could not create net RADIUS packet\n");
  365. return;
  366. }
  367. radius_msg_make_authenticator(msg, (u8 *) sta, sizeof(*sta));
  368. if (sm->identity &&
  369. !radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
  370. sm->identity, sm->identity_len)) {
  371. printf("Could not add User-Name\n");
  372. goto fail;
  373. }
  374. if (hapd->conf->own_ip_addr.af == AF_INET &&
  375. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
  376. (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
  377. printf("Could not add NAS-IP-Address\n");
  378. goto fail;
  379. }
  380. #ifdef CONFIG_IPV6
  381. if (hapd->conf->own_ip_addr.af == AF_INET6 &&
  382. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
  383. (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
  384. printf("Could not add NAS-IPv6-Address\n");
  385. goto fail;
  386. }
  387. #endif /* CONFIG_IPV6 */
  388. if (hapd->conf->nas_identifier &&
  389. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
  390. (u8 *) hapd->conf->nas_identifier,
  391. os_strlen(hapd->conf->nas_identifier))) {
  392. printf("Could not add NAS-Identifier\n");
  393. goto fail;
  394. }
  395. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT, sta->aid)) {
  396. printf("Could not add NAS-Port\n");
  397. goto fail;
  398. }
  399. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":%s",
  400. MAC2STR(hapd->own_addr), hapd->conf->ssid.ssid);
  401. buf[sizeof(buf) - 1] = '\0';
  402. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
  403. (u8 *) buf, os_strlen(buf))) {
  404. printf("Could not add Called-Station-Id\n");
  405. goto fail;
  406. }
  407. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  408. MAC2STR(sta->addr));
  409. buf[sizeof(buf) - 1] = '\0';
  410. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  411. (u8 *) buf, os_strlen(buf))) {
  412. printf("Could not add Calling-Station-Id\n");
  413. goto fail;
  414. }
  415. /* TODO: should probably check MTU from driver config; 2304 is max for
  416. * IEEE 802.11, but use 1400 to avoid problems with too large packets
  417. */
  418. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_FRAMED_MTU, 1400)) {
  419. printf("Could not add Framed-MTU\n");
  420. goto fail;
  421. }
  422. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
  423. RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
  424. printf("Could not add NAS-Port-Type\n");
  425. goto fail;
  426. }
  427. if (sta->flags & WLAN_STA_PREAUTH) {
  428. os_strlcpy(buf, "IEEE 802.11i Pre-Authentication",
  429. sizeof(buf));
  430. } else {
  431. os_snprintf(buf, sizeof(buf), "CONNECT %d%sMbps %s",
  432. radius_sta_rate(hapd, sta) / 2,
  433. (radius_sta_rate(hapd, sta) & 1) ? ".5" : "",
  434. radius_mode_txt(hapd));
  435. buf[sizeof(buf) - 1] = '\0';
  436. }
  437. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  438. (u8 *) buf, os_strlen(buf))) {
  439. printf("Could not add Connect-Info\n");
  440. goto fail;
  441. }
  442. if (eap && !radius_msg_add_eap(msg, eap, len)) {
  443. printf("Could not add EAP-Message\n");
  444. goto fail;
  445. }
  446. /* State attribute must be copied if and only if this packet is
  447. * Access-Request reply to the previous Access-Challenge */
  448. if (sm->last_recv_radius &&
  449. radius_msg_get_hdr(sm->last_recv_radius)->code ==
  450. RADIUS_CODE_ACCESS_CHALLENGE) {
  451. int res = radius_msg_copy_attr(msg, sm->last_recv_radius,
  452. RADIUS_ATTR_STATE);
  453. if (res < 0) {
  454. printf("Could not copy State attribute from previous "
  455. "Access-Challenge\n");
  456. goto fail;
  457. }
  458. if (res > 0) {
  459. wpa_printf(MSG_DEBUG, "Copied RADIUS State Attribute");
  460. }
  461. }
  462. radius_client_send(hapd->radius, msg, RADIUS_AUTH, sta->addr);
  463. return;
  464. fail:
  465. radius_msg_free(msg);
  466. }
  467. #endif /* CONFIG_NO_RADIUS */
  468. static void handle_eap_response(struct hostapd_data *hapd,
  469. struct sta_info *sta, struct eap_hdr *eap,
  470. size_t len)
  471. {
  472. u8 type, *data;
  473. struct eapol_state_machine *sm = sta->eapol_sm;
  474. if (sm == NULL)
  475. return;
  476. data = (u8 *) (eap + 1);
  477. if (len < sizeof(*eap) + 1) {
  478. printf("handle_eap_response: too short response data\n");
  479. return;
  480. }
  481. sm->eap_type_supp = type = data[0];
  482. hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
  483. HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d "
  484. "id=%d len=%d) from STA: EAP Response-%s (%d)",
  485. eap->code, eap->identifier, be_to_host16(eap->length),
  486. eap_server_get_name(0, type), type);
  487. sm->dot1xAuthEapolRespFramesRx++;
  488. wpabuf_free(sm->eap_if->eapRespData);
  489. sm->eap_if->eapRespData = wpabuf_alloc_copy(eap, len);
  490. sm->eapolEap = TRUE;
  491. }
  492. /* Process incoming EAP packet from Supplicant */
  493. static void handle_eap(struct hostapd_data *hapd, struct sta_info *sta,
  494. u8 *buf, size_t len)
  495. {
  496. struct eap_hdr *eap;
  497. u16 eap_len;
  498. if (len < sizeof(*eap)) {
  499. printf(" too short EAP packet\n");
  500. return;
  501. }
  502. eap = (struct eap_hdr *) buf;
  503. eap_len = be_to_host16(eap->length);
  504. wpa_printf(MSG_DEBUG, "EAP: code=%d identifier=%d length=%d",
  505. eap->code, eap->identifier, eap_len);
  506. if (eap_len < sizeof(*eap)) {
  507. wpa_printf(MSG_DEBUG, " Invalid EAP length");
  508. return;
  509. } else if (eap_len > len) {
  510. wpa_printf(MSG_DEBUG, " Too short frame to contain this EAP "
  511. "packet");
  512. return;
  513. } else if (eap_len < len) {
  514. wpa_printf(MSG_DEBUG, " Ignoring %lu extra bytes after EAP "
  515. "packet", (unsigned long) len - eap_len);
  516. }
  517. switch (eap->code) {
  518. case EAP_CODE_REQUEST:
  519. wpa_printf(MSG_DEBUG, " (request)");
  520. return;
  521. case EAP_CODE_RESPONSE:
  522. wpa_printf(MSG_DEBUG, " (response)");
  523. handle_eap_response(hapd, sta, eap, eap_len);
  524. break;
  525. case EAP_CODE_SUCCESS:
  526. wpa_printf(MSG_DEBUG, " (success)");
  527. return;
  528. case EAP_CODE_FAILURE:
  529. wpa_printf(MSG_DEBUG, " (failure)");
  530. return;
  531. default:
  532. wpa_printf(MSG_DEBUG, " (unknown code)");
  533. return;
  534. }
  535. }
  536. static struct eapol_state_machine *
  537. ieee802_1x_alloc_eapol_sm(struct hostapd_data *hapd, struct sta_info *sta)
  538. {
  539. int flags = 0;
  540. if (sta->flags & WLAN_STA_PREAUTH)
  541. flags |= EAPOL_SM_PREAUTH;
  542. if (sta->wpa_sm) {
  543. flags |= EAPOL_SM_USES_WPA;
  544. if (wpa_auth_sta_get_pmksa(sta->wpa_sm))
  545. flags |= EAPOL_SM_FROM_PMKSA_CACHE;
  546. }
  547. return eapol_auth_alloc(hapd->eapol_auth, sta->addr, flags,
  548. sta->wps_ie, sta);
  549. }
  550. /**
  551. * ieee802_1x_receive - Process the EAPOL frames from the Supplicant
  552. * @hapd: hostapd BSS data
  553. * @sa: Source address (sender of the EAPOL frame)
  554. * @buf: EAPOL frame
  555. * @len: Length of buf in octets
  556. *
  557. * This function is called for each incoming EAPOL frame from the interface
  558. */
  559. void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf,
  560. size_t len)
  561. {
  562. struct sta_info *sta;
  563. struct ieee802_1x_hdr *hdr;
  564. struct ieee802_1x_eapol_key *key;
  565. u16 datalen;
  566. struct rsn_pmksa_cache_entry *pmksa;
  567. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa &&
  568. !hapd->conf->wps_state)
  569. return;
  570. wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR,
  571. (unsigned long) len, MAC2STR(sa));
  572. sta = ap_get_sta(hapd, sa);
  573. if (!sta || !(sta->flags & WLAN_STA_ASSOC)) {
  574. wpa_printf(MSG_DEBUG, "IEEE 802.1X data frame from not "
  575. "associated STA");
  576. return;
  577. }
  578. if (len < sizeof(*hdr)) {
  579. printf(" too short IEEE 802.1X packet\n");
  580. return;
  581. }
  582. hdr = (struct ieee802_1x_hdr *) buf;
  583. datalen = be_to_host16(hdr->length);
  584. wpa_printf(MSG_DEBUG, " IEEE 802.1X: version=%d type=%d length=%d",
  585. hdr->version, hdr->type, datalen);
  586. if (len - sizeof(*hdr) < datalen) {
  587. printf(" frame too short for this IEEE 802.1X packet\n");
  588. if (sta->eapol_sm)
  589. sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++;
  590. return;
  591. }
  592. if (len - sizeof(*hdr) > datalen) {
  593. wpa_printf(MSG_DEBUG, " ignoring %lu extra octets after "
  594. "IEEE 802.1X packet",
  595. (unsigned long) len - sizeof(*hdr) - datalen);
  596. }
  597. if (sta->eapol_sm) {
  598. sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version;
  599. sta->eapol_sm->dot1xAuthEapolFramesRx++;
  600. }
  601. key = (struct ieee802_1x_eapol_key *) (hdr + 1);
  602. if (datalen >= sizeof(struct ieee802_1x_eapol_key) &&
  603. hdr->type == IEEE802_1X_TYPE_EAPOL_KEY &&
  604. (key->type == EAPOL_KEY_TYPE_WPA ||
  605. key->type == EAPOL_KEY_TYPE_RSN)) {
  606. wpa_receive(hapd->wpa_auth, sta->wpa_sm, (u8 *) hdr,
  607. sizeof(*hdr) + datalen);
  608. return;
  609. }
  610. if ((!hapd->conf->ieee802_1x &&
  611. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS))) ||
  612. wpa_key_mgmt_wpa_psk(wpa_auth_sta_key_mgmt(sta->wpa_sm)))
  613. return;
  614. if (!sta->eapol_sm) {
  615. sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
  616. if (!sta->eapol_sm)
  617. return;
  618. #ifdef CONFIG_WPS
  619. if (!hapd->conf->ieee802_1x &&
  620. ((sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) ==
  621. WLAN_STA_MAYBE_WPS)) {
  622. /*
  623. * Delay EAPOL frame transmission until a possible WPS
  624. * STA initiates the handshake with EAPOL-Start.
  625. */
  626. sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
  627. }
  628. #endif /* CONFIG_WPS */
  629. sta->eapol_sm->eap_if->portEnabled = TRUE;
  630. }
  631. /* since we support version 1, we can ignore version field and proceed
  632. * as specified in version 1 standard [IEEE Std 802.1X-2001, 7.5.5] */
  633. /* TODO: actually, we are not version 1 anymore.. However, Version 2
  634. * does not change frame contents, so should be ok to process frames
  635. * more or less identically. Some changes might be needed for
  636. * verification of fields. */
  637. switch (hdr->type) {
  638. case IEEE802_1X_TYPE_EAP_PACKET:
  639. handle_eap(hapd, sta, (u8 *) (hdr + 1), datalen);
  640. break;
  641. case IEEE802_1X_TYPE_EAPOL_START:
  642. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  643. HOSTAPD_LEVEL_DEBUG, "received EAPOL-Start "
  644. "from STA");
  645. sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
  646. pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  647. if (pmksa) {
  648. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  649. HOSTAPD_LEVEL_DEBUG, "cached PMKSA "
  650. "available - ignore it since "
  651. "STA sent EAPOL-Start");
  652. wpa_auth_sta_clear_pmksa(sta->wpa_sm, pmksa);
  653. }
  654. sta->eapol_sm->eapolStart = TRUE;
  655. sta->eapol_sm->dot1xAuthEapolStartFramesRx++;
  656. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
  657. break;
  658. case IEEE802_1X_TYPE_EAPOL_LOGOFF:
  659. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  660. HOSTAPD_LEVEL_DEBUG, "received EAPOL-Logoff "
  661. "from STA");
  662. sta->acct_terminate_cause =
  663. RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  664. accounting_sta_stop(hapd, sta);
  665. sta->eapol_sm->eapolLogoff = TRUE;
  666. sta->eapol_sm->dot1xAuthEapolLogoffFramesRx++;
  667. break;
  668. case IEEE802_1X_TYPE_EAPOL_KEY:
  669. wpa_printf(MSG_DEBUG, " EAPOL-Key");
  670. if (!(sta->flags & WLAN_STA_AUTHORIZED)) {
  671. wpa_printf(MSG_DEBUG, " Dropped key data from "
  672. "unauthorized Supplicant");
  673. break;
  674. }
  675. break;
  676. case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
  677. wpa_printf(MSG_DEBUG, " EAPOL-Encapsulated-ASF-Alert");
  678. /* TODO: implement support for this; show data */
  679. break;
  680. default:
  681. wpa_printf(MSG_DEBUG, " unknown IEEE 802.1X packet type");
  682. sta->eapol_sm->dot1xAuthInvalidEapolFramesRx++;
  683. break;
  684. }
  685. eapol_auth_step(sta->eapol_sm);
  686. }
  687. /**
  688. * ieee802_1x_new_station - Start IEEE 802.1X authentication
  689. * @hapd: hostapd BSS data
  690. * @sta: The station
  691. *
  692. * This function is called to start IEEE 802.1X authentication when a new
  693. * station completes IEEE 802.11 association.
  694. */
  695. void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta)
  696. {
  697. struct rsn_pmksa_cache_entry *pmksa;
  698. int reassoc = 1;
  699. int force_1x = 0;
  700. #ifdef CONFIG_WPS
  701. if (hapd->conf->wps_state && hapd->conf->wpa &&
  702. (sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS))) {
  703. /*
  704. * Need to enable IEEE 802.1X/EAPOL state machines for possible
  705. * WPS handshake even if IEEE 802.1X/EAPOL is not used for
  706. * authentication in this BSS.
  707. */
  708. force_1x = 1;
  709. }
  710. #endif /* CONFIG_WPS */
  711. if ((!force_1x && !hapd->conf->ieee802_1x) ||
  712. wpa_key_mgmt_wpa_psk(wpa_auth_sta_key_mgmt(sta->wpa_sm)))
  713. return;
  714. if (sta->eapol_sm == NULL) {
  715. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  716. HOSTAPD_LEVEL_DEBUG, "start authentication");
  717. sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
  718. if (sta->eapol_sm == NULL) {
  719. hostapd_logger(hapd, sta->addr,
  720. HOSTAPD_MODULE_IEEE8021X,
  721. HOSTAPD_LEVEL_INFO,
  722. "failed to allocate state machine");
  723. return;
  724. }
  725. reassoc = 0;
  726. }
  727. #ifdef CONFIG_WPS
  728. sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
  729. if (!hapd->conf->ieee802_1x && !(sta->flags & WLAN_STA_WPS)) {
  730. /*
  731. * Delay EAPOL frame transmission until a possible WPS
  732. * initiates the handshake with EAPOL-Start.
  733. */
  734. sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
  735. }
  736. #endif /* CONFIG_WPS */
  737. sta->eapol_sm->eap_if->portEnabled = TRUE;
  738. pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  739. if (pmksa) {
  740. int old_vlanid;
  741. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  742. HOSTAPD_LEVEL_DEBUG,
  743. "PMK from PMKSA cache - skip IEEE 802.1X/EAP");
  744. /* Setup EAPOL state machines to already authenticated state
  745. * because of existing PMKSA information in the cache. */
  746. sta->eapol_sm->keyRun = TRUE;
  747. sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
  748. sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
  749. sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
  750. sta->eapol_sm->authSuccess = TRUE;
  751. if (sta->eapol_sm->eap)
  752. eap_sm_notify_cached(sta->eapol_sm->eap);
  753. old_vlanid = sta->vlan_id;
  754. pmksa_cache_to_eapol_data(pmksa, sta->eapol_sm);
  755. if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
  756. sta->vlan_id = 0;
  757. ap_sta_bind_vlan(hapd, sta, old_vlanid);
  758. } else {
  759. if (reassoc) {
  760. /*
  761. * Force EAPOL state machines to start
  762. * re-authentication without having to wait for the
  763. * Supplicant to send EAPOL-Start.
  764. */
  765. sta->eapol_sm->reAuthenticate = TRUE;
  766. }
  767. eapol_auth_step(sta->eapol_sm);
  768. }
  769. }
  770. void ieee802_1x_free_station(struct sta_info *sta)
  771. {
  772. struct eapol_state_machine *sm = sta->eapol_sm;
  773. if (sm == NULL)
  774. return;
  775. sta->eapol_sm = NULL;
  776. #ifndef CONFIG_NO_RADIUS
  777. radius_msg_free(sm->last_recv_radius);
  778. radius_free_class(&sm->radius_class);
  779. #endif /* CONFIG_NO_RADIUS */
  780. os_free(sm->identity);
  781. eapol_auth_free(sm);
  782. }
  783. #ifndef CONFIG_NO_RADIUS
  784. static void ieee802_1x_decapsulate_radius(struct hostapd_data *hapd,
  785. struct sta_info *sta)
  786. {
  787. u8 *eap;
  788. size_t len;
  789. struct eap_hdr *hdr;
  790. int eap_type = -1;
  791. char buf[64];
  792. struct radius_msg *msg;
  793. struct eapol_state_machine *sm = sta->eapol_sm;
  794. if (sm == NULL || sm->last_recv_radius == NULL) {
  795. if (sm)
  796. sm->eap_if->aaaEapNoReq = TRUE;
  797. return;
  798. }
  799. msg = sm->last_recv_radius;
  800. eap = radius_msg_get_eap(msg, &len);
  801. if (eap == NULL) {
  802. /* RFC 3579, Chap. 2.6.3:
  803. * RADIUS server SHOULD NOT send Access-Reject/no EAP-Message
  804. * attribute */
  805. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  806. HOSTAPD_LEVEL_WARNING, "could not extract "
  807. "EAP-Message from RADIUS message");
  808. sm->eap_if->aaaEapNoReq = TRUE;
  809. return;
  810. }
  811. if (len < sizeof(*hdr)) {
  812. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  813. HOSTAPD_LEVEL_WARNING, "too short EAP packet "
  814. "received from authentication server");
  815. os_free(eap);
  816. sm->eap_if->aaaEapNoReq = TRUE;
  817. return;
  818. }
  819. if (len > sizeof(*hdr))
  820. eap_type = eap[sizeof(*hdr)];
  821. hdr = (struct eap_hdr *) eap;
  822. switch (hdr->code) {
  823. case EAP_CODE_REQUEST:
  824. if (eap_type >= 0)
  825. sm->eap_type_authsrv = eap_type;
  826. os_snprintf(buf, sizeof(buf), "EAP-Request-%s (%d)",
  827. eap_type >= 0 ? eap_server_get_name(0, eap_type) :
  828. "??",
  829. eap_type);
  830. break;
  831. case EAP_CODE_RESPONSE:
  832. os_snprintf(buf, sizeof(buf), "EAP Response-%s (%d)",
  833. eap_type >= 0 ? eap_server_get_name(0, eap_type) :
  834. "??",
  835. eap_type);
  836. break;
  837. case EAP_CODE_SUCCESS:
  838. os_strlcpy(buf, "EAP Success", sizeof(buf));
  839. break;
  840. case EAP_CODE_FAILURE:
  841. os_strlcpy(buf, "EAP Failure", sizeof(buf));
  842. break;
  843. default:
  844. os_strlcpy(buf, "unknown EAP code", sizeof(buf));
  845. break;
  846. }
  847. buf[sizeof(buf) - 1] = '\0';
  848. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  849. HOSTAPD_LEVEL_DEBUG, "decapsulated EAP packet (code=%d "
  850. "id=%d len=%d) from RADIUS server: %s",
  851. hdr->code, hdr->identifier, be_to_host16(hdr->length),
  852. buf);
  853. sm->eap_if->aaaEapReq = TRUE;
  854. wpabuf_free(sm->eap_if->aaaEapReqData);
  855. sm->eap_if->aaaEapReqData = wpabuf_alloc_ext_data(eap, len);
  856. }
  857. static void ieee802_1x_get_keys(struct hostapd_data *hapd,
  858. struct sta_info *sta, struct radius_msg *msg,
  859. struct radius_msg *req,
  860. const u8 *shared_secret,
  861. size_t shared_secret_len)
  862. {
  863. struct radius_ms_mppe_keys *keys;
  864. struct eapol_state_machine *sm = sta->eapol_sm;
  865. if (sm == NULL)
  866. return;
  867. keys = radius_msg_get_ms_keys(msg, req, shared_secret,
  868. shared_secret_len);
  869. if (keys && keys->send && keys->recv) {
  870. size_t len = keys->send_len + keys->recv_len;
  871. wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Send-Key",
  872. keys->send, keys->send_len);
  873. wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Recv-Key",
  874. keys->recv, keys->recv_len);
  875. os_free(sm->eap_if->aaaEapKeyData);
  876. sm->eap_if->aaaEapKeyData = os_malloc(len);
  877. if (sm->eap_if->aaaEapKeyData) {
  878. os_memcpy(sm->eap_if->aaaEapKeyData, keys->recv,
  879. keys->recv_len);
  880. os_memcpy(sm->eap_if->aaaEapKeyData + keys->recv_len,
  881. keys->send, keys->send_len);
  882. sm->eap_if->aaaEapKeyDataLen = len;
  883. sm->eap_if->aaaEapKeyAvailable = TRUE;
  884. }
  885. }
  886. if (keys) {
  887. os_free(keys->send);
  888. os_free(keys->recv);
  889. os_free(keys);
  890. }
  891. }
  892. static void ieee802_1x_store_radius_class(struct hostapd_data *hapd,
  893. struct sta_info *sta,
  894. struct radius_msg *msg)
  895. {
  896. u8 *class;
  897. size_t class_len;
  898. struct eapol_state_machine *sm = sta->eapol_sm;
  899. int count, i;
  900. struct radius_attr_data *nclass;
  901. size_t nclass_count;
  902. if (!hapd->conf->radius->acct_server || hapd->radius == NULL ||
  903. sm == NULL)
  904. return;
  905. radius_free_class(&sm->radius_class);
  906. count = radius_msg_count_attr(msg, RADIUS_ATTR_CLASS, 1);
  907. if (count <= 0)
  908. return;
  909. nclass = os_zalloc(count * sizeof(struct radius_attr_data));
  910. if (nclass == NULL)
  911. return;
  912. nclass_count = 0;
  913. class = NULL;
  914. for (i = 0; i < count; i++) {
  915. do {
  916. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CLASS,
  917. &class, &class_len,
  918. class) < 0) {
  919. i = count;
  920. break;
  921. }
  922. } while (class_len < 1);
  923. nclass[nclass_count].data = os_malloc(class_len);
  924. if (nclass[nclass_count].data == NULL)
  925. break;
  926. os_memcpy(nclass[nclass_count].data, class, class_len);
  927. nclass[nclass_count].len = class_len;
  928. nclass_count++;
  929. }
  930. sm->radius_class.attr = nclass;
  931. sm->radius_class.count = nclass_count;
  932. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Stored %lu RADIUS Class "
  933. "attributes for " MACSTR,
  934. (unsigned long) sm->radius_class.count,
  935. MAC2STR(sta->addr));
  936. }
  937. /* Update sta->identity based on User-Name attribute in Access-Accept */
  938. static void ieee802_1x_update_sta_identity(struct hostapd_data *hapd,
  939. struct sta_info *sta,
  940. struct radius_msg *msg)
  941. {
  942. u8 *buf, *identity;
  943. size_t len;
  944. struct eapol_state_machine *sm = sta->eapol_sm;
  945. if (sm == NULL)
  946. return;
  947. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &buf, &len,
  948. NULL) < 0)
  949. return;
  950. identity = os_malloc(len + 1);
  951. if (identity == NULL)
  952. return;
  953. os_memcpy(identity, buf, len);
  954. identity[len] = '\0';
  955. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  956. HOSTAPD_LEVEL_DEBUG, "old identity '%s' updated with "
  957. "User-Name from Access-Accept '%s'",
  958. sm->identity ? (char *) sm->identity : "N/A",
  959. (char *) identity);
  960. os_free(sm->identity);
  961. sm->identity = identity;
  962. sm->identity_len = len;
  963. }
  964. struct sta_id_search {
  965. u8 identifier;
  966. struct eapol_state_machine *sm;
  967. };
  968. static int ieee802_1x_select_radius_identifier(struct hostapd_data *hapd,
  969. struct sta_info *sta,
  970. void *ctx)
  971. {
  972. struct sta_id_search *id_search = ctx;
  973. struct eapol_state_machine *sm = sta->eapol_sm;
  974. if (sm && sm->radius_identifier >= 0 &&
  975. sm->radius_identifier == id_search->identifier) {
  976. id_search->sm = sm;
  977. return 1;
  978. }
  979. return 0;
  980. }
  981. static struct eapol_state_machine *
  982. ieee802_1x_search_radius_identifier(struct hostapd_data *hapd, u8 identifier)
  983. {
  984. struct sta_id_search id_search;
  985. id_search.identifier = identifier;
  986. id_search.sm = NULL;
  987. ap_for_each_sta(hapd, ieee802_1x_select_radius_identifier, &id_search);
  988. return id_search.sm;
  989. }
  990. /**
  991. * ieee802_1x_receive_auth - Process RADIUS frames from Authentication Server
  992. * @msg: RADIUS response message
  993. * @req: RADIUS request message
  994. * @shared_secret: RADIUS shared secret
  995. * @shared_secret_len: Length of shared_secret in octets
  996. * @data: Context data (struct hostapd_data *)
  997. * Returns: Processing status
  998. */
  999. static RadiusRxResult
  1000. ieee802_1x_receive_auth(struct radius_msg *msg, struct radius_msg *req,
  1001. const u8 *shared_secret, size_t shared_secret_len,
  1002. void *data)
  1003. {
  1004. struct hostapd_data *hapd = data;
  1005. struct sta_info *sta;
  1006. u32 session_timeout = 0, termination_action, acct_interim_interval;
  1007. int session_timeout_set, old_vlanid = 0;
  1008. struct eapol_state_machine *sm;
  1009. int override_eapReq = 0;
  1010. struct radius_hdr *hdr = radius_msg_get_hdr(msg);
  1011. sm = ieee802_1x_search_radius_identifier(hapd, hdr->identifier);
  1012. if (sm == NULL) {
  1013. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Could not find matching "
  1014. "station for this RADIUS message");
  1015. return RADIUS_RX_UNKNOWN;
  1016. }
  1017. sta = sm->sta;
  1018. /* RFC 2869, Ch. 5.13: valid Message-Authenticator attribute MUST be
  1019. * present when packet contains an EAP-Message attribute */
  1020. if (hdr->code == RADIUS_CODE_ACCESS_REJECT &&
  1021. radius_msg_get_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR, NULL,
  1022. 0) < 0 &&
  1023. radius_msg_get_attr(msg, RADIUS_ATTR_EAP_MESSAGE, NULL, 0) < 0) {
  1024. wpa_printf(MSG_DEBUG, "Allowing RADIUS Access-Reject without "
  1025. "Message-Authenticator since it does not include "
  1026. "EAP-Message");
  1027. } else if (radius_msg_verify(msg, shared_secret, shared_secret_len,
  1028. req, 1)) {
  1029. printf("Incoming RADIUS packet did not have correct "
  1030. "Message-Authenticator - dropped\n");
  1031. return RADIUS_RX_INVALID_AUTHENTICATOR;
  1032. }
  1033. if (hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
  1034. hdr->code != RADIUS_CODE_ACCESS_REJECT &&
  1035. hdr->code != RADIUS_CODE_ACCESS_CHALLENGE) {
  1036. printf("Unknown RADIUS message code\n");
  1037. return RADIUS_RX_UNKNOWN;
  1038. }
  1039. sm->radius_identifier = -1;
  1040. wpa_printf(MSG_DEBUG, "RADIUS packet matching with station " MACSTR,
  1041. MAC2STR(sta->addr));
  1042. radius_msg_free(sm->last_recv_radius);
  1043. sm->last_recv_radius = msg;
  1044. session_timeout_set =
  1045. !radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
  1046. &session_timeout);
  1047. if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_TERMINATION_ACTION,
  1048. &termination_action))
  1049. termination_action = RADIUS_TERMINATION_ACTION_DEFAULT;
  1050. if (hapd->conf->acct_interim_interval == 0 &&
  1051. hdr->code == RADIUS_CODE_ACCESS_ACCEPT &&
  1052. radius_msg_get_attr_int32(msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
  1053. &acct_interim_interval) == 0) {
  1054. if (acct_interim_interval < 60) {
  1055. hostapd_logger(hapd, sta->addr,
  1056. HOSTAPD_MODULE_IEEE8021X,
  1057. HOSTAPD_LEVEL_INFO,
  1058. "ignored too small "
  1059. "Acct-Interim-Interval %d",
  1060. acct_interim_interval);
  1061. } else
  1062. sta->acct_interim_interval = acct_interim_interval;
  1063. }
  1064. switch (hdr->code) {
  1065. case RADIUS_CODE_ACCESS_ACCEPT:
  1066. if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
  1067. sta->vlan_id = 0;
  1068. #ifndef CONFIG_NO_VLAN
  1069. else {
  1070. old_vlanid = sta->vlan_id;
  1071. sta->vlan_id = radius_msg_get_vlanid(msg);
  1072. }
  1073. if (sta->vlan_id > 0 &&
  1074. hostapd_get_vlan_id_ifname(hapd->conf->vlan,
  1075. sta->vlan_id)) {
  1076. hostapd_logger(hapd, sta->addr,
  1077. HOSTAPD_MODULE_RADIUS,
  1078. HOSTAPD_LEVEL_INFO,
  1079. "VLAN ID %d", sta->vlan_id);
  1080. } else if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_REQUIRED) {
  1081. sta->eapol_sm->authFail = TRUE;
  1082. hostapd_logger(hapd, sta->addr,
  1083. HOSTAPD_MODULE_IEEE8021X,
  1084. HOSTAPD_LEVEL_INFO, "authentication "
  1085. "server did not include required VLAN "
  1086. "ID in Access-Accept");
  1087. break;
  1088. }
  1089. #endif /* CONFIG_NO_VLAN */
  1090. if (ap_sta_bind_vlan(hapd, sta, old_vlanid) < 0)
  1091. break;
  1092. /* RFC 3580, Ch. 3.17 */
  1093. if (session_timeout_set && termination_action ==
  1094. RADIUS_TERMINATION_ACTION_RADIUS_REQUEST) {
  1095. sm->reAuthPeriod = session_timeout;
  1096. } else if (session_timeout_set)
  1097. ap_sta_session_timeout(hapd, sta, session_timeout);
  1098. sm->eap_if->aaaSuccess = TRUE;
  1099. override_eapReq = 1;
  1100. ieee802_1x_get_keys(hapd, sta, msg, req, shared_secret,
  1101. shared_secret_len);
  1102. ieee802_1x_store_radius_class(hapd, sta, msg);
  1103. ieee802_1x_update_sta_identity(hapd, sta, msg);
  1104. if (sm->eap_if->eapKeyAvailable &&
  1105. wpa_auth_pmksa_add(sta->wpa_sm, sm->eapol_key_crypt,
  1106. session_timeout_set ?
  1107. (int) session_timeout : -1, sm) == 0) {
  1108. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  1109. HOSTAPD_LEVEL_DEBUG,
  1110. "Added PMKSA cache entry");
  1111. }
  1112. break;
  1113. case RADIUS_CODE_ACCESS_REJECT:
  1114. sm->eap_if->aaaFail = TRUE;
  1115. override_eapReq = 1;
  1116. break;
  1117. case RADIUS_CODE_ACCESS_CHALLENGE:
  1118. sm->eap_if->aaaEapReq = TRUE;
  1119. if (session_timeout_set) {
  1120. /* RFC 2869, Ch. 2.3.2; RFC 3580, Ch. 3.17 */
  1121. sm->eap_if->aaaMethodTimeout = session_timeout;
  1122. hostapd_logger(hapd, sm->addr,
  1123. HOSTAPD_MODULE_IEEE8021X,
  1124. HOSTAPD_LEVEL_DEBUG,
  1125. "using EAP timeout of %d seconds (from "
  1126. "RADIUS)",
  1127. sm->eap_if->aaaMethodTimeout);
  1128. } else {
  1129. /*
  1130. * Use dynamic retransmission behavior per EAP
  1131. * specification.
  1132. */
  1133. sm->eap_if->aaaMethodTimeout = 0;
  1134. }
  1135. break;
  1136. }
  1137. ieee802_1x_decapsulate_radius(hapd, sta);
  1138. if (override_eapReq)
  1139. sm->eap_if->aaaEapReq = FALSE;
  1140. eapol_auth_step(sm);
  1141. return RADIUS_RX_QUEUED;
  1142. }
  1143. #endif /* CONFIG_NO_RADIUS */
  1144. void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta)
  1145. {
  1146. struct eapol_state_machine *sm = sta->eapol_sm;
  1147. if (sm == NULL)
  1148. return;
  1149. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1150. HOSTAPD_LEVEL_DEBUG, "aborting authentication");
  1151. #ifndef CONFIG_NO_RADIUS
  1152. radius_msg_free(sm->last_recv_radius);
  1153. sm->last_recv_radius = NULL;
  1154. #endif /* CONFIG_NO_RADIUS */
  1155. if (sm->eap_if->eapTimeout) {
  1156. /*
  1157. * Disconnect the STA since it did not reply to the last EAP
  1158. * request and we cannot continue EAP processing (EAP-Failure
  1159. * could only be sent if the EAP peer actually replied).
  1160. */
  1161. sm->eap_if->portEnabled = FALSE;
  1162. ap_sta_disconnect(hapd, sta, sta->addr,
  1163. WLAN_REASON_PREV_AUTH_NOT_VALID);
  1164. }
  1165. }
  1166. static int ieee802_1x_rekey_broadcast(struct hostapd_data *hapd)
  1167. {
  1168. struct eapol_authenticator *eapol = hapd->eapol_auth;
  1169. if (hapd->conf->default_wep_key_len < 1)
  1170. return 0;
  1171. os_free(eapol->default_wep_key);
  1172. eapol->default_wep_key = os_malloc(hapd->conf->default_wep_key_len);
  1173. if (eapol->default_wep_key == NULL ||
  1174. os_get_random(eapol->default_wep_key,
  1175. hapd->conf->default_wep_key_len)) {
  1176. printf("Could not generate random WEP key.\n");
  1177. os_free(eapol->default_wep_key);
  1178. eapol->default_wep_key = NULL;
  1179. return -1;
  1180. }
  1181. wpa_hexdump_key(MSG_DEBUG, "IEEE 802.1X: New default WEP key",
  1182. eapol->default_wep_key,
  1183. hapd->conf->default_wep_key_len);
  1184. return 0;
  1185. }
  1186. static int ieee802_1x_sta_key_available(struct hostapd_data *hapd,
  1187. struct sta_info *sta, void *ctx)
  1188. {
  1189. if (sta->eapol_sm) {
  1190. sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
  1191. eapol_auth_step(sta->eapol_sm);
  1192. }
  1193. return 0;
  1194. }
  1195. static void ieee802_1x_rekey(void *eloop_ctx, void *timeout_ctx)
  1196. {
  1197. struct hostapd_data *hapd = eloop_ctx;
  1198. struct eapol_authenticator *eapol = hapd->eapol_auth;
  1199. if (eapol->default_wep_key_idx >= 3)
  1200. eapol->default_wep_key_idx =
  1201. hapd->conf->individual_wep_key_len > 0 ? 1 : 0;
  1202. else
  1203. eapol->default_wep_key_idx++;
  1204. wpa_printf(MSG_DEBUG, "IEEE 802.1X: New default WEP key index %d",
  1205. eapol->default_wep_key_idx);
  1206. if (ieee802_1x_rekey_broadcast(hapd)) {
  1207. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
  1208. HOSTAPD_LEVEL_WARNING, "failed to generate a "
  1209. "new broadcast key");
  1210. os_free(eapol->default_wep_key);
  1211. eapol->default_wep_key = NULL;
  1212. return;
  1213. }
  1214. /* TODO: Could setup key for RX here, but change default TX keyid only
  1215. * after new broadcast key has been sent to all stations. */
  1216. if (hapd->drv.set_key(hapd->conf->iface, hapd, WPA_ALG_WEP, NULL,
  1217. eapol->default_wep_key_idx, 1, NULL, 0,
  1218. eapol->default_wep_key,
  1219. hapd->conf->default_wep_key_len)) {
  1220. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
  1221. HOSTAPD_LEVEL_WARNING, "failed to configure a "
  1222. "new broadcast key");
  1223. os_free(eapol->default_wep_key);
  1224. eapol->default_wep_key = NULL;
  1225. return;
  1226. }
  1227. ap_for_each_sta(hapd, ieee802_1x_sta_key_available, NULL);
  1228. if (hapd->conf->wep_rekeying_period > 0) {
  1229. eloop_register_timeout(hapd->conf->wep_rekeying_period, 0,
  1230. ieee802_1x_rekey, hapd, NULL);
  1231. }
  1232. }
  1233. static void ieee802_1x_eapol_send(void *ctx, void *sta_ctx, u8 type,
  1234. const u8 *data, size_t datalen)
  1235. {
  1236. #ifdef CONFIG_WPS
  1237. struct sta_info *sta = sta_ctx;
  1238. if ((sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) ==
  1239. WLAN_STA_MAYBE_WPS) {
  1240. const u8 *identity;
  1241. size_t identity_len;
  1242. struct eapol_state_machine *sm = sta->eapol_sm;
  1243. identity = eap_get_identity(sm->eap, &identity_len);
  1244. if (identity &&
  1245. ((identity_len == WSC_ID_ENROLLEE_LEN &&
  1246. os_memcmp(identity, WSC_ID_ENROLLEE,
  1247. WSC_ID_ENROLLEE_LEN) == 0) ||
  1248. (identity_len == WSC_ID_REGISTRAR_LEN &&
  1249. os_memcmp(identity, WSC_ID_REGISTRAR,
  1250. WSC_ID_REGISTRAR_LEN) == 0))) {
  1251. wpa_printf(MSG_DEBUG, "WPS: WLAN_STA_MAYBE_WPS -> "
  1252. "WLAN_STA_WPS");
  1253. sta->flags |= WLAN_STA_WPS;
  1254. }
  1255. }
  1256. #endif /* CONFIG_WPS */
  1257. ieee802_1x_send(ctx, sta_ctx, type, data, datalen);
  1258. }
  1259. static void ieee802_1x_aaa_send(void *ctx, void *sta_ctx,
  1260. const u8 *data, size_t datalen)
  1261. {
  1262. #ifndef CONFIG_NO_RADIUS
  1263. struct hostapd_data *hapd = ctx;
  1264. struct sta_info *sta = sta_ctx;
  1265. ieee802_1x_encapsulate_radius(hapd, sta, data, datalen);
  1266. #endif /* CONFIG_NO_RADIUS */
  1267. }
  1268. static void _ieee802_1x_finished(void *ctx, void *sta_ctx, int success,
  1269. int preauth)
  1270. {
  1271. struct hostapd_data *hapd = ctx;
  1272. struct sta_info *sta = sta_ctx;
  1273. if (preauth)
  1274. rsn_preauth_finished(hapd, sta, success);
  1275. else
  1276. ieee802_1x_finished(hapd, sta, success);
  1277. }
  1278. static int ieee802_1x_get_eap_user(void *ctx, const u8 *identity,
  1279. size_t identity_len, int phase2,
  1280. struct eap_user *user)
  1281. {
  1282. struct hostapd_data *hapd = ctx;
  1283. const struct hostapd_eap_user *eap_user;
  1284. int i, count;
  1285. eap_user = hostapd_get_eap_user(hapd->conf, identity,
  1286. identity_len, phase2);
  1287. if (eap_user == NULL)
  1288. return -1;
  1289. os_memset(user, 0, sizeof(*user));
  1290. user->phase2 = phase2;
  1291. count = EAP_USER_MAX_METHODS;
  1292. if (count > EAP_MAX_METHODS)
  1293. count = EAP_MAX_METHODS;
  1294. for (i = 0; i < count; i++) {
  1295. user->methods[i].vendor = eap_user->methods[i].vendor;
  1296. user->methods[i].method = eap_user->methods[i].method;
  1297. }
  1298. if (eap_user->password) {
  1299. user->password = os_malloc(eap_user->password_len);
  1300. if (user->password == NULL)
  1301. return -1;
  1302. os_memcpy(user->password, eap_user->password,
  1303. eap_user->password_len);
  1304. user->password_len = eap_user->password_len;
  1305. }
  1306. user->force_version = eap_user->force_version;
  1307. user->ttls_auth = eap_user->ttls_auth;
  1308. return 0;
  1309. }
  1310. static int ieee802_1x_sta_entry_alive(void *ctx, const u8 *addr)
  1311. {
  1312. struct hostapd_data *hapd = ctx;
  1313. struct sta_info *sta;
  1314. sta = ap_get_sta(hapd, addr);
  1315. if (sta == NULL || sta->eapol_sm == NULL)
  1316. return 0;
  1317. return 1;
  1318. }
  1319. static void ieee802_1x_logger(void *ctx, const u8 *addr,
  1320. eapol_logger_level level, const char *txt)
  1321. {
  1322. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  1323. struct hostapd_data *hapd = ctx;
  1324. int hlevel;
  1325. switch (level) {
  1326. case EAPOL_LOGGER_WARNING:
  1327. hlevel = HOSTAPD_LEVEL_WARNING;
  1328. break;
  1329. case EAPOL_LOGGER_INFO:
  1330. hlevel = HOSTAPD_LEVEL_INFO;
  1331. break;
  1332. case EAPOL_LOGGER_DEBUG:
  1333. default:
  1334. hlevel = HOSTAPD_LEVEL_DEBUG;
  1335. break;
  1336. }
  1337. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE8021X, hlevel, "%s",
  1338. txt);
  1339. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  1340. }
  1341. static void ieee802_1x_set_port_authorized(void *ctx, void *sta_ctx,
  1342. int authorized)
  1343. {
  1344. struct hostapd_data *hapd = ctx;
  1345. struct sta_info *sta = sta_ctx;
  1346. ieee802_1x_set_sta_authorized(hapd, sta, authorized);
  1347. }
  1348. static void _ieee802_1x_abort_auth(void *ctx, void *sta_ctx)
  1349. {
  1350. struct hostapd_data *hapd = ctx;
  1351. struct sta_info *sta = sta_ctx;
  1352. ieee802_1x_abort_auth(hapd, sta);
  1353. }
  1354. static void _ieee802_1x_tx_key(void *ctx, void *sta_ctx)
  1355. {
  1356. struct hostapd_data *hapd = ctx;
  1357. struct sta_info *sta = sta_ctx;
  1358. ieee802_1x_tx_key(hapd, sta);
  1359. }
  1360. static void ieee802_1x_eapol_event(void *ctx, void *sta_ctx,
  1361. enum eapol_event type)
  1362. {
  1363. /* struct hostapd_data *hapd = ctx; */
  1364. struct sta_info *sta = sta_ctx;
  1365. switch (type) {
  1366. case EAPOL_AUTH_SM_CHANGE:
  1367. wpa_auth_sm_notify(sta->wpa_sm);
  1368. break;
  1369. case EAPOL_AUTH_REAUTHENTICATE:
  1370. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
  1371. break;
  1372. }
  1373. }
  1374. int ieee802_1x_init(struct hostapd_data *hapd)
  1375. {
  1376. int i;
  1377. struct eapol_auth_config conf;
  1378. struct eapol_auth_cb cb;
  1379. os_memset(&conf, 0, sizeof(conf));
  1380. conf.ctx = hapd;
  1381. conf.eap_reauth_period = hapd->conf->eap_reauth_period;
  1382. conf.wpa = hapd->conf->wpa;
  1383. conf.individual_wep_key_len = hapd->conf->individual_wep_key_len;
  1384. conf.eap_server = hapd->conf->eap_server;
  1385. conf.ssl_ctx = hapd->ssl_ctx;
  1386. conf.msg_ctx = hapd->msg_ctx;
  1387. conf.eap_sim_db_priv = hapd->eap_sim_db_priv;
  1388. conf.eap_req_id_text = hapd->conf->eap_req_id_text;
  1389. conf.eap_req_id_text_len = hapd->conf->eap_req_id_text_len;
  1390. conf.pac_opaque_encr_key = hapd->conf->pac_opaque_encr_key;
  1391. conf.eap_fast_a_id = hapd->conf->eap_fast_a_id;
  1392. conf.eap_fast_a_id_len = hapd->conf->eap_fast_a_id_len;
  1393. conf.eap_fast_a_id_info = hapd->conf->eap_fast_a_id_info;
  1394. conf.eap_fast_prov = hapd->conf->eap_fast_prov;
  1395. conf.pac_key_lifetime = hapd->conf->pac_key_lifetime;
  1396. conf.pac_key_refresh_time = hapd->conf->pac_key_refresh_time;
  1397. conf.eap_sim_aka_result_ind = hapd->conf->eap_sim_aka_result_ind;
  1398. conf.tnc = hapd->conf->tnc;
  1399. conf.wps = hapd->wps;
  1400. os_memset(&cb, 0, sizeof(cb));
  1401. cb.eapol_send = ieee802_1x_eapol_send;
  1402. cb.aaa_send = ieee802_1x_aaa_send;
  1403. cb.finished = _ieee802_1x_finished;
  1404. cb.get_eap_user = ieee802_1x_get_eap_user;
  1405. cb.sta_entry_alive = ieee802_1x_sta_entry_alive;
  1406. cb.logger = ieee802_1x_logger;
  1407. cb.set_port_authorized = ieee802_1x_set_port_authorized;
  1408. cb.abort_auth = _ieee802_1x_abort_auth;
  1409. cb.tx_key = _ieee802_1x_tx_key;
  1410. cb.eapol_event = ieee802_1x_eapol_event;
  1411. hapd->eapol_auth = eapol_auth_init(&conf, &cb);
  1412. if (hapd->eapol_auth == NULL)
  1413. return -1;
  1414. if ((hapd->conf->ieee802_1x || hapd->conf->wpa) &&
  1415. hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 1))
  1416. return -1;
  1417. #ifndef CONFIG_NO_RADIUS
  1418. if (radius_client_register(hapd->radius, RADIUS_AUTH,
  1419. ieee802_1x_receive_auth, hapd))
  1420. return -1;
  1421. #endif /* CONFIG_NO_RADIUS */
  1422. if (hapd->conf->default_wep_key_len) {
  1423. for (i = 0; i < 4; i++)
  1424. hapd->drv.set_key(hapd->conf->iface, hapd,
  1425. WPA_ALG_NONE, NULL, i, 0, NULL, 0,
  1426. NULL, 0);
  1427. ieee802_1x_rekey(hapd, NULL);
  1428. if (hapd->eapol_auth->default_wep_key == NULL)
  1429. return -1;
  1430. }
  1431. return 0;
  1432. }
  1433. void ieee802_1x_deinit(struct hostapd_data *hapd)
  1434. {
  1435. eloop_cancel_timeout(ieee802_1x_rekey, hapd, NULL);
  1436. if (hapd->driver != NULL &&
  1437. (hapd->conf->ieee802_1x || hapd->conf->wpa))
  1438. hapd->drv.set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
  1439. eapol_auth_deinit(hapd->eapol_auth);
  1440. hapd->eapol_auth = NULL;
  1441. }
  1442. int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
  1443. const u8 *buf, size_t len, int ack)
  1444. {
  1445. struct ieee80211_hdr *hdr;
  1446. struct ieee802_1x_hdr *xhdr;
  1447. struct ieee802_1x_eapol_key *key;
  1448. u8 *pos;
  1449. const unsigned char rfc1042_hdr[ETH_ALEN] =
  1450. { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
  1451. if (sta == NULL)
  1452. return -1;
  1453. if (len < sizeof(*hdr) + sizeof(rfc1042_hdr) + 2 + sizeof(*xhdr))
  1454. return 0;
  1455. hdr = (struct ieee80211_hdr *) buf;
  1456. pos = (u8 *) (hdr + 1);
  1457. if (os_memcmp(pos, rfc1042_hdr, sizeof(rfc1042_hdr)) != 0)
  1458. return 0;
  1459. pos += sizeof(rfc1042_hdr);
  1460. if (WPA_GET_BE16(pos) != ETH_P_PAE)
  1461. return 0;
  1462. pos += 2;
  1463. xhdr = (struct ieee802_1x_hdr *) pos;
  1464. pos += sizeof(*xhdr);
  1465. wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR " TX status - version=%d "
  1466. "type=%d length=%d - ack=%d",
  1467. MAC2STR(sta->addr), xhdr->version, xhdr->type,
  1468. be_to_host16(xhdr->length), ack);
  1469. /* EAPOL EAP-Packet packets are eventually re-sent by either Supplicant
  1470. * or Authenticator state machines, but EAPOL-Key packets are not
  1471. * retransmitted in case of failure. Try to re-sent failed EAPOL-Key
  1472. * packets couple of times because otherwise STA keys become
  1473. * unsynchronized with AP. */
  1474. if (xhdr->type == IEEE802_1X_TYPE_EAPOL_KEY && !ack &&
  1475. pos + sizeof(*key) <= buf + len) {
  1476. key = (struct ieee802_1x_eapol_key *) pos;
  1477. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1478. HOSTAPD_LEVEL_DEBUG, "did not Ack EAPOL-Key "
  1479. "frame (%scast index=%d)",
  1480. key->key_index & BIT(7) ? "uni" : "broad",
  1481. key->key_index & ~BIT(7));
  1482. /* TODO: re-send EAPOL-Key couple of times (with short delay
  1483. * between them?). If all attempt fail, report error and
  1484. * deauthenticate STA so that it will get new keys when
  1485. * authenticating again (e.g., after returning in range).
  1486. * Separate limit/transmit state needed both for unicast and
  1487. * broadcast keys(?) */
  1488. }
  1489. /* TODO: could move unicast key configuration from ieee802_1x_tx_key()
  1490. * to here and change the key only if the EAPOL-Key packet was Acked.
  1491. */
  1492. return 1;
  1493. }
  1494. u8 * ieee802_1x_get_identity(struct eapol_state_machine *sm, size_t *len)
  1495. {
  1496. if (sm == NULL || sm->identity == NULL)
  1497. return NULL;
  1498. *len = sm->identity_len;
  1499. return sm->identity;
  1500. }
  1501. u8 * ieee802_1x_get_radius_class(struct eapol_state_machine *sm, size_t *len,
  1502. int idx)
  1503. {
  1504. if (sm == NULL || sm->radius_class.attr == NULL ||
  1505. idx >= (int) sm->radius_class.count)
  1506. return NULL;
  1507. *len = sm->radius_class.attr[idx].len;
  1508. return sm->radius_class.attr[idx].data;
  1509. }
  1510. const u8 * ieee802_1x_get_key(struct eapol_state_machine *sm, size_t *len)
  1511. {
  1512. if (sm == NULL)
  1513. return NULL;
  1514. *len = sm->eap_if->eapKeyDataLen;
  1515. return sm->eap_if->eapKeyData;
  1516. }
  1517. void ieee802_1x_notify_port_enabled(struct eapol_state_machine *sm,
  1518. int enabled)
  1519. {
  1520. if (sm == NULL)
  1521. return;
  1522. sm->eap_if->portEnabled = enabled ? TRUE : FALSE;
  1523. eapol_auth_step(sm);
  1524. }
  1525. void ieee802_1x_notify_port_valid(struct eapol_state_machine *sm,
  1526. int valid)
  1527. {
  1528. if (sm == NULL)
  1529. return;
  1530. sm->portValid = valid ? TRUE : FALSE;
  1531. eapol_auth_step(sm);
  1532. }
  1533. void ieee802_1x_notify_pre_auth(struct eapol_state_machine *sm, int pre_auth)
  1534. {
  1535. if (sm == NULL)
  1536. return;
  1537. if (pre_auth)
  1538. sm->flags |= EAPOL_SM_PREAUTH;
  1539. else
  1540. sm->flags &= ~EAPOL_SM_PREAUTH;
  1541. }
  1542. static const char * bool_txt(Boolean bool)
  1543. {
  1544. return bool ? "TRUE" : "FALSE";
  1545. }
  1546. int ieee802_1x_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
  1547. {
  1548. /* TODO */
  1549. return 0;
  1550. }
  1551. int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
  1552. char *buf, size_t buflen)
  1553. {
  1554. int len = 0, ret;
  1555. struct eapol_state_machine *sm = sta->eapol_sm;
  1556. if (sm == NULL)
  1557. return 0;
  1558. ret = os_snprintf(buf + len, buflen - len,
  1559. "dot1xPaePortNumber=%d\n"
  1560. "dot1xPaePortProtocolVersion=%d\n"
  1561. "dot1xPaePortCapabilities=1\n"
  1562. "dot1xPaePortInitialize=%d\n"
  1563. "dot1xPaePortReauthenticate=FALSE\n",
  1564. sta->aid,
  1565. EAPOL_VERSION,
  1566. sm->initialize);
  1567. if (ret < 0 || (size_t) ret >= buflen - len)
  1568. return len;
  1569. len += ret;
  1570. /* dot1xAuthConfigTable */
  1571. ret = os_snprintf(buf + len, buflen - len,
  1572. "dot1xAuthPaeState=%d\n"
  1573. "dot1xAuthBackendAuthState=%d\n"
  1574. "dot1xAuthAdminControlledDirections=%d\n"
  1575. "dot1xAuthOperControlledDirections=%d\n"
  1576. "dot1xAuthAuthControlledPortStatus=%d\n"
  1577. "dot1xAuthAuthControlledPortControl=%d\n"
  1578. "dot1xAuthQuietPeriod=%u\n"
  1579. "dot1xAuthServerTimeout=%u\n"
  1580. "dot1xAuthReAuthPeriod=%u\n"
  1581. "dot1xAuthReAuthEnabled=%s\n"
  1582. "dot1xAuthKeyTxEnabled=%s\n",
  1583. sm->auth_pae_state + 1,
  1584. sm->be_auth_state + 1,
  1585. sm->adminControlledDirections,
  1586. sm->operControlledDirections,
  1587. sm->authPortStatus,
  1588. sm->portControl,
  1589. sm->quietPeriod,
  1590. sm->serverTimeout,
  1591. sm->reAuthPeriod,
  1592. bool_txt(sm->reAuthEnabled),
  1593. bool_txt(sm->keyTxEnabled));
  1594. if (ret < 0 || (size_t) ret >= buflen - len)
  1595. return len;
  1596. len += ret;
  1597. /* dot1xAuthStatsTable */
  1598. ret = os_snprintf(buf + len, buflen - len,
  1599. "dot1xAuthEapolFramesRx=%u\n"
  1600. "dot1xAuthEapolFramesTx=%u\n"
  1601. "dot1xAuthEapolStartFramesRx=%u\n"
  1602. "dot1xAuthEapolLogoffFramesRx=%u\n"
  1603. "dot1xAuthEapolRespIdFramesRx=%u\n"
  1604. "dot1xAuthEapolRespFramesRx=%u\n"
  1605. "dot1xAuthEapolReqIdFramesTx=%u\n"
  1606. "dot1xAuthEapolReqFramesTx=%u\n"
  1607. "dot1xAuthInvalidEapolFramesRx=%u\n"
  1608. "dot1xAuthEapLengthErrorFramesRx=%u\n"
  1609. "dot1xAuthLastEapolFrameVersion=%u\n"
  1610. "dot1xAuthLastEapolFrameSource=" MACSTR "\n",
  1611. sm->dot1xAuthEapolFramesRx,
  1612. sm->dot1xAuthEapolFramesTx,
  1613. sm->dot1xAuthEapolStartFramesRx,
  1614. sm->dot1xAuthEapolLogoffFramesRx,
  1615. sm->dot1xAuthEapolRespIdFramesRx,
  1616. sm->dot1xAuthEapolRespFramesRx,
  1617. sm->dot1xAuthEapolReqIdFramesTx,
  1618. sm->dot1xAuthEapolReqFramesTx,
  1619. sm->dot1xAuthInvalidEapolFramesRx,
  1620. sm->dot1xAuthEapLengthErrorFramesRx,
  1621. sm->dot1xAuthLastEapolFrameVersion,
  1622. MAC2STR(sm->addr));
  1623. if (ret < 0 || (size_t) ret >= buflen - len)
  1624. return len;
  1625. len += ret;
  1626. /* dot1xAuthDiagTable */
  1627. ret = os_snprintf(buf + len, buflen - len,
  1628. "dot1xAuthEntersConnecting=%u\n"
  1629. "dot1xAuthEapLogoffsWhileConnecting=%u\n"
  1630. "dot1xAuthEntersAuthenticating=%u\n"
  1631. "dot1xAuthAuthSuccessesWhileAuthenticating=%u\n"
  1632. "dot1xAuthAuthTimeoutsWhileAuthenticating=%u\n"
  1633. "dot1xAuthAuthFailWhileAuthenticating=%u\n"
  1634. "dot1xAuthAuthEapStartsWhileAuthenticating=%u\n"
  1635. "dot1xAuthAuthEapLogoffWhileAuthenticating=%u\n"
  1636. "dot1xAuthAuthReauthsWhileAuthenticated=%u\n"
  1637. "dot1xAuthAuthEapStartsWhileAuthenticated=%u\n"
  1638. "dot1xAuthAuthEapLogoffWhileAuthenticated=%u\n"
  1639. "dot1xAuthBackendResponses=%u\n"
  1640. "dot1xAuthBackendAccessChallenges=%u\n"
  1641. "dot1xAuthBackendOtherRequestsToSupplicant=%u\n"
  1642. "dot1xAuthBackendAuthSuccesses=%u\n"
  1643. "dot1xAuthBackendAuthFails=%u\n",
  1644. sm->authEntersConnecting,
  1645. sm->authEapLogoffsWhileConnecting,
  1646. sm->authEntersAuthenticating,
  1647. sm->authAuthSuccessesWhileAuthenticating,
  1648. sm->authAuthTimeoutsWhileAuthenticating,
  1649. sm->authAuthFailWhileAuthenticating,
  1650. sm->authAuthEapStartsWhileAuthenticating,
  1651. sm->authAuthEapLogoffWhileAuthenticating,
  1652. sm->authAuthReauthsWhileAuthenticated,
  1653. sm->authAuthEapStartsWhileAuthenticated,
  1654. sm->authAuthEapLogoffWhileAuthenticated,
  1655. sm->backendResponses,
  1656. sm->backendAccessChallenges,
  1657. sm->backendOtherRequestsToSupplicant,
  1658. sm->backendAuthSuccesses,
  1659. sm->backendAuthFails);
  1660. if (ret < 0 || (size_t) ret >= buflen - len)
  1661. return len;
  1662. len += ret;
  1663. /* dot1xAuthSessionStatsTable */
  1664. ret = os_snprintf(buf + len, buflen - len,
  1665. /* TODO: dot1xAuthSessionOctetsRx */
  1666. /* TODO: dot1xAuthSessionOctetsTx */
  1667. /* TODO: dot1xAuthSessionFramesRx */
  1668. /* TODO: dot1xAuthSessionFramesTx */
  1669. "dot1xAuthSessionId=%08X-%08X\n"
  1670. "dot1xAuthSessionAuthenticMethod=%d\n"
  1671. "dot1xAuthSessionTime=%u\n"
  1672. "dot1xAuthSessionTerminateCause=999\n"
  1673. "dot1xAuthSessionUserName=%s\n",
  1674. sta->acct_session_id_hi, sta->acct_session_id_lo,
  1675. (wpa_key_mgmt_wpa_ieee8021x(
  1676. wpa_auth_sta_key_mgmt(sta->wpa_sm))) ?
  1677. 1 : 2,
  1678. (unsigned int) (time(NULL) -
  1679. sta->acct_session_start),
  1680. sm->identity);
  1681. if (ret < 0 || (size_t) ret >= buflen - len)
  1682. return len;
  1683. len += ret;
  1684. return len;
  1685. }
  1686. static void ieee802_1x_finished(struct hostapd_data *hapd,
  1687. struct sta_info *sta, int success)
  1688. {
  1689. const u8 *key;
  1690. size_t len;
  1691. /* TODO: get PMKLifetime from WPA parameters */
  1692. static const int dot11RSNAConfigPMKLifetime = 43200;
  1693. key = ieee802_1x_get_key(sta->eapol_sm, &len);
  1694. if (success && key && len >= PMK_LEN &&
  1695. wpa_auth_pmksa_add(sta->wpa_sm, key, dot11RSNAConfigPMKLifetime,
  1696. sta->eapol_sm) == 0) {
  1697. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  1698. HOSTAPD_LEVEL_DEBUG,
  1699. "Added PMKSA cache entry (IEEE 802.1X)");
  1700. }
  1701. #ifdef CONFIG_WPS
  1702. if (!success && (sta->flags & WLAN_STA_WPS)) {
  1703. /*
  1704. * Many devices require deauthentication after WPS provisioning
  1705. * and some may not be be able to do that themselves, so
  1706. * disconnect the client here.
  1707. */
  1708. wpa_printf(MSG_DEBUG, "WPS: Force disconnection after "
  1709. "EAP-Failure");
  1710. /* Add a small sleep to increase likelihood of previously
  1711. * requested EAP-Failure TX getting out before this should the
  1712. * driver reorder operations.
  1713. */
  1714. os_sleep(0, 10000);
  1715. ap_sta_disconnect(hapd, sta, sta->addr,
  1716. WLAN_REASON_PREV_AUTH_NOT_VALID);
  1717. }
  1718. #endif /* CONFIG_WPS */
  1719. }