ieee802_1x.c 55 KB

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