ieee802_1x.c 73 KB

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