ndisc.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 <linux/hash.h>
  45. #include <net/neighbour.h>
  46. struct ctl_table;
  47. struct inet6_dev;
  48. struct net_device;
  49. struct net_proto_family;
  50. struct sk_buff;
  51. extern struct neigh_table nd_tbl;
  52. struct nd_msg {
  53. struct icmp6hdr icmph;
  54. struct in6_addr target;
  55. __u8 opt[0];
  56. };
  57. struct rs_msg {
  58. struct icmp6hdr icmph;
  59. __u8 opt[0];
  60. };
  61. struct ra_msg {
  62. struct icmp6hdr icmph;
  63. __be32 reachable_time;
  64. __be32 retrans_timer;
  65. };
  66. struct rd_msg {
  67. struct icmp6hdr icmph;
  68. struct in6_addr target;
  69. struct in6_addr dest;
  70. __u8 opt[0];
  71. };
  72. struct nd_opt_hdr {
  73. __u8 nd_opt_type;
  74. __u8 nd_opt_len;
  75. } __packed;
  76. /* ND options */
  77. struct ndisc_options {
  78. struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX];
  79. #ifdef CONFIG_IPV6_ROUTE_INFO
  80. struct nd_opt_hdr *nd_opts_ri;
  81. struct nd_opt_hdr *nd_opts_ri_end;
  82. #endif
  83. struct nd_opt_hdr *nd_useropts;
  84. struct nd_opt_hdr *nd_useropts_end;
  85. };
  86. #define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR]
  87. #define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR]
  88. #define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO]
  89. #define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END]
  90. #define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR]
  91. #define nd_opts_mtu nd_opt_array[ND_OPT_MTU]
  92. #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7)
  93. struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len,
  94. struct ndisc_options *ndopts);
  95. /*
  96. * Return the padding between the option length and the start of the
  97. * link addr. Currently only IP-over-InfiniBand needs this, although
  98. * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may
  99. * also need a pad of 2.
  100. */
  101. static inline int ndisc_addr_option_pad(unsigned short type)
  102. {
  103. switch (type) {
  104. case ARPHRD_INFINIBAND: return 2;
  105. default: return 0;
  106. }
  107. }
  108. static inline int ndisc_opt_addr_space(struct net_device *dev)
  109. {
  110. return NDISC_OPT_SPACE(dev->addr_len +
  111. ndisc_addr_option_pad(dev->type));
  112. }
  113. static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p,
  114. struct net_device *dev)
  115. {
  116. u8 *lladdr = (u8 *)(p + 1);
  117. int lladdrlen = p->nd_opt_len << 3;
  118. int prepad = ndisc_addr_option_pad(dev->type);
  119. if (lladdrlen != ndisc_opt_addr_space(dev))
  120. return NULL;
  121. return lladdr + prepad;
  122. }
  123. static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd)
  124. {
  125. const u32 *p32 = pkey;
  126. return (((p32[0] ^ hash32_ptr(dev)) * hash_rnd[0]) +
  127. (p32[1] * hash_rnd[1]) +
  128. (p32[2] * hash_rnd[2]) +
  129. (p32[3] * hash_rnd[3]));
  130. }
  131. static inline struct neighbour *__ipv6_neigh_lookup_noref(struct net_device *dev, const void *pkey)
  132. {
  133. return ___neigh_lookup_noref(&nd_tbl, neigh_key_eq128, ndisc_hashfn, pkey, dev);
  134. }
  135. static inline struct neighbour *__ipv6_neigh_lookup(struct net_device *dev, const void *pkey)
  136. {
  137. struct neighbour *n;
  138. rcu_read_lock_bh();
  139. n = __ipv6_neigh_lookup_noref(dev, pkey);
  140. if (n && !atomic_inc_not_zero(&n->refcnt))
  141. n = NULL;
  142. rcu_read_unlock_bh();
  143. return n;
  144. }
  145. int ndisc_init(void);
  146. int ndisc_late_init(void);
  147. void ndisc_late_cleanup(void);
  148. void ndisc_cleanup(void);
  149. int ndisc_rcv(struct sk_buff *skb);
  150. void ndisc_send_ns(struct net_device *dev, const struct in6_addr *solicit,
  151. const struct in6_addr *daddr, const struct in6_addr *saddr);
  152. void ndisc_send_rs(struct net_device *dev,
  153. const struct in6_addr *saddr, const struct in6_addr *daddr);
  154. void ndisc_send_na(struct net_device *dev, const struct in6_addr *daddr,
  155. const struct in6_addr *solicited_addr,
  156. bool router, bool solicited, bool override, bool inc_opt);
  157. void ndisc_send_redirect(struct sk_buff *skb, const struct in6_addr *target);
  158. int ndisc_mc_map(const struct in6_addr *addr, char *buf, struct net_device *dev,
  159. int dir);
  160. /*
  161. * IGMP
  162. */
  163. int igmp6_init(void);
  164. void igmp6_cleanup(void);
  165. int igmp6_event_query(struct sk_buff *skb);
  166. int igmp6_event_report(struct sk_buff *skb);
  167. #ifdef CONFIG_SYSCTL
  168. int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl, int write,
  169. void __user *buffer, size_t *lenp, loff_t *ppos);
  170. int ndisc_ifinfo_sysctl_strategy(struct ctl_table *ctl,
  171. void __user *oldval, size_t __user *oldlenp,
  172. void __user *newval, size_t newlen);
  173. #endif
  174. void inet6_ifinfo_notify(int event, struct inet6_dev *idev);
  175. #endif