ndisc.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. #define ND_MIN_RANDOM_FACTOR (1/2)
  38. #define ND_MAX_RANDOM_FACTOR (3/2)
  39. #ifdef __KERNEL__
  40. #include <linux/compiler.h>
  41. #include <linux/icmpv6.h>
  42. #include <linux/in6.h>
  43. #include <linux/types.h>
  44. #include <net/neighbour.h>
  45. struct ctl_table;
  46. struct file;
  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 nd_opt_hdr {
  67. __u8 nd_opt_type;
  68. __u8 nd_opt_len;
  69. } __attribute__((__packed__));
  70. extern int ndisc_init(void);
  71. extern void ndisc_cleanup(void);
  72. extern int ndisc_rcv(struct sk_buff *skb);
  73. extern void ndisc_send_ns(struct net_device *dev,
  74. struct neighbour *neigh,
  75. const struct in6_addr *solicit,
  76. const struct in6_addr *daddr,
  77. const struct in6_addr *saddr);
  78. extern void ndisc_send_rs(struct net_device *dev,
  79. const struct in6_addr *saddr,
  80. const struct in6_addr *daddr);
  81. extern void ndisc_send_redirect(struct sk_buff *skb,
  82. struct neighbour *neigh,
  83. const struct in6_addr *target);
  84. extern int ndisc_mc_map(struct in6_addr *addr, char *buf, struct net_device *dev, int dir);
  85. extern struct sk_buff *ndisc_build_skb(struct net_device *dev,
  86. const struct in6_addr *daddr,
  87. const struct in6_addr *saddr,
  88. struct icmp6hdr *icmp6h,
  89. const struct in6_addr *target,
  90. int llinfo);
  91. extern void ndisc_send_skb(struct sk_buff *skb,
  92. struct net_device *dev,
  93. struct neighbour *neigh,
  94. const struct in6_addr *daddr,
  95. const struct in6_addr *saddr,
  96. struct icmp6hdr *icmp6h);
  97. /*
  98. * IGMP
  99. */
  100. extern int igmp6_init(void);
  101. extern void igmp6_cleanup(void);
  102. extern int igmp6_event_query(struct sk_buff *skb);
  103. extern int igmp6_event_report(struct sk_buff *skb);
  104. #ifdef CONFIG_SYSCTL
  105. extern int ndisc_ifinfo_sysctl_change(struct ctl_table *ctl,
  106. int write,
  107. struct file * filp,
  108. void __user *buffer,
  109. size_t *lenp,
  110. loff_t *ppos);
  111. int ndisc_ifinfo_sysctl_strategy(ctl_table *ctl,
  112. void __user *oldval, size_t __user *oldlenp,
  113. void __user *newval, size_t newlen);
  114. #endif
  115. extern void inet6_ifinfo_notify(int event,
  116. struct inet6_dev *idev);
  117. static inline struct neighbour * ndisc_get_neigh(struct net_device *dev, const struct in6_addr *addr)
  118. {
  119. if (dev)
  120. return __neigh_lookup_errno(&nd_tbl, addr, dev);
  121. return ERR_PTR(-ENODEV);
  122. }
  123. #endif /* __KERNEL__ */
  124. #endif