blob: f5a21d0a22baa640090c99a4aa01ea398124df8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_ICMPV6_H
2#define _LINUX_ICMPV6_H
3
Jaswinder Singh Rajput1cc49ae2009-01-30 21:18:37 +05304#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <asm/byteorder.h>
6
7struct icmp6hdr {
8
9 __u8 icmp6_type;
10 __u8 icmp6_code;
Al Viro9981a0e2006-11-14 21:24:30 -080011 __sum16 icmp6_cksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13
14 union {
Al Viroa27ee7a2006-11-08 00:21:21 -080015 __be32 un_data32[1];
16 __be16 un_data16[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 __u8 un_data8[4];
18
19 struct icmpv6_echo {
Al Viroa27ee7a2006-11-08 00:21:21 -080020 __be16 identifier;
21 __be16 sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 } u_echo;
23
24 struct icmpv6_nd_advt {
25#if defined(__LITTLE_ENDIAN_BITFIELD)
26 __u32 reserved:5,
27 override:1,
28 solicited:1,
29 router:1,
30 reserved2:24;
31#elif defined(__BIG_ENDIAN_BITFIELD)
32 __u32 router:1,
33 solicited:1,
34 override:1,
35 reserved:29;
36#else
37#error "Please fix <asm/byteorder.h>"
38#endif
39 } u_nd_advt;
40
41 struct icmpv6_nd_ra {
42 __u8 hop_limit;
43#if defined(__LITTLE_ENDIAN_BITFIELD)
Pedro Ribeiro22441cf2008-10-15 15:47:49 -070044 __u8 reserved:3,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -080045 router_pref:2,
Pedro Ribeiro22441cf2008-10-15 15:47:49 -070046 home_agent:1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 other:1,
48 managed:1;
49
50#elif defined(__BIG_ENDIAN_BITFIELD)
51 __u8 managed:1,
52 other:1,
Pedro Ribeiro22441cf2008-10-15 15:47:49 -070053 home_agent:1,
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -080054 router_pref:2,
Pedro Ribeiro22441cf2008-10-15 15:47:49 -070055 reserved:3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#else
57#error "Please fix <asm/byteorder.h>"
58#endif
Al Viroa27ee7a2006-11-08 00:21:21 -080059 __be16 rt_lifetime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 } u_nd_ra;
61
62 } icmp6_dataun;
63
64#define icmp6_identifier icmp6_dataun.u_echo.identifier
65#define icmp6_sequence icmp6_dataun.u_echo.sequence
66#define icmp6_pointer icmp6_dataun.un_data32[0]
67#define icmp6_mtu icmp6_dataun.un_data32[0]
68#define icmp6_unused icmp6_dataun.un_data32[0]
69#define icmp6_maxdelay icmp6_dataun.un_data16[0]
70#define icmp6_router icmp6_dataun.u_nd_advt.router
71#define icmp6_solicited icmp6_dataun.u_nd_advt.solicited
72#define icmp6_override icmp6_dataun.u_nd_advt.override
73#define icmp6_ndiscreserved icmp6_dataun.u_nd_advt.reserved
74#define icmp6_hop_limit icmp6_dataun.u_nd_ra.hop_limit
75#define icmp6_addrconf_managed icmp6_dataun.u_nd_ra.managed
76#define icmp6_addrconf_other icmp6_dataun.u_nd_ra.other
77#define icmp6_rt_lifetime icmp6_dataun.u_nd_ra.rt_lifetime
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -080078#define icmp6_router_pref icmp6_dataun.u_nd_ra.router_pref
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -030081#ifdef __KERNEL__
82#include <linux/skbuff.h>
83
84static inline struct icmp6hdr *icmp6_hdr(const struct sk_buff *skb)
85{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -070086 return (struct icmp6hdr *)skb_transport_header(skb);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -030087}
88#endif
89
YOSHIFUJI Hideakiebacaaa2006-03-20 17:04:53 -080090#define ICMPV6_ROUTER_PREF_LOW 0x3
91#define ICMPV6_ROUTER_PREF_MEDIUM 0x0
92#define ICMPV6_ROUTER_PREF_HIGH 0x1
93#define ICMPV6_ROUTER_PREF_INVALID 0x2
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#define ICMPV6_DEST_UNREACH 1
96#define ICMPV6_PKT_TOOBIG 2
97#define ICMPV6_TIME_EXCEED 3
98#define ICMPV6_PARAMPROB 4
99
100#define ICMPV6_INFOMSG_MASK 0x80
101
102#define ICMPV6_ECHO_REQUEST 128
103#define ICMPV6_ECHO_REPLY 129
104#define ICMPV6_MGM_QUERY 130
105#define ICMPV6_MGM_REPORT 131
106#define ICMPV6_MGM_REDUCTION 132
107
108#define ICMPV6_NI_QUERY 139
109#define ICMPV6_NI_REPLY 140
110
111#define ICMPV6_MLD2_REPORT 143
112
113#define ICMPV6_DHAAD_REQUEST 144
114#define ICMPV6_DHAAD_REPLY 145
115#define ICMPV6_MOBILE_PREFIX_SOL 146
116#define ICMPV6_MOBILE_PREFIX_ADV 147
117
118/*
119 * Codes for Destination Unreachable
120 */
121#define ICMPV6_NOROUTE 0
122#define ICMPV6_ADM_PROHIBITED 1
123#define ICMPV6_NOT_NEIGHBOUR 2
124#define ICMPV6_ADDR_UNREACH 3
125#define ICMPV6_PORT_UNREACH 4
Jiri Bohac8708ea22013-08-30 11:18:45 +0200126#define ICMPV6_POLICY_FAIL 5
127#define ICMPV6_REJECT_ROUTE 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * Codes for Time Exceeded
131 */
132#define ICMPV6_EXC_HOPLIMIT 0
133#define ICMPV6_EXC_FRAGTIME 1
134
135/*
136 * Codes for Parameter Problem
137 */
138#define ICMPV6_HDR_FIELD 0
139#define ICMPV6_UNK_NEXTHDR 1
140#define ICMPV6_UNK_OPTION 2
141
142/*
143 * constants for (set|get)sockopt
144 */
145
146#define ICMPV6_FILTER 1
147
148/*
149 * ICMPV6 filter
150 */
151
152#define ICMPV6_FILTER_BLOCK 1
153#define ICMPV6_FILTER_PASS 2
154#define ICMPV6_FILTER_BLOCKOTHERS 3
155#define ICMPV6_FILTER_PASSONLY 4
156
157struct icmp6_filter {
158 __u32 data[8];
159};
160
161/*
162 * Definitions for MLDv2
163 */
164#define MLD2_MODE_IS_INCLUDE 1
165#define MLD2_MODE_IS_EXCLUDE 2
166#define MLD2_CHANGE_TO_INCLUDE 3
167#define MLD2_CHANGE_TO_EXCLUDE 4
168#define MLD2_ALLOW_NEW_SOURCES 5
169#define MLD2_BLOCK_OLD_SOURCES 6
170
171#define MLD2_ALL_MCR_INIT { { { 0xff,0x02,0,0,0,0,0,0,0,0,0,0,0,0,0,0x16 } } }
172
173#ifdef __KERNEL__
174
175#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177extern void icmpv6_send(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700178 u8 type, u8 code,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000179 __u32 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Denis V. Lunev9b0f9762008-02-29 11:13:15 -0800181extern int icmpv6_init(void);
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700182extern int icmpv6_err_convert(u8 type, u8 code,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int *err);
184extern void icmpv6_cleanup(void);
185extern void icmpv6_param_prob(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700186 u8 code, int pos);
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -0800187
David S. Miller4c9483b2011-03-12 16:22:43 -0500188struct flowi6;
David S. Millerf59d4382008-03-05 20:58:10 -0800189struct in6_addr;
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -0800190extern void icmpv6_flow_init(struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500191 struct flowi6 *fl6,
YOSHIFUJI Hideaki95e41e92007-12-06 15:43:30 -0800192 u8 type,
193 const struct in6_addr *saddr,
194 const struct in6_addr *daddr,
195 int oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#endif
197
198#endif