ndisc.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. #ifndef _NDISC_H
  2. #define _NDISC_H
  3. /*
  4. * ICMP codes for neighbour discovery messages
  5. */
  6. #define NDISC_ROUTER_SOLICITATION 133
  7. #define NDISC_ROUTER_ADVERTISEMENT 134
  8. #define NDISC_NEIGHBOUR_SOLICITATION 135
  9. #define NDISC_NEIGHBOUR_ADVERTISEMENT 136
  10. #define NDISC_REDIRECT 137
  11. /*
  12. * Router type: cross-layer information from link-layer to
  13. * IPv6 layer reported by certain link types (e.g., RFC4214).
  14. */
  15. #define NDISC_NODETYPE_UNSPEC 0 /* unspecified (default) */
  16. #define NDISC_NODETYPE_HOST 1 /* host or unauthorized router */
  17. #define NDISC_NODETYPE_NODEFAULT 2 /* non-default router */
  18. #define NDISC_NODETYPE_DEFAULT 3 /* default router */
  19. /*
  20. * ndisc options
  21. */
  22. enum {
  23. __ND_OPT_PREFIX_INFO_END = 0,
  24. ND_OPT_SOURCE_LL_ADDR = 1, /* RFC2461 */
  25. ND_OPT_TARGET_LL_ADDR = 2, /* RFC2461 */
  26. ND_OPT_PREFIX_INFO = 3, /* RFC2461 */
  27. ND_OPT_REDIRECT_HDR = 4, /* RFC2461 */
  28. ND_OPT_MTU = 5, /* RFC2461 */
  29. __ND_OPT_ARRAY_MAX,
  30. ND_OPT_ROUTE_INFO = 24, /* RFC4191 */
  31. ND_OPT_RDNSS = 25, /* RFC5006 */
  32. ND_OPT_DNSSL = 31, /* RFC6106 */
  33. __ND_OPT_MAX
  34. };
  35. #define MAX_RTR_SOLICITATION_DELAY HZ
  36. #define ND_REACHABLE_TIME (30*HZ)
  37. #define ND_RETRANS_TIMER HZ
  38. #include <linux/compiler.h>
  39. #include <linux/icmpv6.h>
  40. #include <linux/in6.h>
  41. #include <linux/types.h>
  42. #include <linux/if_arp.h>
  43. #include <linux/netdevice.h>
  44. #include <net/neighbour.h>
  45. struct ctl_table;
  46. struct inet6_dev;
  47. struct net_device;
  48. struct net_proto_family;
  49. struct sk_buff;
  50. extern struct neigh_table nd_tbl;
  51. struct nd_msg {
  52. struct icmp6hdr icmph;
  53. struct in6_addr target;
  54. __u8 opt[0];
  55. };
  56. struct rs_msg {
  57. struct icmp6hdr icmph;
  58. __u8 opt[0];
  59. };
  60. struct ra_msg {
  61. struct icmp6hdr icmph;
  62. __be32 reachable_time;
  63. __be32 retrans_timer;
  64. };
  65. struct nd_opt_hdr {
  66. __u8 nd_opt_type;
  67. __u8 nd_opt_len;
  68. } __packed;
  69. /* ND options */
  70. struct ndisc_options {
  71. struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
  72. #ifdef CONFIG_IPV6_ROUTE_INFO
  73. struct nd_opt_hdr *nd_opts_ri;
  74. struct nd_opt_hdr *nd_opts_ri_end;
  75. #endif
  76. struct nd_opt_hdr *nd_useropts;
  77. struct nd_opt_hdr *nd_useropts_end;
  78. };
  79. #define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
  80. #define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
  81. #define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
  82. #define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
  83. #define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
  84. #define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
  85. #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
  86. extern struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
  87. struct ndisc_options *ndopts);
  88. /*
  89. * Return the padding between the option length and the start of the
  90. * link addr. Currently only IP-over-InfiniBand needs this, although
  91. * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
  92. * also need a pad of 2.
  93. */
  94. static int ndisc_addr_option_pad(unsigned short type)
  95. {
  96. switch (type) {
  97. case ARPHRD_INFINIBAND: return 2;
  98. default: return 0;
  99. }
  100. }
  101. static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
  102. struct net_device *dev)
  103. {
  104. u8 *lladdr = (u8 *)(p + 1);
  105. int lladdrlen = p->nd_opt_len << 3;
  106. int prepad = ndisc_addr_option_pad(dev->type);
  107. if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad))
  108. return NULL;
  109. return lladdr + prepad;
  110. }
  111. static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd)
  112. {
  113. const u32 *p32 = pkey;
  114. return (((p32[0] ^ dev->ifindex) * hash_rnd[0]) +
  115. (p32[1] * hash_rnd[1]) +
  116. (p32[2] * hash_rnd[2]) +
  117. (p32[3] * hash_rnd[3]));
  118. }
  119. static inline struct neighbour *__ipv6_neigh_lookup(struct neigh_table *tbl, struct net_device *dev, const void *pkey)
  120. {
  121. struct neigh_hash_table *nht;
  122. const u32 *p32 = pkey;
  123. struct neighbour *n;
  124. u32 hash_val;
  125. rcu_read_lock_bh();
  126. nht = rcu_dereference_bh(tbl->nht);
  127. hash_val = ndisc_hashfn(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
  128. for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
  129. n != NULL;
  130. n = rcu_dereference_bh(n->next)) {
  131. u32 *n32 = (u32 *) n->primary_key;
  132. if (n->dev == dev &&
  133. ((n32[0] ^ p32[0]) | (n32[1] ^ p32[1]) |
  134. (n32[2] ^ p32[2]) | (n32[3] ^ p32[3])) == 0) {
  135. if (!atomic_inc_not_zero(&n->refcnt))
  136. n = NULL;
  137. break;
  138. }
  139. }
  140. rcu_read_unlock_bh();
  141. return n;
  142. }
  143. extern int ndisc_init(void);
  144. extern void ndisc_cleanup(void);
  145. extern int ndisc_rcv(struct sk_buff *skb);
  146. extern void ndisc_send_ns(struct net_device *dev,
  147. struct neighbour *neigh,
  148. const struct in6_addr *solicit,
  149. const struct in6_addr *daddr,
  150. const struct in6_addr *saddr);
  151. extern void ndisc_send_rs(struct net_device *dev,
  152. const struct in6_addr *saddr,
  153. const struct in6_addr *daddr);
  154. extern void ndisc_send_redirect(struct sk_buff *skb,
  155. const struct in6_addr *target);
  156. extern int ndisc_mc_map(const struct in6_addr *addr, char *buf,
  157. struct net_device *dev, int dir);
  158. extern struct sk_buff *ndisc_build_skb(struct net_device *dev,
  159. const struct in6_addr *daddr,
  160. const struct in6_addr *saddr,
  161. struct icmp6hdr *icmp6h,
  162. const struct in6_addr *target,
  163. int llinfo);
  164. extern void ndisc_send_skb(struct sk_buff *skb,
  165. struct net_device *dev,
  166. struct neighbour *neigh,
  167. const struct in6_addr *daddr,
  168. const struct in6_addr *saddr,
  169. struct icmp6hdr *icmp6h);
  170. /*
  171. * IGMP
  172. */
  173. extern int igmp6_init(void);
  174. extern void igmp6_cleanup(void);
  175. extern int igmp6_event_query(struct sk_buff *skb);
  176. extern int igmp6_event_report(struct sk_buff *skb);
  177. #ifdef CONFIG_SYSCTL
  178. extern int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl,
  179. int write,
  180. void __user *buffer,
  181. size_t *lenp,
  182. loff_t *ppos);
  183. int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl,
  184. void __user *oldval, size_t __user *oldlenp,
  185. void __user *newval, size_t newlen);
  186. #endif
  187. extern void inet6_ifinfo_notify(int event,
  188. struct inet6_dev *idev);
  189. #endif