ieee802_11_auth.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. /*
  2. * hostapd / IEEE 802.11 authentication (ACL)
  3. * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. *
  14. * Access control list for IEEE 802.11 authentication can uses statically
  15. * configured ACL from configuration files or an external RADIUS server.
  16. * Results from external RADIUS queries are cached to allow faster
  17. * authentication frame processing.
  18. */
  19. #include "includes.h"
  20. #ifndef CONFIG_NATIVE_WINDOWS
  21. #include "common.h"
  22. #include "hostapd.h"
  23. #include "config.h"
  24. #include "ieee802_11.h"
  25. #include "ieee802_11_auth.h"
  26. #include "radius/radius.h"
  27. #include "radius/radius_client.h"
  28. #include "eloop.h"
  29. #ifdef CONFIG_DRIVER_RADIUS_ACL
  30. #include "driver_i.h"
  31. #endif /* CONFIG_DRIVER_RADIUS_ACL */
  32. #define RADIUS_ACL_TIMEOUT 30
  33. struct hostapd_cached_radius_acl {
  34. time_t timestamp;
  35. macaddr addr;
  36. int accepted; /* HOSTAPD_ACL_* */
  37. struct hostapd_cached_radius_acl *next;
  38. u32 session_timeout;
  39. u32 acct_interim_interval;
  40. int vlan_id;
  41. };
  42. struct hostapd_acl_query_data {
  43. time_t timestamp;
  44. u8 radius_id;
  45. macaddr addr;
  46. u8 *auth_msg; /* IEEE 802.11 authentication frame from station */
  47. size_t auth_msg_len;
  48. struct hostapd_acl_query_data *next;
  49. };
  50. #ifndef CONFIG_NO_RADIUS
  51. static void hostapd_acl_cache_free(struct hostapd_cached_radius_acl *acl_cache)
  52. {
  53. struct hostapd_cached_radius_acl *prev;
  54. while (acl_cache) {
  55. prev = acl_cache;
  56. acl_cache = acl_cache->next;
  57. os_free(prev);
  58. }
  59. }
  60. static int hostapd_acl_cache_get(struct hostapd_data *hapd, const u8 *addr,
  61. u32 *session_timeout,
  62. u32 *acct_interim_interval, int *vlan_id)
  63. {
  64. struct hostapd_cached_radius_acl *entry;
  65. time_t now;
  66. time(&now);
  67. entry = hapd->acl_cache;
  68. while (entry) {
  69. if (os_memcmp(entry->addr, addr, ETH_ALEN) == 0) {
  70. if (now - entry->timestamp > RADIUS_ACL_TIMEOUT)
  71. return -1; /* entry has expired */
  72. if (entry->accepted == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  73. if (session_timeout)
  74. *session_timeout =
  75. entry->session_timeout;
  76. if (acct_interim_interval)
  77. *acct_interim_interval =
  78. entry->acct_interim_interval;
  79. if (vlan_id)
  80. *vlan_id = entry->vlan_id;
  81. return entry->accepted;
  82. }
  83. entry = entry->next;
  84. }
  85. return -1;
  86. }
  87. #endif /* CONFIG_NO_RADIUS */
  88. static void hostapd_acl_query_free(struct hostapd_acl_query_data *query)
  89. {
  90. if (query == NULL)
  91. return;
  92. os_free(query->auth_msg);
  93. os_free(query);
  94. }
  95. #ifndef CONFIG_NO_RADIUS
  96. static int hostapd_radius_acl_query(struct hostapd_data *hapd, const u8 *addr,
  97. struct hostapd_acl_query_data *query)
  98. {
  99. struct radius_msg *msg;
  100. char buf[128];
  101. query->radius_id = radius_client_get_id(hapd->radius);
  102. msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
  103. if (msg == NULL)
  104. return -1;
  105. radius_msg_make_authenticator(msg, addr, ETH_ALEN);
  106. os_snprintf(buf, sizeof(buf), RADIUS_ADDR_FORMAT, MAC2STR(addr));
  107. if (!radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME, (u8 *) buf,
  108. os_strlen(buf))) {
  109. wpa_printf(MSG_DEBUG, "Could not add User-Name");
  110. goto fail;
  111. }
  112. if (!radius_msg_add_attr_user_password(
  113. msg, (u8 *) buf, os_strlen(buf),
  114. hapd->conf->radius->auth_server->shared_secret,
  115. hapd->conf->radius->auth_server->shared_secret_len)) {
  116. wpa_printf(MSG_DEBUG, "Could not add User-Password");
  117. goto fail;
  118. }
  119. if (hapd->conf->own_ip_addr.af == AF_INET &&
  120. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
  121. (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
  122. wpa_printf(MSG_DEBUG, "Could not add NAS-IP-Address");
  123. goto fail;
  124. }
  125. #ifdef CONFIG_IPV6
  126. if (hapd->conf->own_ip_addr.af == AF_INET6 &&
  127. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
  128. (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
  129. wpa_printf(MSG_DEBUG, "Could not add NAS-IPv6-Address");
  130. goto fail;
  131. }
  132. #endif /* CONFIG_IPV6 */
  133. if (hapd->conf->nas_identifier &&
  134. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
  135. (u8 *) hapd->conf->nas_identifier,
  136. os_strlen(hapd->conf->nas_identifier))) {
  137. wpa_printf(MSG_DEBUG, "Could not add NAS-Identifier");
  138. goto fail;
  139. }
  140. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":%s",
  141. MAC2STR(hapd->own_addr), hapd->conf->ssid.ssid);
  142. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
  143. (u8 *) buf, os_strlen(buf))) {
  144. wpa_printf(MSG_DEBUG, "Could not add Called-Station-Id");
  145. goto fail;
  146. }
  147. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  148. MAC2STR(addr));
  149. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  150. (u8 *) buf, os_strlen(buf))) {
  151. wpa_printf(MSG_DEBUG, "Could not add Calling-Station-Id");
  152. goto fail;
  153. }
  154. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
  155. RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
  156. wpa_printf(MSG_DEBUG, "Could not add NAS-Port-Type");
  157. goto fail;
  158. }
  159. os_snprintf(buf, sizeof(buf), "CONNECT 11Mbps 802.11b");
  160. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  161. (u8 *) buf, os_strlen(buf))) {
  162. wpa_printf(MSG_DEBUG, "Could not add Connect-Info");
  163. goto fail;
  164. }
  165. radius_client_send(hapd->radius, msg, RADIUS_AUTH, addr);
  166. return 0;
  167. fail:
  168. radius_msg_free(msg);
  169. return -1;
  170. }
  171. #endif /* CONFIG_NO_RADIUS */
  172. /**
  173. * hostapd_allowed_address - Check whether a specified STA can be authenticated
  174. * @hapd: hostapd BSS data
  175. * @addr: MAC address of the STA
  176. * @msg: Authentication message
  177. * @len: Length of msg in octets
  178. * @session_timeout: Buffer for returning session timeout (from RADIUS)
  179. * @acct_interim_interval: Buffer for returning account interval (from RADIUS)
  180. * @vlan_id: Buffer for returning VLAN ID
  181. * Returns: HOSTAPD_ACL_ACCEPT, HOSTAPD_ACL_REJECT, or HOSTAPD_ACL_PENDING
  182. */
  183. int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr,
  184. const u8 *msg, size_t len, u32 *session_timeout,
  185. u32 *acct_interim_interval, int *vlan_id)
  186. {
  187. if (session_timeout)
  188. *session_timeout = 0;
  189. if (acct_interim_interval)
  190. *acct_interim_interval = 0;
  191. if (vlan_id)
  192. *vlan_id = 0;
  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. if (hapd->conf->macaddr_acl == USE_EXTERNAL_RADIUS_AUTH) {
  204. #ifdef CONFIG_NO_RADIUS
  205. return HOSTAPD_ACL_REJECT;
  206. #else /* CONFIG_NO_RADIUS */
  207. struct hostapd_acl_query_data *query;
  208. /* Check whether ACL cache has an entry for this station */
  209. int res = hostapd_acl_cache_get(hapd, addr, session_timeout,
  210. acct_interim_interval,
  211. vlan_id);
  212. if (res == HOSTAPD_ACL_ACCEPT ||
  213. res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  214. return res;
  215. if (res == HOSTAPD_ACL_REJECT)
  216. return HOSTAPD_ACL_REJECT;
  217. query = hapd->acl_queries;
  218. while (query) {
  219. if (os_memcmp(query->addr, addr, ETH_ALEN) == 0) {
  220. /* pending query in RADIUS retransmit queue;
  221. * do not generate a new one */
  222. return HOSTAPD_ACL_PENDING;
  223. }
  224. query = query->next;
  225. }
  226. if (!hapd->conf->radius->auth_server)
  227. return HOSTAPD_ACL_REJECT;
  228. /* No entry in the cache - query external RADIUS server */
  229. query = os_zalloc(sizeof(*query));
  230. if (query == NULL) {
  231. wpa_printf(MSG_ERROR, "malloc for query data failed");
  232. return HOSTAPD_ACL_REJECT;
  233. }
  234. time(&query->timestamp);
  235. os_memcpy(query->addr, addr, ETH_ALEN);
  236. if (hostapd_radius_acl_query(hapd, addr, query)) {
  237. wpa_printf(MSG_DEBUG, "Failed to send Access-Request "
  238. "for ACL query.");
  239. hostapd_acl_query_free(query);
  240. return HOSTAPD_ACL_REJECT;
  241. }
  242. query->auth_msg = os_malloc(len);
  243. if (query->auth_msg == NULL) {
  244. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  245. "auth frame.");
  246. hostapd_acl_query_free(query);
  247. return HOSTAPD_ACL_REJECT;
  248. }
  249. os_memcpy(query->auth_msg, msg, len);
  250. query->auth_msg_len = len;
  251. query->next = hapd->acl_queries;
  252. hapd->acl_queries = query;
  253. /* Queued data will be processed in hostapd_acl_recv_radius()
  254. * when RADIUS server replies to the sent Access-Request. */
  255. return HOSTAPD_ACL_PENDING;
  256. #endif /* CONFIG_NO_RADIUS */
  257. }
  258. return HOSTAPD_ACL_REJECT;
  259. }
  260. #ifndef CONFIG_NO_RADIUS
  261. static void hostapd_acl_expire_cache(struct hostapd_data *hapd, time_t now)
  262. {
  263. struct hostapd_cached_radius_acl *prev, *entry, *tmp;
  264. prev = NULL;
  265. entry = hapd->acl_cache;
  266. while (entry) {
  267. if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
  268. wpa_printf(MSG_DEBUG, "Cached ACL entry for " MACSTR
  269. " has expired.", MAC2STR(entry->addr));
  270. if (prev)
  271. prev->next = entry->next;
  272. else
  273. hapd->acl_cache = entry->next;
  274. #ifdef CONFIG_DRIVER_RADIUS_ACL
  275. hostapd_set_radius_acl_expire(hapd, entry->addr);
  276. #endif /* CONFIG_DRIVER_RADIUS_ACL */
  277. tmp = entry;
  278. entry = entry->next;
  279. os_free(tmp);
  280. continue;
  281. }
  282. prev = entry;
  283. entry = entry->next;
  284. }
  285. }
  286. static void hostapd_acl_expire_queries(struct hostapd_data *hapd, time_t now)
  287. {
  288. struct hostapd_acl_query_data *prev, *entry, *tmp;
  289. prev = NULL;
  290. entry = hapd->acl_queries;
  291. while (entry) {
  292. if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
  293. wpa_printf(MSG_DEBUG, "ACL query for " MACSTR
  294. " has expired.", MAC2STR(entry->addr));
  295. if (prev)
  296. prev->next = entry->next;
  297. else
  298. hapd->acl_queries = entry->next;
  299. tmp = entry;
  300. entry = entry->next;
  301. hostapd_acl_query_free(tmp);
  302. continue;
  303. }
  304. prev = entry;
  305. entry = entry->next;
  306. }
  307. }
  308. /**
  309. * hostapd_acl_expire - ACL cache expiration callback
  310. * @eloop_ctx: struct hostapd_data *
  311. * @timeout_ctx: Not used
  312. */
  313. static void hostapd_acl_expire(void *eloop_ctx, void *timeout_ctx)
  314. {
  315. struct hostapd_data *hapd = eloop_ctx;
  316. time_t now;
  317. time(&now);
  318. hostapd_acl_expire_cache(hapd, now);
  319. hostapd_acl_expire_queries(hapd, now);
  320. eloop_register_timeout(10, 0, hostapd_acl_expire, hapd, NULL);
  321. }
  322. /**
  323. * hostapd_acl_recv_radius - Process incoming RADIUS Authentication messages
  324. * @msg: RADIUS response message
  325. * @req: RADIUS request message
  326. * @shared_secret: RADIUS shared secret
  327. * @shared_secret_len: Length of shared_secret in octets
  328. * @data: Context data (struct hostapd_data *)
  329. * Returns: RADIUS_RX_PROCESSED if RADIUS message was a reply to ACL query (and
  330. * was processed here) or RADIUS_RX_UNKNOWN if not.
  331. */
  332. static RadiusRxResult
  333. hostapd_acl_recv_radius(struct radius_msg *msg, struct radius_msg *req,
  334. const u8 *shared_secret, size_t shared_secret_len,
  335. void *data)
  336. {
  337. struct hostapd_data *hapd = data;
  338. struct hostapd_acl_query_data *query, *prev;
  339. struct hostapd_cached_radius_acl *cache;
  340. struct radius_hdr *hdr = radius_msg_get_hdr(msg);
  341. query = hapd->acl_queries;
  342. prev = NULL;
  343. while (query) {
  344. if (query->radius_id == hdr->identifier)
  345. break;
  346. prev = query;
  347. query = query->next;
  348. }
  349. if (query == NULL)
  350. return RADIUS_RX_UNKNOWN;
  351. wpa_printf(MSG_DEBUG, "Found matching Access-Request for RADIUS "
  352. "message (id=%d)", query->radius_id);
  353. if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) {
  354. wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have "
  355. "correct authenticator - dropped\n");
  356. return RADIUS_RX_INVALID_AUTHENTICATOR;
  357. }
  358. if (hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
  359. hdr->code != RADIUS_CODE_ACCESS_REJECT) {
  360. wpa_printf(MSG_DEBUG, "Unknown RADIUS message code %d to ACL "
  361. "query", hdr->code);
  362. return RADIUS_RX_UNKNOWN;
  363. }
  364. /* Insert Accept/Reject info into ACL cache */
  365. cache = os_zalloc(sizeof(*cache));
  366. if (cache == NULL) {
  367. wpa_printf(MSG_DEBUG, "Failed to add ACL cache entry");
  368. goto done;
  369. }
  370. time(&cache->timestamp);
  371. os_memcpy(cache->addr, query->addr, sizeof(cache->addr));
  372. if (hdr->code == RADIUS_CODE_ACCESS_ACCEPT) {
  373. if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
  374. &cache->session_timeout) == 0)
  375. cache->accepted = HOSTAPD_ACL_ACCEPT_TIMEOUT;
  376. else
  377. cache->accepted = HOSTAPD_ACL_ACCEPT;
  378. if (radius_msg_get_attr_int32(
  379. msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
  380. &cache->acct_interim_interval) == 0 &&
  381. cache->acct_interim_interval < 60) {
  382. wpa_printf(MSG_DEBUG, "Ignored too small "
  383. "Acct-Interim-Interval %d for STA " MACSTR,
  384. cache->acct_interim_interval,
  385. MAC2STR(query->addr));
  386. cache->acct_interim_interval = 0;
  387. }
  388. cache->vlan_id = radius_msg_get_vlanid(msg);
  389. } else
  390. cache->accepted = HOSTAPD_ACL_REJECT;
  391. cache->next = hapd->acl_cache;
  392. hapd->acl_cache = cache;
  393. #ifdef CONFIG_DRIVER_RADIUS_ACL
  394. hostapd_set_radius_acl_auth(hapd, query->addr, cache->accepted,
  395. cache->session_timeout);
  396. #else /* CONFIG_DRIVER_RADIUS_ACL */
  397. #ifdef NEED_AP_MLME
  398. /* Re-send original authentication frame for 802.11 processing */
  399. wpa_printf(MSG_DEBUG, "Re-sending authentication frame after "
  400. "successful RADIUS ACL query");
  401. ieee802_11_mgmt(hapd, query->auth_msg, query->auth_msg_len, NULL);
  402. #endif /* NEED_AP_MLME */
  403. #endif /* CONFIG_DRIVER_RADIUS_ACL */
  404. done:
  405. if (prev == NULL)
  406. hapd->acl_queries = query->next;
  407. else
  408. prev->next = query->next;
  409. hostapd_acl_query_free(query);
  410. return RADIUS_RX_PROCESSED;
  411. }
  412. #endif /* CONFIG_NO_RADIUS */
  413. /**
  414. * hostapd_acl_init: Initialize IEEE 802.11 ACL
  415. * @hapd: hostapd BSS data
  416. * Returns: 0 on success, -1 on failure
  417. */
  418. int hostapd_acl_init(struct hostapd_data *hapd)
  419. {
  420. #ifndef CONFIG_NO_RADIUS
  421. if (radius_client_register(hapd->radius, RADIUS_AUTH,
  422. hostapd_acl_recv_radius, hapd))
  423. return -1;
  424. eloop_register_timeout(10, 0, hostapd_acl_expire, hapd, NULL);
  425. #endif /* CONFIG_NO_RADIUS */
  426. return 0;
  427. }
  428. /**
  429. * hostapd_acl_deinit - Deinitialize IEEE 802.11 ACL
  430. * @hapd: hostapd BSS data
  431. */
  432. void hostapd_acl_deinit(struct hostapd_data *hapd)
  433. {
  434. struct hostapd_acl_query_data *query, *prev;
  435. #ifndef CONFIG_NO_RADIUS
  436. eloop_cancel_timeout(hostapd_acl_expire, hapd, NULL);
  437. hostapd_acl_cache_free(hapd->acl_cache);
  438. #endif /* CONFIG_NO_RADIUS */
  439. query = hapd->acl_queries;
  440. while (query) {
  441. prev = query;
  442. query = query->next;
  443. hostapd_acl_query_free(prev);
  444. }
  445. }
  446. #endif /* CONFIG_NATIVE_WINDOWS */