blob: 798a94599338fb824ee1f7944cf7046f08ac8aab [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _UAPI_LINUX_ICMPV6_H
20#define _UAPI_LINUX_ICMPV6_H
21#include <linux/types.h>
22#include <asm/byteorder.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070023struct icmp6hdr {
Tao Baod7db5942015-01-28 10:07:51 -080024 __u8 icmp6_type;
25 __u8 icmp6_code;
26 __sum16 icmp6_cksum;
Tao Baod7db5942015-01-28 10:07:51 -080027 union {
28 __be32 un_data32[1];
29 __be16 un_data16[2];
30 __u8 un_data8[4];
Tao Baod7db5942015-01-28 10:07:51 -080031 struct icmpv6_echo {
32 __be16 identifier;
33 __be16 sequence;
34 } u_echo;
Tao Baod7db5942015-01-28 10:07:51 -080035 struct icmpv6_nd_advt {
Ben Cheng655a7c02013-10-16 16:09:24 -070036#ifdef __LITTLE_ENDIAN_BITFIELD
Tao Baod7db5942015-01-28 10:07:51 -080037 __u32 reserved : 5, override : 1, solicited : 1, router : 1, reserved2 : 24;
Ben Cheng655a7c02013-10-16 16:09:24 -070038#elif defined(__BIG_ENDIAN_BITFIELD)
Tao Baod7db5942015-01-28 10:07:51 -080039 __u32 router : 1, solicited : 1, override : 1, reserved : 29;
Ben Cheng655a7c02013-10-16 16:09:24 -070040#else
41#error "Please fix <asm/byteorder.h>"
42#endif
Tao Baod7db5942015-01-28 10:07:51 -080043 } u_nd_advt;
44 struct icmpv6_nd_ra {
45 __u8 hop_limit;
Ben Cheng655a7c02013-10-16 16:09:24 -070046#ifdef __LITTLE_ENDIAN_BITFIELD
Tao Baod7db5942015-01-28 10:07:51 -080047 __u8 reserved : 3, router_pref : 2, home_agent : 1, other : 1, managed : 1;
Ben Cheng655a7c02013-10-16 16:09:24 -070048#elif defined(__BIG_ENDIAN_BITFIELD)
Tao Baod7db5942015-01-28 10:07:51 -080049 __u8 managed : 1, other : 1, home_agent : 1, router_pref : 2, reserved : 3;
Ben Cheng655a7c02013-10-16 16:09:24 -070050#else
51#error "Please fix <asm/byteorder.h>"
Ben Cheng655a7c02013-10-16 16:09:24 -070052#endif
Tao Baod7db5942015-01-28 10:07:51 -080053 __be16 rt_lifetime;
54 } u_nd_ra;
Tao Baod7db5942015-01-28 10:07:51 -080055 } icmp6_dataun;
Ben Cheng655a7c02013-10-16 16:09:24 -070056#define icmp6_identifier icmp6_dataun.u_echo.identifier
57#define icmp6_sequence icmp6_dataun.u_echo.sequence
58#define icmp6_pointer icmp6_dataun.un_data32[0]
Tao Baod7db5942015-01-28 10:07:51 -080059#define icmp6_mtu icmp6_dataun.un_data32[0]
Ben Cheng655a7c02013-10-16 16:09:24 -070060#define icmp6_unused icmp6_dataun.un_data32[0]
61#define icmp6_maxdelay icmp6_dataun.un_data16[0]
62#define icmp6_router icmp6_dataun.u_nd_advt.router
Tao Baod7db5942015-01-28 10:07:51 -080063#define icmp6_solicited icmp6_dataun.u_nd_advt.solicited
Ben Cheng655a7c02013-10-16 16:09:24 -070064#define icmp6_override icmp6_dataun.u_nd_advt.override
65#define icmp6_ndiscreserved icmp6_dataun.u_nd_advt.reserved
66#define icmp6_hop_limit icmp6_dataun.u_nd_ra.hop_limit
Tao Baod7db5942015-01-28 10:07:51 -080067#define icmp6_addrconf_managed icmp6_dataun.u_nd_ra.managed
Ben Cheng655a7c02013-10-16 16:09:24 -070068#define icmp6_addrconf_other icmp6_dataun.u_nd_ra.other
69#define icmp6_rt_lifetime icmp6_dataun.u_nd_ra.rt_lifetime
70#define icmp6_router_pref icmp6_dataun.u_nd_ra.router_pref
Tao Baod7db5942015-01-28 10:07:51 -080071};
Ben Cheng655a7c02013-10-16 16:09:24 -070072#define ICMPV6_ROUTER_PREF_LOW 0x3
73#define ICMPV6_ROUTER_PREF_MEDIUM 0x0
74#define ICMPV6_ROUTER_PREF_HIGH 0x1
Tao Baod7db5942015-01-28 10:07:51 -080075#define ICMPV6_ROUTER_PREF_INVALID 0x2
Ben Cheng655a7c02013-10-16 16:09:24 -070076#define ICMPV6_DEST_UNREACH 1
77#define ICMPV6_PKT_TOOBIG 2
78#define ICMPV6_TIME_EXCEED 3
Tao Baod7db5942015-01-28 10:07:51 -080079#define ICMPV6_PARAMPROB 4
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -070080#define ICMPV6_ERRMSG_MAX 127
Ben Cheng655a7c02013-10-16 16:09:24 -070081#define ICMPV6_INFOMSG_MASK 0x80
82#define ICMPV6_ECHO_REQUEST 128
83#define ICMPV6_ECHO_REPLY 129
Tao Baod7db5942015-01-28 10:07:51 -080084#define ICMPV6_MGM_QUERY 130
Ben Cheng655a7c02013-10-16 16:09:24 -070085#define ICMPV6_MGM_REPORT 131
86#define ICMPV6_MGM_REDUCTION 132
87#define ICMPV6_NI_QUERY 139
Tao Baod7db5942015-01-28 10:07:51 -080088#define ICMPV6_NI_REPLY 140
Ben Cheng655a7c02013-10-16 16:09:24 -070089#define ICMPV6_MLD2_REPORT 143
90#define ICMPV6_DHAAD_REQUEST 144
91#define ICMPV6_DHAAD_REPLY 145
Tao Baod7db5942015-01-28 10:07:51 -080092#define ICMPV6_MOBILE_PREFIX_SOL 146
Ben Cheng655a7c02013-10-16 16:09:24 -070093#define ICMPV6_MOBILE_PREFIX_ADV 147
Christopher Ferris24f97eb2019-05-20 12:58:13 -070094#define ICMPV6_MRDISC_ADV 151
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -070095#define ICMPV6_MSG_MAX 255
Ben Cheng655a7c02013-10-16 16:09:24 -070096#define ICMPV6_NOROUTE 0
97#define ICMPV6_ADM_PROHIBITED 1
Tao Baod7db5942015-01-28 10:07:51 -080098#define ICMPV6_NOT_NEIGHBOUR 2
Ben Cheng655a7c02013-10-16 16:09:24 -070099#define ICMPV6_ADDR_UNREACH 3
100#define ICMPV6_PORT_UNREACH 4
Christopher Ferris38062f92014-07-09 15:33:25 -0700101#define ICMPV6_POLICY_FAIL 5
Tao Baod7db5942015-01-28 10:07:51 -0800102#define ICMPV6_REJECT_ROUTE 6
Ben Cheng655a7c02013-10-16 16:09:24 -0700103#define ICMPV6_EXC_HOPLIMIT 0
104#define ICMPV6_EXC_FRAGTIME 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700105#define ICMPV6_HDR_FIELD 0
Tao Baod7db5942015-01-28 10:07:51 -0800106#define ICMPV6_UNK_NEXTHDR 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700107#define ICMPV6_UNK_OPTION 2
108#define ICMPV6_FILTER 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700109#define ICMPV6_FILTER_BLOCK 1
Tao Baod7db5942015-01-28 10:07:51 -0800110#define ICMPV6_FILTER_PASS 2
Ben Cheng655a7c02013-10-16 16:09:24 -0700111#define ICMPV6_FILTER_BLOCKOTHERS 3
112#define ICMPV6_FILTER_PASSONLY 4
Ben Cheng655a7c02013-10-16 16:09:24 -0700113struct icmp6_filter {
Tao Baod7db5942015-01-28 10:07:51 -0800114 __u32 data[8];
Ben Cheng655a7c02013-10-16 16:09:24 -0700115};
116#define MLD2_MODE_IS_INCLUDE 1
Ben Cheng655a7c02013-10-16 16:09:24 -0700117#define MLD2_MODE_IS_EXCLUDE 2
Tao Baod7db5942015-01-28 10:07:51 -0800118#define MLD2_CHANGE_TO_INCLUDE 3
Ben Cheng655a7c02013-10-16 16:09:24 -0700119#define MLD2_CHANGE_TO_EXCLUDE 4
120#define MLD2_ALLOW_NEW_SOURCES 5
Ben Cheng655a7c02013-10-16 16:09:24 -0700121#define MLD2_BLOCK_OLD_SOURCES 6
Tao Baod7db5942015-01-28 10:07:51 -0800122#define MLD2_ALL_MCR_INIT { { { 0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x16 } } }
Ben Cheng655a7c02013-10-16 16:09:24 -0700123#endif