ieee802_11_auth.c 18 KB

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