iapp.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. /*
  2. * hostapd / IEEE 802.11F-2003 Inter-Access Point Protocol (IAPP)
  3. * Copyright (c) 2002-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. * Note: IEEE 802.11F-2003 was a experimental use specification. It has expired
  15. * and IEEE has withdrawn it. In other words, it is likely better to look at
  16. * using some other mechanism for AP-to-AP communication than extending the
  17. * implementation here.
  18. */
  19. /* TODO:
  20. * Level 1: no administrative or security support
  21. * (e.g., static BSSID to IP address mapping in each AP)
  22. * Level 2: support for dynamic mapping of BSSID to IP address
  23. * Level 3: support for encryption and authentication of IAPP messages
  24. * - add support for MOVE-notify and MOVE-response (this requires support for
  25. * finding out IP address for previous AP using RADIUS)
  26. * - add support for Send- and ACK-Security-Block to speedup IEEE 802.1X during
  27. * reassociation to another AP
  28. * - implement counters etc. for IAPP MIB
  29. * - verify endianness of fields in IAPP messages; are they big-endian as
  30. * used here?
  31. * - RADIUS connection for AP registration and BSSID to IP address mapping
  32. * - TCP connection for IAPP MOVE, CACHE
  33. * - broadcast ESP for IAPP ADD-notify
  34. * - ESP for IAPP MOVE messages
  35. * - security block sending/processing
  36. * - IEEE 802.11 context transfer
  37. */
  38. #include "includes.h"
  39. #include <net/if.h>
  40. #include <sys/ioctl.h>
  41. #ifdef USE_KERNEL_HEADERS
  42. #include <linux/if_packet.h>
  43. #else /* USE_KERNEL_HEADERS */
  44. #include <netpacket/packet.h>
  45. #endif /* USE_KERNEL_HEADERS */
  46. #include "hostapd.h"
  47. #include "config.h"
  48. #include "ieee802_11.h"
  49. #include "iapp.h"
  50. #include "eloop.h"
  51. #include "sta_flags.h"
  52. #include "sta_info.h"
  53. #define IAPP_MULTICAST "224.0.1.178"
  54. #define IAPP_UDP_PORT 3517
  55. #define IAPP_TCP_PORT 3517
  56. struct iapp_hdr {
  57. u8 version;
  58. u8 command;
  59. be16 identifier;
  60. be16 length;
  61. /* followed by length-6 octets of data */
  62. } __attribute__ ((packed));
  63. #define IAPP_VERSION 0
  64. enum IAPP_COMMAND {
  65. IAPP_CMD_ADD_notify = 0,
  66. IAPP_CMD_MOVE_notify = 1,
  67. IAPP_CMD_MOVE_response = 2,
  68. IAPP_CMD_Send_Security_Block = 3,
  69. IAPP_CMD_ACK_Security_Block = 4,
  70. IAPP_CMD_CACHE_notify = 5,
  71. IAPP_CMD_CACHE_response = 6,
  72. };
  73. /* ADD-notify - multicast UDP on the local LAN */
  74. struct iapp_add_notify {
  75. u8 addr_len; /* ETH_ALEN */
  76. u8 reserved;
  77. u8 mac_addr[ETH_ALEN];
  78. be16 seq_num;
  79. } __attribute__ ((packed));
  80. /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
  81. struct iapp_layer2_update {
  82. u8 da[ETH_ALEN]; /* broadcast */
  83. u8 sa[ETH_ALEN]; /* STA addr */
  84. be16 len; /* 6 */
  85. u8 dsap; /* null DSAP address */
  86. u8 ssap; /* null SSAP address, CR=Response */
  87. u8 control;
  88. u8 xid_info[3];
  89. } __attribute__ ((packed));
  90. /* MOVE-notify - unicast TCP */
  91. struct iapp_move_notify {
  92. u8 addr_len; /* ETH_ALEN */
  93. u8 reserved;
  94. u8 mac_addr[ETH_ALEN];
  95. u16 seq_num;
  96. u16 ctx_block_len;
  97. /* followed by ctx_block_len bytes */
  98. } __attribute__ ((packed));
  99. /* MOVE-response - unicast TCP */
  100. struct iapp_move_response {
  101. u8 addr_len; /* ETH_ALEN */
  102. u8 status;
  103. u8 mac_addr[ETH_ALEN];
  104. u16 seq_num;
  105. u16 ctx_block_len;
  106. /* followed by ctx_block_len bytes */
  107. } __attribute__ ((packed));
  108. enum {
  109. IAPP_MOVE_SUCCESSFUL = 0,
  110. IAPP_MOVE_DENIED = 1,
  111. IAPP_MOVE_STALE_MOVE = 2,
  112. };
  113. /* CACHE-notify */
  114. struct iapp_cache_notify {
  115. u8 addr_len; /* ETH_ALEN */
  116. u8 reserved;
  117. u8 mac_addr[ETH_ALEN];
  118. u16 seq_num;
  119. u8 current_ap[ETH_ALEN];
  120. u16 ctx_block_len;
  121. /* ctx_block_len bytes of context block followed by 16-bit context
  122. * timeout */
  123. } __attribute__ ((packed));
  124. /* CACHE-response - unicast TCP */
  125. struct iapp_cache_response {
  126. u8 addr_len; /* ETH_ALEN */
  127. u8 status;
  128. u8 mac_addr[ETH_ALEN];
  129. u16 seq_num;
  130. } __attribute__ ((packed));
  131. enum {
  132. IAPP_CACHE_SUCCESSFUL = 0,
  133. IAPP_CACHE_STALE_CACHE = 1,
  134. };
  135. /* Send-Security-Block - unicast TCP */
  136. struct iapp_send_security_block {
  137. u8 iv[8];
  138. u16 sec_block_len;
  139. /* followed by sec_block_len bytes of security block */
  140. } __attribute__ ((packed));
  141. /* ACK-Security-Block - unicast TCP */
  142. struct iapp_ack_security_block {
  143. u8 iv[8];
  144. u8 new_ap_ack_authenticator[48];
  145. } __attribute__ ((packed));
  146. struct iapp_data {
  147. struct hostapd_data *hapd;
  148. u16 identifier; /* next IAPP identifier */
  149. struct in_addr own, multicast;
  150. int udp_sock;
  151. int packet_sock;
  152. };
  153. static void iapp_send_add(struct iapp_data *iapp, u8 *mac_addr, u16 seq_num)
  154. {
  155. char buf[128];
  156. struct iapp_hdr *hdr;
  157. struct iapp_add_notify *add;
  158. struct sockaddr_in addr;
  159. /* Send IAPP ADD-notify to remove possible association from other APs
  160. */
  161. hdr = (struct iapp_hdr *) buf;
  162. hdr->version = IAPP_VERSION;
  163. hdr->command = IAPP_CMD_ADD_notify;
  164. hdr->identifier = host_to_be16(iapp->identifier++);
  165. hdr->length = host_to_be16(sizeof(*hdr) + sizeof(*add));
  166. add = (struct iapp_add_notify *) (hdr + 1);
  167. add->addr_len = ETH_ALEN;
  168. add->reserved = 0;
  169. os_memcpy(add->mac_addr, mac_addr, ETH_ALEN);
  170. add->seq_num = host_to_be16(seq_num);
  171. os_memset(&addr, 0, sizeof(addr));
  172. addr.sin_family = AF_INET;
  173. addr.sin_addr.s_addr = iapp->multicast.s_addr;
  174. addr.sin_port = htons(IAPP_UDP_PORT);
  175. if (sendto(iapp->udp_sock, buf, (char *) (add + 1) - buf, 0,
  176. (struct sockaddr *) &addr, sizeof(addr)) < 0)
  177. perror("sendto[IAPP-ADD]");
  178. }
  179. static void iapp_send_layer2_update(struct iapp_data *iapp, u8 *addr)
  180. {
  181. struct iapp_layer2_update msg;
  182. /* Send Level 2 Update Frame to update forwarding tables in layer 2
  183. * bridge devices */
  184. /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
  185. * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
  186. os_memset(msg.da, 0xff, ETH_ALEN);
  187. os_memcpy(msg.sa, addr, ETH_ALEN);
  188. msg.len = host_to_be16(6);
  189. msg.dsap = 0; /* NULL DSAP address */
  190. msg.ssap = 0x01; /* NULL SSAP address, CR Bit: Response */
  191. msg.control = 0xaf; /* XID response lsb.1111F101.
  192. * F=0 (no poll command; unsolicited frame) */
  193. msg.xid_info[0] = 0x81; /* XID format identifier */
  194. msg.xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
  195. msg.xid_info[2] = 1 << 1; /* XID sender's receive window size (RW)
  196. * FIX: what is correct RW with 802.11? */
  197. if (send(iapp->packet_sock, &msg, sizeof(msg), 0) < 0)
  198. perror("send[L2 Update]");
  199. }
  200. /**
  201. * iapp_new_station - IAPP processing for a new STA
  202. * @iapp: IAPP data
  203. * @sta: The associated station
  204. */
  205. void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta)
  206. {
  207. struct ieee80211_mgmt *assoc;
  208. u16 seq;
  209. if (iapp == NULL)
  210. return;
  211. assoc = sta->last_assoc_req;
  212. seq = assoc ? WLAN_GET_SEQ_SEQ(le_to_host16(assoc->seq_ctrl)) : 0;
  213. /* IAPP-ADD.request(MAC Address, Sequence Number, Timeout) */
  214. hostapd_logger(iapp->hapd, sta->addr, HOSTAPD_MODULE_IAPP,
  215. HOSTAPD_LEVEL_DEBUG, "IAPP-ADD.request(seq=%d)", seq);
  216. iapp_send_layer2_update(iapp, sta->addr);
  217. iapp_send_add(iapp, sta->addr, seq);
  218. if (assoc && WLAN_FC_GET_STYPE(le_to_host16(assoc->frame_control)) ==
  219. WLAN_FC_STYPE_REASSOC_REQ) {
  220. /* IAPP-MOVE.request(MAC Address, Sequence Number, Old AP,
  221. * Context Block, Timeout)
  222. */
  223. /* TODO: Send IAPP-MOVE to the old AP; Map Old AP BSSID to
  224. * IP address */
  225. }
  226. }
  227. static void iapp_process_add_notify(struct iapp_data *iapp,
  228. struct sockaddr_in *from,
  229. struct iapp_hdr *hdr, int len)
  230. {
  231. struct iapp_add_notify *add = (struct iapp_add_notify *) (hdr + 1);
  232. struct sta_info *sta;
  233. if (len != sizeof(*add)) {
  234. printf("Invalid IAPP-ADD packet length %d (expected %lu)\n",
  235. len, (unsigned long) sizeof(*add));
  236. return;
  237. }
  238. sta = ap_get_sta(iapp->hapd, add->mac_addr);
  239. /* IAPP-ADD.indication(MAC Address, Sequence Number) */
  240. hostapd_logger(iapp->hapd, add->mac_addr, HOSTAPD_MODULE_IAPP,
  241. HOSTAPD_LEVEL_INFO,
  242. "Received IAPP ADD-notify (seq# %d) from %s:%d%s",
  243. be_to_host16(add->seq_num),
  244. inet_ntoa(from->sin_addr), ntohs(from->sin_port),
  245. sta ? "" : " (STA not found)");
  246. if (!sta)
  247. return;
  248. /* TODO: could use seq_num to try to determine whether last association
  249. * to this AP is newer than the one advertised in IAPP-ADD. Although,
  250. * this is not really a reliable verification. */
  251. hostapd_logger(iapp->hapd, add->mac_addr, HOSTAPD_MODULE_IAPP,
  252. HOSTAPD_LEVEL_DEBUG,
  253. "Removing STA due to IAPP ADD-notify");
  254. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_AUTHORIZED);
  255. eloop_cancel_timeout(ap_handle_timer, iapp->hapd, sta);
  256. eloop_register_timeout(0, 0, ap_handle_timer, iapp->hapd, sta);
  257. sta->timeout_next = STA_REMOVE;
  258. }
  259. /**
  260. * iapp_receive_udp - Process IAPP UDP frames
  261. * @sock: File descriptor for the socket
  262. * @eloop_ctx: IAPP data (struct iapp_data *)
  263. * @sock_ctx: Not used
  264. */
  265. static void iapp_receive_udp(int sock, void *eloop_ctx, void *sock_ctx)
  266. {
  267. struct iapp_data *iapp = eloop_ctx;
  268. int len, hlen;
  269. unsigned char buf[128];
  270. struct sockaddr_in from;
  271. socklen_t fromlen;
  272. struct iapp_hdr *hdr;
  273. /* Handle incoming IAPP frames (over UDP/IP) */
  274. fromlen = sizeof(from);
  275. len = recvfrom(iapp->udp_sock, buf, sizeof(buf), 0,
  276. (struct sockaddr *) &from, &fromlen);
  277. if (len < 0) {
  278. perror("recvfrom");
  279. return;
  280. }
  281. if (from.sin_addr.s_addr == iapp->own.s_addr)
  282. return; /* ignore own IAPP messages */
  283. hostapd_logger(iapp->hapd, NULL, HOSTAPD_MODULE_IAPP,
  284. HOSTAPD_LEVEL_DEBUG,
  285. "Received %d byte IAPP frame from %s%s\n",
  286. len, inet_ntoa(from.sin_addr),
  287. len < (int) sizeof(*hdr) ? " (too short)" : "");
  288. if (len < (int) sizeof(*hdr))
  289. return;
  290. hdr = (struct iapp_hdr *) buf;
  291. hlen = be_to_host16(hdr->length);
  292. hostapd_logger(iapp->hapd, NULL, HOSTAPD_MODULE_IAPP,
  293. HOSTAPD_LEVEL_DEBUG,
  294. "RX: version=%d command=%d id=%d len=%d\n",
  295. hdr->version, hdr->command,
  296. be_to_host16(hdr->identifier), hlen);
  297. if (hdr->version != IAPP_VERSION) {
  298. printf("Dropping IAPP frame with unknown version %d\n",
  299. hdr->version);
  300. return;
  301. }
  302. if (hlen > len) {
  303. printf("Underflow IAPP frame (hlen=%d len=%d)\n", hlen, len);
  304. return;
  305. }
  306. if (hlen < len) {
  307. printf("Ignoring %d extra bytes from IAPP frame\n",
  308. len - hlen);
  309. len = hlen;
  310. }
  311. switch (hdr->command) {
  312. case IAPP_CMD_ADD_notify:
  313. iapp_process_add_notify(iapp, &from, hdr, hlen - sizeof(*hdr));
  314. break;
  315. case IAPP_CMD_MOVE_notify:
  316. /* TODO: MOVE is using TCP; so move this to TCP handler once it
  317. * is implemented.. */
  318. /* IAPP-MOVE.indication(MAC Address, New BSSID,
  319. * Sequence Number, AP Address, Context Block) */
  320. /* TODO: process */
  321. break;
  322. default:
  323. printf("Unknown IAPP command %d\n", hdr->command);
  324. break;
  325. }
  326. }
  327. struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface)
  328. {
  329. struct ifreq ifr;
  330. struct sockaddr_ll addr;
  331. int ifindex;
  332. struct sockaddr_in *paddr, uaddr;
  333. struct iapp_data *iapp;
  334. struct ip_mreqn mreq;
  335. iapp = os_zalloc(sizeof(*iapp));
  336. if (iapp == NULL)
  337. return NULL;
  338. iapp->hapd = hapd;
  339. iapp->udp_sock = iapp->packet_sock = -1;
  340. /* TODO:
  341. * open socket for sending and receiving IAPP frames over TCP
  342. */
  343. iapp->udp_sock = socket(PF_INET, SOCK_DGRAM, 0);
  344. if (iapp->udp_sock < 0) {
  345. perror("socket[PF_INET,SOCK_DGRAM]");
  346. iapp_deinit(iapp);
  347. return NULL;
  348. }
  349. os_memset(&ifr, 0, sizeof(ifr));
  350. os_strlcpy(ifr.ifr_name, iface, sizeof(ifr.ifr_name));
  351. if (ioctl(iapp->udp_sock, SIOCGIFINDEX, &ifr) != 0) {
  352. perror("ioctl(SIOCGIFINDEX)");
  353. iapp_deinit(iapp);
  354. return NULL;
  355. }
  356. ifindex = ifr.ifr_ifindex;
  357. if (ioctl(iapp->udp_sock, SIOCGIFADDR, &ifr) != 0) {
  358. perror("ioctl(SIOCGIFADDR)");
  359. iapp_deinit(iapp);
  360. return NULL;
  361. }
  362. paddr = (struct sockaddr_in *) &ifr.ifr_addr;
  363. if (paddr->sin_family != AF_INET) {
  364. printf("Invalid address family %i (SIOCGIFADDR)\n",
  365. paddr->sin_family);
  366. iapp_deinit(iapp);
  367. return NULL;
  368. }
  369. iapp->own.s_addr = paddr->sin_addr.s_addr;
  370. if (ioctl(iapp->udp_sock, SIOCGIFBRDADDR, &ifr) != 0) {
  371. perror("ioctl(SIOCGIFBRDADDR)");
  372. iapp_deinit(iapp);
  373. return NULL;
  374. }
  375. paddr = (struct sockaddr_in *) &ifr.ifr_addr;
  376. if (paddr->sin_family != AF_INET) {
  377. printf("Invalid address family %i (SIOCGIFBRDADDR)\n",
  378. paddr->sin_family);
  379. iapp_deinit(iapp);
  380. return NULL;
  381. }
  382. inet_aton(IAPP_MULTICAST, &iapp->multicast);
  383. os_memset(&uaddr, 0, sizeof(uaddr));
  384. uaddr.sin_family = AF_INET;
  385. uaddr.sin_port = htons(IAPP_UDP_PORT);
  386. if (bind(iapp->udp_sock, (struct sockaddr *) &uaddr,
  387. sizeof(uaddr)) < 0) {
  388. perror("bind[UDP]");
  389. iapp_deinit(iapp);
  390. return NULL;
  391. }
  392. os_memset(&mreq, 0, sizeof(mreq));
  393. mreq.imr_multiaddr = iapp->multicast;
  394. mreq.imr_address.s_addr = INADDR_ANY;
  395. mreq.imr_ifindex = 0;
  396. if (setsockopt(iapp->udp_sock, SOL_IP, IP_ADD_MEMBERSHIP, &mreq,
  397. sizeof(mreq)) < 0) {
  398. perror("setsockopt[UDP,IP_ADD_MEMBERSHIP]");
  399. iapp_deinit(iapp);
  400. return NULL;
  401. }
  402. iapp->packet_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
  403. if (iapp->packet_sock < 0) {
  404. perror("socket[PF_PACKET,SOCK_RAW]");
  405. iapp_deinit(iapp);
  406. return NULL;
  407. }
  408. os_memset(&addr, 0, sizeof(addr));
  409. addr.sll_family = AF_PACKET;
  410. addr.sll_ifindex = ifindex;
  411. if (bind(iapp->packet_sock, (struct sockaddr *) &addr,
  412. sizeof(addr)) < 0) {
  413. perror("bind[PACKET]");
  414. iapp_deinit(iapp);
  415. return NULL;
  416. }
  417. if (eloop_register_read_sock(iapp->udp_sock, iapp_receive_udp,
  418. iapp, NULL)) {
  419. printf("Could not register read socket for IAPP.\n");
  420. iapp_deinit(iapp);
  421. return NULL;
  422. }
  423. printf("IEEE 802.11F (IAPP) using interface %s\n", iface);
  424. /* TODO: For levels 2 and 3: send RADIUS Initiate-Request, receive
  425. * RADIUS Initiate-Accept or Initiate-Reject. IAPP port should actually
  426. * be openned only after receiving Initiate-Accept. If Initiate-Reject
  427. * is received, IAPP is not started. */
  428. return iapp;
  429. }
  430. void iapp_deinit(struct iapp_data *iapp)
  431. {
  432. struct ip_mreqn mreq;
  433. if (iapp == NULL)
  434. return;
  435. if (iapp->udp_sock >= 0) {
  436. os_memset(&mreq, 0, sizeof(mreq));
  437. mreq.imr_multiaddr = iapp->multicast;
  438. mreq.imr_address.s_addr = INADDR_ANY;
  439. mreq.imr_ifindex = 0;
  440. if (setsockopt(iapp->udp_sock, SOL_IP, IP_DROP_MEMBERSHIP,
  441. &mreq, sizeof(mreq)) < 0) {
  442. perror("setsockopt[UDP,IP_DEL_MEMBERSHIP]");
  443. }
  444. eloop_unregister_read_sock(iapp->udp_sock);
  445. close(iapp->udp_sock);
  446. }
  447. if (iapp->packet_sock >= 0) {
  448. eloop_unregister_read_sock(iapp->packet_sock);
  449. close(iapp->packet_sock);
  450. }
  451. os_free(iapp);
  452. }
  453. int iapp_reconfig(struct hostapd_data *hapd, struct hostapd_config *oldconf,
  454. struct hostapd_bss_config *oldbss)
  455. {
  456. if (hapd->conf->ieee802_11f != oldbss->ieee802_11f ||
  457. os_strcmp(hapd->conf->iapp_iface, oldbss->iapp_iface) != 0) {
  458. iapp_deinit(hapd->iapp);
  459. hapd->iapp = NULL;
  460. if (hapd->conf->ieee802_11f) {
  461. hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface);
  462. if (hapd->iapp == NULL)
  463. return -1;
  464. }
  465. }
  466. return 0;
  467. }