iapp.c 15 KB

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