drivers/net, ipv6: Select IPv6 fragment idents for virtio UFO packets
[pandora-kernel.git] / include / net / ipv6.h
1 /*
2  *      Linux INET6 implementation
3  *
4  *      Authors:
5  *      Pedro Roque             <roque@di.fc.ul.pt>
6  *
7  *      This program is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU General Public License
9  *      as published by the Free Software Foundation; either version
10  *      2 of the License, or (at your option) any later version.
11  */
12
13 #ifndef _NET_IPV6_H
14 #define _NET_IPV6_H
15
16 #include <linux/ipv6.h>
17 #include <linux/hardirq.h>
18 #include <linux/jhash.h>
19 #include <net/if_inet6.h>
20 #include <net/ndisc.h>
21 #include <net/flow.h>
22 #include <net/snmp.h>
23
24 #define SIN6_LEN_RFC2133        24
25
26 #define IPV6_MAXPLEN            65535
27
28 /*
29  *      NextHeader field of IPv6 header
30  */
31
32 #define NEXTHDR_HOP             0       /* Hop-by-hop option header. */
33 #define NEXTHDR_TCP             6       /* TCP segment. */
34 #define NEXTHDR_UDP             17      /* UDP message. */
35 #define NEXTHDR_IPV6            41      /* IPv6 in IPv6 */
36 #define NEXTHDR_ROUTING         43      /* Routing header. */
37 #define NEXTHDR_FRAGMENT        44      /* Fragmentation/reassembly header. */
38 #define NEXTHDR_ESP             50      /* Encapsulating security payload. */
39 #define NEXTHDR_AUTH            51      /* Authentication header. */
40 #define NEXTHDR_ICMP            58      /* ICMP for IPv6. */
41 #define NEXTHDR_NONE            59      /* No next header */
42 #define NEXTHDR_DEST            60      /* Destination options header. */
43 #define NEXTHDR_MOBILITY        135     /* Mobility header. */
44
45 #define NEXTHDR_MAX             255
46
47
48
49 #define IPV6_DEFAULT_HOPLIMIT   64
50 #define IPV6_DEFAULT_MCASTHOPS  1
51
52 /*
53  *      Addr type
54  *      
55  *      type    -       unicast | multicast
56  *      scope   -       local   | site      | global
57  *      v4      -       compat
58  *      v4mapped
59  *      any
60  *      loopback
61  */
62
63 #define IPV6_ADDR_ANY           0x0000U
64
65 #define IPV6_ADDR_UNICAST       0x0001U 
66 #define IPV6_ADDR_MULTICAST     0x0002U 
67
68 #define IPV6_ADDR_LOOPBACK      0x0010U
69 #define IPV6_ADDR_LINKLOCAL     0x0020U
70 #define IPV6_ADDR_SITELOCAL     0x0040U
71
72 #define IPV6_ADDR_COMPATv4      0x0080U
73
74 #define IPV6_ADDR_SCOPE_MASK    0x00f0U
75
76 #define IPV6_ADDR_MAPPED        0x1000U
77
78 /*
79  *      Addr scopes
80  */
81 #define IPV6_ADDR_MC_SCOPE(a)   \
82         ((a)->s6_addr[1] & 0x0f)        /* nonstandard */
83 #define __IPV6_ADDR_SCOPE_INVALID       -1
84 #define IPV6_ADDR_SCOPE_NODELOCAL       0x01
85 #define IPV6_ADDR_SCOPE_LINKLOCAL       0x02
86 #define IPV6_ADDR_SCOPE_SITELOCAL       0x05
87 #define IPV6_ADDR_SCOPE_ORGLOCAL        0x08
88 #define IPV6_ADDR_SCOPE_GLOBAL          0x0e
89
90 /*
91  *      Addr flags
92  */
93 #define IPV6_ADDR_MC_FLAG_TRANSIENT(a)  \
94         ((a)->s6_addr[1] & 0x10)
95 #define IPV6_ADDR_MC_FLAG_PREFIX(a)     \
96         ((a)->s6_addr[1] & 0x20)
97 #define IPV6_ADDR_MC_FLAG_RENDEZVOUS(a) \
98         ((a)->s6_addr[1] & 0x40)
99
100 /*
101  *      fragmentation header
102  */
103
104 struct frag_hdr {
105         __u8    nexthdr;
106         __u8    reserved;
107         __be16  frag_off;
108         __be32  identification;
109 };
110
111 #define IP6_MF  0x0001
112
113 #include <net/sock.h>
114
115 /* sysctls */
116 extern int sysctl_mld_max_msf;
117 extern struct ctl_path net_ipv6_ctl_path[];
118
119 #define _DEVINC(net, statname, modifier, idev, field)                   \
120 ({                                                                      \
121         struct inet6_dev *_idev = (idev);                               \
122         if (likely(_idev != NULL))                                      \
123                 SNMP_INC_STATS##modifier((_idev)->stats.statname, (field)); \
124         SNMP_INC_STATS##modifier((net)->mib.statname##_statistics, (field));\
125 })
126
127 /* per device counters are atomic_long_t */
128 #define _DEVINCATOMIC(net, statname, modifier, idev, field)             \
129 ({                                                                      \
130         struct inet6_dev *_idev = (idev);                               \
131         if (likely(_idev != NULL))                                      \
132                 SNMP_INC_STATS_ATOMIC_LONG((_idev)->stats.statname##dev, (field)); \
133         SNMP_INC_STATS##modifier((net)->mib.statname##_statistics, (field));\
134 })
135
136 #define _DEVADD(net, statname, modifier, idev, field, val)              \
137 ({                                                                      \
138         struct inet6_dev *_idev = (idev);                               \
139         if (likely(_idev != NULL))                                      \
140                 SNMP_ADD_STATS##modifier((_idev)->stats.statname, (field), (val)); \
141         SNMP_ADD_STATS##modifier((net)->mib.statname##_statistics, (field), (val));\
142 })
143
144 #define _DEVUPD(net, statname, modifier, idev, field, val)              \
145 ({                                                                      \
146         struct inet6_dev *_idev = (idev);                               \
147         if (likely(_idev != NULL))                                      \
148                 SNMP_UPD_PO_STATS##modifier((_idev)->stats.statname, field, (val)); \
149         SNMP_UPD_PO_STATS##modifier((net)->mib.statname##_statistics, field, (val));\
150 })
151
152 /* MIBs */
153
154 #define IP6_INC_STATS(net, idev,field)          \
155                 _DEVINC(net, ipv6, 64, idev, field)
156 #define IP6_INC_STATS_BH(net, idev,field)       \
157                 _DEVINC(net, ipv6, 64_BH, idev, field)
158 #define IP6_ADD_STATS(net, idev,field,val)      \
159                 _DEVADD(net, ipv6, 64, idev, field, val)
160 #define IP6_ADD_STATS_BH(net, idev,field,val)   \
161                 _DEVADD(net, ipv6, 64_BH, idev, field, val)
162 #define IP6_UPD_PO_STATS(net, idev,field,val)   \
163                 _DEVUPD(net, ipv6, 64, idev, field, val)
164 #define IP6_UPD_PO_STATS_BH(net, idev,field,val)   \
165                 _DEVUPD(net, ipv6, 64_BH, idev, field, val)
166 #define ICMP6_INC_STATS(net, idev, field)       \
167                 _DEVINCATOMIC(net, icmpv6, , idev, field)
168 #define ICMP6_INC_STATS_BH(net, idev, field)    \
169                 _DEVINCATOMIC(net, icmpv6, _BH, idev, field)
170
171 #define ICMP6MSGOUT_INC_STATS(net, idev, field)         \
172         _DEVINCATOMIC(net, icmpv6msg, , idev, field +256)
173 #define ICMP6MSGOUT_INC_STATS_BH(net, idev, field)      \
174         _DEVINCATOMIC(net, icmpv6msg, _BH, idev, field +256)
175 #define ICMP6MSGIN_INC_STATS_BH(net, idev, field)       \
176         _DEVINCATOMIC(net, icmpv6msg, _BH, idev, field)
177
178 struct ip6_ra_chain {
179         struct ip6_ra_chain     *next;
180         struct sock             *sk;
181         int                     sel;
182         void                    (*destructor)(struct sock *);
183 };
184
185 extern struct ip6_ra_chain      *ip6_ra_chain;
186 extern rwlock_t ip6_ra_lock;
187
188 /*
189    This structure is prepared by protocol, when parsing
190    ancillary data and passed to IPv6.
191  */
192
193 struct ipv6_txoptions {
194         /* Length of this structure */
195         int                     tot_len;
196
197         /* length of extension headers   */
198
199         __u16                   opt_flen;       /* after fragment hdr */
200         __u16                   opt_nflen;      /* before fragment hdr */
201
202         struct ipv6_opt_hdr     *hopopt;
203         struct ipv6_opt_hdr     *dst0opt;
204         struct ipv6_rt_hdr      *srcrt; /* Routing Header */
205         struct ipv6_opt_hdr     *dst1opt;
206
207         /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */
208 };
209
210 struct ip6_flowlabel {
211         struct ip6_flowlabel    *next;
212         __be32                  label;
213         atomic_t                users;
214         struct in6_addr         dst;
215         struct ipv6_txoptions   *opt;
216         unsigned long           linger;
217         u8                      share;
218         u32                     owner;
219         unsigned long           lastuse;
220         unsigned long           expires;
221         struct net              *fl_net;
222 };
223
224 #define IPV6_FLOWINFO_MASK      cpu_to_be32(0x0FFFFFFF)
225 #define IPV6_FLOWLABEL_MASK     cpu_to_be32(0x000FFFFF)
226
227 struct ipv6_fl_socklist {
228         struct ipv6_fl_socklist *next;
229         struct ip6_flowlabel    *fl;
230 };
231
232 extern struct ip6_flowlabel     *fl6_sock_lookup(struct sock *sk, __be32 label);
233 extern struct ipv6_txoptions    *fl6_merge_options(struct ipv6_txoptions * opt_space,
234                                                    struct ip6_flowlabel * fl,
235                                                    struct ipv6_txoptions * fopt);
236 extern void                     fl6_free_socklist(struct sock *sk);
237 extern int                      ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen);
238 extern int                      ip6_flowlabel_init(void);
239 extern void                     ip6_flowlabel_cleanup(void);
240
241 static inline void fl6_sock_release(struct ip6_flowlabel *fl)
242 {
243         if (fl)
244                 atomic_dec(&fl->users);
245 }
246
247 extern int                      ip6_ra_control(struct sock *sk, int sel);
248
249 extern int                      ipv6_parse_hopopts(struct sk_buff *skb);
250
251 extern struct ipv6_txoptions *  ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt);
252 extern struct ipv6_txoptions *  ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt,
253                                                    int newtype,
254                                                    struct ipv6_opt_hdr __user *newopt,
255                                                    int newoptlen);
256 struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
257                                           struct ipv6_txoptions *opt);
258
259 extern int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb);
260
261 int ip6_frag_nqueues(struct net *net);
262 int ip6_frag_mem(struct net *net);
263
264 #define IPV6_FRAG_HIGH_THRESH   (256 * 1024)    /* 262144 */
265 #define IPV6_FRAG_LOW_THRESH    (192 * 1024)    /* 196608 */
266 #define IPV6_FRAG_TIMEOUT       (60 * HZ)       /* 60 seconds */
267
268 extern int __ipv6_addr_type(const struct in6_addr *addr);
269 static inline int ipv6_addr_type(const struct in6_addr *addr)
270 {
271         return __ipv6_addr_type(addr) & 0xffff;
272 }
273
274 static inline int ipv6_addr_scope(const struct in6_addr *addr)
275 {
276         return __ipv6_addr_type(addr) & IPV6_ADDR_SCOPE_MASK;
277 }
278
279 static inline int __ipv6_addr_src_scope(int type)
280 {
281         return (type == IPV6_ADDR_ANY) ? __IPV6_ADDR_SCOPE_INVALID : (type >> 16);
282 }
283
284 static inline int ipv6_addr_src_scope(const struct in6_addr *addr)
285 {
286         return __ipv6_addr_src_scope(__ipv6_addr_type(addr));
287 }
288
289 static inline int ipv6_addr_cmp(const struct in6_addr *a1, const struct in6_addr *a2)
290 {
291         return memcmp(a1, a2, sizeof(struct in6_addr));
292 }
293
294 static inline int
295 ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m,
296                      const struct in6_addr *a2)
297 {
298         return !!(((a1->s6_addr32[0] ^ a2->s6_addr32[0]) & m->s6_addr32[0]) |
299                   ((a1->s6_addr32[1] ^ a2->s6_addr32[1]) & m->s6_addr32[1]) |
300                   ((a1->s6_addr32[2] ^ a2->s6_addr32[2]) & m->s6_addr32[2]) |
301                   ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3]));
302 }
303
304 static inline void ipv6_addr_copy(struct in6_addr *a1, const struct in6_addr *a2)
305 {
306         memcpy(a1, a2, sizeof(struct in6_addr));
307 }
308
309 static inline void ipv6_addr_prefix(struct in6_addr *pfx, 
310                                     const struct in6_addr *addr,
311                                     int plen)
312 {
313         /* caller must guarantee 0 <= plen <= 128 */
314         int o = plen >> 3,
315             b = plen & 0x7;
316
317         memset(pfx->s6_addr, 0, sizeof(pfx->s6_addr));
318         memcpy(pfx->s6_addr, addr, o);
319         if (b != 0)
320                 pfx->s6_addr[o] = addr->s6_addr[o] & (0xff00 >> b);
321 }
322
323 static inline void ipv6_addr_set(struct in6_addr *addr, 
324                                      __be32 w1, __be32 w2,
325                                      __be32 w3, __be32 w4)
326 {
327         addr->s6_addr32[0] = w1;
328         addr->s6_addr32[1] = w2;
329         addr->s6_addr32[2] = w3;
330         addr->s6_addr32[3] = w4;
331 }
332
333 static inline int ipv6_addr_equal(const struct in6_addr *a1,
334                                   const struct in6_addr *a2)
335 {
336         return ((a1->s6_addr32[0] ^ a2->s6_addr32[0]) |
337                 (a1->s6_addr32[1] ^ a2->s6_addr32[1]) |
338                 (a1->s6_addr32[2] ^ a2->s6_addr32[2]) |
339                 (a1->s6_addr32[3] ^ a2->s6_addr32[3])) == 0;
340 }
341
342 static inline int __ipv6_prefix_equal(const __be32 *a1, const __be32 *a2,
343                                       unsigned int prefixlen)
344 {
345         unsigned pdw, pbi;
346
347         /* check complete u32 in prefix */
348         pdw = prefixlen >> 5;
349         if (pdw && memcmp(a1, a2, pdw << 2))
350                 return 0;
351
352         /* check incomplete u32 in prefix */
353         pbi = prefixlen & 0x1f;
354         if (pbi && ((a1[pdw] ^ a2[pdw]) & htonl((0xffffffff) << (32 - pbi))))
355                 return 0;
356
357         return 1;
358 }
359
360 static inline int ipv6_prefix_equal(const struct in6_addr *a1,
361                                     const struct in6_addr *a2,
362                                     unsigned int prefixlen)
363 {
364         return __ipv6_prefix_equal(a1->s6_addr32, a2->s6_addr32,
365                                    prefixlen);
366 }
367
368 struct inet_frag_queue;
369
370 enum ip6_defrag_users {
371         IP6_DEFRAG_LOCAL_DELIVER,
372         IP6_DEFRAG_CONNTRACK_IN,
373         __IP6_DEFRAG_CONNTRACK_IN       = IP6_DEFRAG_CONNTRACK_IN + USHRT_MAX,
374         IP6_DEFRAG_CONNTRACK_OUT,
375         __IP6_DEFRAG_CONNTRACK_OUT      = IP6_DEFRAG_CONNTRACK_OUT + USHRT_MAX,
376         IP6_DEFRAG_CONNTRACK_BRIDGE_IN,
377         __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = IP6_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX,
378 };
379
380 struct ip6_create_arg {
381         __be32 id;
382         u32 user;
383         const struct in6_addr *src;
384         const struct in6_addr *dst;
385 };
386
387 void ip6_frag_init(struct inet_frag_queue *q, void *a);
388 int ip6_frag_match(struct inet_frag_queue *q, void *a);
389
390 /* more secured version of ipv6_addr_hash() */
391 static inline u32 __ipv6_addr_jhash(const struct in6_addr *a, const u32 initval)
392 {
393         u32 v = (__force u32)a->s6_addr32[0] ^ (__force u32)a->s6_addr32[1];
394
395         return jhash_3words(v,
396                             (__force u32)a->s6_addr32[2],
397                             (__force u32)a->s6_addr32[3],
398                             initval);
399 }
400
401 static inline u32 ipv6_addr_jhash(const struct in6_addr *a)
402 {
403         return __ipv6_addr_jhash(a, ipv6_hash_secret);
404 }
405
406 static inline int ipv6_addr_any(const struct in6_addr *a)
407 {
408         return (a->s6_addr32[0] | a->s6_addr32[1] |
409                 a->s6_addr32[2] | a->s6_addr32[3]) == 0;
410 }
411
412 static inline int ipv6_addr_loopback(const struct in6_addr *a)
413 {
414         return (a->s6_addr32[0] | a->s6_addr32[1] |
415                 a->s6_addr32[2] | (a->s6_addr32[3] ^ htonl(1))) == 0;
416 }
417
418 static inline int ipv6_addr_v4mapped(const struct in6_addr *a)
419 {
420         return (a->s6_addr32[0] | a->s6_addr32[1] |
421                  (a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0;
422 }
423
424 /*
425  * Check for a RFC 4843 ORCHID address
426  * (Overlay Routable Cryptographic Hash Identifiers)
427  */
428 static inline int ipv6_addr_orchid(const struct in6_addr *a)
429 {
430         return (a->s6_addr32[0] & htonl(0xfffffff0)) == htonl(0x20010010);
431 }
432
433 static inline void ipv6_addr_set_v4mapped(const __be32 addr,
434                                           struct in6_addr *v4mapped)
435 {
436         ipv6_addr_set(v4mapped,
437                         0, 0,
438                         htonl(0x0000FFFF),
439                         addr);
440 }
441
442 /*
443  * find the first different bit between two addresses
444  * length of address must be a multiple of 32bits
445  */
446 static inline int __ipv6_addr_diff(const void *token1, const void *token2, int addrlen)
447 {
448         const __be32 *a1 = token1, *a2 = token2;
449         int i;
450
451         addrlen >>= 2;
452
453         for (i = 0; i < addrlen; i++) {
454                 __be32 xb = a1[i] ^ a2[i];
455                 if (xb)
456                         return i * 32 + 31 - __fls(ntohl(xb));
457         }
458
459         /*
460          *      we should *never* get to this point since that 
461          *      would mean the addrs are equal
462          *
463          *      However, we do get to it 8) And exacly, when
464          *      addresses are equal 8)
465          *
466          *      ip route add 1111::/128 via ...
467          *      ip route add 1111::/64 via ...
468          *      and we are here.
469          *
470          *      Ideally, this function should stop comparison
471          *      at prefix length. It does not, but it is still OK,
472          *      if returned value is greater than prefix length.
473          *                                      --ANK (980803)
474          */
475         return addrlen << 5;
476 }
477
478 static inline int ipv6_addr_diff(const struct in6_addr *a1, const struct in6_addr *a2)
479 {
480         return __ipv6_addr_diff(a1, a2, sizeof(struct in6_addr));
481 }
482
483 extern void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt);
484 void ipv6_proxy_select_ident(struct sk_buff *skb);
485
486 /*
487  *      Prototypes exported by ipv6
488  */
489
490 /*
491  *      rcv function (called from netdevice level)
492  */
493
494 extern int                      ipv6_rcv(struct sk_buff *skb, 
495                                          struct net_device *dev, 
496                                          struct packet_type *pt,
497                                          struct net_device *orig_dev);
498
499 extern int                      ip6_rcv_finish(struct sk_buff *skb);
500
501 /*
502  *      upper-layer output functions
503  */
504 extern int                      ip6_xmit(struct sock *sk,
505                                          struct sk_buff *skb,
506                                          struct flowi6 *fl6,
507                                          struct ipv6_txoptions *opt,
508                                          int tclass);
509
510 extern int                      ip6_nd_hdr(struct sock *sk,
511                                            struct sk_buff *skb,
512                                            struct net_device *dev,
513                                            const struct in6_addr *saddr,
514                                            const struct in6_addr *daddr,
515                                            int proto, int len);
516
517 extern int                      ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr);
518
519 extern int                      ip6_append_data(struct sock *sk,
520                                                 int getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb),
521                                                 void *from,
522                                                 int length,
523                                                 int transhdrlen,
524                                                 int hlimit,
525                                                 int tclass,
526                                                 struct ipv6_txoptions *opt,
527                                                 struct flowi6 *fl6,
528                                                 struct rt6_info *rt,
529                                                 unsigned int flags,
530                                                 int dontfrag);
531
532 extern int                      ip6_push_pending_frames(struct sock *sk);
533
534 extern void                     ip6_flush_pending_frames(struct sock *sk);
535
536 extern int                      ip6_dst_lookup(struct sock *sk,
537                                                struct dst_entry **dst,
538                                                struct flowi6 *fl6);
539 extern struct dst_entry *       ip6_dst_lookup_flow(struct sock *sk,
540                                                     struct flowi6 *fl6,
541                                                     const struct in6_addr *final_dst,
542                                                     bool can_sleep);
543 extern struct dst_entry *       ip6_sk_dst_lookup_flow(struct sock *sk,
544                                                        struct flowi6 *fl6,
545                                                        const struct in6_addr *final_dst,
546                                                        bool can_sleep);
547 extern struct dst_entry *       ip6_blackhole_route(struct net *net,
548                                                     struct dst_entry *orig_dst);
549
550 /*
551  *      skb processing functions
552  */
553
554 extern int                      ip6_output(struct sk_buff *skb);
555 extern int                      ip6_forward(struct sk_buff *skb);
556 extern int                      ip6_input(struct sk_buff *skb);
557 extern int                      ip6_mc_input(struct sk_buff *skb);
558
559 extern int                      __ip6_local_out(struct sk_buff *skb);
560 extern int                      ip6_local_out(struct sk_buff *skb);
561
562 /*
563  *      Extension header (options) processing
564  */
565
566 extern void                     ipv6_push_nfrag_opts(struct sk_buff *skb,
567                                                      struct ipv6_txoptions *opt,
568                                                      u8 *proto,
569                                                      struct in6_addr **daddr_p);
570 extern void                     ipv6_push_frag_opts(struct sk_buff *skb,
571                                                     struct ipv6_txoptions *opt,
572                                                     u8 *proto);
573
574 extern int                      ipv6_skip_exthdr(const struct sk_buff *, int start,
575                                                  u8 *nexthdrp);
576
577 extern int                      ipv6_ext_hdr(u8 nexthdr);
578
579 extern int ipv6_find_tlv(struct sk_buff *skb, int offset, int type);
580
581 extern struct in6_addr *fl6_update_dst(struct flowi6 *fl6,
582                                        const struct ipv6_txoptions *opt,
583                                        struct in6_addr *orig);
584
585 /*
586  *      socket options (ipv6_sockglue.c)
587  */
588
589 extern int                      ipv6_setsockopt(struct sock *sk, int level, 
590                                                 int optname,
591                                                 char __user *optval, 
592                                                 unsigned int optlen);
593 extern int                      ipv6_getsockopt(struct sock *sk, int level, 
594                                                 int optname,
595                                                 char __user *optval, 
596                                                 int __user *optlen);
597 extern int                      compat_ipv6_setsockopt(struct sock *sk,
598                                                 int level,
599                                                 int optname,
600                                                 char __user *optval,
601                                                 unsigned int optlen);
602 extern int                      compat_ipv6_getsockopt(struct sock *sk,
603                                                 int level,
604                                                 int optname,
605                                                 char __user *optval,
606                                                 int __user *optlen);
607
608 extern int                      ip6_datagram_connect(struct sock *sk, 
609                                                      struct sockaddr *addr, int addr_len);
610
611 extern int                      ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len,
612                                                 int *addr_len);
613 extern int                      ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
614                                                  int *addr_len);
615 extern void                     ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err, __be16 port,
616                                                 u32 info, u8 *payload);
617 extern void                     ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info);
618 extern void                     ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu);
619
620 extern int inet6_release(struct socket *sock);
621 extern int inet6_bind(struct socket *sock, struct sockaddr *uaddr, 
622                       int addr_len);
623 extern int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
624                          int *uaddr_len, int peer);
625 extern int inet6_ioctl(struct socket *sock, unsigned int cmd, 
626                        unsigned long arg);
627
628 extern int inet6_hash_connect(struct inet_timewait_death_row *death_row,
629                               struct sock *sk);
630
631 /*
632  * reassembly.c
633  */
634 extern const struct proto_ops inet6_stream_ops;
635 extern const struct proto_ops inet6_dgram_ops;
636
637 struct group_source_req;
638 struct group_filter;
639
640 extern int ip6_mc_source(int add, int omode, struct sock *sk,
641                          struct group_source_req *pgsr);
642 extern int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf);
643 extern int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
644                          struct group_filter __user *optval,
645                          int __user *optlen);
646 extern unsigned int inet6_hash_frag(__be32 id, const struct in6_addr *saddr,
647                                     const struct in6_addr *daddr, u32 rnd);
648
649 #ifdef CONFIG_PROC_FS
650 extern int  ac6_proc_init(struct net *net);
651 extern void ac6_proc_exit(struct net *net);
652 extern int  raw6_proc_init(void);
653 extern void raw6_proc_exit(void);
654 extern int  tcp6_proc_init(struct net *net);
655 extern void tcp6_proc_exit(struct net *net);
656 extern int  udp6_proc_init(struct net *net);
657 extern void udp6_proc_exit(struct net *net);
658 extern int  udplite6_proc_init(void);
659 extern void udplite6_proc_exit(void);
660 extern int  ipv6_misc_proc_init(void);
661 extern void ipv6_misc_proc_exit(void);
662 extern int snmp6_register_dev(struct inet6_dev *idev);
663 extern int snmp6_unregister_dev(struct inet6_dev *idev);
664
665 #else
666 static inline int ac6_proc_init(struct net *net) { return 0; }
667 static inline void ac6_proc_exit(struct net *net) { }
668 static inline int snmp6_register_dev(struct inet6_dev *idev) { return 0; }
669 static inline int snmp6_unregister_dev(struct inet6_dev *idev) { return 0; }
670 #endif
671
672 #ifdef CONFIG_SYSCTL
673 extern ctl_table ipv6_route_table_template[];
674 extern ctl_table ipv6_icmp_table_template[];
675
676 extern struct ctl_table *ipv6_icmp_sysctl_init(struct net *net);
677 extern struct ctl_table *ipv6_route_sysctl_init(struct net *net);
678 extern int ipv6_sysctl_register(void);
679 extern void ipv6_sysctl_unregister(void);
680 extern int ipv6_static_sysctl_register(void);
681 extern void ipv6_static_sysctl_unregister(void);
682 #endif
683
684 #endif /* _NET_IPV6_H */