ndisc_snoop.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * Neighbor Discovery snooping for Proxy ARP
  3. * Copyright (c) 2014, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include <netinet/ip6.h>
  10. #include <netinet/icmp6.h>
  11. #include "utils/common.h"
  12. #include "l2_packet/l2_packet.h"
  13. #include "hostapd.h"
  14. #include "sta_info.h"
  15. #include "ap_drv_ops.h"
  16. #include "list.h"
  17. #include "x_snoop.h"
  18. #include "ndisc_snoop.h"
  19. struct ip6addr {
  20. struct in6_addr addr;
  21. struct dl_list list;
  22. };
  23. struct icmpv6_ndmsg {
  24. struct ip6_hdr ipv6h;
  25. struct icmp6_hdr icmp6h;
  26. struct in6_addr target_addr;
  27. u8 opt_type;
  28. u8 len;
  29. u8 opt_lladdr[0];
  30. } STRUCT_PACKED;
  31. #define ROUTER_ADVERTISEMENT 134
  32. #define NEIGHBOR_SOLICITATION 135
  33. #define NEIGHBOR_ADVERTISEMENT 136
  34. #define SOURCE_LL_ADDR 1
  35. static int sta_ip6addr_add(struct sta_info *sta, struct in6_addr *addr)
  36. {
  37. struct ip6addr *ip6addr;
  38. ip6addr = os_zalloc(sizeof(*ip6addr));
  39. if (!ip6addr)
  40. return -1;
  41. os_memcpy(&ip6addr->addr, addr, sizeof(*addr));
  42. dl_list_add_tail(&sta->ip6addr, &ip6addr->list);
  43. return 0;
  44. }
  45. void sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta)
  46. {
  47. struct ip6addr *ip6addr, *prev;
  48. dl_list_for_each_safe(ip6addr, prev, &sta->ip6addr, struct ip6addr,
  49. list) {
  50. hostapd_drv_br_delete_ip_neigh(hapd, 6, (u8 *) &ip6addr->addr);
  51. os_free(ip6addr);
  52. }
  53. }
  54. static int sta_has_ip6addr(struct sta_info *sta, struct in6_addr *addr)
  55. {
  56. struct ip6addr *ip6addr;
  57. dl_list_for_each(ip6addr, &sta->ip6addr, struct ip6addr, list) {
  58. if (ip6addr->addr.s6_addr32[0] == addr->s6_addr32[0] &&
  59. ip6addr->addr.s6_addr32[1] == addr->s6_addr32[1] &&
  60. ip6addr->addr.s6_addr32[2] == addr->s6_addr32[2] &&
  61. ip6addr->addr.s6_addr32[3] == addr->s6_addr32[3])
  62. return 1;
  63. }
  64. return 0;
  65. }
  66. static void ucast_to_stas(struct hostapd_data *hapd, const u8 *buf, size_t len)
  67. {
  68. struct sta_info *sta;
  69. for (sta = hapd->sta_list; sta; sta = sta->next) {
  70. if (!(sta->flags & WLAN_STA_AUTHORIZED))
  71. continue;
  72. x_snoop_mcast_to_ucast_convert_send(hapd, sta, (u8 *) buf, len);
  73. }
  74. }
  75. static void handle_ndisc(void *ctx, const u8 *src_addr, const u8 *buf,
  76. size_t len)
  77. {
  78. struct hostapd_data *hapd = ctx;
  79. struct icmpv6_ndmsg *msg;
  80. struct in6_addr saddr;
  81. struct sta_info *sta;
  82. int res;
  83. char addrtxt[INET6_ADDRSTRLEN + 1];
  84. if (len < ETH_HLEN + sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr))
  85. return;
  86. msg = (struct icmpv6_ndmsg *) &buf[ETH_HLEN];
  87. switch (msg->icmp6h.icmp6_type) {
  88. case NEIGHBOR_SOLICITATION:
  89. if (len < ETH_HLEN + sizeof(*msg))
  90. return;
  91. if (msg->opt_type != SOURCE_LL_ADDR)
  92. return;
  93. /*
  94. * IPv6 header may not be 32-bit aligned in the buffer, so use
  95. * a local copy to avoid unaligned reads.
  96. */
  97. os_memcpy(&saddr, &msg->ipv6h.ip6_src, sizeof(saddr));
  98. if (!(saddr.s6_addr32[0] == 0 && saddr.s6_addr32[1] == 0 &&
  99. saddr.s6_addr32[2] == 0 && saddr.s6_addr32[3] == 0)) {
  100. if (len < ETH_HLEN + sizeof(*msg) + ETH_ALEN)
  101. return;
  102. sta = ap_get_sta(hapd, msg->opt_lladdr);
  103. if (!sta)
  104. return;
  105. if (sta_has_ip6addr(sta, &saddr))
  106. return;
  107. if (inet_ntop(AF_INET6, &saddr, addrtxt,
  108. sizeof(addrtxt)) == NULL)
  109. addrtxt[0] = '\0';
  110. wpa_printf(MSG_DEBUG, "ndisc_snoop: Learned new IPv6 address %s for "
  111. MACSTR, addrtxt, MAC2STR(sta->addr));
  112. hostapd_drv_br_delete_ip_neigh(hapd, 6, (u8 *) &saddr);
  113. res = hostapd_drv_br_add_ip_neigh(hapd, 6,
  114. (u8 *) &saddr,
  115. 128, sta->addr);
  116. if (res) {
  117. wpa_printf(MSG_ERROR,
  118. "ndisc_snoop: Adding ip neigh failed: %d",
  119. res);
  120. return;
  121. }
  122. if (sta_ip6addr_add(sta, &saddr))
  123. return;
  124. }
  125. break;
  126. case ROUTER_ADVERTISEMENT:
  127. if (hapd->conf->disable_dgaf)
  128. ucast_to_stas(hapd, buf, len);
  129. break;
  130. case NEIGHBOR_ADVERTISEMENT:
  131. if (hapd->conf->na_mcast_to_ucast)
  132. ucast_to_stas(hapd, buf, len);
  133. break;
  134. default:
  135. break;
  136. }
  137. }
  138. int ndisc_snoop_init(struct hostapd_data *hapd)
  139. {
  140. hapd->sock_ndisc = x_snoop_get_l2_packet(hapd, handle_ndisc,
  141. L2_PACKET_FILTER_NDISC);
  142. if (hapd->sock_ndisc == NULL) {
  143. wpa_printf(MSG_DEBUG,
  144. "ndisc_snoop: Failed to initialize L2 packet processing for NDISC packets: %s",
  145. strerror(errno));
  146. return -1;
  147. }
  148. return 0;
  149. }
  150. void ndisc_snoop_deinit(struct hostapd_data *hapd)
  151. {
  152. l2_packet_deinit(hapd->sock_ndisc);
  153. hapd->sock_ndisc = NULL;
  154. }