ndisc.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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_MAX
  33. };
  34. #define MAX_RTR_SOLICITATION_DELAY HZ
  35. #define ND_REACHABLE_TIME (30*HZ)
  36. #define ND_RETRANS_TIMER HZ
  37. #include <linux/compiler.h>
  38. #include <linux/icmpv6.h>
  39. #include <linux/in6.h>
  40. #include <linux/types.h>
  41. #include <net/neighbour.h>
  42. struct ctl_table;
  43. struct inet6_dev;
  44. struct net_device;
  45. struct net_proto_family;
  46. struct sk_buff;
  47. extern struct neigh_table nd_tbl;
  48. struct nd_msg {
  49. struct icmp6hdr icmph;
  50. struct in6_addr target;
  51. __u8 opt[0];
  52. };
  53. struct rs_msg {
  54. struct icmp6hdr icmph;
  55. __u8 opt[0];
  56. };
  57. struct ra_msg {
  58. struct icmp6hdr icmph;
  59. __be32 reachable_time;
  60. __be32 retrans_timer;
  61. };
  62. struct nd_opt_hdr {
  63. __u8 nd_opt_type;
  64. __u8 nd_opt_len;
  65. } __packed;
  66. static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd)
  67. {
  68. const u32 *p32 = pkey;
  69. return (((p32[0] ^ dev->ifindex) * hash_rnd[0]) +
  70. (p32[1] * hash_rnd[1]) +
  71. (p32[2] * hash_rnd[2]) +
  72. (p32[3] * hash_rnd[3]));
  73. }
  74. static inline struct neighbour *__ipv6_neigh_lookup(struct neigh_table *tbl, struct net_device *dev, const void *pkey)
  75. {
  76. struct neigh_hash_table *nht;
  77. const u32 *p32 = pkey;
  78. struct neighbour *n;
  79. u32 hash_val;
  80. rcu_read_lock_bh();
  81. nht = rcu_dereference_bh(tbl->nht);
  82. hash_val = ndisc_hashfn(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
  83. for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]);
  84. n != NULL;
  85. n = rcu_dereference_bh(n->next)) {
  86. u32 *n32 = (u32 *) n->primary_key;
  87. if (n->dev == dev &&
  88. ((n32[0] ^ p32[0]) | (n32[1] ^ p32[1]) |
  89. (n32[2] ^ p32[2]) | (n32[3] ^ p32[3])) == 0) {
  90. if (!atomic_inc_not_zero(&n->refcnt))
  91. n = NULL;
  92. break;
  93. }
  94. }
  95. rcu_read_unlock_bh();
  96. return n;
  97. }
  98. extern int ndisc_init(void);
  99. extern int ndisc_late_init(void);
  100. extern void ndisc_late_cleanup(void);
  101. extern void ndisc_cleanup(void);
  102. extern int ndisc_rcv(struct sk_buff *skb);
  103. extern void ndisc_send_ns(struct net_device *dev,
  104. struct neighbour *neigh,
  105. const struct in6_addr *solicit,
  106. const struct in6_addr *daddr,
  107. const struct in6_addr *saddr);
  108. extern void ndisc_send_rs(struct net_device *dev,
  109. const struct in6_addr *saddr,
  110. const struct in6_addr *daddr);
  111. extern void ndisc_send_redirect(struct sk_buff *skb,
  112. const struct in6_addr *target);
  113. extern int ndisc_mc_map(const struct in6_addr *addr, char *buf,
  114. struct net_device *dev, int dir);
  115. extern struct sk_buff *ndisc_build_skb(struct net_device *dev,
  116. const struct in6_addr *daddr,
  117. const struct in6_addr *saddr,
  118. struct icmp6hdr *icmp6h,
  119. const struct in6_addr *target,
  120. int llinfo);
  121. extern void ndisc_send_skb(struct sk_buff *skb,
  122. struct net_device *dev,
  123. struct neighbour *neigh,
  124. const struct in6_addr *daddr,
  125. const struct in6_addr *saddr,
  126. struct icmp6hdr *icmp6h);
  127. /*
  128. * IGMP
  129. */
  130. extern int igmp6_init(void);
  131. extern void igmp6_cleanup(void);
  132. extern int igmp6_event_query(struct sk_buff *skb);
  133. extern int igmp6_event_report(struct sk_buff *skb);
  134. #ifdef CONFIG_SYSCTL
  135. extern int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl,
  136. int write,
  137. void __user *buffer,
  138. size_t *lenp,
  139. loff_t *ppos);
  140. int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl,
  141. void __user *oldval, size_t __user *oldlenp,
  142. void __user *newval, size_t newlen);
  143. #endif
  144. extern void inet6_ifinfo_notify(int event,
  145. struct inet6_dev *idev);
  146. #endif