ieee802_1x.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712
  1. /*
  2. * hostapd / IEEE 802.1X-2004 Authenticator
  3. * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "crypto/md5.h"
  12. #include "crypto/crypto.h"
  13. #include "crypto/random.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "radius/radius.h"
  16. #include "radius/radius_client.h"
  17. #include "eap_server/eap.h"
  18. #include "eap_common/eap_wsc_common.h"
  19. #include "eapol_auth/eapol_auth_sm.h"
  20. #include "eapol_auth/eapol_auth_sm_i.h"
  21. #include "p2p/p2p.h"
  22. #include "hostapd.h"
  23. #include "accounting.h"
  24. #include "sta_info.h"
  25. #include "wpa_auth.h"
  26. #include "preauth_auth.h"
  27. #include "pmksa_cache_auth.h"
  28. #include "ap_config.h"
  29. #include "ap_drv_ops.h"
  30. #include "wps_hostapd.h"
  31. #include "hs20.h"
  32. #include "ieee802_1x.h"
  33. #ifdef CONFIG_HS20
  34. static void ieee802_1x_wnm_notif_send(void *eloop_ctx, void *timeout_ctx);
  35. #endif /* CONFIG_HS20 */
  36. static void ieee802_1x_finished(struct hostapd_data *hapd,
  37. struct sta_info *sta, int success,
  38. int remediation);
  39. static void ieee802_1x_send(struct hostapd_data *hapd, struct sta_info *sta,
  40. u8 type, const u8 *data, size_t datalen)
  41. {
  42. u8 *buf;
  43. struct ieee802_1x_hdr *xhdr;
  44. size_t len;
  45. int encrypt = 0;
  46. len = sizeof(*xhdr) + datalen;
  47. buf = os_zalloc(len);
  48. if (buf == NULL) {
  49. wpa_printf(MSG_ERROR, "malloc() failed for "
  50. "ieee802_1x_send(len=%lu)",
  51. (unsigned long) len);
  52. return;
  53. }
  54. xhdr = (struct ieee802_1x_hdr *) buf;
  55. xhdr->version = hapd->conf->eapol_version;
  56. xhdr->type = type;
  57. xhdr->length = host_to_be16(datalen);
  58. if (datalen > 0 && data != NULL)
  59. os_memcpy(xhdr + 1, data, datalen);
  60. if (wpa_auth_pairwise_set(sta->wpa_sm))
  61. encrypt = 1;
  62. #ifdef CONFIG_TESTING_OPTIONS
  63. if (hapd->ext_eapol_frame_io) {
  64. size_t hex_len = 2 * len + 1;
  65. char *hex = os_malloc(hex_len);
  66. if (hex) {
  67. wpa_snprintf_hex(hex, hex_len, buf, len);
  68. wpa_msg(hapd->msg_ctx, MSG_INFO,
  69. "EAPOL-TX " MACSTR " %s",
  70. MAC2STR(sta->addr), hex);
  71. os_free(hex);
  72. }
  73. } else
  74. #endif /* CONFIG_TESTING_OPTIONS */
  75. if (sta->flags & WLAN_STA_PREAUTH) {
  76. rsn_preauth_send(hapd, sta, buf, len);
  77. } else {
  78. hostapd_drv_hapd_send_eapol(
  79. hapd, sta->addr, buf, len,
  80. encrypt, hostapd_sta_flags_to_drv(sta->flags));
  81. }
  82. os_free(buf);
  83. }
  84. void ieee802_1x_set_sta_authorized(struct hostapd_data *hapd,
  85. struct sta_info *sta, int authorized)
  86. {
  87. int res;
  88. if (sta->flags & WLAN_STA_PREAUTH)
  89. return;
  90. if (authorized) {
  91. ap_sta_set_authorized(hapd, sta, 1);
  92. res = hostapd_set_authorized(hapd, sta, 1);
  93. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  94. HOSTAPD_LEVEL_DEBUG, "authorizing port");
  95. } else {
  96. ap_sta_set_authorized(hapd, sta, 0);
  97. res = hostapd_set_authorized(hapd, sta, 0);
  98. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  99. HOSTAPD_LEVEL_DEBUG, "unauthorizing port");
  100. }
  101. if (res && errno != ENOENT) {
  102. wpa_printf(MSG_DEBUG, "Could not set station " MACSTR
  103. " flags for kernel driver (errno=%d).",
  104. MAC2STR(sta->addr), errno);
  105. }
  106. if (authorized) {
  107. os_get_reltime(&sta->connected_time);
  108. accounting_sta_start(hapd, sta);
  109. }
  110. }
  111. #ifndef CONFIG_FIPS
  112. #ifndef CONFIG_NO_RC4
  113. static void ieee802_1x_tx_key_one(struct hostapd_data *hapd,
  114. struct sta_info *sta,
  115. int idx, int broadcast,
  116. u8 *key_data, size_t key_len)
  117. {
  118. u8 *buf, *ekey;
  119. struct ieee802_1x_hdr *hdr;
  120. struct ieee802_1x_eapol_key *key;
  121. size_t len, ekey_len;
  122. struct eapol_state_machine *sm = sta->eapol_sm;
  123. if (sm == NULL)
  124. return;
  125. len = sizeof(*key) + key_len;
  126. buf = os_zalloc(sizeof(*hdr) + len);
  127. if (buf == NULL)
  128. return;
  129. hdr = (struct ieee802_1x_hdr *) buf;
  130. key = (struct ieee802_1x_eapol_key *) (hdr + 1);
  131. key->type = EAPOL_KEY_TYPE_RC4;
  132. WPA_PUT_BE16(key->key_length, key_len);
  133. wpa_get_ntp_timestamp(key->replay_counter);
  134. if (random_get_bytes(key->key_iv, sizeof(key->key_iv))) {
  135. wpa_printf(MSG_ERROR, "Could not get random numbers");
  136. os_free(buf);
  137. return;
  138. }
  139. key->key_index = idx | (broadcast ? 0 : BIT(7));
  140. if (hapd->conf->eapol_key_index_workaround) {
  141. /* According to some information, WinXP Supplicant seems to
  142. * interpret bit7 as an indication whether the key is to be
  143. * activated, so make it possible to enable workaround that
  144. * sets this bit for all keys. */
  145. key->key_index |= BIT(7);
  146. }
  147. /* Key is encrypted using "Key-IV + MSK[0..31]" as the RC4-key and
  148. * MSK[32..63] is used to sign the message. */
  149. if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
  150. wpa_printf(MSG_ERROR, "No eapKeyData available for encrypting "
  151. "and signing EAPOL-Key");
  152. os_free(buf);
  153. return;
  154. }
  155. os_memcpy((u8 *) (key + 1), key_data, key_len);
  156. ekey_len = sizeof(key->key_iv) + 32;
  157. ekey = os_malloc(ekey_len);
  158. if (ekey == NULL) {
  159. wpa_printf(MSG_ERROR, "Could not encrypt key");
  160. os_free(buf);
  161. return;
  162. }
  163. os_memcpy(ekey, key->key_iv, sizeof(key->key_iv));
  164. os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
  165. rc4_skip(ekey, ekey_len, 0, (u8 *) (key + 1), key_len);
  166. os_free(ekey);
  167. /* This header is needed here for HMAC-MD5, but it will be regenerated
  168. * in ieee802_1x_send() */
  169. hdr->version = hapd->conf->eapol_version;
  170. hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
  171. hdr->length = host_to_be16(len);
  172. hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
  173. key->key_signature);
  174. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key to " MACSTR
  175. " (%s index=%d)", MAC2STR(sm->addr),
  176. broadcast ? "broadcast" : "unicast", idx);
  177. ieee802_1x_send(hapd, sta, IEEE802_1X_TYPE_EAPOL_KEY, (u8 *) key, len);
  178. if (sta->eapol_sm)
  179. sta->eapol_sm->dot1xAuthEapolFramesTx++;
  180. os_free(buf);
  181. }
  182. static void ieee802_1x_tx_key(struct hostapd_data *hapd, struct sta_info *sta)
  183. {
  184. struct eapol_authenticator *eapol = hapd->eapol_auth;
  185. struct eapol_state_machine *sm = sta->eapol_sm;
  186. if (sm == NULL || !sm->eap_if->eapKeyData)
  187. return;
  188. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key(s) to " MACSTR,
  189. MAC2STR(sta->addr));
  190. #ifndef CONFIG_NO_VLAN
  191. if (sta->vlan_id > 0) {
  192. wpa_printf(MSG_ERROR, "Using WEP with vlans is not supported.");
  193. return;
  194. }
  195. #endif /* CONFIG_NO_VLAN */
  196. if (eapol->default_wep_key) {
  197. ieee802_1x_tx_key_one(hapd, sta, eapol->default_wep_key_idx, 1,
  198. eapol->default_wep_key,
  199. hapd->conf->default_wep_key_len);
  200. }
  201. if (hapd->conf->individual_wep_key_len > 0) {
  202. u8 *ikey;
  203. ikey = os_malloc(hapd->conf->individual_wep_key_len);
  204. if (ikey == NULL ||
  205. random_get_bytes(ikey, hapd->conf->individual_wep_key_len))
  206. {
  207. wpa_printf(MSG_ERROR, "Could not generate random "
  208. "individual WEP key.");
  209. os_free(ikey);
  210. return;
  211. }
  212. wpa_hexdump_key(MSG_DEBUG, "Individual WEP key",
  213. ikey, hapd->conf->individual_wep_key_len);
  214. ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
  215. hapd->conf->individual_wep_key_len);
  216. /* TODO: set encryption in TX callback, i.e., only after STA
  217. * has ACKed EAPOL-Key frame */
  218. if (hostapd_drv_set_key(hapd->conf->iface, hapd, WPA_ALG_WEP,
  219. sta->addr, 0, 1, NULL, 0, ikey,
  220. hapd->conf->individual_wep_key_len)) {
  221. wpa_printf(MSG_ERROR, "Could not set individual WEP "
  222. "encryption.");
  223. }
  224. os_free(ikey);
  225. }
  226. }
  227. #endif /* CONFIG_NO_RC4 */
  228. #endif /* CONFIG_FIPS */
  229. const char *radius_mode_txt(struct hostapd_data *hapd)
  230. {
  231. switch (hapd->iface->conf->hw_mode) {
  232. case HOSTAPD_MODE_IEEE80211AD:
  233. return "802.11ad";
  234. case HOSTAPD_MODE_IEEE80211A:
  235. return "802.11a";
  236. case HOSTAPD_MODE_IEEE80211G:
  237. return "802.11g";
  238. case HOSTAPD_MODE_IEEE80211B:
  239. default:
  240. return "802.11b";
  241. }
  242. }
  243. int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *sta)
  244. {
  245. int i;
  246. u8 rate = 0;
  247. for (i = 0; i < sta->supported_rates_len; i++)
  248. if ((sta->supported_rates[i] & 0x7f) > rate)
  249. rate = sta->supported_rates[i] & 0x7f;
  250. return rate;
  251. }
  252. #ifndef CONFIG_NO_RADIUS
  253. static void ieee802_1x_learn_identity(struct hostapd_data *hapd,
  254. struct eapol_state_machine *sm,
  255. const u8 *eap, size_t len)
  256. {
  257. const u8 *identity;
  258. size_t identity_len;
  259. const struct eap_hdr *hdr = (const struct eap_hdr *) eap;
  260. if (len <= sizeof(struct eap_hdr) ||
  261. (hdr->code == EAP_CODE_RESPONSE &&
  262. eap[sizeof(struct eap_hdr)] != EAP_TYPE_IDENTITY) ||
  263. (hdr->code == EAP_CODE_INITIATE &&
  264. eap[sizeof(struct eap_hdr)] != EAP_ERP_TYPE_REAUTH) ||
  265. (hdr->code != EAP_CODE_RESPONSE &&
  266. hdr->code != EAP_CODE_INITIATE))
  267. return;
  268. identity = eap_get_identity(sm->eap, &identity_len);
  269. if (identity == NULL)
  270. return;
  271. /* Save station identity for future RADIUS packets */
  272. os_free(sm->identity);
  273. sm->identity = (u8 *) dup_binstr(identity, identity_len);
  274. if (sm->identity == NULL) {
  275. sm->identity_len = 0;
  276. return;
  277. }
  278. sm->identity_len = identity_len;
  279. hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
  280. HOSTAPD_LEVEL_DEBUG, "STA identity '%s'", sm->identity);
  281. sm->dot1xAuthEapolRespIdFramesRx++;
  282. }
  283. static int add_common_radius_sta_attr_rsn(struct hostapd_data *hapd,
  284. struct hostapd_radius_attr *req_attr,
  285. struct sta_info *sta,
  286. struct radius_msg *msg)
  287. {
  288. u32 suite;
  289. int ver, val;
  290. ver = wpa_auth_sta_wpa_version(sta->wpa_sm);
  291. val = wpa_auth_get_pairwise(sta->wpa_sm);
  292. suite = wpa_cipher_to_suite(ver, val);
  293. if (val != -1 &&
  294. !hostapd_config_get_radius_attr(req_attr,
  295. RADIUS_ATTR_WLAN_PAIRWISE_CIPHER) &&
  296. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_WLAN_PAIRWISE_CIPHER,
  297. suite)) {
  298. wpa_printf(MSG_ERROR, "Could not add WLAN-Pairwise-Cipher");
  299. return -1;
  300. }
  301. suite = wpa_cipher_to_suite(((hapd->conf->wpa & 0x2) ||
  302. hapd->conf->osen) ?
  303. WPA_PROTO_RSN : WPA_PROTO_WPA,
  304. hapd->conf->wpa_group);
  305. if (!hostapd_config_get_radius_attr(req_attr,
  306. RADIUS_ATTR_WLAN_GROUP_CIPHER) &&
  307. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_WLAN_GROUP_CIPHER,
  308. suite)) {
  309. wpa_printf(MSG_ERROR, "Could not add WLAN-Group-Cipher");
  310. return -1;
  311. }
  312. val = wpa_auth_sta_key_mgmt(sta->wpa_sm);
  313. suite = wpa_akm_to_suite(val);
  314. if (val != -1 &&
  315. !hostapd_config_get_radius_attr(req_attr,
  316. RADIUS_ATTR_WLAN_AKM_SUITE) &&
  317. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_WLAN_AKM_SUITE,
  318. suite)) {
  319. wpa_printf(MSG_ERROR, "Could not add WLAN-AKM-Suite");
  320. return -1;
  321. }
  322. #ifdef CONFIG_IEEE80211W
  323. if (hapd->conf->ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  324. suite = wpa_cipher_to_suite(WPA_PROTO_RSN,
  325. hapd->conf->group_mgmt_cipher);
  326. if (!hostapd_config_get_radius_attr(
  327. req_attr, RADIUS_ATTR_WLAN_GROUP_MGMT_CIPHER) &&
  328. !radius_msg_add_attr_int32(
  329. msg, RADIUS_ATTR_WLAN_GROUP_MGMT_CIPHER, suite)) {
  330. wpa_printf(MSG_ERROR,
  331. "Could not add WLAN-Group-Mgmt-Cipher");
  332. return -1;
  333. }
  334. }
  335. #endif /* CONFIG_IEEE80211W */
  336. return 0;
  337. }
  338. static int add_common_radius_sta_attr(struct hostapd_data *hapd,
  339. struct hostapd_radius_attr *req_attr,
  340. struct sta_info *sta,
  341. struct radius_msg *msg)
  342. {
  343. char buf[128];
  344. if (!hostapd_config_get_radius_attr(req_attr,
  345. RADIUS_ATTR_SERVICE_TYPE) &&
  346. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_SERVICE_TYPE,
  347. RADIUS_SERVICE_TYPE_FRAMED)) {
  348. wpa_printf(MSG_ERROR, "Could not add Service-Type");
  349. return -1;
  350. }
  351. if (!hostapd_config_get_radius_attr(req_attr,
  352. RADIUS_ATTR_NAS_PORT) &&
  353. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT, sta->aid)) {
  354. wpa_printf(MSG_ERROR, "Could not add NAS-Port");
  355. return -1;
  356. }
  357. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  358. MAC2STR(sta->addr));
  359. buf[sizeof(buf) - 1] = '\0';
  360. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  361. (u8 *) buf, os_strlen(buf))) {
  362. wpa_printf(MSG_ERROR, "Could not add Calling-Station-Id");
  363. return -1;
  364. }
  365. if (sta->flags & WLAN_STA_PREAUTH) {
  366. os_strlcpy(buf, "IEEE 802.11i Pre-Authentication",
  367. sizeof(buf));
  368. } else {
  369. os_snprintf(buf, sizeof(buf), "CONNECT %d%sMbps %s",
  370. radius_sta_rate(hapd, sta) / 2,
  371. (radius_sta_rate(hapd, sta) & 1) ? ".5" : "",
  372. radius_mode_txt(hapd));
  373. buf[sizeof(buf) - 1] = '\0';
  374. }
  375. if (!hostapd_config_get_radius_attr(req_attr,
  376. RADIUS_ATTR_CONNECT_INFO) &&
  377. !radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  378. (u8 *) buf, os_strlen(buf))) {
  379. wpa_printf(MSG_ERROR, "Could not add Connect-Info");
  380. return -1;
  381. }
  382. if (sta->acct_session_id) {
  383. os_snprintf(buf, sizeof(buf), "%016llX",
  384. (unsigned long long) sta->acct_session_id);
  385. if (!radius_msg_add_attr(msg, RADIUS_ATTR_ACCT_SESSION_ID,
  386. (u8 *) buf, os_strlen(buf))) {
  387. wpa_printf(MSG_ERROR, "Could not add Acct-Session-Id");
  388. return -1;
  389. }
  390. }
  391. if ((hapd->conf->wpa & 2) &&
  392. !hapd->conf->disable_pmksa_caching &&
  393. sta->eapol_sm && sta->eapol_sm->acct_multi_session_id) {
  394. os_snprintf(buf, sizeof(buf), "%016llX",
  395. (unsigned long long)
  396. sta->eapol_sm->acct_multi_session_id);
  397. if (!radius_msg_add_attr(
  398. msg, RADIUS_ATTR_ACCT_MULTI_SESSION_ID,
  399. (u8 *) buf, os_strlen(buf))) {
  400. wpa_printf(MSG_INFO,
  401. "Could not add Acct-Multi-Session-Id");
  402. return -1;
  403. }
  404. }
  405. #ifdef CONFIG_IEEE80211R
  406. if (hapd->conf->wpa && wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt) &&
  407. sta->wpa_sm &&
  408. (wpa_key_mgmt_ft(wpa_auth_sta_key_mgmt(sta->wpa_sm)) ||
  409. sta->auth_alg == WLAN_AUTH_FT) &&
  410. !hostapd_config_get_radius_attr(req_attr,
  411. RADIUS_ATTR_MOBILITY_DOMAIN_ID) &&
  412. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_MOBILITY_DOMAIN_ID,
  413. WPA_GET_BE16(
  414. hapd->conf->mobility_domain))) {
  415. wpa_printf(MSG_ERROR, "Could not add Mobility-Domain-Id");
  416. return -1;
  417. }
  418. #endif /* CONFIG_IEEE80211R */
  419. if ((hapd->conf->wpa || hapd->conf->osen) && sta->wpa_sm &&
  420. add_common_radius_sta_attr_rsn(hapd, req_attr, sta, msg) < 0)
  421. return -1;
  422. return 0;
  423. }
  424. int add_common_radius_attr(struct hostapd_data *hapd,
  425. struct hostapd_radius_attr *req_attr,
  426. struct sta_info *sta,
  427. struct radius_msg *msg)
  428. {
  429. char buf[128];
  430. struct hostapd_radius_attr *attr;
  431. int len;
  432. if (!hostapd_config_get_radius_attr(req_attr,
  433. RADIUS_ATTR_NAS_IP_ADDRESS) &&
  434. hapd->conf->own_ip_addr.af == AF_INET &&
  435. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
  436. (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
  437. wpa_printf(MSG_ERROR, "Could not add NAS-IP-Address");
  438. return -1;
  439. }
  440. #ifdef CONFIG_IPV6
  441. if (!hostapd_config_get_radius_attr(req_attr,
  442. RADIUS_ATTR_NAS_IPV6_ADDRESS) &&
  443. hapd->conf->own_ip_addr.af == AF_INET6 &&
  444. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
  445. (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
  446. wpa_printf(MSG_ERROR, "Could not add NAS-IPv6-Address");
  447. return -1;
  448. }
  449. #endif /* CONFIG_IPV6 */
  450. if (!hostapd_config_get_radius_attr(req_attr,
  451. RADIUS_ATTR_NAS_IDENTIFIER) &&
  452. hapd->conf->nas_identifier &&
  453. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
  454. (u8 *) hapd->conf->nas_identifier,
  455. os_strlen(hapd->conf->nas_identifier))) {
  456. wpa_printf(MSG_ERROR, "Could not add NAS-Identifier");
  457. return -1;
  458. }
  459. len = os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":",
  460. MAC2STR(hapd->own_addr));
  461. os_memcpy(&buf[len], hapd->conf->ssid.ssid,
  462. hapd->conf->ssid.ssid_len);
  463. len += hapd->conf->ssid.ssid_len;
  464. if (!hostapd_config_get_radius_attr(req_attr,
  465. RADIUS_ATTR_CALLED_STATION_ID) &&
  466. !radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
  467. (u8 *) buf, len)) {
  468. wpa_printf(MSG_ERROR, "Could not add Called-Station-Id");
  469. return -1;
  470. }
  471. if (!hostapd_config_get_radius_attr(req_attr,
  472. RADIUS_ATTR_NAS_PORT_TYPE) &&
  473. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
  474. RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
  475. wpa_printf(MSG_ERROR, "Could not add NAS-Port-Type");
  476. return -1;
  477. }
  478. #ifdef CONFIG_INTERWORKING
  479. if (hapd->conf->interworking &&
  480. !is_zero_ether_addr(hapd->conf->hessid)) {
  481. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  482. MAC2STR(hapd->conf->hessid));
  483. buf[sizeof(buf) - 1] = '\0';
  484. if (!hostapd_config_get_radius_attr(req_attr,
  485. RADIUS_ATTR_WLAN_HESSID) &&
  486. !radius_msg_add_attr(msg, RADIUS_ATTR_WLAN_HESSID,
  487. (u8 *) buf, os_strlen(buf))) {
  488. wpa_printf(MSG_ERROR, "Could not add WLAN-HESSID");
  489. return -1;
  490. }
  491. }
  492. #endif /* CONFIG_INTERWORKING */
  493. if (sta && add_common_radius_sta_attr(hapd, req_attr, sta, msg) < 0)
  494. return -1;
  495. for (attr = req_attr; attr; attr = attr->next) {
  496. if (!radius_msg_add_attr(msg, attr->type,
  497. wpabuf_head(attr->val),
  498. wpabuf_len(attr->val))) {
  499. wpa_printf(MSG_ERROR, "Could not add RADIUS "
  500. "attribute");
  501. return -1;
  502. }
  503. }
  504. return 0;
  505. }
  506. static void ieee802_1x_encapsulate_radius(struct hostapd_data *hapd,
  507. struct sta_info *sta,
  508. const u8 *eap, size_t len)
  509. {
  510. struct radius_msg *msg;
  511. struct eapol_state_machine *sm = sta->eapol_sm;
  512. if (sm == NULL)
  513. return;
  514. ieee802_1x_learn_identity(hapd, sm, eap, len);
  515. wpa_printf(MSG_DEBUG, "Encapsulating EAP message into a RADIUS "
  516. "packet");
  517. sm->radius_identifier = radius_client_get_id(hapd->radius);
  518. msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
  519. sm->radius_identifier);
  520. if (msg == NULL) {
  521. wpa_printf(MSG_INFO, "Could not create new RADIUS packet");
  522. return;
  523. }
  524. if (radius_msg_make_authenticator(msg) < 0) {
  525. wpa_printf(MSG_INFO, "Could not make Request Authenticator");
  526. goto fail;
  527. }
  528. if (sm->identity &&
  529. !radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
  530. sm->identity, sm->identity_len)) {
  531. wpa_printf(MSG_INFO, "Could not add User-Name");
  532. goto fail;
  533. }
  534. if (add_common_radius_attr(hapd, hapd->conf->radius_auth_req_attr, sta,
  535. msg) < 0)
  536. goto fail;
  537. /* TODO: should probably check MTU from driver config; 2304 is max for
  538. * IEEE 802.11, but use 1400 to avoid problems with too large packets
  539. */
  540. if (!hostapd_config_get_radius_attr(hapd->conf->radius_auth_req_attr,
  541. RADIUS_ATTR_FRAMED_MTU) &&
  542. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_FRAMED_MTU, 1400)) {
  543. wpa_printf(MSG_INFO, "Could not add Framed-MTU");
  544. goto fail;
  545. }
  546. if (!radius_msg_add_eap(msg, eap, len)) {
  547. wpa_printf(MSG_INFO, "Could not add EAP-Message");
  548. goto fail;
  549. }
  550. /* State attribute must be copied if and only if this packet is
  551. * Access-Request reply to the previous Access-Challenge */
  552. if (sm->last_recv_radius &&
  553. radius_msg_get_hdr(sm->last_recv_radius)->code ==
  554. RADIUS_CODE_ACCESS_CHALLENGE) {
  555. int res = radius_msg_copy_attr(msg, sm->last_recv_radius,
  556. RADIUS_ATTR_STATE);
  557. if (res < 0) {
  558. wpa_printf(MSG_INFO, "Could not copy State attribute from previous Access-Challenge");
  559. goto fail;
  560. }
  561. if (res > 0) {
  562. wpa_printf(MSG_DEBUG, "Copied RADIUS State Attribute");
  563. }
  564. }
  565. if (hapd->conf->radius_request_cui) {
  566. const u8 *cui;
  567. size_t cui_len;
  568. /* Add previously learned CUI or nul CUI to request CUI */
  569. if (sm->radius_cui) {
  570. cui = wpabuf_head(sm->radius_cui);
  571. cui_len = wpabuf_len(sm->radius_cui);
  572. } else {
  573. cui = (const u8 *) "\0";
  574. cui_len = 1;
  575. }
  576. if (!radius_msg_add_attr(msg,
  577. RADIUS_ATTR_CHARGEABLE_USER_IDENTITY,
  578. cui, cui_len)) {
  579. wpa_printf(MSG_ERROR, "Could not add CUI");
  580. goto fail;
  581. }
  582. }
  583. #ifdef CONFIG_HS20
  584. if (hapd->conf->hs20) {
  585. u8 ver = 1; /* Release 2 */
  586. if (!radius_msg_add_wfa(
  587. msg, RADIUS_VENDOR_ATTR_WFA_HS20_AP_VERSION,
  588. &ver, 1)) {
  589. wpa_printf(MSG_ERROR, "Could not add HS 2.0 AP "
  590. "version");
  591. goto fail;
  592. }
  593. if (sta->hs20_ie && wpabuf_len(sta->hs20_ie) > 0) {
  594. const u8 *pos;
  595. u8 buf[3];
  596. u16 id;
  597. pos = wpabuf_head_u8(sta->hs20_ie);
  598. buf[0] = (*pos) >> 4;
  599. if (((*pos) & HS20_PPS_MO_ID_PRESENT) &&
  600. wpabuf_len(sta->hs20_ie) >= 3)
  601. id = WPA_GET_LE16(pos + 1);
  602. else
  603. id = 0;
  604. WPA_PUT_BE16(buf + 1, id);
  605. if (!radius_msg_add_wfa(
  606. msg,
  607. RADIUS_VENDOR_ATTR_WFA_HS20_STA_VERSION,
  608. buf, sizeof(buf))) {
  609. wpa_printf(MSG_ERROR, "Could not add HS 2.0 "
  610. "STA version");
  611. goto fail;
  612. }
  613. }
  614. }
  615. #endif /* CONFIG_HS20 */
  616. if (radius_client_send(hapd->radius, msg, RADIUS_AUTH, sta->addr) < 0)
  617. goto fail;
  618. return;
  619. fail:
  620. radius_msg_free(msg);
  621. }
  622. #endif /* CONFIG_NO_RADIUS */
  623. static void handle_eap_response(struct hostapd_data *hapd,
  624. struct sta_info *sta, struct eap_hdr *eap,
  625. size_t len)
  626. {
  627. u8 type, *data;
  628. struct eapol_state_machine *sm = sta->eapol_sm;
  629. if (sm == NULL)
  630. return;
  631. data = (u8 *) (eap + 1);
  632. if (len < sizeof(*eap) + 1) {
  633. wpa_printf(MSG_INFO, "handle_eap_response: too short response data");
  634. return;
  635. }
  636. sm->eap_type_supp = type = data[0];
  637. hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
  638. HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d "
  639. "id=%d len=%d) from STA: EAP Response-%s (%d)",
  640. eap->code, eap->identifier, be_to_host16(eap->length),
  641. eap_server_get_name(0, type), type);
  642. sm->dot1xAuthEapolRespFramesRx++;
  643. wpabuf_free(sm->eap_if->eapRespData);
  644. sm->eap_if->eapRespData = wpabuf_alloc_copy(eap, len);
  645. sm->eapolEap = TRUE;
  646. }
  647. static void handle_eap_initiate(struct hostapd_data *hapd,
  648. struct sta_info *sta, struct eap_hdr *eap,
  649. size_t len)
  650. {
  651. #ifdef CONFIG_ERP
  652. u8 type, *data;
  653. struct eapol_state_machine *sm = sta->eapol_sm;
  654. if (sm == NULL)
  655. return;
  656. if (len < sizeof(*eap) + 1) {
  657. wpa_printf(MSG_INFO,
  658. "handle_eap_initiate: too short response data");
  659. return;
  660. }
  661. data = (u8 *) (eap + 1);
  662. type = data[0];
  663. hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
  664. HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d "
  665. "id=%d len=%d) from STA: EAP Initiate type %u",
  666. eap->code, eap->identifier, be_to_host16(eap->length),
  667. type);
  668. wpabuf_free(sm->eap_if->eapRespData);
  669. sm->eap_if->eapRespData = wpabuf_alloc_copy(eap, len);
  670. sm->eapolEap = TRUE;
  671. #endif /* CONFIG_ERP */
  672. }
  673. /* Process incoming EAP packet from Supplicant */
  674. static void handle_eap(struct hostapd_data *hapd, struct sta_info *sta,
  675. u8 *buf, size_t len)
  676. {
  677. struct eap_hdr *eap;
  678. u16 eap_len;
  679. if (len < sizeof(*eap)) {
  680. wpa_printf(MSG_INFO, " too short EAP packet");
  681. return;
  682. }
  683. eap = (struct eap_hdr *) buf;
  684. eap_len = be_to_host16(eap->length);
  685. wpa_printf(MSG_DEBUG, "EAP: code=%d identifier=%d length=%d",
  686. eap->code, eap->identifier, eap_len);
  687. if (eap_len < sizeof(*eap)) {
  688. wpa_printf(MSG_DEBUG, " Invalid EAP length");
  689. return;
  690. } else if (eap_len > len) {
  691. wpa_printf(MSG_DEBUG, " Too short frame to contain this EAP "
  692. "packet");
  693. return;
  694. } else if (eap_len < len) {
  695. wpa_printf(MSG_DEBUG, " Ignoring %lu extra bytes after EAP "
  696. "packet", (unsigned long) len - eap_len);
  697. }
  698. switch (eap->code) {
  699. case EAP_CODE_REQUEST:
  700. wpa_printf(MSG_DEBUG, " (request)");
  701. return;
  702. case EAP_CODE_RESPONSE:
  703. wpa_printf(MSG_DEBUG, " (response)");
  704. handle_eap_response(hapd, sta, eap, eap_len);
  705. break;
  706. case EAP_CODE_SUCCESS:
  707. wpa_printf(MSG_DEBUG, " (success)");
  708. return;
  709. case EAP_CODE_FAILURE:
  710. wpa_printf(MSG_DEBUG, " (failure)");
  711. return;
  712. case EAP_CODE_INITIATE:
  713. wpa_printf(MSG_DEBUG, " (initiate)");
  714. handle_eap_initiate(hapd, sta, eap, eap_len);
  715. break;
  716. case EAP_CODE_FINISH:
  717. wpa_printf(MSG_DEBUG, " (finish)");
  718. break;
  719. default:
  720. wpa_printf(MSG_DEBUG, " (unknown code)");
  721. return;
  722. }
  723. }
  724. static struct eapol_state_machine *
  725. ieee802_1x_alloc_eapol_sm(struct hostapd_data *hapd, struct sta_info *sta)
  726. {
  727. int flags = 0;
  728. if (sta->flags & WLAN_STA_PREAUTH)
  729. flags |= EAPOL_SM_PREAUTH;
  730. if (sta->wpa_sm) {
  731. flags |= EAPOL_SM_USES_WPA;
  732. if (wpa_auth_sta_get_pmksa(sta->wpa_sm))
  733. flags |= EAPOL_SM_FROM_PMKSA_CACHE;
  734. }
  735. return eapol_auth_alloc(hapd->eapol_auth, sta->addr, flags,
  736. sta->wps_ie, sta->p2p_ie, sta,
  737. sta->identity, sta->radius_cui);
  738. }
  739. static void ieee802_1x_save_eapol(struct sta_info *sta, const u8 *buf,
  740. size_t len)
  741. {
  742. if (sta->pending_eapol_rx) {
  743. wpabuf_free(sta->pending_eapol_rx->buf);
  744. } else {
  745. sta->pending_eapol_rx =
  746. os_malloc(sizeof(*sta->pending_eapol_rx));
  747. if (!sta->pending_eapol_rx)
  748. return;
  749. }
  750. sta->pending_eapol_rx->buf = wpabuf_alloc_copy(buf, len);
  751. if (!sta->pending_eapol_rx->buf) {
  752. os_free(sta->pending_eapol_rx);
  753. sta->pending_eapol_rx = NULL;
  754. return;
  755. }
  756. os_get_reltime(&sta->pending_eapol_rx->rx_time);
  757. }
  758. /**
  759. * ieee802_1x_receive - Process the EAPOL frames from the Supplicant
  760. * @hapd: hostapd BSS data
  761. * @sa: Source address (sender of the EAPOL frame)
  762. * @buf: EAPOL frame
  763. * @len: Length of buf in octets
  764. *
  765. * This function is called for each incoming EAPOL frame from the interface
  766. */
  767. void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf,
  768. size_t len)
  769. {
  770. struct sta_info *sta;
  771. struct ieee802_1x_hdr *hdr;
  772. struct ieee802_1x_eapol_key *key;
  773. u16 datalen;
  774. struct rsn_pmksa_cache_entry *pmksa;
  775. int key_mgmt;
  776. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen &&
  777. !hapd->conf->wps_state)
  778. return;
  779. wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR,
  780. (unsigned long) len, MAC2STR(sa));
  781. sta = ap_get_sta(hapd, sa);
  782. if (!sta || (!(sta->flags & (WLAN_STA_ASSOC | WLAN_STA_PREAUTH)) &&
  783. !(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_WIRED))) {
  784. wpa_printf(MSG_DEBUG, "IEEE 802.1X data frame from not "
  785. "associated/Pre-authenticating STA");
  786. if (sta && (sta->flags & WLAN_STA_AUTH)) {
  787. wpa_printf(MSG_DEBUG, "Saving EAPOL frame from " MACSTR
  788. " for later use", MAC2STR(sta->addr));
  789. ieee802_1x_save_eapol(sta, buf, len);
  790. }
  791. return;
  792. }
  793. if (len < sizeof(*hdr)) {
  794. wpa_printf(MSG_INFO, " too short IEEE 802.1X packet");
  795. return;
  796. }
  797. hdr = (struct ieee802_1x_hdr *) buf;
  798. datalen = be_to_host16(hdr->length);
  799. wpa_printf(MSG_DEBUG, " IEEE 802.1X: version=%d type=%d length=%d",
  800. hdr->version, hdr->type, datalen);
  801. if (len - sizeof(*hdr) < datalen) {
  802. wpa_printf(MSG_INFO, " frame too short for this IEEE 802.1X packet");
  803. if (sta->eapol_sm)
  804. sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++;
  805. return;
  806. }
  807. if (len - sizeof(*hdr) > datalen) {
  808. wpa_printf(MSG_DEBUG, " ignoring %lu extra octets after "
  809. "IEEE 802.1X packet",
  810. (unsigned long) len - sizeof(*hdr) - datalen);
  811. }
  812. if (sta->eapol_sm) {
  813. sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version;
  814. sta->eapol_sm->dot1xAuthEapolFramesRx++;
  815. }
  816. key = (struct ieee802_1x_eapol_key *) (hdr + 1);
  817. if (datalen >= sizeof(struct ieee802_1x_eapol_key) &&
  818. hdr->type == IEEE802_1X_TYPE_EAPOL_KEY &&
  819. (key->type == EAPOL_KEY_TYPE_WPA ||
  820. key->type == EAPOL_KEY_TYPE_RSN)) {
  821. wpa_receive(hapd->wpa_auth, sta->wpa_sm, (u8 *) hdr,
  822. sizeof(*hdr) + datalen);
  823. return;
  824. }
  825. if (!hapd->conf->ieee802_1x && !hapd->conf->osen &&
  826. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS))) {
  827. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore EAPOL message - "
  828. "802.1X not enabled and WPS not used");
  829. return;
  830. }
  831. key_mgmt = wpa_auth_sta_key_mgmt(sta->wpa_sm);
  832. if (key_mgmt != -1 && wpa_key_mgmt_wpa_psk(key_mgmt)) {
  833. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore EAPOL message - "
  834. "STA is using PSK");
  835. return;
  836. }
  837. if (!sta->eapol_sm) {
  838. sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
  839. if (!sta->eapol_sm)
  840. return;
  841. #ifdef CONFIG_WPS
  842. if (!hapd->conf->ieee802_1x && hapd->conf->wps_state) {
  843. u32 wflags = sta->flags & (WLAN_STA_WPS |
  844. WLAN_STA_WPS2 |
  845. WLAN_STA_MAYBE_WPS);
  846. if (wflags == WLAN_STA_MAYBE_WPS ||
  847. wflags == (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) {
  848. /*
  849. * Delay EAPOL frame transmission until a
  850. * possible WPS STA initiates the handshake
  851. * with EAPOL-Start. Only allow the wait to be
  852. * skipped if the STA is known to support WPS
  853. * 2.0.
  854. */
  855. wpa_printf(MSG_DEBUG, "WPS: Do not start "
  856. "EAPOL until EAPOL-Start is "
  857. "received");
  858. sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
  859. }
  860. }
  861. #endif /* CONFIG_WPS */
  862. sta->eapol_sm->eap_if->portEnabled = TRUE;
  863. }
  864. /* since we support version 1, we can ignore version field and proceed
  865. * as specified in version 1 standard [IEEE Std 802.1X-2001, 7.5.5] */
  866. /* TODO: actually, we are not version 1 anymore.. However, Version 2
  867. * does not change frame contents, so should be ok to process frames
  868. * more or less identically. Some changes might be needed for
  869. * verification of fields. */
  870. switch (hdr->type) {
  871. case IEEE802_1X_TYPE_EAP_PACKET:
  872. handle_eap(hapd, sta, (u8 *) (hdr + 1), datalen);
  873. break;
  874. case IEEE802_1X_TYPE_EAPOL_START:
  875. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  876. HOSTAPD_LEVEL_DEBUG, "received EAPOL-Start "
  877. "from STA");
  878. sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
  879. pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  880. if (pmksa) {
  881. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  882. HOSTAPD_LEVEL_DEBUG, "cached PMKSA "
  883. "available - ignore it since "
  884. "STA sent EAPOL-Start");
  885. wpa_auth_sta_clear_pmksa(sta->wpa_sm, pmksa);
  886. }
  887. sta->eapol_sm->eapolStart = TRUE;
  888. sta->eapol_sm->dot1xAuthEapolStartFramesRx++;
  889. eap_server_clear_identity(sta->eapol_sm->eap);
  890. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
  891. break;
  892. case IEEE802_1X_TYPE_EAPOL_LOGOFF:
  893. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  894. HOSTAPD_LEVEL_DEBUG, "received EAPOL-Logoff "
  895. "from STA");
  896. sta->acct_terminate_cause =
  897. RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  898. accounting_sta_stop(hapd, sta);
  899. sta->eapol_sm->eapolLogoff = TRUE;
  900. sta->eapol_sm->dot1xAuthEapolLogoffFramesRx++;
  901. eap_server_clear_identity(sta->eapol_sm->eap);
  902. break;
  903. case IEEE802_1X_TYPE_EAPOL_KEY:
  904. wpa_printf(MSG_DEBUG, " EAPOL-Key");
  905. if (!ap_sta_is_authorized(sta)) {
  906. wpa_printf(MSG_DEBUG, " Dropped key data from "
  907. "unauthorized Supplicant");
  908. break;
  909. }
  910. break;
  911. case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
  912. wpa_printf(MSG_DEBUG, " EAPOL-Encapsulated-ASF-Alert");
  913. /* TODO: implement support for this; show data */
  914. break;
  915. default:
  916. wpa_printf(MSG_DEBUG, " unknown IEEE 802.1X packet type");
  917. sta->eapol_sm->dot1xAuthInvalidEapolFramesRx++;
  918. break;
  919. }
  920. eapol_auth_step(sta->eapol_sm);
  921. }
  922. /**
  923. * ieee802_1x_new_station - Start IEEE 802.1X authentication
  924. * @hapd: hostapd BSS data
  925. * @sta: The station
  926. *
  927. * This function is called to start IEEE 802.1X authentication when a new
  928. * station completes IEEE 802.11 association.
  929. */
  930. void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta)
  931. {
  932. struct rsn_pmksa_cache_entry *pmksa;
  933. int reassoc = 1;
  934. int force_1x = 0;
  935. int key_mgmt;
  936. #ifdef CONFIG_WPS
  937. if (hapd->conf->wps_state &&
  938. ((hapd->conf->wpa && (sta->flags & WLAN_STA_MAYBE_WPS)) ||
  939. (sta->flags & WLAN_STA_WPS))) {
  940. /*
  941. * Need to enable IEEE 802.1X/EAPOL state machines for possible
  942. * WPS handshake even if IEEE 802.1X/EAPOL is not used for
  943. * authentication in this BSS.
  944. */
  945. force_1x = 1;
  946. }
  947. #endif /* CONFIG_WPS */
  948. if (!force_1x && !hapd->conf->ieee802_1x && !hapd->conf->osen) {
  949. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore STA - "
  950. "802.1X not enabled or forced for WPS");
  951. /*
  952. * Clear any possible EAPOL authenticator state to support
  953. * reassociation change from WPS to PSK.
  954. */
  955. ieee802_1x_free_station(hapd, sta);
  956. return;
  957. }
  958. key_mgmt = wpa_auth_sta_key_mgmt(sta->wpa_sm);
  959. if (key_mgmt != -1 && wpa_key_mgmt_wpa_psk(key_mgmt)) {
  960. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore STA - using PSK");
  961. /*
  962. * Clear any possible EAPOL authenticator state to support
  963. * reassociation change from WPA-EAP to PSK.
  964. */
  965. ieee802_1x_free_station(hapd, sta);
  966. return;
  967. }
  968. if (sta->eapol_sm == NULL) {
  969. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  970. HOSTAPD_LEVEL_DEBUG, "start authentication");
  971. sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
  972. if (sta->eapol_sm == NULL) {
  973. hostapd_logger(hapd, sta->addr,
  974. HOSTAPD_MODULE_IEEE8021X,
  975. HOSTAPD_LEVEL_INFO,
  976. "failed to allocate state machine");
  977. return;
  978. }
  979. reassoc = 0;
  980. }
  981. #ifdef CONFIG_WPS
  982. sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
  983. if (!hapd->conf->ieee802_1x && hapd->conf->wps_state &&
  984. !(sta->flags & WLAN_STA_WPS2)) {
  985. /*
  986. * Delay EAPOL frame transmission until a possible WPS STA
  987. * initiates the handshake with EAPOL-Start. Only allow the
  988. * wait to be skipped if the STA is known to support WPS 2.0.
  989. */
  990. wpa_printf(MSG_DEBUG, "WPS: Do not start EAPOL until "
  991. "EAPOL-Start is received");
  992. sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
  993. }
  994. #endif /* CONFIG_WPS */
  995. sta->eapol_sm->eap_if->portEnabled = TRUE;
  996. #ifdef CONFIG_IEEE80211R
  997. if (sta->auth_alg == WLAN_AUTH_FT) {
  998. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  999. HOSTAPD_LEVEL_DEBUG,
  1000. "PMK from FT - skip IEEE 802.1X/EAP");
  1001. /* Setup EAPOL state machines to already authenticated state
  1002. * because of existing FT information from R0KH. */
  1003. sta->eapol_sm->keyRun = TRUE;
  1004. sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
  1005. sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
  1006. sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
  1007. sta->eapol_sm->authSuccess = TRUE;
  1008. sta->eapol_sm->authFail = FALSE;
  1009. sta->eapol_sm->portValid = TRUE;
  1010. if (sta->eapol_sm->eap)
  1011. eap_sm_notify_cached(sta->eapol_sm->eap);
  1012. /* TODO: get vlan_id from R0KH using RRB message */
  1013. return;
  1014. }
  1015. #endif /* CONFIG_IEEE80211R */
  1016. pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  1017. if (pmksa) {
  1018. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1019. HOSTAPD_LEVEL_DEBUG,
  1020. "PMK from PMKSA cache - skip IEEE 802.1X/EAP");
  1021. /* Setup EAPOL state machines to already authenticated state
  1022. * because of existing PMKSA information in the cache. */
  1023. sta->eapol_sm->keyRun = TRUE;
  1024. sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
  1025. sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
  1026. sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
  1027. sta->eapol_sm->authSuccess = TRUE;
  1028. sta->eapol_sm->authFail = FALSE;
  1029. if (sta->eapol_sm->eap)
  1030. eap_sm_notify_cached(sta->eapol_sm->eap);
  1031. pmksa_cache_to_eapol_data(hapd, pmksa, sta->eapol_sm);
  1032. ap_sta_bind_vlan(hapd, sta);
  1033. } else {
  1034. if (reassoc) {
  1035. /*
  1036. * Force EAPOL state machines to start
  1037. * re-authentication without having to wait for the
  1038. * Supplicant to send EAPOL-Start.
  1039. */
  1040. sta->eapol_sm->reAuthenticate = TRUE;
  1041. }
  1042. eapol_auth_step(sta->eapol_sm);
  1043. }
  1044. }
  1045. void ieee802_1x_free_station(struct hostapd_data *hapd, struct sta_info *sta)
  1046. {
  1047. struct eapol_state_machine *sm = sta->eapol_sm;
  1048. #ifdef CONFIG_HS20
  1049. eloop_cancel_timeout(ieee802_1x_wnm_notif_send, hapd, sta);
  1050. #endif /* CONFIG_HS20 */
  1051. if (sta->pending_eapol_rx) {
  1052. wpabuf_free(sta->pending_eapol_rx->buf);
  1053. os_free(sta->pending_eapol_rx);
  1054. sta->pending_eapol_rx = NULL;
  1055. }
  1056. if (sm == NULL)
  1057. return;
  1058. sta->eapol_sm = NULL;
  1059. #ifndef CONFIG_NO_RADIUS
  1060. radius_msg_free(sm->last_recv_radius);
  1061. radius_free_class(&sm->radius_class);
  1062. #endif /* CONFIG_NO_RADIUS */
  1063. eapol_auth_free(sm);
  1064. }
  1065. #ifndef CONFIG_NO_RADIUS
  1066. static void ieee802_1x_decapsulate_radius(struct hostapd_data *hapd,
  1067. struct sta_info *sta)
  1068. {
  1069. struct wpabuf *eap;
  1070. const struct eap_hdr *hdr;
  1071. int eap_type = -1;
  1072. char buf[64];
  1073. struct radius_msg *msg;
  1074. struct eapol_state_machine *sm = sta->eapol_sm;
  1075. if (sm == NULL || sm->last_recv_radius == NULL) {
  1076. if (sm)
  1077. sm->eap_if->aaaEapNoReq = TRUE;
  1078. return;
  1079. }
  1080. msg = sm->last_recv_radius;
  1081. eap = radius_msg_get_eap(msg);
  1082. if (eap == NULL) {
  1083. /* RFC 3579, Chap. 2.6.3:
  1084. * RADIUS server SHOULD NOT send Access-Reject/no EAP-Message
  1085. * attribute */
  1086. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1087. HOSTAPD_LEVEL_WARNING, "could not extract "
  1088. "EAP-Message from RADIUS message");
  1089. sm->eap_if->aaaEapNoReq = TRUE;
  1090. return;
  1091. }
  1092. if (wpabuf_len(eap) < sizeof(*hdr)) {
  1093. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1094. HOSTAPD_LEVEL_WARNING, "too short EAP packet "
  1095. "received from authentication server");
  1096. wpabuf_free(eap);
  1097. sm->eap_if->aaaEapNoReq = TRUE;
  1098. return;
  1099. }
  1100. if (wpabuf_len(eap) > sizeof(*hdr))
  1101. eap_type = (wpabuf_head_u8(eap))[sizeof(*hdr)];
  1102. hdr = wpabuf_head(eap);
  1103. switch (hdr->code) {
  1104. case EAP_CODE_REQUEST:
  1105. if (eap_type >= 0)
  1106. sm->eap_type_authsrv = eap_type;
  1107. os_snprintf(buf, sizeof(buf), "EAP-Request-%s (%d)",
  1108. eap_server_get_name(0, eap_type), eap_type);
  1109. break;
  1110. case EAP_CODE_RESPONSE:
  1111. os_snprintf(buf, sizeof(buf), "EAP Response-%s (%d)",
  1112. eap_server_get_name(0, eap_type), eap_type);
  1113. break;
  1114. case EAP_CODE_SUCCESS:
  1115. os_strlcpy(buf, "EAP Success", sizeof(buf));
  1116. break;
  1117. case EAP_CODE_FAILURE:
  1118. os_strlcpy(buf, "EAP Failure", sizeof(buf));
  1119. break;
  1120. default:
  1121. os_strlcpy(buf, "unknown EAP code", sizeof(buf));
  1122. break;
  1123. }
  1124. buf[sizeof(buf) - 1] = '\0';
  1125. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1126. HOSTAPD_LEVEL_DEBUG, "decapsulated EAP packet (code=%d "
  1127. "id=%d len=%d) from RADIUS server: %s",
  1128. hdr->code, hdr->identifier, be_to_host16(hdr->length),
  1129. buf);
  1130. sm->eap_if->aaaEapReq = TRUE;
  1131. wpabuf_free(sm->eap_if->aaaEapReqData);
  1132. sm->eap_if->aaaEapReqData = eap;
  1133. }
  1134. static void ieee802_1x_get_keys(struct hostapd_data *hapd,
  1135. struct sta_info *sta, struct radius_msg *msg,
  1136. struct radius_msg *req,
  1137. const u8 *shared_secret,
  1138. size_t shared_secret_len)
  1139. {
  1140. struct radius_ms_mppe_keys *keys;
  1141. struct eapol_state_machine *sm = sta->eapol_sm;
  1142. if (sm == NULL)
  1143. return;
  1144. keys = radius_msg_get_ms_keys(msg, req, shared_secret,
  1145. shared_secret_len);
  1146. if (keys && keys->send && keys->recv) {
  1147. size_t len = keys->send_len + keys->recv_len;
  1148. wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Send-Key",
  1149. keys->send, keys->send_len);
  1150. wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Recv-Key",
  1151. keys->recv, keys->recv_len);
  1152. os_free(sm->eap_if->aaaEapKeyData);
  1153. sm->eap_if->aaaEapKeyData = os_malloc(len);
  1154. if (sm->eap_if->aaaEapKeyData) {
  1155. os_memcpy(sm->eap_if->aaaEapKeyData, keys->recv,
  1156. keys->recv_len);
  1157. os_memcpy(sm->eap_if->aaaEapKeyData + keys->recv_len,
  1158. keys->send, keys->send_len);
  1159. sm->eap_if->aaaEapKeyDataLen = len;
  1160. sm->eap_if->aaaEapKeyAvailable = TRUE;
  1161. }
  1162. } else {
  1163. wpa_printf(MSG_DEBUG,
  1164. "MS-MPPE: 1x_get_keys, could not get keys: %p send: %p recv: %p",
  1165. keys, keys ? keys->send : NULL,
  1166. keys ? keys->recv : NULL);
  1167. }
  1168. if (keys) {
  1169. os_free(keys->send);
  1170. os_free(keys->recv);
  1171. os_free(keys);
  1172. }
  1173. }
  1174. static void ieee802_1x_store_radius_class(struct hostapd_data *hapd,
  1175. struct sta_info *sta,
  1176. struct radius_msg *msg)
  1177. {
  1178. u8 *attr_class;
  1179. size_t class_len;
  1180. struct eapol_state_machine *sm = sta->eapol_sm;
  1181. int count, i;
  1182. struct radius_attr_data *nclass;
  1183. size_t nclass_count;
  1184. if (!hapd->conf->radius->acct_server || hapd->radius == NULL ||
  1185. sm == NULL)
  1186. return;
  1187. radius_free_class(&sm->radius_class);
  1188. count = radius_msg_count_attr(msg, RADIUS_ATTR_CLASS, 1);
  1189. if (count <= 0)
  1190. return;
  1191. nclass = os_calloc(count, sizeof(struct radius_attr_data));
  1192. if (nclass == NULL)
  1193. return;
  1194. nclass_count = 0;
  1195. attr_class = NULL;
  1196. for (i = 0; i < count; i++) {
  1197. do {
  1198. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CLASS,
  1199. &attr_class, &class_len,
  1200. attr_class) < 0) {
  1201. i = count;
  1202. break;
  1203. }
  1204. } while (class_len < 1);
  1205. nclass[nclass_count].data = os_malloc(class_len);
  1206. if (nclass[nclass_count].data == NULL)
  1207. break;
  1208. os_memcpy(nclass[nclass_count].data, attr_class, class_len);
  1209. nclass[nclass_count].len = class_len;
  1210. nclass_count++;
  1211. }
  1212. sm->radius_class.attr = nclass;
  1213. sm->radius_class.count = nclass_count;
  1214. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Stored %lu RADIUS Class "
  1215. "attributes for " MACSTR,
  1216. (unsigned long) sm->radius_class.count,
  1217. MAC2STR(sta->addr));
  1218. }
  1219. /* Update sta->identity based on User-Name attribute in Access-Accept */
  1220. static void ieee802_1x_update_sta_identity(struct hostapd_data *hapd,
  1221. struct sta_info *sta,
  1222. struct radius_msg *msg)
  1223. {
  1224. u8 *buf, *identity;
  1225. size_t len;
  1226. struct eapol_state_machine *sm = sta->eapol_sm;
  1227. if (sm == NULL)
  1228. return;
  1229. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &buf, &len,
  1230. NULL) < 0)
  1231. return;
  1232. identity = (u8 *) dup_binstr(buf, len);
  1233. if (identity == NULL)
  1234. return;
  1235. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1236. HOSTAPD_LEVEL_DEBUG, "old identity '%s' updated with "
  1237. "User-Name from Access-Accept '%s'",
  1238. sm->identity ? (char *) sm->identity : "N/A",
  1239. (char *) identity);
  1240. os_free(sm->identity);
  1241. sm->identity = identity;
  1242. sm->identity_len = len;
  1243. }
  1244. /* Update CUI based on Chargeable-User-Identity attribute in Access-Accept */
  1245. static void ieee802_1x_update_sta_cui(struct hostapd_data *hapd,
  1246. struct sta_info *sta,
  1247. struct radius_msg *msg)
  1248. {
  1249. struct eapol_state_machine *sm = sta->eapol_sm;
  1250. struct wpabuf *cui;
  1251. u8 *buf;
  1252. size_t len;
  1253. if (sm == NULL)
  1254. return;
  1255. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CHARGEABLE_USER_IDENTITY,
  1256. &buf, &len, NULL) < 0)
  1257. return;
  1258. cui = wpabuf_alloc_copy(buf, len);
  1259. if (cui == NULL)
  1260. return;
  1261. wpabuf_free(sm->radius_cui);
  1262. sm->radius_cui = cui;
  1263. }
  1264. #ifdef CONFIG_HS20
  1265. static void ieee802_1x_hs20_sub_rem(struct sta_info *sta, u8 *pos, size_t len)
  1266. {
  1267. sta->remediation = 1;
  1268. os_free(sta->remediation_url);
  1269. if (len > 2) {
  1270. sta->remediation_url = os_malloc(len);
  1271. if (!sta->remediation_url)
  1272. return;
  1273. sta->remediation_method = pos[0];
  1274. os_memcpy(sta->remediation_url, pos + 1, len - 1);
  1275. sta->remediation_url[len - 1] = '\0';
  1276. wpa_printf(MSG_DEBUG, "HS 2.0: Subscription remediation needed "
  1277. "for " MACSTR " - server method %u URL %s",
  1278. MAC2STR(sta->addr), sta->remediation_method,
  1279. sta->remediation_url);
  1280. } else {
  1281. sta->remediation_url = NULL;
  1282. wpa_printf(MSG_DEBUG, "HS 2.0: Subscription remediation needed "
  1283. "for " MACSTR, MAC2STR(sta->addr));
  1284. }
  1285. /* TODO: assign the STA into remediation VLAN or add filtering */
  1286. }
  1287. static void ieee802_1x_hs20_deauth_req(struct hostapd_data *hapd,
  1288. struct sta_info *sta, u8 *pos,
  1289. size_t len)
  1290. {
  1291. if (len < 3)
  1292. return; /* Malformed information */
  1293. sta->hs20_deauth_requested = 1;
  1294. wpa_printf(MSG_DEBUG, "HS 2.0: Deauthentication request - Code %u "
  1295. "Re-auth Delay %u",
  1296. *pos, WPA_GET_LE16(pos + 1));
  1297. wpabuf_free(sta->hs20_deauth_req);
  1298. sta->hs20_deauth_req = wpabuf_alloc(len + 1);
  1299. if (sta->hs20_deauth_req) {
  1300. wpabuf_put_data(sta->hs20_deauth_req, pos, 3);
  1301. wpabuf_put_u8(sta->hs20_deauth_req, len - 3);
  1302. wpabuf_put_data(sta->hs20_deauth_req, pos + 3, len - 3);
  1303. }
  1304. ap_sta_session_timeout(hapd, sta, hapd->conf->hs20_deauth_req_timeout);
  1305. }
  1306. static void ieee802_1x_hs20_session_info(struct hostapd_data *hapd,
  1307. struct sta_info *sta, u8 *pos,
  1308. size_t len, int session_timeout)
  1309. {
  1310. unsigned int swt;
  1311. int warning_time, beacon_int;
  1312. if (len < 1)
  1313. return; /* Malformed information */
  1314. os_free(sta->hs20_session_info_url);
  1315. sta->hs20_session_info_url = os_malloc(len);
  1316. if (sta->hs20_session_info_url == NULL)
  1317. return;
  1318. swt = pos[0];
  1319. os_memcpy(sta->hs20_session_info_url, pos + 1, len - 1);
  1320. sta->hs20_session_info_url[len - 1] = '\0';
  1321. wpa_printf(MSG_DEBUG, "HS 2.0: Session Information URL='%s' SWT=%u "
  1322. "(session_timeout=%d)",
  1323. sta->hs20_session_info_url, swt, session_timeout);
  1324. if (session_timeout < 0) {
  1325. wpa_printf(MSG_DEBUG, "HS 2.0: No Session-Timeout set - ignore session info URL");
  1326. return;
  1327. }
  1328. if (swt == 255)
  1329. swt = 1; /* Use one minute as the AP selected value */
  1330. if ((unsigned int) session_timeout < swt * 60)
  1331. warning_time = 0;
  1332. else
  1333. warning_time = session_timeout - swt * 60;
  1334. beacon_int = hapd->iconf->beacon_int;
  1335. if (beacon_int < 1)
  1336. beacon_int = 100; /* best guess */
  1337. sta->hs20_disassoc_timer = swt * 60 * 1000 / beacon_int * 125 / 128;
  1338. if (sta->hs20_disassoc_timer > 65535)
  1339. sta->hs20_disassoc_timer = 65535;
  1340. ap_sta_session_warning_timeout(hapd, sta, warning_time);
  1341. }
  1342. #endif /* CONFIG_HS20 */
  1343. static void ieee802_1x_check_hs20(struct hostapd_data *hapd,
  1344. struct sta_info *sta,
  1345. struct radius_msg *msg,
  1346. int session_timeout)
  1347. {
  1348. #ifdef CONFIG_HS20
  1349. u8 *buf, *pos, *end, type, sublen;
  1350. size_t len;
  1351. buf = NULL;
  1352. sta->remediation = 0;
  1353. sta->hs20_deauth_requested = 0;
  1354. for (;;) {
  1355. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
  1356. &buf, &len, buf) < 0)
  1357. break;
  1358. if (len < 6)
  1359. continue;
  1360. pos = buf;
  1361. end = buf + len;
  1362. if (WPA_GET_BE32(pos) != RADIUS_VENDOR_ID_WFA)
  1363. continue;
  1364. pos += 4;
  1365. type = *pos++;
  1366. sublen = *pos++;
  1367. if (sublen < 2)
  1368. continue; /* invalid length */
  1369. sublen -= 2; /* skip header */
  1370. if (pos + sublen > end)
  1371. continue; /* invalid WFA VSA */
  1372. switch (type) {
  1373. case RADIUS_VENDOR_ATTR_WFA_HS20_SUBSCR_REMEDIATION:
  1374. ieee802_1x_hs20_sub_rem(sta, pos, sublen);
  1375. break;
  1376. case RADIUS_VENDOR_ATTR_WFA_HS20_DEAUTH_REQ:
  1377. ieee802_1x_hs20_deauth_req(hapd, sta, pos, sublen);
  1378. break;
  1379. case RADIUS_VENDOR_ATTR_WFA_HS20_SESSION_INFO_URL:
  1380. ieee802_1x_hs20_session_info(hapd, sta, pos, sublen,
  1381. session_timeout);
  1382. break;
  1383. }
  1384. }
  1385. #endif /* CONFIG_HS20 */
  1386. }
  1387. struct sta_id_search {
  1388. u8 identifier;
  1389. struct eapol_state_machine *sm;
  1390. };
  1391. static int ieee802_1x_select_radius_identifier(struct hostapd_data *hapd,
  1392. struct sta_info *sta,
  1393. void *ctx)
  1394. {
  1395. struct sta_id_search *id_search = ctx;
  1396. struct eapol_state_machine *sm = sta->eapol_sm;
  1397. if (sm && sm->radius_identifier >= 0 &&
  1398. sm->radius_identifier == id_search->identifier) {
  1399. id_search->sm = sm;
  1400. return 1;
  1401. }
  1402. return 0;
  1403. }
  1404. static struct eapol_state_machine *
  1405. ieee802_1x_search_radius_identifier(struct hostapd_data *hapd, u8 identifier)
  1406. {
  1407. struct sta_id_search id_search;
  1408. id_search.identifier = identifier;
  1409. id_search.sm = NULL;
  1410. ap_for_each_sta(hapd, ieee802_1x_select_radius_identifier, &id_search);
  1411. return id_search.sm;
  1412. }
  1413. /**
  1414. * ieee802_1x_receive_auth - Process RADIUS frames from Authentication Server
  1415. * @msg: RADIUS response message
  1416. * @req: RADIUS request message
  1417. * @shared_secret: RADIUS shared secret
  1418. * @shared_secret_len: Length of shared_secret in octets
  1419. * @data: Context data (struct hostapd_data *)
  1420. * Returns: Processing status
  1421. */
  1422. static RadiusRxResult
  1423. ieee802_1x_receive_auth(struct radius_msg *msg, struct radius_msg *req,
  1424. const u8 *shared_secret, size_t shared_secret_len,
  1425. void *data)
  1426. {
  1427. struct hostapd_data *hapd = data;
  1428. struct sta_info *sta;
  1429. u32 session_timeout = 0, termination_action, acct_interim_interval;
  1430. int session_timeout_set;
  1431. struct eapol_state_machine *sm;
  1432. int override_eapReq = 0;
  1433. struct radius_hdr *hdr = radius_msg_get_hdr(msg);
  1434. struct vlan_description vlan_desc;
  1435. #ifndef CONFIG_NO_VLAN
  1436. int *untagged, *tagged, *notempty;
  1437. #endif /* CONFIG_NO_VLAN */
  1438. os_memset(&vlan_desc, 0, sizeof(vlan_desc));
  1439. sm = ieee802_1x_search_radius_identifier(hapd, hdr->identifier);
  1440. if (sm == NULL) {
  1441. wpa_printf(MSG_DEBUG, "IEEE 802.1X: Could not find matching "
  1442. "station for this RADIUS message");
  1443. return RADIUS_RX_UNKNOWN;
  1444. }
  1445. sta = sm->sta;
  1446. /* RFC 2869, Ch. 5.13: valid Message-Authenticator attribute MUST be
  1447. * present when packet contains an EAP-Message attribute */
  1448. if (hdr->code == RADIUS_CODE_ACCESS_REJECT &&
  1449. radius_msg_get_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR, NULL,
  1450. 0) < 0 &&
  1451. radius_msg_get_attr(msg, RADIUS_ATTR_EAP_MESSAGE, NULL, 0) < 0) {
  1452. wpa_printf(MSG_DEBUG, "Allowing RADIUS Access-Reject without "
  1453. "Message-Authenticator since it does not include "
  1454. "EAP-Message");
  1455. } else if (radius_msg_verify(msg, shared_secret, shared_secret_len,
  1456. req, 1)) {
  1457. wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have correct Message-Authenticator - dropped");
  1458. return RADIUS_RX_INVALID_AUTHENTICATOR;
  1459. }
  1460. if (hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
  1461. hdr->code != RADIUS_CODE_ACCESS_REJECT &&
  1462. hdr->code != RADIUS_CODE_ACCESS_CHALLENGE) {
  1463. wpa_printf(MSG_INFO, "Unknown RADIUS message code");
  1464. return RADIUS_RX_UNKNOWN;
  1465. }
  1466. sm->radius_identifier = -1;
  1467. wpa_printf(MSG_DEBUG, "RADIUS packet matching with station " MACSTR,
  1468. MAC2STR(sta->addr));
  1469. radius_msg_free(sm->last_recv_radius);
  1470. sm->last_recv_radius = msg;
  1471. session_timeout_set =
  1472. !radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
  1473. &session_timeout);
  1474. if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_TERMINATION_ACTION,
  1475. &termination_action))
  1476. termination_action = RADIUS_TERMINATION_ACTION_DEFAULT;
  1477. if (hapd->conf->acct_interim_interval == 0 &&
  1478. hdr->code == RADIUS_CODE_ACCESS_ACCEPT &&
  1479. radius_msg_get_attr_int32(msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
  1480. &acct_interim_interval) == 0) {
  1481. if (acct_interim_interval < 60) {
  1482. hostapd_logger(hapd, sta->addr,
  1483. HOSTAPD_MODULE_IEEE8021X,
  1484. HOSTAPD_LEVEL_INFO,
  1485. "ignored too small "
  1486. "Acct-Interim-Interval %d",
  1487. acct_interim_interval);
  1488. } else
  1489. sta->acct_interim_interval = acct_interim_interval;
  1490. }
  1491. switch (hdr->code) {
  1492. case RADIUS_CODE_ACCESS_ACCEPT:
  1493. #ifndef CONFIG_NO_VLAN
  1494. if (hapd->conf->ssid.dynamic_vlan != DYNAMIC_VLAN_DISABLED) {
  1495. notempty = &vlan_desc.notempty;
  1496. untagged = &vlan_desc.untagged;
  1497. tagged = vlan_desc.tagged;
  1498. *notempty = !!radius_msg_get_vlanid(msg, untagged,
  1499. MAX_NUM_TAGGED_VLAN,
  1500. tagged);
  1501. }
  1502. if (vlan_desc.notempty &&
  1503. !hostapd_vlan_valid(hapd->conf->vlan, &vlan_desc)) {
  1504. sta->eapol_sm->authFail = TRUE;
  1505. hostapd_logger(hapd, sta->addr,
  1506. HOSTAPD_MODULE_RADIUS,
  1507. HOSTAPD_LEVEL_INFO,
  1508. "Invalid VLAN %d%s received from RADIUS server",
  1509. vlan_desc.untagged,
  1510. vlan_desc.tagged[0] ? "+" : "");
  1511. os_memset(&vlan_desc, 0, sizeof(vlan_desc));
  1512. ap_sta_set_vlan(hapd, sta, &vlan_desc);
  1513. break;
  1514. }
  1515. if (hapd->conf->ssid.dynamic_vlan == DYNAMIC_VLAN_REQUIRED &&
  1516. !vlan_desc.notempty) {
  1517. sta->eapol_sm->authFail = TRUE;
  1518. hostapd_logger(hapd, sta->addr,
  1519. HOSTAPD_MODULE_IEEE8021X,
  1520. HOSTAPD_LEVEL_INFO, "authentication "
  1521. "server did not include required VLAN "
  1522. "ID in Access-Accept");
  1523. break;
  1524. }
  1525. #endif /* CONFIG_NO_VLAN */
  1526. if (ap_sta_set_vlan(hapd, sta, &vlan_desc) < 0)
  1527. break;
  1528. #ifndef CONFIG_NO_VLAN
  1529. if (sta->vlan_id > 0) {
  1530. hostapd_logger(hapd, sta->addr,
  1531. HOSTAPD_MODULE_RADIUS,
  1532. HOSTAPD_LEVEL_INFO,
  1533. "VLAN ID %d", sta->vlan_id);
  1534. }
  1535. #endif /* CONFIG_NO_VLAN */
  1536. if ((sta->flags & WLAN_STA_ASSOC) &&
  1537. ap_sta_bind_vlan(hapd, sta) < 0)
  1538. break;
  1539. sta->session_timeout_set = !!session_timeout_set;
  1540. sta->session_timeout = session_timeout;
  1541. /* RFC 3580, Ch. 3.17 */
  1542. if (session_timeout_set && termination_action ==
  1543. RADIUS_TERMINATION_ACTION_RADIUS_REQUEST) {
  1544. sm->reAuthPeriod = session_timeout;
  1545. } else if (session_timeout_set)
  1546. ap_sta_session_timeout(hapd, sta, session_timeout);
  1547. sm->eap_if->aaaSuccess = TRUE;
  1548. override_eapReq = 1;
  1549. ieee802_1x_get_keys(hapd, sta, msg, req, shared_secret,
  1550. shared_secret_len);
  1551. ieee802_1x_store_radius_class(hapd, sta, msg);
  1552. ieee802_1x_update_sta_identity(hapd, sta, msg);
  1553. ieee802_1x_update_sta_cui(hapd, sta, msg);
  1554. ieee802_1x_check_hs20(hapd, sta, msg,
  1555. session_timeout_set ?
  1556. (int) session_timeout : -1);
  1557. break;
  1558. case RADIUS_CODE_ACCESS_REJECT:
  1559. sm->eap_if->aaaFail = TRUE;
  1560. override_eapReq = 1;
  1561. break;
  1562. case RADIUS_CODE_ACCESS_CHALLENGE:
  1563. sm->eap_if->aaaEapReq = TRUE;
  1564. if (session_timeout_set) {
  1565. /* RFC 2869, Ch. 2.3.2; RFC 3580, Ch. 3.17 */
  1566. sm->eap_if->aaaMethodTimeout = session_timeout;
  1567. hostapd_logger(hapd, sm->addr,
  1568. HOSTAPD_MODULE_IEEE8021X,
  1569. HOSTAPD_LEVEL_DEBUG,
  1570. "using EAP timeout of %d seconds (from "
  1571. "RADIUS)",
  1572. sm->eap_if->aaaMethodTimeout);
  1573. } else {
  1574. /*
  1575. * Use dynamic retransmission behavior per EAP
  1576. * specification.
  1577. */
  1578. sm->eap_if->aaaMethodTimeout = 0;
  1579. }
  1580. break;
  1581. }
  1582. ieee802_1x_decapsulate_radius(hapd, sta);
  1583. if (override_eapReq)
  1584. sm->eap_if->aaaEapReq = FALSE;
  1585. eapol_auth_step(sm);
  1586. return RADIUS_RX_QUEUED;
  1587. }
  1588. #endif /* CONFIG_NO_RADIUS */
  1589. void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta)
  1590. {
  1591. struct eapol_state_machine *sm = sta->eapol_sm;
  1592. if (sm == NULL)
  1593. return;
  1594. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  1595. HOSTAPD_LEVEL_DEBUG, "aborting authentication");
  1596. #ifndef CONFIG_NO_RADIUS
  1597. radius_msg_free(sm->last_recv_radius);
  1598. sm->last_recv_radius = NULL;
  1599. #endif /* CONFIG_NO_RADIUS */
  1600. if (sm->eap_if->eapTimeout) {
  1601. /*
  1602. * Disconnect the STA since it did not reply to the last EAP
  1603. * request and we cannot continue EAP processing (EAP-Failure
  1604. * could only be sent if the EAP peer actually replied).
  1605. */
  1606. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "EAP Timeout, STA " MACSTR,
  1607. MAC2STR(sta->addr));
  1608. sm->eap_if->portEnabled = FALSE;
  1609. ap_sta_disconnect(hapd, sta, sta->addr,
  1610. WLAN_REASON_PREV_AUTH_NOT_VALID);
  1611. }
  1612. }
  1613. static int ieee802_1x_rekey_broadcast(struct hostapd_data *hapd)
  1614. {
  1615. struct eapol_authenticator *eapol = hapd->eapol_auth;
  1616. if (hapd->conf->default_wep_key_len < 1)
  1617. return 0;
  1618. os_free(eapol->default_wep_key);
  1619. eapol->default_wep_key = os_malloc(hapd->conf->default_wep_key_len);
  1620. if (eapol->default_wep_key == NULL ||
  1621. random_get_bytes(eapol->default_wep_key,
  1622. hapd->conf->default_wep_key_len)) {
  1623. wpa_printf(MSG_INFO, "Could not generate random WEP key");
  1624. os_free(eapol->default_wep_key);
  1625. eapol->default_wep_key = NULL;
  1626. return -1;
  1627. }
  1628. wpa_hexdump_key(MSG_DEBUG, "IEEE 802.1X: New default WEP key",
  1629. eapol->default_wep_key,
  1630. hapd->conf->default_wep_key_len);
  1631. return 0;
  1632. }
  1633. static int ieee802_1x_sta_key_available(struct hostapd_data *hapd,
  1634. struct sta_info *sta, void *ctx)
  1635. {
  1636. if (sta->eapol_sm) {
  1637. sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
  1638. eapol_auth_step(sta->eapol_sm);
  1639. }
  1640. return 0;
  1641. }
  1642. static void ieee802_1x_rekey(void *eloop_ctx, void *timeout_ctx)
  1643. {
  1644. struct hostapd_data *hapd = eloop_ctx;
  1645. struct eapol_authenticator *eapol = hapd->eapol_auth;
  1646. if (eapol->default_wep_key_idx >= 3)
  1647. eapol->default_wep_key_idx =
  1648. hapd->conf->individual_wep_key_len > 0 ? 1 : 0;
  1649. else
  1650. eapol->default_wep_key_idx++;
  1651. wpa_printf(MSG_DEBUG, "IEEE 802.1X: New default WEP key index %d",
  1652. eapol->default_wep_key_idx);
  1653. if (ieee802_1x_rekey_broadcast(hapd)) {
  1654. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
  1655. HOSTAPD_LEVEL_WARNING, "failed to generate a "
  1656. "new broadcast key");
  1657. os_free(eapol->default_wep_key);
  1658. eapol->default_wep_key = NULL;
  1659. return;
  1660. }
  1661. /* TODO: Could setup key for RX here, but change default TX keyid only
  1662. * after new broadcast key has been sent to all stations. */
  1663. if (hostapd_drv_set_key(hapd->conf->iface, hapd, WPA_ALG_WEP,
  1664. broadcast_ether_addr,
  1665. eapol->default_wep_key_idx, 1, NULL, 0,
  1666. eapol->default_wep_key,
  1667. hapd->conf->default_wep_key_len)) {
  1668. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
  1669. HOSTAPD_LEVEL_WARNING, "failed to configure a "
  1670. "new broadcast key");
  1671. os_free(eapol->default_wep_key);
  1672. eapol->default_wep_key = NULL;
  1673. return;
  1674. }
  1675. ap_for_each_sta(hapd, ieee802_1x_sta_key_available, NULL);
  1676. if (hapd->conf->wep_rekeying_period > 0) {
  1677. eloop_register_timeout(hapd->conf->wep_rekeying_period, 0,
  1678. ieee802_1x_rekey, hapd, NULL);
  1679. }
  1680. }
  1681. static void ieee802_1x_eapol_send(void *ctx, void *sta_ctx, u8 type,
  1682. const u8 *data, size_t datalen)
  1683. {
  1684. #ifdef CONFIG_WPS
  1685. struct sta_info *sta = sta_ctx;
  1686. if ((sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) ==
  1687. WLAN_STA_MAYBE_WPS) {
  1688. const u8 *identity;
  1689. size_t identity_len;
  1690. struct eapol_state_machine *sm = sta->eapol_sm;
  1691. identity = eap_get_identity(sm->eap, &identity_len);
  1692. if (identity &&
  1693. ((identity_len == WSC_ID_ENROLLEE_LEN &&
  1694. os_memcmp(identity, WSC_ID_ENROLLEE,
  1695. WSC_ID_ENROLLEE_LEN) == 0) ||
  1696. (identity_len == WSC_ID_REGISTRAR_LEN &&
  1697. os_memcmp(identity, WSC_ID_REGISTRAR,
  1698. WSC_ID_REGISTRAR_LEN) == 0))) {
  1699. wpa_printf(MSG_DEBUG, "WPS: WLAN_STA_MAYBE_WPS -> "
  1700. "WLAN_STA_WPS");
  1701. sta->flags |= WLAN_STA_WPS;
  1702. }
  1703. }
  1704. #endif /* CONFIG_WPS */
  1705. ieee802_1x_send(ctx, sta_ctx, type, data, datalen);
  1706. }
  1707. static void ieee802_1x_aaa_send(void *ctx, void *sta_ctx,
  1708. const u8 *data, size_t datalen)
  1709. {
  1710. #ifndef CONFIG_NO_RADIUS
  1711. struct hostapd_data *hapd = ctx;
  1712. struct sta_info *sta = sta_ctx;
  1713. ieee802_1x_encapsulate_radius(hapd, sta, data, datalen);
  1714. #endif /* CONFIG_NO_RADIUS */
  1715. }
  1716. static void _ieee802_1x_finished(void *ctx, void *sta_ctx, int success,
  1717. int preauth, int remediation)
  1718. {
  1719. struct hostapd_data *hapd = ctx;
  1720. struct sta_info *sta = sta_ctx;
  1721. if (preauth)
  1722. rsn_preauth_finished(hapd, sta, success);
  1723. else
  1724. ieee802_1x_finished(hapd, sta, success, remediation);
  1725. }
  1726. static int ieee802_1x_get_eap_user(void *ctx, const u8 *identity,
  1727. size_t identity_len, int phase2,
  1728. struct eap_user *user)
  1729. {
  1730. struct hostapd_data *hapd = ctx;
  1731. const struct hostapd_eap_user *eap_user;
  1732. int i;
  1733. int rv = -1;
  1734. eap_user = hostapd_get_eap_user(hapd, identity, identity_len, phase2);
  1735. if (eap_user == NULL)
  1736. goto out;
  1737. os_memset(user, 0, sizeof(*user));
  1738. user->phase2 = phase2;
  1739. for (i = 0; i < EAP_MAX_METHODS; i++) {
  1740. user->methods[i].vendor = eap_user->methods[i].vendor;
  1741. user->methods[i].method = eap_user->methods[i].method;
  1742. }
  1743. if (eap_user->password) {
  1744. user->password = os_malloc(eap_user->password_len);
  1745. if (user->password == NULL)
  1746. goto out;
  1747. os_memcpy(user->password, eap_user->password,
  1748. eap_user->password_len);
  1749. user->password_len = eap_user->password_len;
  1750. user->password_hash = eap_user->password_hash;
  1751. }
  1752. user->force_version = eap_user->force_version;
  1753. user->macacl = eap_user->macacl;
  1754. user->ttls_auth = eap_user->ttls_auth;
  1755. user->remediation = eap_user->remediation;
  1756. rv = 0;
  1757. out:
  1758. if (rv)
  1759. wpa_printf(MSG_DEBUG, "%s: Failed to find user", __func__);
  1760. return rv;
  1761. }
  1762. static int ieee802_1x_sta_entry_alive(void *ctx, const u8 *addr)
  1763. {
  1764. struct hostapd_data *hapd = ctx;
  1765. struct sta_info *sta;
  1766. sta = ap_get_sta(hapd, addr);
  1767. if (sta == NULL || sta->eapol_sm == NULL)
  1768. return 0;
  1769. return 1;
  1770. }
  1771. static void ieee802_1x_logger(void *ctx, const u8 *addr,
  1772. eapol_logger_level level, const char *txt)
  1773. {
  1774. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  1775. struct hostapd_data *hapd = ctx;
  1776. int hlevel;
  1777. switch (level) {
  1778. case EAPOL_LOGGER_WARNING:
  1779. hlevel = HOSTAPD_LEVEL_WARNING;
  1780. break;
  1781. case EAPOL_LOGGER_INFO:
  1782. hlevel = HOSTAPD_LEVEL_INFO;
  1783. break;
  1784. case EAPOL_LOGGER_DEBUG:
  1785. default:
  1786. hlevel = HOSTAPD_LEVEL_DEBUG;
  1787. break;
  1788. }
  1789. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE8021X, hlevel, "%s",
  1790. txt);
  1791. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  1792. }
  1793. static void ieee802_1x_set_port_authorized(void *ctx, void *sta_ctx,
  1794. int authorized)
  1795. {
  1796. struct hostapd_data *hapd = ctx;
  1797. struct sta_info *sta = sta_ctx;
  1798. ieee802_1x_set_sta_authorized(hapd, sta, authorized);
  1799. }
  1800. static void _ieee802_1x_abort_auth(void *ctx, void *sta_ctx)
  1801. {
  1802. struct hostapd_data *hapd = ctx;
  1803. struct sta_info *sta = sta_ctx;
  1804. ieee802_1x_abort_auth(hapd, sta);
  1805. }
  1806. static void _ieee802_1x_tx_key(void *ctx, void *sta_ctx)
  1807. {
  1808. #ifndef CONFIG_FIPS
  1809. #ifndef CONFIG_NO_RC4
  1810. struct hostapd_data *hapd = ctx;
  1811. struct sta_info *sta = sta_ctx;
  1812. ieee802_1x_tx_key(hapd, sta);
  1813. #endif /* CONFIG_NO_RC4 */
  1814. #endif /* CONFIG_FIPS */
  1815. }
  1816. static void ieee802_1x_eapol_event(void *ctx, void *sta_ctx,
  1817. enum eapol_event type)
  1818. {
  1819. /* struct hostapd_data *hapd = ctx; */
  1820. struct sta_info *sta = sta_ctx;
  1821. switch (type) {
  1822. case EAPOL_AUTH_SM_CHANGE:
  1823. wpa_auth_sm_notify(sta->wpa_sm);
  1824. break;
  1825. case EAPOL_AUTH_REAUTHENTICATE:
  1826. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
  1827. break;
  1828. }
  1829. }
  1830. #ifdef CONFIG_ERP
  1831. static struct eap_server_erp_key *
  1832. ieee802_1x_erp_get_key(void *ctx, const char *keyname)
  1833. {
  1834. struct hostapd_data *hapd = ctx;
  1835. struct eap_server_erp_key *erp;
  1836. dl_list_for_each(erp, &hapd->erp_keys, struct eap_server_erp_key,
  1837. list) {
  1838. if (os_strcmp(erp->keyname_nai, keyname) == 0)
  1839. return erp;
  1840. }
  1841. return NULL;
  1842. }
  1843. static int ieee802_1x_erp_add_key(void *ctx, struct eap_server_erp_key *erp)
  1844. {
  1845. struct hostapd_data *hapd = ctx;
  1846. dl_list_add(&hapd->erp_keys, &erp->list);
  1847. return 0;
  1848. }
  1849. #endif /* CONFIG_ERP */
  1850. int ieee802_1x_init(struct hostapd_data *hapd)
  1851. {
  1852. int i;
  1853. struct eapol_auth_config conf;
  1854. struct eapol_auth_cb cb;
  1855. dl_list_init(&hapd->erp_keys);
  1856. os_memset(&conf, 0, sizeof(conf));
  1857. conf.ctx = hapd;
  1858. conf.eap_reauth_period = hapd->conf->eap_reauth_period;
  1859. conf.wpa = hapd->conf->wpa;
  1860. conf.individual_wep_key_len = hapd->conf->individual_wep_key_len;
  1861. conf.eap_server = hapd->conf->eap_server;
  1862. conf.ssl_ctx = hapd->ssl_ctx;
  1863. conf.msg_ctx = hapd->msg_ctx;
  1864. conf.eap_sim_db_priv = hapd->eap_sim_db_priv;
  1865. conf.eap_req_id_text = hapd->conf->eap_req_id_text;
  1866. conf.eap_req_id_text_len = hapd->conf->eap_req_id_text_len;
  1867. conf.erp_send_reauth_start = hapd->conf->erp_send_reauth_start;
  1868. conf.erp_domain = hapd->conf->erp_domain;
  1869. conf.erp = hapd->conf->eap_server_erp;
  1870. conf.tls_session_lifetime = hapd->conf->tls_session_lifetime;
  1871. conf.pac_opaque_encr_key = hapd->conf->pac_opaque_encr_key;
  1872. conf.eap_fast_a_id = hapd->conf->eap_fast_a_id;
  1873. conf.eap_fast_a_id_len = hapd->conf->eap_fast_a_id_len;
  1874. conf.eap_fast_a_id_info = hapd->conf->eap_fast_a_id_info;
  1875. conf.eap_fast_prov = hapd->conf->eap_fast_prov;
  1876. conf.pac_key_lifetime = hapd->conf->pac_key_lifetime;
  1877. conf.pac_key_refresh_time = hapd->conf->pac_key_refresh_time;
  1878. conf.eap_sim_aka_result_ind = hapd->conf->eap_sim_aka_result_ind;
  1879. conf.tnc = hapd->conf->tnc;
  1880. conf.wps = hapd->wps;
  1881. conf.fragment_size = hapd->conf->fragment_size;
  1882. conf.pwd_group = hapd->conf->pwd_group;
  1883. conf.pbc_in_m1 = hapd->conf->pbc_in_m1;
  1884. if (hapd->conf->server_id) {
  1885. conf.server_id = (const u8 *) hapd->conf->server_id;
  1886. conf.server_id_len = os_strlen(hapd->conf->server_id);
  1887. } else {
  1888. conf.server_id = (const u8 *) "hostapd";
  1889. conf.server_id_len = 7;
  1890. }
  1891. os_memset(&cb, 0, sizeof(cb));
  1892. cb.eapol_send = ieee802_1x_eapol_send;
  1893. cb.aaa_send = ieee802_1x_aaa_send;
  1894. cb.finished = _ieee802_1x_finished;
  1895. cb.get_eap_user = ieee802_1x_get_eap_user;
  1896. cb.sta_entry_alive = ieee802_1x_sta_entry_alive;
  1897. cb.logger = ieee802_1x_logger;
  1898. cb.set_port_authorized = ieee802_1x_set_port_authorized;
  1899. cb.abort_auth = _ieee802_1x_abort_auth;
  1900. cb.tx_key = _ieee802_1x_tx_key;
  1901. cb.eapol_event = ieee802_1x_eapol_event;
  1902. #ifdef CONFIG_ERP
  1903. cb.erp_get_key = ieee802_1x_erp_get_key;
  1904. cb.erp_add_key = ieee802_1x_erp_add_key;
  1905. #endif /* CONFIG_ERP */
  1906. hapd->eapol_auth = eapol_auth_init(&conf, &cb);
  1907. if (hapd->eapol_auth == NULL)
  1908. return -1;
  1909. if ((hapd->conf->ieee802_1x || hapd->conf->wpa) &&
  1910. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1))
  1911. return -1;
  1912. #ifndef CONFIG_NO_RADIUS
  1913. if (radius_client_register(hapd->radius, RADIUS_AUTH,
  1914. ieee802_1x_receive_auth, hapd))
  1915. return -1;
  1916. #endif /* CONFIG_NO_RADIUS */
  1917. if (hapd->conf->default_wep_key_len) {
  1918. for (i = 0; i < 4; i++)
  1919. hostapd_drv_set_key(hapd->conf->iface, hapd,
  1920. WPA_ALG_NONE, NULL, i, 0, NULL, 0,
  1921. NULL, 0);
  1922. ieee802_1x_rekey(hapd, NULL);
  1923. if (hapd->eapol_auth->default_wep_key == NULL)
  1924. return -1;
  1925. }
  1926. return 0;
  1927. }
  1928. void ieee802_1x_erp_flush(struct hostapd_data *hapd)
  1929. {
  1930. struct eap_server_erp_key *erp;
  1931. while ((erp = dl_list_first(&hapd->erp_keys, struct eap_server_erp_key,
  1932. list)) != NULL) {
  1933. dl_list_del(&erp->list);
  1934. bin_clear_free(erp, sizeof(*erp));
  1935. }
  1936. }
  1937. void ieee802_1x_deinit(struct hostapd_data *hapd)
  1938. {
  1939. eloop_cancel_timeout(ieee802_1x_rekey, hapd, NULL);
  1940. if (hapd->driver && hapd->drv_priv &&
  1941. (hapd->conf->ieee802_1x || hapd->conf->wpa))
  1942. hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
  1943. eapol_auth_deinit(hapd->eapol_auth);
  1944. hapd->eapol_auth = NULL;
  1945. ieee802_1x_erp_flush(hapd);
  1946. }
  1947. int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
  1948. const u8 *buf, size_t len, int ack)
  1949. {
  1950. struct ieee80211_hdr *hdr;
  1951. u8 *pos;
  1952. const unsigned char rfc1042_hdr[ETH_ALEN] =
  1953. { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
  1954. if (sta == NULL)
  1955. return -1;
  1956. if (len < sizeof(*hdr) + sizeof(rfc1042_hdr) + 2)
  1957. return 0;
  1958. hdr = (struct ieee80211_hdr *) buf;
  1959. pos = (u8 *) (hdr + 1);
  1960. if (os_memcmp(pos, rfc1042_hdr, sizeof(rfc1042_hdr)) != 0)
  1961. return 0;
  1962. pos += sizeof(rfc1042_hdr);
  1963. if (WPA_GET_BE16(pos) != ETH_P_PAE)
  1964. return 0;
  1965. pos += 2;
  1966. return ieee802_1x_eapol_tx_status(hapd, sta, pos, buf + len - pos,
  1967. ack);
  1968. }
  1969. int ieee802_1x_eapol_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
  1970. const u8 *buf, int len, int ack)
  1971. {
  1972. const struct ieee802_1x_hdr *xhdr =
  1973. (const struct ieee802_1x_hdr *) buf;
  1974. const u8 *pos = buf + sizeof(*xhdr);
  1975. struct ieee802_1x_eapol_key *key;
  1976. if (len < (int) sizeof(*xhdr))
  1977. return 0;
  1978. wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR " TX status - version=%d "
  1979. "type=%d length=%d - ack=%d",
  1980. MAC2STR(sta->addr), xhdr->version, xhdr->type,
  1981. be_to_host16(xhdr->length), ack);
  1982. if (xhdr->type != IEEE802_1X_TYPE_EAPOL_KEY)
  1983. return 0;
  1984. if (pos + sizeof(struct wpa_eapol_key) <= buf + len) {
  1985. const struct wpa_eapol_key *wpa;
  1986. wpa = (const struct wpa_eapol_key *) pos;
  1987. if (wpa->type == EAPOL_KEY_TYPE_RSN ||
  1988. wpa->type == EAPOL_KEY_TYPE_WPA)
  1989. wpa_auth_eapol_key_tx_status(hapd->wpa_auth,
  1990. sta->wpa_sm, ack);
  1991. }
  1992. /* EAPOL EAP-Packet packets are eventually re-sent by either Supplicant
  1993. * or Authenticator state machines, but EAPOL-Key packets are not
  1994. * retransmitted in case of failure. Try to re-send failed EAPOL-Key
  1995. * packets couple of times because otherwise STA keys become
  1996. * unsynchronized with AP. */
  1997. if (!ack && pos + sizeof(*key) <= buf + len) {
  1998. key = (struct ieee802_1x_eapol_key *) pos;
  1999. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
  2000. HOSTAPD_LEVEL_DEBUG, "did not Ack EAPOL-Key "
  2001. "frame (%scast index=%d)",
  2002. key->key_index & BIT(7) ? "uni" : "broad",
  2003. key->key_index & ~BIT(7));
  2004. /* TODO: re-send EAPOL-Key couple of times (with short delay
  2005. * between them?). If all attempt fail, report error and
  2006. * deauthenticate STA so that it will get new keys when
  2007. * authenticating again (e.g., after returning in range).
  2008. * Separate limit/transmit state needed both for unicast and
  2009. * broadcast keys(?) */
  2010. }
  2011. /* TODO: could move unicast key configuration from ieee802_1x_tx_key()
  2012. * to here and change the key only if the EAPOL-Key packet was Acked.
  2013. */
  2014. return 1;
  2015. }
  2016. u8 * ieee802_1x_get_identity(struct eapol_state_machine *sm, size_t *len)
  2017. {
  2018. if (sm == NULL || sm->identity == NULL)
  2019. return NULL;
  2020. *len = sm->identity_len;
  2021. return sm->identity;
  2022. }
  2023. u8 * ieee802_1x_get_radius_class(struct eapol_state_machine *sm, size_t *len,
  2024. int idx)
  2025. {
  2026. if (sm == NULL || sm->radius_class.attr == NULL ||
  2027. idx >= (int) sm->radius_class.count)
  2028. return NULL;
  2029. *len = sm->radius_class.attr[idx].len;
  2030. return sm->radius_class.attr[idx].data;
  2031. }
  2032. struct wpabuf * ieee802_1x_get_radius_cui(struct eapol_state_machine *sm)
  2033. {
  2034. if (sm == NULL)
  2035. return NULL;
  2036. return sm->radius_cui;
  2037. }
  2038. const u8 * ieee802_1x_get_key(struct eapol_state_machine *sm, size_t *len)
  2039. {
  2040. *len = 0;
  2041. if (sm == NULL)
  2042. return NULL;
  2043. *len = sm->eap_if->eapKeyDataLen;
  2044. return sm->eap_if->eapKeyData;
  2045. }
  2046. void ieee802_1x_notify_port_enabled(struct eapol_state_machine *sm,
  2047. int enabled)
  2048. {
  2049. if (sm == NULL)
  2050. return;
  2051. sm->eap_if->portEnabled = enabled ? TRUE : FALSE;
  2052. eapol_auth_step(sm);
  2053. }
  2054. void ieee802_1x_notify_port_valid(struct eapol_state_machine *sm,
  2055. int valid)
  2056. {
  2057. if (sm == NULL)
  2058. return;
  2059. sm->portValid = valid ? TRUE : FALSE;
  2060. eapol_auth_step(sm);
  2061. }
  2062. void ieee802_1x_notify_pre_auth(struct eapol_state_machine *sm, int pre_auth)
  2063. {
  2064. if (sm == NULL)
  2065. return;
  2066. if (pre_auth)
  2067. sm->flags |= EAPOL_SM_PREAUTH;
  2068. else
  2069. sm->flags &= ~EAPOL_SM_PREAUTH;
  2070. }
  2071. static const char * bool_txt(Boolean val)
  2072. {
  2073. return val ? "TRUE" : "FALSE";
  2074. }
  2075. int ieee802_1x_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
  2076. {
  2077. /* TODO */
  2078. return 0;
  2079. }
  2080. int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
  2081. char *buf, size_t buflen)
  2082. {
  2083. int len = 0, ret;
  2084. struct eapol_state_machine *sm = sta->eapol_sm;
  2085. struct os_reltime diff;
  2086. const char *name1;
  2087. const char *name2;
  2088. if (sm == NULL)
  2089. return 0;
  2090. ret = os_snprintf(buf + len, buflen - len,
  2091. "dot1xPaePortNumber=%d\n"
  2092. "dot1xPaePortProtocolVersion=%d\n"
  2093. "dot1xPaePortCapabilities=1\n"
  2094. "dot1xPaePortInitialize=%d\n"
  2095. "dot1xPaePortReauthenticate=FALSE\n",
  2096. sta->aid,
  2097. EAPOL_VERSION,
  2098. sm->initialize);
  2099. if (os_snprintf_error(buflen - len, ret))
  2100. return len;
  2101. len += ret;
  2102. /* dot1xAuthConfigTable */
  2103. ret = os_snprintf(buf + len, buflen - len,
  2104. "dot1xAuthPaeState=%d\n"
  2105. "dot1xAuthBackendAuthState=%d\n"
  2106. "dot1xAuthAdminControlledDirections=%d\n"
  2107. "dot1xAuthOperControlledDirections=%d\n"
  2108. "dot1xAuthAuthControlledPortStatus=%d\n"
  2109. "dot1xAuthAuthControlledPortControl=%d\n"
  2110. "dot1xAuthQuietPeriod=%u\n"
  2111. "dot1xAuthServerTimeout=%u\n"
  2112. "dot1xAuthReAuthPeriod=%u\n"
  2113. "dot1xAuthReAuthEnabled=%s\n"
  2114. "dot1xAuthKeyTxEnabled=%s\n",
  2115. sm->auth_pae_state + 1,
  2116. sm->be_auth_state + 1,
  2117. sm->adminControlledDirections,
  2118. sm->operControlledDirections,
  2119. sm->authPortStatus,
  2120. sm->portControl,
  2121. sm->quietPeriod,
  2122. sm->serverTimeout,
  2123. sm->reAuthPeriod,
  2124. bool_txt(sm->reAuthEnabled),
  2125. bool_txt(sm->keyTxEnabled));
  2126. if (os_snprintf_error(buflen - len, ret))
  2127. return len;
  2128. len += ret;
  2129. /* dot1xAuthStatsTable */
  2130. ret = os_snprintf(buf + len, buflen - len,
  2131. "dot1xAuthEapolFramesRx=%u\n"
  2132. "dot1xAuthEapolFramesTx=%u\n"
  2133. "dot1xAuthEapolStartFramesRx=%u\n"
  2134. "dot1xAuthEapolLogoffFramesRx=%u\n"
  2135. "dot1xAuthEapolRespIdFramesRx=%u\n"
  2136. "dot1xAuthEapolRespFramesRx=%u\n"
  2137. "dot1xAuthEapolReqIdFramesTx=%u\n"
  2138. "dot1xAuthEapolReqFramesTx=%u\n"
  2139. "dot1xAuthInvalidEapolFramesRx=%u\n"
  2140. "dot1xAuthEapLengthErrorFramesRx=%u\n"
  2141. "dot1xAuthLastEapolFrameVersion=%u\n"
  2142. "dot1xAuthLastEapolFrameSource=" MACSTR "\n",
  2143. sm->dot1xAuthEapolFramesRx,
  2144. sm->dot1xAuthEapolFramesTx,
  2145. sm->dot1xAuthEapolStartFramesRx,
  2146. sm->dot1xAuthEapolLogoffFramesRx,
  2147. sm->dot1xAuthEapolRespIdFramesRx,
  2148. sm->dot1xAuthEapolRespFramesRx,
  2149. sm->dot1xAuthEapolReqIdFramesTx,
  2150. sm->dot1xAuthEapolReqFramesTx,
  2151. sm->dot1xAuthInvalidEapolFramesRx,
  2152. sm->dot1xAuthEapLengthErrorFramesRx,
  2153. sm->dot1xAuthLastEapolFrameVersion,
  2154. MAC2STR(sm->addr));
  2155. if (os_snprintf_error(buflen - len, ret))
  2156. return len;
  2157. len += ret;
  2158. /* dot1xAuthDiagTable */
  2159. ret = os_snprintf(buf + len, buflen - len,
  2160. "dot1xAuthEntersConnecting=%u\n"
  2161. "dot1xAuthEapLogoffsWhileConnecting=%u\n"
  2162. "dot1xAuthEntersAuthenticating=%u\n"
  2163. "dot1xAuthAuthSuccessesWhileAuthenticating=%u\n"
  2164. "dot1xAuthAuthTimeoutsWhileAuthenticating=%u\n"
  2165. "dot1xAuthAuthFailWhileAuthenticating=%u\n"
  2166. "dot1xAuthAuthEapStartsWhileAuthenticating=%u\n"
  2167. "dot1xAuthAuthEapLogoffWhileAuthenticating=%u\n"
  2168. "dot1xAuthAuthReauthsWhileAuthenticated=%u\n"
  2169. "dot1xAuthAuthEapStartsWhileAuthenticated=%u\n"
  2170. "dot1xAuthAuthEapLogoffWhileAuthenticated=%u\n"
  2171. "dot1xAuthBackendResponses=%u\n"
  2172. "dot1xAuthBackendAccessChallenges=%u\n"
  2173. "dot1xAuthBackendOtherRequestsToSupplicant=%u\n"
  2174. "dot1xAuthBackendAuthSuccesses=%u\n"
  2175. "dot1xAuthBackendAuthFails=%u\n",
  2176. sm->authEntersConnecting,
  2177. sm->authEapLogoffsWhileConnecting,
  2178. sm->authEntersAuthenticating,
  2179. sm->authAuthSuccessesWhileAuthenticating,
  2180. sm->authAuthTimeoutsWhileAuthenticating,
  2181. sm->authAuthFailWhileAuthenticating,
  2182. sm->authAuthEapStartsWhileAuthenticating,
  2183. sm->authAuthEapLogoffWhileAuthenticating,
  2184. sm->authAuthReauthsWhileAuthenticated,
  2185. sm->authAuthEapStartsWhileAuthenticated,
  2186. sm->authAuthEapLogoffWhileAuthenticated,
  2187. sm->backendResponses,
  2188. sm->backendAccessChallenges,
  2189. sm->backendOtherRequestsToSupplicant,
  2190. sm->backendAuthSuccesses,
  2191. sm->backendAuthFails);
  2192. if (os_snprintf_error(buflen - len, ret))
  2193. return len;
  2194. len += ret;
  2195. /* dot1xAuthSessionStatsTable */
  2196. os_reltime_age(&sta->acct_session_start, &diff);
  2197. ret = os_snprintf(buf + len, buflen - len,
  2198. /* TODO: dot1xAuthSessionOctetsRx */
  2199. /* TODO: dot1xAuthSessionOctetsTx */
  2200. /* TODO: dot1xAuthSessionFramesRx */
  2201. /* TODO: dot1xAuthSessionFramesTx */
  2202. "dot1xAuthSessionId=%016llX\n"
  2203. "dot1xAuthSessionAuthenticMethod=%d\n"
  2204. "dot1xAuthSessionTime=%u\n"
  2205. "dot1xAuthSessionTerminateCause=999\n"
  2206. "dot1xAuthSessionUserName=%s\n",
  2207. (unsigned long long) sta->acct_session_id,
  2208. (wpa_key_mgmt_wpa_ieee8021x(
  2209. wpa_auth_sta_key_mgmt(sta->wpa_sm))) ?
  2210. 1 : 2,
  2211. (unsigned int) diff.sec,
  2212. sm->identity);
  2213. if (os_snprintf_error(buflen - len, ret))
  2214. return len;
  2215. len += ret;
  2216. if (sm->acct_multi_session_id) {
  2217. ret = os_snprintf(buf + len, buflen - len,
  2218. "authMultiSessionId=%016llX\n",
  2219. (unsigned long long)
  2220. sm->acct_multi_session_id);
  2221. if (os_snprintf_error(buflen - len, ret))
  2222. return len;
  2223. len += ret;
  2224. }
  2225. name1 = eap_server_get_name(0, sm->eap_type_authsrv);
  2226. name2 = eap_server_get_name(0, sm->eap_type_supp);
  2227. ret = os_snprintf(buf + len, buflen - len,
  2228. "last_eap_type_as=%d (%s)\n"
  2229. "last_eap_type_sta=%d (%s)\n",
  2230. sm->eap_type_authsrv, name1,
  2231. sm->eap_type_supp, name2);
  2232. if (os_snprintf_error(buflen - len, ret))
  2233. return len;
  2234. len += ret;
  2235. return len;
  2236. }
  2237. #ifdef CONFIG_HS20
  2238. static void ieee802_1x_wnm_notif_send(void *eloop_ctx, void *timeout_ctx)
  2239. {
  2240. struct hostapd_data *hapd = eloop_ctx;
  2241. struct sta_info *sta = timeout_ctx;
  2242. if (sta->remediation) {
  2243. wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification to "
  2244. MACSTR " to indicate Subscription Remediation",
  2245. MAC2STR(sta->addr));
  2246. hs20_send_wnm_notification(hapd, sta->addr,
  2247. sta->remediation_method,
  2248. sta->remediation_url);
  2249. os_free(sta->remediation_url);
  2250. sta->remediation_url = NULL;
  2251. }
  2252. if (sta->hs20_deauth_req) {
  2253. wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification to "
  2254. MACSTR " to indicate imminent deauthentication",
  2255. MAC2STR(sta->addr));
  2256. hs20_send_wnm_notification_deauth_req(hapd, sta->addr,
  2257. sta->hs20_deauth_req);
  2258. }
  2259. }
  2260. #endif /* CONFIG_HS20 */
  2261. static void ieee802_1x_finished(struct hostapd_data *hapd,
  2262. struct sta_info *sta, int success,
  2263. int remediation)
  2264. {
  2265. const u8 *key;
  2266. size_t len;
  2267. /* TODO: get PMKLifetime from WPA parameters */
  2268. static const int dot11RSNAConfigPMKLifetime = 43200;
  2269. unsigned int session_timeout;
  2270. #ifdef CONFIG_HS20
  2271. if (remediation && !sta->remediation) {
  2272. sta->remediation = 1;
  2273. os_free(sta->remediation_url);
  2274. sta->remediation_url =
  2275. os_strdup(hapd->conf->subscr_remediation_url);
  2276. sta->remediation_method = 1; /* SOAP-XML SPP */
  2277. }
  2278. if (success && (sta->remediation || sta->hs20_deauth_req)) {
  2279. wpa_printf(MSG_DEBUG, "HS 2.0: Schedule WNM-Notification to "
  2280. MACSTR " in 100 ms", MAC2STR(sta->addr));
  2281. eloop_cancel_timeout(ieee802_1x_wnm_notif_send, hapd, sta);
  2282. eloop_register_timeout(0, 100000, ieee802_1x_wnm_notif_send,
  2283. hapd, sta);
  2284. }
  2285. #endif /* CONFIG_HS20 */
  2286. key = ieee802_1x_get_key(sta->eapol_sm, &len);
  2287. if (sta->session_timeout_set)
  2288. session_timeout = sta->session_timeout;
  2289. else
  2290. session_timeout = dot11RSNAConfigPMKLifetime;
  2291. if (success && key && len >= PMK_LEN && !sta->remediation &&
  2292. !sta->hs20_deauth_requested &&
  2293. wpa_auth_pmksa_add(sta->wpa_sm, key, len, session_timeout,
  2294. sta->eapol_sm) == 0) {
  2295. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
  2296. HOSTAPD_LEVEL_DEBUG,
  2297. "Added PMKSA cache entry (IEEE 802.1X)");
  2298. }
  2299. if (!success) {
  2300. /*
  2301. * Many devices require deauthentication after WPS provisioning
  2302. * and some may not be be able to do that themselves, so
  2303. * disconnect the client here. In addition, this may also
  2304. * benefit IEEE 802.1X/EAPOL authentication cases, too since
  2305. * the EAPOL PAE state machine would remain in HELD state for
  2306. * considerable amount of time and some EAP methods, like
  2307. * EAP-FAST with anonymous provisioning, may require another
  2308. * EAPOL authentication to be started to complete connection.
  2309. */
  2310. wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "IEEE 802.1X: Force "
  2311. "disconnection after EAP-Failure");
  2312. /* Add a small sleep to increase likelihood of previously
  2313. * requested EAP-Failure TX getting out before this should the
  2314. * driver reorder operations.
  2315. */
  2316. os_sleep(0, 10000);
  2317. ap_sta_disconnect(hapd, sta, sta->addr,
  2318. WLAN_REASON_IEEE_802_1X_AUTH_FAILED);
  2319. hostapd_wps_eap_completed(hapd);
  2320. }
  2321. }