ieee802_1x.c 77 KB

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