ieee802_11_auth.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. /*
  2. * hostapd / IEEE 802.11 authentication (ACL)
  3. * Copyright (c) 2003-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. * Access control list for IEEE 802.11 authentication can uses statically
  9. * configured ACL from configuration files or an external RADIUS server.
  10. * Results from external RADIUS queries are cached to allow faster
  11. * authentication frame processing.
  12. */
  13. #include "utils/includes.h"
  14. #include "utils/common.h"
  15. #include "utils/eloop.h"
  16. #include "radius/radius.h"
  17. #include "radius/radius_client.h"
  18. #include "hostapd.h"
  19. #include "ap_config.h"
  20. #include "ap_drv_ops.h"
  21. #include "ieee802_11.h"
  22. #include "ieee802_1x.h"
  23. #include "ieee802_11_auth.h"
  24. #define RADIUS_ACL_TIMEOUT 30
  25. struct hostapd_cached_radius_acl {
  26. struct os_reltime timestamp;
  27. macaddr addr;
  28. int accepted; /* HOSTAPD_ACL_* */
  29. struct hostapd_cached_radius_acl *next;
  30. u32 session_timeout;
  31. u32 acct_interim_interval;
  32. struct vlan_description vlan_id;
  33. struct hostapd_sta_wpa_psk_short *psk;
  34. char *identity;
  35. char *radius_cui;
  36. };
  37. struct hostapd_acl_query_data {
  38. struct os_reltime timestamp;
  39. u8 radius_id;
  40. macaddr addr;
  41. u8 *auth_msg; /* IEEE 802.11 authentication frame from station */
  42. size_t auth_msg_len;
  43. struct hostapd_acl_query_data *next;
  44. };
  45. #ifndef CONFIG_NO_RADIUS
  46. static void hostapd_acl_cache_free_entry(struct hostapd_cached_radius_acl *e)
  47. {
  48. os_free(e->identity);
  49. os_free(e->radius_cui);
  50. hostapd_free_psk_list(e->psk);
  51. os_free(e);
  52. }
  53. static void hostapd_acl_cache_free(struct hostapd_cached_radius_acl *acl_cache)
  54. {
  55. struct hostapd_cached_radius_acl *prev;
  56. while (acl_cache) {
  57. prev = acl_cache;
  58. acl_cache = acl_cache->next;
  59. hostapd_acl_cache_free_entry(prev);
  60. }
  61. }
  62. static void copy_psk_list(struct hostapd_sta_wpa_psk_short **psk,
  63. struct hostapd_sta_wpa_psk_short *src)
  64. {
  65. if (!psk)
  66. return;
  67. if (src)
  68. src->ref++;
  69. *psk = src;
  70. }
  71. static int hostapd_acl_cache_get(struct hostapd_data *hapd, const u8 *addr,
  72. u32 *session_timeout,
  73. u32 *acct_interim_interval,
  74. struct vlan_description *vlan_id,
  75. struct hostapd_sta_wpa_psk_short **psk,
  76. char **identity, char **radius_cui)
  77. {
  78. struct hostapd_cached_radius_acl *entry;
  79. struct os_reltime now;
  80. os_get_reltime(&now);
  81. for (entry = hapd->acl_cache; entry; entry = entry->next) {
  82. if (os_memcmp(entry->addr, addr, ETH_ALEN) != 0)
  83. continue;
  84. if (os_reltime_expired(&now, &entry->timestamp,
  85. RADIUS_ACL_TIMEOUT))
  86. return -1; /* entry has expired */
  87. if (entry->accepted == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  88. if (session_timeout)
  89. *session_timeout = entry->session_timeout;
  90. if (acct_interim_interval)
  91. *acct_interim_interval =
  92. entry->acct_interim_interval;
  93. if (vlan_id)
  94. *vlan_id = entry->vlan_id;
  95. copy_psk_list(psk, entry->psk);
  96. if (identity) {
  97. if (entry->identity)
  98. *identity = os_strdup(entry->identity);
  99. else
  100. *identity = NULL;
  101. }
  102. if (radius_cui) {
  103. if (entry->radius_cui)
  104. *radius_cui = os_strdup(entry->radius_cui);
  105. else
  106. *radius_cui = NULL;
  107. }
  108. return entry->accepted;
  109. }
  110. return -1;
  111. }
  112. #endif /* CONFIG_NO_RADIUS */
  113. static void hostapd_acl_query_free(struct hostapd_acl_query_data *query)
  114. {
  115. if (query == NULL)
  116. return;
  117. os_free(query->auth_msg);
  118. os_free(query);
  119. }
  120. #ifndef CONFIG_NO_RADIUS
  121. static int hostapd_radius_acl_query(struct hostapd_data *hapd, const u8 *addr,
  122. struct hostapd_acl_query_data *query)
  123. {
  124. struct radius_msg *msg;
  125. char buf[128];
  126. query->radius_id = radius_client_get_id(hapd->radius);
  127. msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
  128. if (msg == NULL)
  129. return -1;
  130. if (radius_msg_make_authenticator(msg) < 0) {
  131. wpa_printf(MSG_INFO, "Could not make Request Authenticator");
  132. goto fail;
  133. }
  134. os_snprintf(buf, sizeof(buf), RADIUS_ADDR_FORMAT, MAC2STR(addr));
  135. if (!radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME, (u8 *) buf,
  136. os_strlen(buf))) {
  137. wpa_printf(MSG_DEBUG, "Could not add User-Name");
  138. goto fail;
  139. }
  140. if (!radius_msg_add_attr_user_password(
  141. msg, (u8 *) buf, os_strlen(buf),
  142. hapd->conf->radius->auth_server->shared_secret,
  143. hapd->conf->radius->auth_server->shared_secret_len)) {
  144. wpa_printf(MSG_DEBUG, "Could not add User-Password");
  145. goto fail;
  146. }
  147. if (add_common_radius_attr(hapd, hapd->conf->radius_auth_req_attr,
  148. NULL, msg) < 0)
  149. goto fail;
  150. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  151. MAC2STR(addr));
  152. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  153. (u8 *) buf, os_strlen(buf))) {
  154. wpa_printf(MSG_DEBUG, "Could not add Calling-Station-Id");
  155. goto fail;
  156. }
  157. os_snprintf(buf, sizeof(buf), "CONNECT 11Mbps 802.11b");
  158. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  159. (u8 *) buf, os_strlen(buf))) {
  160. wpa_printf(MSG_DEBUG, "Could not add Connect-Info");
  161. goto fail;
  162. }
  163. if (radius_client_send(hapd->radius, msg, RADIUS_AUTH, addr) < 0)
  164. goto fail;
  165. return 0;
  166. fail:
  167. radius_msg_free(msg);
  168. return -1;
  169. }
  170. #endif /* CONFIG_NO_RADIUS */
  171. /**
  172. * hostapd_check_acl - Check a specified STA against accept/deny ACLs
  173. * @hapd: hostapd BSS data
  174. * @addr: MAC address of the STA
  175. * @vlan_id: Buffer for returning VLAN ID
  176. * Returns: HOSTAPD_ACL_ACCEPT, HOSTAPD_ACL_REJECT, or HOSTAPD_ACL_PENDING
  177. */
  178. int hostapd_check_acl(struct hostapd_data *hapd, const u8 *addr,
  179. struct vlan_description *vlan_id)
  180. {
  181. if (hostapd_maclist_found(hapd->conf->accept_mac,
  182. hapd->conf->num_accept_mac, addr, vlan_id))
  183. return HOSTAPD_ACL_ACCEPT;
  184. if (hostapd_maclist_found(hapd->conf->deny_mac,
  185. hapd->conf->num_deny_mac, addr, vlan_id))
  186. return HOSTAPD_ACL_REJECT;
  187. if (hapd->conf->macaddr_acl == ACCEPT_UNLESS_DENIED)
  188. return HOSTAPD_ACL_ACCEPT;
  189. if (hapd->conf->macaddr_acl == DENY_UNLESS_ACCEPTED)
  190. return HOSTAPD_ACL_REJECT;
  191. return HOSTAPD_ACL_PENDING;
  192. }
  193. /**
  194. * hostapd_allowed_address - Check whether a specified STA can be authenticated
  195. * @hapd: hostapd BSS data
  196. * @addr: MAC address of the STA
  197. * @msg: Authentication message
  198. * @len: Length of msg in octets
  199. * @session_timeout: Buffer for returning session timeout (from RADIUS)
  200. * @acct_interim_interval: Buffer for returning account interval (from RADIUS)
  201. * @vlan_id: Buffer for returning VLAN ID
  202. * @psk: Linked list buffer for returning WPA PSK
  203. * @identity: Buffer for returning identity (from RADIUS)
  204. * @radius_cui: Buffer for returning CUI (from RADIUS)
  205. * @is_probe_req: Whether this query for a Probe Request frame
  206. * Returns: HOSTAPD_ACL_ACCEPT, HOSTAPD_ACL_REJECT, or HOSTAPD_ACL_PENDING
  207. *
  208. * The caller is responsible for freeing the returned *identity and *radius_cui
  209. * values with os_free().
  210. */
  211. int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr,
  212. const u8 *msg, size_t len, u32 *session_timeout,
  213. u32 *acct_interim_interval,
  214. struct vlan_description *vlan_id,
  215. struct hostapd_sta_wpa_psk_short **psk,
  216. char **identity, char **radius_cui,
  217. int is_probe_req)
  218. {
  219. int res;
  220. if (session_timeout)
  221. *session_timeout = 0;
  222. if (acct_interim_interval)
  223. *acct_interim_interval = 0;
  224. if (vlan_id)
  225. os_memset(vlan_id, 0, sizeof(*vlan_id));
  226. if (psk)
  227. *psk = NULL;
  228. if (identity)
  229. *identity = NULL;
  230. if (radius_cui)
  231. *radius_cui = NULL;
  232. res = hostapd_check_acl(hapd, addr, vlan_id);
  233. if (res != HOSTAPD_ACL_PENDING)
  234. return res;
  235. if (hapd->conf->macaddr_acl == USE_EXTERNAL_RADIUS_AUTH) {
  236. #ifdef CONFIG_NO_RADIUS
  237. return HOSTAPD_ACL_REJECT;
  238. #else /* CONFIG_NO_RADIUS */
  239. struct hostapd_acl_query_data *query;
  240. if (is_probe_req) {
  241. /* Skip RADIUS queries for Probe Request frames to avoid
  242. * excessive load on the authentication server. */
  243. return HOSTAPD_ACL_ACCEPT;
  244. };
  245. /* Check whether ACL cache has an entry for this station */
  246. res = hostapd_acl_cache_get(hapd, addr, session_timeout,
  247. acct_interim_interval, vlan_id, psk,
  248. identity, radius_cui);
  249. if (res == HOSTAPD_ACL_ACCEPT ||
  250. res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  251. return res;
  252. if (res == HOSTAPD_ACL_REJECT)
  253. return HOSTAPD_ACL_REJECT;
  254. query = hapd->acl_queries;
  255. while (query) {
  256. if (os_memcmp(query->addr, addr, ETH_ALEN) == 0) {
  257. /* pending query in RADIUS retransmit queue;
  258. * do not generate a new one */
  259. if (identity) {
  260. os_free(*identity);
  261. *identity = NULL;
  262. }
  263. if (radius_cui) {
  264. os_free(*radius_cui);
  265. *radius_cui = NULL;
  266. }
  267. return HOSTAPD_ACL_PENDING;
  268. }
  269. query = query->next;
  270. }
  271. if (!hapd->conf->radius->auth_server)
  272. return HOSTAPD_ACL_REJECT;
  273. /* No entry in the cache - query external RADIUS server */
  274. query = os_zalloc(sizeof(*query));
  275. if (query == NULL) {
  276. wpa_printf(MSG_ERROR, "malloc for query data failed");
  277. return HOSTAPD_ACL_REJECT;
  278. }
  279. os_get_reltime(&query->timestamp);
  280. os_memcpy(query->addr, addr, ETH_ALEN);
  281. if (hostapd_radius_acl_query(hapd, addr, query)) {
  282. wpa_printf(MSG_DEBUG, "Failed to send Access-Request "
  283. "for ACL query.");
  284. hostapd_acl_query_free(query);
  285. return HOSTAPD_ACL_REJECT;
  286. }
  287. query->auth_msg = os_memdup(msg, len);
  288. if (query->auth_msg == NULL) {
  289. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  290. "auth frame.");
  291. hostapd_acl_query_free(query);
  292. return HOSTAPD_ACL_REJECT;
  293. }
  294. query->auth_msg_len = len;
  295. query->next = hapd->acl_queries;
  296. hapd->acl_queries = query;
  297. /* Queued data will be processed in hostapd_acl_recv_radius()
  298. * when RADIUS server replies to the sent Access-Request. */
  299. return HOSTAPD_ACL_PENDING;
  300. #endif /* CONFIG_NO_RADIUS */
  301. }
  302. return HOSTAPD_ACL_REJECT;
  303. }
  304. #ifndef CONFIG_NO_RADIUS
  305. static void hostapd_acl_expire_cache(struct hostapd_data *hapd,
  306. struct os_reltime *now)
  307. {
  308. struct hostapd_cached_radius_acl *prev, *entry, *tmp;
  309. prev = NULL;
  310. entry = hapd->acl_cache;
  311. while (entry) {
  312. if (os_reltime_expired(now, &entry->timestamp,
  313. RADIUS_ACL_TIMEOUT)) {
  314. wpa_printf(MSG_DEBUG, "Cached ACL entry for " MACSTR
  315. " has expired.", MAC2STR(entry->addr));
  316. if (prev)
  317. prev->next = entry->next;
  318. else
  319. hapd->acl_cache = entry->next;
  320. hostapd_drv_set_radius_acl_expire(hapd, entry->addr);
  321. tmp = entry;
  322. entry = entry->next;
  323. hostapd_acl_cache_free_entry(tmp);
  324. continue;
  325. }
  326. prev = entry;
  327. entry = entry->next;
  328. }
  329. }
  330. static void hostapd_acl_expire_queries(struct hostapd_data *hapd,
  331. struct os_reltime *now)
  332. {
  333. struct hostapd_acl_query_data *prev, *entry, *tmp;
  334. prev = NULL;
  335. entry = hapd->acl_queries;
  336. while (entry) {
  337. if (os_reltime_expired(now, &entry->timestamp,
  338. RADIUS_ACL_TIMEOUT)) {
  339. wpa_printf(MSG_DEBUG, "ACL query for " MACSTR
  340. " has expired.", MAC2STR(entry->addr));
  341. if (prev)
  342. prev->next = entry->next;
  343. else
  344. hapd->acl_queries = entry->next;
  345. tmp = entry;
  346. entry = entry->next;
  347. hostapd_acl_query_free(tmp);
  348. continue;
  349. }
  350. prev = entry;
  351. entry = entry->next;
  352. }
  353. }
  354. /**
  355. * hostapd_acl_expire - ACL cache expiration callback
  356. * @hapd: struct hostapd_data *
  357. */
  358. void hostapd_acl_expire(struct hostapd_data *hapd)
  359. {
  360. struct os_reltime now;
  361. os_get_reltime(&now);
  362. hostapd_acl_expire_cache(hapd, &now);
  363. hostapd_acl_expire_queries(hapd, &now);
  364. }
  365. static void decode_tunnel_passwords(struct hostapd_data *hapd,
  366. const u8 *shared_secret,
  367. size_t shared_secret_len,
  368. struct radius_msg *msg,
  369. struct radius_msg *req,
  370. struct hostapd_cached_radius_acl *cache)
  371. {
  372. int passphraselen;
  373. char *passphrase;
  374. size_t i;
  375. struct hostapd_sta_wpa_psk_short *psk;
  376. /*
  377. * Decode all tunnel passwords as PSK and save them into a linked list.
  378. */
  379. for (i = 0; ; i++) {
  380. passphrase = radius_msg_get_tunnel_password(
  381. msg, &passphraselen, shared_secret, shared_secret_len,
  382. req, i);
  383. /*
  384. * Passphrase is NULL iff there is no i-th Tunnel-Password
  385. * attribute in msg.
  386. */
  387. if (passphrase == NULL)
  388. break;
  389. /*
  390. * Passphase should be 8..63 chars (to be hashed with SSID)
  391. * or 64 chars hex string (no separate hashing with SSID).
  392. */
  393. if (passphraselen < MIN_PASSPHRASE_LEN ||
  394. passphraselen > MAX_PASSPHRASE_LEN + 1)
  395. goto free_pass;
  396. /*
  397. * passphrase does not contain the NULL termination.
  398. * Add it here as pbkdf2_sha1() requires it.
  399. */
  400. psk = os_zalloc(sizeof(struct hostapd_sta_wpa_psk_short));
  401. if (psk) {
  402. if ((passphraselen == MAX_PASSPHRASE_LEN + 1) &&
  403. (hexstr2bin(passphrase, psk->psk, PMK_LEN) < 0)) {
  404. hostapd_logger(hapd, cache->addr,
  405. HOSTAPD_MODULE_RADIUS,
  406. HOSTAPD_LEVEL_WARNING,
  407. "invalid hex string (%d chars) in Tunnel-Password",
  408. passphraselen);
  409. goto skip;
  410. } else if (passphraselen <= MAX_PASSPHRASE_LEN) {
  411. os_memcpy(psk->passphrase, passphrase,
  412. passphraselen);
  413. psk->is_passphrase = 1;
  414. }
  415. psk->next = cache->psk;
  416. cache->psk = psk;
  417. psk = NULL;
  418. }
  419. skip:
  420. os_free(psk);
  421. free_pass:
  422. os_free(passphrase);
  423. }
  424. }
  425. /**
  426. * hostapd_acl_recv_radius - Process incoming RADIUS Authentication messages
  427. * @msg: RADIUS response message
  428. * @req: RADIUS request message
  429. * @shared_secret: RADIUS shared secret
  430. * @shared_secret_len: Length of shared_secret in octets
  431. * @data: Context data (struct hostapd_data *)
  432. * Returns: RADIUS_RX_PROCESSED if RADIUS message was a reply to ACL query (and
  433. * was processed here) or RADIUS_RX_UNKNOWN if not.
  434. */
  435. static RadiusRxResult
  436. hostapd_acl_recv_radius(struct radius_msg *msg, struct radius_msg *req,
  437. const u8 *shared_secret, size_t shared_secret_len,
  438. void *data)
  439. {
  440. struct hostapd_data *hapd = data;
  441. struct hostapd_acl_query_data *query, *prev;
  442. struct hostapd_cached_radius_acl *cache;
  443. struct radius_hdr *hdr = radius_msg_get_hdr(msg);
  444. int *untagged, *tagged, *notempty;
  445. query = hapd->acl_queries;
  446. prev = NULL;
  447. while (query) {
  448. if (query->radius_id == hdr->identifier)
  449. break;
  450. prev = query;
  451. query = query->next;
  452. }
  453. if (query == NULL)
  454. return RADIUS_RX_UNKNOWN;
  455. wpa_printf(MSG_DEBUG, "Found matching Access-Request for RADIUS "
  456. "message (id=%d)", query->radius_id);
  457. if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) {
  458. wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have "
  459. "correct authenticator - dropped\n");
  460. return RADIUS_RX_INVALID_AUTHENTICATOR;
  461. }
  462. if (hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
  463. hdr->code != RADIUS_CODE_ACCESS_REJECT) {
  464. wpa_printf(MSG_DEBUG, "Unknown RADIUS message code %d to ACL "
  465. "query", hdr->code);
  466. return RADIUS_RX_UNKNOWN;
  467. }
  468. /* Insert Accept/Reject info into ACL cache */
  469. cache = os_zalloc(sizeof(*cache));
  470. if (cache == NULL) {
  471. wpa_printf(MSG_DEBUG, "Failed to add ACL cache entry");
  472. goto done;
  473. }
  474. os_get_reltime(&cache->timestamp);
  475. os_memcpy(cache->addr, query->addr, sizeof(cache->addr));
  476. if (hdr->code == RADIUS_CODE_ACCESS_ACCEPT) {
  477. u8 *buf;
  478. size_t len;
  479. if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
  480. &cache->session_timeout) == 0)
  481. cache->accepted = HOSTAPD_ACL_ACCEPT_TIMEOUT;
  482. else
  483. cache->accepted = HOSTAPD_ACL_ACCEPT;
  484. if (radius_msg_get_attr_int32(
  485. msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
  486. &cache->acct_interim_interval) == 0 &&
  487. cache->acct_interim_interval < 60) {
  488. wpa_printf(MSG_DEBUG, "Ignored too small "
  489. "Acct-Interim-Interval %d for STA " MACSTR,
  490. cache->acct_interim_interval,
  491. MAC2STR(query->addr));
  492. cache->acct_interim_interval = 0;
  493. }
  494. notempty = &cache->vlan_id.notempty;
  495. untagged = &cache->vlan_id.untagged;
  496. tagged = cache->vlan_id.tagged;
  497. *notempty = !!radius_msg_get_vlanid(msg, untagged,
  498. MAX_NUM_TAGGED_VLAN,
  499. tagged);
  500. decode_tunnel_passwords(hapd, shared_secret, shared_secret_len,
  501. msg, req, cache);
  502. if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME,
  503. &buf, &len, NULL) == 0) {
  504. cache->identity = os_zalloc(len + 1);
  505. if (cache->identity)
  506. os_memcpy(cache->identity, buf, len);
  507. }
  508. if (radius_msg_get_attr_ptr(
  509. msg, RADIUS_ATTR_CHARGEABLE_USER_IDENTITY,
  510. &buf, &len, NULL) == 0) {
  511. cache->radius_cui = os_zalloc(len + 1);
  512. if (cache->radius_cui)
  513. os_memcpy(cache->radius_cui, buf, len);
  514. }
  515. if (hapd->conf->wpa_psk_radius == PSK_RADIUS_REQUIRED &&
  516. !cache->psk)
  517. cache->accepted = HOSTAPD_ACL_REJECT;
  518. if (cache->vlan_id.notempty &&
  519. !hostapd_vlan_valid(hapd->conf->vlan, &cache->vlan_id)) {
  520. hostapd_logger(hapd, query->addr,
  521. HOSTAPD_MODULE_RADIUS,
  522. HOSTAPD_LEVEL_INFO,
  523. "Invalid VLAN %d%s received from RADIUS server",
  524. cache->vlan_id.untagged,
  525. cache->vlan_id.tagged[0] ? "+" : "");
  526. os_memset(&cache->vlan_id, 0, sizeof(cache->vlan_id));
  527. }
  528. if (hapd->conf->ssid.dynamic_vlan == DYNAMIC_VLAN_REQUIRED &&
  529. !cache->vlan_id.notempty)
  530. cache->accepted = HOSTAPD_ACL_REJECT;
  531. } else
  532. cache->accepted = HOSTAPD_ACL_REJECT;
  533. cache->next = hapd->acl_cache;
  534. hapd->acl_cache = cache;
  535. #ifdef CONFIG_DRIVER_RADIUS_ACL
  536. hostapd_drv_set_radius_acl_auth(hapd, query->addr, cache->accepted,
  537. cache->session_timeout);
  538. #else /* CONFIG_DRIVER_RADIUS_ACL */
  539. #ifdef NEED_AP_MLME
  540. /* Re-send original authentication frame for 802.11 processing */
  541. wpa_printf(MSG_DEBUG, "Re-sending authentication frame after "
  542. "successful RADIUS ACL query");
  543. ieee802_11_mgmt(hapd, query->auth_msg, query->auth_msg_len, NULL);
  544. #endif /* NEED_AP_MLME */
  545. #endif /* CONFIG_DRIVER_RADIUS_ACL */
  546. done:
  547. if (prev == NULL)
  548. hapd->acl_queries = query->next;
  549. else
  550. prev->next = query->next;
  551. hostapd_acl_query_free(query);
  552. return RADIUS_RX_PROCESSED;
  553. }
  554. #endif /* CONFIG_NO_RADIUS */
  555. /**
  556. * hostapd_acl_init: Initialize IEEE 802.11 ACL
  557. * @hapd: hostapd BSS data
  558. * Returns: 0 on success, -1 on failure
  559. */
  560. int hostapd_acl_init(struct hostapd_data *hapd)
  561. {
  562. #ifndef CONFIG_NO_RADIUS
  563. if (radius_client_register(hapd->radius, RADIUS_AUTH,
  564. hostapd_acl_recv_radius, hapd))
  565. return -1;
  566. #endif /* CONFIG_NO_RADIUS */
  567. return 0;
  568. }
  569. /**
  570. * hostapd_acl_deinit - Deinitialize IEEE 802.11 ACL
  571. * @hapd: hostapd BSS data
  572. */
  573. void hostapd_acl_deinit(struct hostapd_data *hapd)
  574. {
  575. struct hostapd_acl_query_data *query, *prev;
  576. #ifndef CONFIG_NO_RADIUS
  577. hostapd_acl_cache_free(hapd->acl_cache);
  578. hapd->acl_cache = NULL;
  579. #endif /* CONFIG_NO_RADIUS */
  580. query = hapd->acl_queries;
  581. hapd->acl_queries = NULL;
  582. while (query) {
  583. prev = query;
  584. query = query->next;
  585. hostapd_acl_query_free(prev);
  586. }
  587. }
  588. void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk)
  589. {
  590. if (psk && psk->ref) {
  591. /* This will be freed when the last reference is dropped. */
  592. psk->ref--;
  593. return;
  594. }
  595. while (psk) {
  596. struct hostapd_sta_wpa_psk_short *prev = psk;
  597. psk = psk->next;
  598. os_free(prev);
  599. }
  600. }