ipv6.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Linux INET6 implementation
  3.  *
  4.  * Authors:
  5.  * Pedro Roque <roque@di.fc.ul.pt>
  6.  *
  7.  * $Id: ipv6.h,v 1.23 2000/12/13 18:31:48 davem Exp $
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  *      modify it under the terms of the GNU General Public License
  11.  *      as published by the Free Software Foundation; either version
  12.  *      2 of the License, or (at your option) any later version.
  13.  */
  14. #ifndef _NET_IPV6_H
  15. #define _NET_IPV6_H
  16. #include <linux/ipv6.h>
  17. #include <asm/hardirq.h>
  18. #include <net/ndisc.h>
  19. #include <net/flow.h>
  20. #define SIN6_LEN_RFC2133 24
  21. /*
  22.  * NextHeader field of IPv6 header
  23.  */
  24. #define NEXTHDR_HOP 0 /* Hop-by-hop option header. */
  25. #define NEXTHDR_TCP 6 /* TCP segment. */
  26. #define NEXTHDR_UDP 17 /* UDP message. */
  27. #define NEXTHDR_IPV6 41 /* IPv6 in IPv6 */
  28. #define NEXTHDR_ROUTING 43 /* Routing header. */
  29. #define NEXTHDR_FRAGMENT 44 /* Fragmentation/reassembly header. */
  30. #define NEXTHDR_ESP 50 /* Encapsulating security payload. */
  31. #define NEXTHDR_AUTH 51 /* Authentication header. */
  32. #define NEXTHDR_ICMP 58 /* ICMP for IPv6. */
  33. #define NEXTHDR_NONE 59 /* No next header */
  34. #define NEXTHDR_DEST 60 /* Destination options header. */
  35. #define NEXTHDR_MAX 255
  36. #define IPV6_DEFAULT_HOPLIMIT   64
  37. #define IPV6_DEFAULT_MCASTHOPS 1
  38. /*
  39.  * Addr type
  40.  *
  41.  * type - unicast | multicast | anycast
  42.  * scope - local | site     | global
  43.  * v4 - compat
  44.  * v4mapped
  45.  * any
  46.  * loopback
  47.  */
  48. #define IPV6_ADDR_ANY 0x0000U
  49. #define IPV6_ADDR_UNICAST       0x0001U
  50. #define IPV6_ADDR_MULTICAST     0x0002U
  51. #define IPV6_ADDR_ANYCAST 0x0004U
  52. #define IPV6_ADDR_LOOPBACK 0x0010U
  53. #define IPV6_ADDR_LINKLOCAL 0x0020U
  54. #define IPV6_ADDR_SITELOCAL 0x0040U
  55. #define IPV6_ADDR_COMPATv4 0x0080U
  56. #define IPV6_ADDR_SCOPE_MASK 0x00f0U
  57. #define IPV6_ADDR_MAPPED 0x1000U
  58. #define IPV6_ADDR_RESERVED 0x2000U /* reserved address space */
  59. /*
  60.  * fragmentation header
  61.  */
  62. struct frag_hdr {
  63. unsigned char nexthdr;
  64. unsigned char reserved;
  65. unsigned short frag_off;
  66. __u32 identification;
  67. };
  68. #ifdef __KERNEL__
  69. #include <net/sock.h>
  70. extern struct ipv6_mib ipv6_statistics[NR_CPUS*2];
  71. #define IP6_INC_STATS(field) SNMP_INC_STATS(ipv6_statistics, field)
  72. #define IP6_INC_STATS_BH(field) SNMP_INC_STATS_BH(ipv6_statistics, field)
  73. #define IP6_INC_STATS_USER(field)  SNMP_INC_STATS_USER(ipv6_statistics, field)
  74. extern struct icmpv6_mib icmpv6_statistics[NR_CPUS*2];
  75. #define ICMP6_INC_STATS(field) SNMP_INC_STATS(icmpv6_statistics, field)
  76. #define ICMP6_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmpv6_statistics, field)
  77. #define ICMP6_INC_STATS_USER(field)  SNMP_INC_STATS_USER(icmpv6_statistics, field)
  78. extern struct udp_mib udp_stats_in6[NR_CPUS*2];
  79. #define UDP6_INC_STATS(field) SNMP_INC_STATS(udp_stats_in6, field)
  80. #define UDP6_INC_STATS_BH(field) SNMP_INC_STATS_BH(udp_stats_in6, field)
  81. #define UDP6_INC_STATS_USER(field)  SNMP_INC_STATS_USER(udp_stats_in6, field)
  82. extern atomic_t inet6_sock_nr;
  83. struct ip6_ra_chain
  84. {
  85. struct ip6_ra_chain *next;
  86. struct sock *sk;
  87. int sel;
  88. void (*destructor)(struct sock *);
  89. };
  90. extern struct ip6_ra_chain *ip6_ra_chain;
  91. extern rwlock_t ip6_ra_lock;
  92. /*
  93.    This structure is prepared by protocol, when parsing
  94.    ancillary data and passed to IPv6.
  95.  */
  96. struct ipv6_txoptions
  97. {
  98. /* Length of this structure */
  99. int tot_len;
  100. /* length of extension headers   */
  101. __u16 opt_flen; /* after fragment hdr */
  102. __u16 opt_nflen; /* before fragment hdr */
  103. struct ipv6_opt_hdr *hopopt;
  104. struct ipv6_opt_hdr *dst0opt;
  105. struct ipv6_rt_hdr *srcrt; /* Routing Header */
  106. struct ipv6_opt_hdr *auth;
  107. struct ipv6_opt_hdr *dst1opt;
  108. /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */
  109. };
  110. struct ip6_flowlabel
  111. {
  112. struct ip6_flowlabel *next;
  113. u32 label;
  114. struct in6_addr dst;
  115. struct ipv6_txoptions *opt;
  116. atomic_t users;
  117. u32 linger;
  118. u8 share;
  119. u32 owner;
  120. unsigned long lastuse;
  121. unsigned long expires;
  122. };
  123. #define IPV6_FLOWINFO_MASK __constant_htonl(0x0FFFFFFF)
  124. #define IPV6_FLOWLABEL_MASK __constant_htonl(0x000FFFFF)
  125. struct ipv6_fl_socklist
  126. {
  127. struct ipv6_fl_socklist *next;
  128. struct ip6_flowlabel *fl;
  129. };
  130. extern struct ip6_flowlabel *fl6_sock_lookup(struct sock *sk, u32 label);
  131. extern struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions * opt_space,
  132.    struct ip6_flowlabel * fl,
  133.    struct ipv6_txoptions * fopt);
  134. extern void fl6_free_socklist(struct sock *sk);
  135. extern int ipv6_flowlabel_opt(struct sock *sk, char *optval, int optlen);
  136. extern void ip6_flowlabel_init(void);
  137. extern void ip6_flowlabel_cleanup(void);
  138. static inline void fl6_sock_release(struct ip6_flowlabel *fl)
  139. {
  140. if (fl)
  141. atomic_dec(&fl->users);
  142. }
  143. extern int  ip6_ra_control(struct sock *sk, int sel,
  144.        void (*destructor)(struct sock *));
  145. extern int ip6_call_ra_chain(struct sk_buff *skb, int sel);
  146. extern int ipv6_reassembly(struct sk_buff **skb, int);
  147. extern int ipv6_parse_hopopts(struct sk_buff *skb, int);
  148. extern int ipv6_parse_exthdrs(struct sk_buff **skb, int);
  149. extern struct ipv6_txoptions *  ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt);
  150. extern int ip6_frag_nqueues;
  151. extern atomic_t ip6_frag_mem;
  152. #define IPV6_FRAG_TIMEOUT (60*HZ) /* 60 seconds */
  153. /*
  154.  * Function prototype for build_xmit
  155.  */
  156. typedef int (*inet_getfrag_t) (const void *data,
  157.    struct in6_addr *addr,
  158.    char *,
  159.    unsigned int, unsigned int);
  160. extern int ipv6_addr_type(struct in6_addr *addr);
  161. static inline int ipv6_addr_scope(struct in6_addr *addr)
  162. {
  163. return ipv6_addr_type(addr) & IPV6_ADDR_SCOPE_MASK;
  164. }
  165. static inline int ipv6_addr_cmp(struct in6_addr *a1, struct in6_addr *a2)
  166. {
  167. return memcmp((void *) a1, (void *) a2, sizeof(struct in6_addr));
  168. }
  169. static inline void ipv6_addr_copy(struct in6_addr *a1, struct in6_addr *a2)
  170. {
  171. memcpy((void *) a1, (void *) a2, sizeof(struct in6_addr));
  172. }
  173. #ifndef __HAVE_ARCH_ADDR_SET
  174. static inline void ipv6_addr_set(struct in6_addr *addr, 
  175.      __u32 w1, __u32 w2,
  176.      __u32 w3, __u32 w4)
  177. {
  178. addr->s6_addr32[0] = w1;
  179. addr->s6_addr32[1] = w2;
  180. addr->s6_addr32[2] = w3;
  181. addr->s6_addr32[3] = w4;
  182. }
  183. #endif
  184. static inline int ipv6_addr_any(struct in6_addr *a)
  185. {
  186. return ((a->s6_addr32[0] | a->s6_addr32[1] | 
  187.  a->s6_addr32[2] | a->s6_addr32[3] ) == 0); 
  188. }
  189. /*
  190.  * Prototypes exported by ipv6
  191.  */
  192. /*
  193.  * rcv function (called from netdevice level)
  194.  */
  195. extern int ipv6_rcv(struct sk_buff *skb, 
  196.  struct net_device *dev, 
  197.  struct packet_type *pt);
  198. /*
  199.  * upper-layer output functions
  200.  */
  201. extern int ip6_xmit(struct sock *sk,
  202.  struct sk_buff *skb,
  203.  struct flowi *fl,
  204.  struct ipv6_txoptions *opt);
  205. extern int ip6_nd_hdr(struct sock *sk,
  206.    struct sk_buff *skb,
  207.    struct net_device *dev,
  208.    struct in6_addr *saddr,
  209.    struct in6_addr *daddr,
  210.    int proto, int len);
  211. extern int ip6_build_xmit(struct sock *sk,
  212.        inet_getfrag_t getfrag,
  213.        const void *data,
  214.        struct flowi *fl,
  215.        unsigned length,
  216.        struct ipv6_txoptions *opt,
  217.        int hlimit, int flags);
  218. /*
  219.  * skb processing functions
  220.  */
  221. extern int ip6_output(struct sk_buff *skb);
  222. extern int ip6_forward(struct sk_buff *skb);
  223. extern int ip6_input(struct sk_buff *skb);
  224. extern int ip6_mc_input(struct sk_buff *skb);
  225. /*
  226.  * Extension header (options) processing
  227.  */
  228. extern u8 * ipv6_build_nfrag_opts(struct sk_buff *skb,
  229.       u8 *prev_hdr,
  230.       struct ipv6_txoptions *opt,
  231.       struct in6_addr *daddr,
  232.       u32 jumbolen);
  233. extern u8 * ipv6_build_frag_opts(struct sk_buff *skb,
  234.      u8 *prev_hdr,
  235.      struct ipv6_txoptions *opt);
  236. extern void  ipv6_push_nfrag_opts(struct sk_buff *skb,
  237.      struct ipv6_txoptions *opt,
  238.      u8 *proto,
  239.      struct in6_addr **daddr_p);
  240. extern void ipv6_push_frag_opts(struct sk_buff *skb,
  241.     struct ipv6_txoptions *opt,
  242.     u8 *proto);
  243. extern int ipv6_skip_exthdr(struct sk_buff *, int start,
  244.          u8 *nexthdrp, int len);
  245. extern int  ipv6_ext_hdr(u8 nexthdr);
  246. extern struct ipv6_txoptions * ipv6_invert_rthdr(struct sock *sk,
  247.   struct ipv6_rt_hdr *hdr);
  248. /*
  249.  * socket options (ipv6_sockglue.c)
  250.  */
  251. extern int ipv6_setsockopt(struct sock *sk, int level, 
  252. int optname, char *optval, 
  253. int optlen);
  254. extern int ipv6_getsockopt(struct sock *sk, int level, 
  255. int optname, char *optval, 
  256. int *optlen);
  257. extern void ipv6_packet_init(void);
  258. extern void ipv6_netdev_notif_init(void);
  259. extern void ipv6_packet_cleanup(void);
  260. extern void ipv6_netdev_notif_cleanup(void);
  261. extern int  ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len);
  262. extern void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err, u16 port,
  263. u32 info, u8 *payload);
  264. extern void ipv6_local_error(struct sock *sk, int err, struct flowi *fl, u32 info);
  265. #endif /* __KERNEL__ */
  266. #endif /* _NET_IPV6_H */