bonding: process the err returned by dev_set_allmulti properly in bond_enslave
[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         atomic_t                refcnt;
195         /* Length of this structure */
196         int                     tot_len;
197
198         /* length of extension headers   */
199
200         __u16                   opt_flen;       /* after fragment hdr */
201         __u16                   opt_nflen;      /* before fragment hdr */
202
203         struct ipv6_opt_hdr     *hopopt;
204         struct ipv6_opt_hdr     *dst0opt;
205         struct ipv6_rt_hdr      *srcrt; /* Routing Header */
206         struct ipv6_opt_hdr     *dst1opt;
207         struct rcu_head         rcu;
208         /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */
209 };
210
211 struct ip6_flowlabel {
212         struct ip6_flowlabel    *next;
213         __be32                  label;
214         atomic_t                users;
215         struct in6_addr         dst;
216         struct ipv6_txoptions   *opt;
217         unsigned long           linger;
218         u8                      share;
219         u32                     owner;
220         unsigned long           lastuse;
221         unsigned long           expires;
222         struct net              *fl_net;
223 };
224
225 #define IPV6_FLOWINFO_MASK      cpu_to_be32(0x0FFFFFFF)
226 #define IPV6_FLOWLABEL_MASK     cpu_to_be32(0x000FFFFF)
227
228 struct ipv6_fl_socklist {
229         struct ipv6_fl_socklist *next;
230         struct ip6_flowlabel    *fl;
231 };
232
233 static inline struct ipv6_txoptions *txopt_get(const struct ipv6_pinfo *np)
234 {
235         struct ipv6_txoptions *opt;
236
237         rcu_read_lock();
238         opt = rcu_dereference(np->opt);
239         if (opt && !atomic_inc_not_zero(&opt->refcnt))
240                 opt = NULL;
241         rcu_read_unlock();
242         return opt;
243 }
244
245 static inline void txopt_put(struct ipv6_txoptions *opt)
246 {
247         if (opt && atomic_dec_and_test(&opt->refcnt))
248                 kfree_rcu(opt, rcu);
249 }
250
251 extern struct ip6_flowlabel     *fl6_sock_lookup(struct sock *sk, __be32 label);
252 extern struct ipv6_txoptions    *fl6_merge_options(struct ipv6_txoptions * opt_space,
253                                                    struct ip6_flowlabel * fl,
254                                                    struct ipv6_txoptions * fopt);
255 extern void                     fl6_free_socklist(struct sock *sk);
256 extern int                      ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen);
257 extern int                      ip6_flowlabel_init(void);
258 extern void                     ip6_flowlabel_cleanup(void);
259
260 static inline void fl6_sock_release(struct ip6_flowlabel *fl)
261 {
262         if (fl)
263                 atomic_dec(&fl->users);
264 }
265
266 extern int                      ip6_ra_control(struct sock *sk, int sel);
267
268 extern int                      ipv6_parse_hopopts(struct sk_buff *skb);
269
270 extern struct ipv6_txoptions *  ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt);
271 extern struct ipv6_txoptions *  ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt,
272                                                    int newtype,
273                                                    struct ipv6_opt_hdr __user *newopt,
274                                                    int newoptlen);
275 struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
276                                           struct ipv6_txoptions *opt);
277
278 extern int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb);
279
280 int ip6_frag_nqueues(struct net *net);
281 int ip6_frag_mem(struct net *net);
282
283 #define IPV6_FRAG_HIGH_THRESH   (256 * 1024)    /* 262144 */
284 #define IPV6_FRAG_LOW_THRESH    (192 * 1024)    /* 196608 */
285 #define IPV6_FRAG_TIMEOUT       (60 * HZ)       /* 60 seconds */
286
287 extern int __ipv6_addr_type(const struct in6_addr *addr);
288 static inline int ipv6_addr_type(const struct in6_addr *addr)
289 {
290         return __ipv6_addr_type(addr) & 0xffff;
291 }
292
293 static inline int ipv6_addr_scope(const struct in6_addr *addr)
294 {
295         return __ipv6_addr_type(addr) & IPV6_ADDR_SCOPE_MASK;
296 }
297
298 static inline int __ipv6_addr_src_scope(int type)
299 {
300         return (type == IPV6_ADDR_ANY) ? __IPV6_ADDR_SCOPE_INVALID : (type >> 16);
301 }
302
303 static inline int ipv6_addr_src_scope(const struct in6_addr *addr)
304 {
305         return __ipv6_addr_src_scope(__ipv6_addr_type(addr));
306 }
307
308 static inline int ipv6_addr_cmp(const struct in6_addr *a1, const struct in6_addr *a2)
309 {
310         return memcmp(a1, a2, sizeof(struct in6_addr));
311 }
312
313 static inline int
314 ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m,
315                      const struct in6_addr *a2)
316 {
317         return !!(((a1->s6_addr32[0] ^ a2->s6_addr32[0]) & m->s6_addr32[0]) |
318                   ((a1->s6_addr32[1] ^ a2->s6_addr32[1]) & m->s6_addr32[1]) |
319                   ((a1->s6_addr32[2] ^ a2->s6_addr32[2]) & m->s6_addr32[2]) |
320                   ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3]));
321 }
322
323 static inline void ipv6_addr_copy(struct in6_addr *a1, const struct in6_addr *a2)
324 {
325         memcpy(a1, a2, sizeof(struct in6_addr));
326 }
327
328 static inline void ipv6_addr_prefix(struct in6_addr *pfx, 
329                                     const struct in6_addr *addr,
330                                     int plen)
331 {
332         /* caller must guarantee 0 <= plen <= 128 */
333         int o = plen >> 3,
334             b = plen & 0x7;
335
336         memset(pfx->s6_addr, 0, sizeof(pfx->s6_addr));
337         memcpy(pfx->s6_addr, addr, o);
338         if (b != 0)
339                 pfx->s6_addr[o] = addr->s6_addr[o] & (0xff00 >> b);
340 }
341
342 static inline void ipv6_addr_set(struct in6_addr *addr, 
343                                      __be32 w1, __be32 w2,
344                                      __be32 w3, __be32 w4)
345 {
346         addr->s6_addr32[0] = w1;
347         addr->s6_addr32[1] = w2;
348         addr->s6_addr32[2] = w3;
349         addr->s6_addr32[3] = w4;
350 }
351
352 static inline int ipv6_addr_equal(const struct in6_addr *a1,
353                                   const struct in6_addr *a2)
354 {
355         return ((a1->s6_addr32[0] ^ a2->s6_addr32[0]) |
356                 (a1->s6_addr32[1] ^ a2->s6_addr32[1]) |
357                 (a1->s6_addr32[2] ^ a2->s6_addr32[2]) |
358                 (a1->s6_addr32[3] ^ a2->s6_addr32[3])) == 0;
359 }
360
361 static inline int __ipv6_prefix_equal(const __be32 *a1, const __be32 *a2,
362                                       unsigned int prefixlen)
363 {
364         unsigned pdw, pbi;
365
366         /* check complete u32 in prefix */
367         pdw = prefixlen >> 5;
368         if (pdw && memcmp(a1, a2, pdw << 2))
369                 return 0;
370
371         /* check incomplete u32 in prefix */
372         pbi = prefixlen & 0x1f;
373         if (pbi && ((a1[pdw] ^ a2[pdw]) & htonl((0xffffffff) << (32 - pbi))))
374                 return 0;
375
376         return 1;
377 }
378
379 static inline int ipv6_prefix_equal(const struct in6_addr *a1,
380                                     const struct in6_addr *a2,
381                                     unsigned int prefixlen)
382 {
383         return __ipv6_prefix_equal(a1->s6_addr32, a2->s6_addr32,
384                                    prefixlen);
385 }
386
387 struct inet_frag_queue;
388
389 enum ip6_defrag_users {
390         IP6_DEFRAG_LOCAL_DELIVER,
391         IP6_DEFRAG_CONNTRACK_IN,
392         __IP6_DEFRAG_CONNTRACK_IN       = IP6_DEFRAG_CONNTRACK_IN + USHRT_MAX,
393         IP6_DEFRAG_CONNTRACK_OUT,
394         __IP6_DEFRAG_CONNTRACK_OUT      = IP6_DEFRAG_CONNTRACK_OUT + USHRT_MAX,
395         IP6_DEFRAG_CONNTRACK_BRIDGE_IN,
396         __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = IP6_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX,
397 };
398
399 struct ip6_create_arg {
400         __be32 id;
401         u32 user;
402         const struct in6_addr *src;
403         const struct in6_addr *dst;
404         int iif;
405 };
406
407 void ip6_frag_init(struct inet_frag_queue *q, void *a);
408 int ip6_frag_match(struct inet_frag_queue *q, void *a);
409
410 /* more secured version of ipv6_addr_hash() */
411 static inline u32 __ipv6_addr_jhash(const struct in6_addr *a, const u32 initval)
412 {
413         u32 v = (__force u32)a->s6_addr32[0] ^ (__force u32)a->s6_addr32[1];
414
415         return jhash_3words(v,
416                             (__force u32)a->s6_addr32[2],
417                             (__force u32)a->s6_addr32[3],
418                             initval);
419 }
420
421 static inline u32 ipv6_addr_jhash(const struct in6_addr *a)
422 {
423         return __ipv6_addr_jhash(a, ipv6_hash_secret);
424 }
425
426 static inline int ipv6_addr_any(const struct in6_addr *a)
427 {
428         return (a->s6_addr32[0] | a->s6_addr32[1] |
429                 a->s6_addr32[2] | a->s6_addr32[3]) == 0;
430 }
431
432 static inline int ipv6_addr_loopback(const struct in6_addr *a)
433 {
434         return (a->s6_addr32[0] | a->s6_addr32[1] |
435                 a->s6_addr32[2] | (a->s6_addr32[3] ^ htonl(1))) == 0;
436 }
437
438 static inline int ipv6_addr_v4mapped(const struct in6_addr *a)
439 {
440         return (a->s6_addr32[0] | a->s6_addr32[1] |
441                  (a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0;
442 }
443
444 /*
445  * Check for a RFC 4843 ORCHID address
446  * (Overlay Routable Cryptographic Hash Identifiers)
447  */
448 static inline int ipv6_addr_orchid(const struct in6_addr *a)
449 {
450         return (a->s6_addr32[0] & htonl(0xfffffff0)) == htonl(0x20010010);
451 }
452
453 static inline void ipv6_addr_set_v4mapped(const __be32 addr,
454                                           struct in6_addr *v4mapped)
455 {
456         ipv6_addr_set(v4mapped,
457                         0, 0,
458                         htonl(0x0000FFFF),
459                         addr);
460 }
461
462 /*
463  * find the first different bit between two addresses
464  * length of address must be a multiple of 32bits
465  */
466 static inline int __ipv6_addr_diff(const void *token1, const void *token2, int addrlen)
467 {
468         const __be32 *a1 = token1, *a2 = token2;
469         int i;
470
471         addrlen >>= 2;
472
473         for (i = 0; i < addrlen; i++) {
474                 __be32 xb = a1[i] ^ a2[i];
475                 if (xb)
476                         return i * 32 + 31 - __fls(ntohl(xb));
477         }
478
479         /*
480          *      we should *never* get to this point since that 
481          *      would mean the addrs are equal
482          *
483          *      However, we do get to it 8) And exacly, when
484          *      addresses are equal 8)
485          *
486          *      ip route add 1111::/128 via ...
487          *      ip route add 1111::/64 via ...
488          *      and we are here.
489          *
490          *      Ideally, this function should stop comparison
491          *      at prefix length. It does not, but it is still OK,
492          *      if returned value is greater than prefix length.
493          *                                      --ANK (980803)
494          */
495         return addrlen << 5;
496 }
497
498 static inline int ipv6_addr_diff(const struct in6_addr *a1, const struct in6_addr *a2)
499 {
500         return __ipv6_addr_diff(a1, a2, sizeof(struct in6_addr));
501 }
502
503 extern void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt);
504 void ipv6_proxy_select_ident(struct sk_buff *skb);
505
506 /*
507  *      Prototypes exported by ipv6
508  */
509
510 /*
511  *      rcv function (called from netdevice level)
512  */
513
514 extern int                      ipv6_rcv(struct sk_buff *skb, 
515                                          struct net_device *dev, 
516                                          struct packet_type *pt,
517                                          struct net_device *orig_dev);
518
519 extern int                      ip6_rcv_finish(struct sk_buff *skb);
520
521 /*
522  *      upper-layer output functions
523  */
524 extern int                      ip6_xmit(struct sock *sk,
525                                          struct sk_buff *skb,
526                                          struct flowi6 *fl6,
527                                          struct ipv6_txoptions *opt,
528                                          int tclass);
529
530 extern int                      ip6_nd_hdr(struct sock *sk,
531                                            struct sk_buff *skb,
532                                            struct net_device *dev,
533                                            const struct in6_addr *saddr,
534                                            const struct in6_addr *daddr,
535                                            int proto, int len);
536
537 extern int                      ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr);
538
539 extern int                      ip6_append_data(struct sock *sk,
540                                                 int getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb),
541                                                 void *from,
542                                                 int length,
543                                                 int transhdrlen,
544                                                 int hlimit,
545                                                 int tclass,
546                                                 struct ipv6_txoptions *opt,
547                                                 struct flowi6 *fl6,
548                                                 struct rt6_info *rt,
549                                                 unsigned int flags,
550                                                 int dontfrag);
551
552 extern int                      ip6_push_pending_frames(struct sock *sk);
553
554 extern void                     ip6_flush_pending_frames(struct sock *sk);
555
556 extern int                      ip6_dst_lookup(struct sock *sk,
557                                                struct dst_entry **dst,
558                                                struct flowi6 *fl6);
559 extern struct dst_entry *       ip6_dst_lookup_flow(struct sock *sk,
560                                                     struct flowi6 *fl6,
561                                                     const struct in6_addr *final_dst,
562                                                     bool can_sleep);
563 extern struct dst_entry *       ip6_sk_dst_lookup_flow(struct sock *sk,
564                                                        struct flowi6 *fl6,
565                                                        const struct in6_addr *final_dst,
566                                                        bool can_sleep);
567 extern struct dst_entry *       ip6_blackhole_route(struct net *net,
568                                                     struct dst_entry *orig_dst);
569
570 /*
571  *      skb processing functions
572  */
573
574 extern int                      ip6_output(struct sk_buff *skb);
575 extern int                      ip6_forward(struct sk_buff *skb);
576 extern int                      ip6_input(struct sk_buff *skb);
577 extern int                      ip6_mc_input(struct sk_buff *skb);
578
579 extern int                      __ip6_local_out(struct sk_buff *skb);
580 extern int                      ip6_local_out(struct sk_buff *skb);
581
582 /*
583  *      Extension header (options) processing
584  */
585
586 extern void                     ipv6_push_nfrag_opts(struct sk_buff *skb,
587                                                      struct ipv6_txoptions *opt,
588                                                      u8 *proto,
589                                                      struct in6_addr **daddr_p);
590 extern void                     ipv6_push_frag_opts(struct sk_buff *skb,
591                                                     struct ipv6_txoptions *opt,
592                                                     u8 *proto);
593
594 extern int                      ipv6_skip_exthdr(const struct sk_buff *, int start,
595                                                  u8 *nexthdrp);
596
597 extern int                      ipv6_ext_hdr(u8 nexthdr);
598
599 extern int ipv6_find_tlv(struct sk_buff *skb, int offset, int type);
600
601 extern struct in6_addr *fl6_update_dst(struct flowi6 *fl6,
602                                        const struct ipv6_txoptions *opt,
603                                        struct in6_addr *orig);
604
605 /*
606  *      socket options (ipv6_sockglue.c)
607  */
608
609 extern int                      ipv6_setsockopt(struct sock *sk, int level, 
610                                                 int optname,
611                                                 char __user *optval, 
612                                                 unsigned int optlen);
613 extern int                      ipv6_getsockopt(struct sock *sk, int level, 
614                                                 int optname,
615                                                 char __user *optval, 
616                                                 int __user *optlen);
617 extern int                      compat_ipv6_setsockopt(struct sock *sk,
618                                                 int level,
619                                                 int optname,
620                                                 char __user *optval,
621                                                 unsigned int optlen);
622 extern int                      compat_ipv6_getsockopt(struct sock *sk,
623                                                 int level,
624                                                 int optname,
625                                                 char __user *optval,
626                                                 int __user *optlen);
627
628 extern int                      ip6_datagram_connect(struct sock *sk, 
629                                                      struct sockaddr *addr, int addr_len);
630
631 extern int                      ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len,
632                                                 int *addr_len);
633 extern int                      ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
634                                                  int *addr_len);
635 extern void                     ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err, __be16 port,
636                                                 u32 info, u8 *payload);
637 extern void                     ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info);
638 extern void                     ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu);
639
640 extern int inet6_release(struct socket *sock);
641 extern int inet6_bind(struct socket *sock, struct sockaddr *uaddr, 
642                       int addr_len);
643 extern int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
644                          int *uaddr_len, int peer);
645 extern int inet6_ioctl(struct socket *sock, unsigned int cmd, 
646                        unsigned long arg);
647
648 extern int inet6_hash_connect(struct inet_timewait_death_row *death_row,
649                               struct sock *sk);
650
651 /*
652  * reassembly.c
653  */
654 extern const struct proto_ops inet6_stream_ops;
655 extern const struct proto_ops inet6_dgram_ops;
656
657 struct group_source_req;
658 struct group_filter;
659
660 extern int ip6_mc_source(int add, int omode, struct sock *sk,
661                          struct group_source_req *pgsr);
662 extern int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf);
663 extern int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
664                          struct group_filter __user *optval,
665                          int __user *optlen);
666 extern unsigned int inet6_hash_frag(__be32 id, const struct in6_addr *saddr,
667                                     const struct in6_addr *daddr, u32 rnd);
668
669 #ifdef CONFIG_PROC_FS
670 extern int  ac6_proc_init(struct net *net);
671 extern void ac6_proc_exit(struct net *net);
672 extern int  raw6_proc_init(void);
673 extern void raw6_proc_exit(void);
674 extern int  tcp6_proc_init(struct net *net);
675 extern void tcp6_proc_exit(struct net *net);
676 extern int  udp6_proc_init(struct net *net);
677 extern void udp6_proc_exit(struct net *net);
678 extern int  udplite6_proc_init(void);
679 extern void udplite6_proc_exit(void);
680 extern int  ipv6_misc_proc_init(void);
681 extern void ipv6_misc_proc_exit(void);
682 extern int snmp6_register_dev(struct inet6_dev *idev);
683 extern int snmp6_unregister_dev(struct inet6_dev *idev);
684
685 #else
686 static inline int ac6_proc_init(struct net *net) { return 0; }
687 static inline void ac6_proc_exit(struct net *net) { }
688 static inline int snmp6_register_dev(struct inet6_dev *idev) { return 0; }
689 static inline int snmp6_unregister_dev(struct inet6_dev *idev) { return 0; }
690 #endif
691
692 #ifdef CONFIG_SYSCTL
693 extern ctl_table ipv6_route_table_template[];
694 extern ctl_table ipv6_icmp_table_template[];
695
696 extern struct ctl_table *ipv6_icmp_sysctl_init(struct net *net);
697 extern struct ctl_table *ipv6_route_sysctl_init(struct net *net);
698 extern int ipv6_sysctl_register(void);
699 extern void ipv6_sysctl_unregister(void);
700 extern int ipv6_static_sysctl_register(void);
701 extern void ipv6_static_sysctl_unregister(void);
702 #endif
703
704 #endif /* _NET_IPV6_H */