xref: /openbmc/linux/include/uapi/linux/rtnetlink.h (revision f460019b)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _UAPI__LINUX_RTNETLINK_H
3607ca46eSDavid Howells #define _UAPI__LINUX_RTNETLINK_H
4607ca46eSDavid Howells 
5607ca46eSDavid Howells #include <linux/types.h>
6607ca46eSDavid Howells #include <linux/netlink.h>
7607ca46eSDavid Howells #include <linux/if_link.h>
8607ca46eSDavid Howells #include <linux/if_addr.h>
9607ca46eSDavid Howells #include <linux/neighbour.h>
10607ca46eSDavid Howells 
11607ca46eSDavid Howells /* rtnetlink families. Values up to 127 are reserved for real address
12607ca46eSDavid Howells  * families, values above 128 may be used arbitrarily.
13607ca46eSDavid Howells  */
14607ca46eSDavid Howells #define RTNL_FAMILY_IPMR		128
15607ca46eSDavid Howells #define RTNL_FAMILY_IP6MR		129
16607ca46eSDavid Howells #define RTNL_FAMILY_MAX			129
17607ca46eSDavid Howells 
18607ca46eSDavid Howells /****
19607ca46eSDavid Howells  *		Routing/neighbour discovery messages.
20607ca46eSDavid Howells  ****/
21607ca46eSDavid Howells 
22607ca46eSDavid Howells /* Types of messages */
23607ca46eSDavid Howells 
24607ca46eSDavid Howells enum {
25607ca46eSDavid Howells 	RTM_BASE	= 16,
26607ca46eSDavid Howells #define RTM_BASE	RTM_BASE
27607ca46eSDavid Howells 
28607ca46eSDavid Howells 	RTM_NEWLINK	= 16,
29607ca46eSDavid Howells #define RTM_NEWLINK	RTM_NEWLINK
30607ca46eSDavid Howells 	RTM_DELLINK,
31607ca46eSDavid Howells #define RTM_DELLINK	RTM_DELLINK
32607ca46eSDavid Howells 	RTM_GETLINK,
33607ca46eSDavid Howells #define RTM_GETLINK	RTM_GETLINK
34607ca46eSDavid Howells 	RTM_SETLINK,
35607ca46eSDavid Howells #define RTM_SETLINK	RTM_SETLINK
36607ca46eSDavid Howells 
37607ca46eSDavid Howells 	RTM_NEWADDR	= 20,
38607ca46eSDavid Howells #define RTM_NEWADDR	RTM_NEWADDR
39607ca46eSDavid Howells 	RTM_DELADDR,
40607ca46eSDavid Howells #define RTM_DELADDR	RTM_DELADDR
41607ca46eSDavid Howells 	RTM_GETADDR,
42607ca46eSDavid Howells #define RTM_GETADDR	RTM_GETADDR
43607ca46eSDavid Howells 
44607ca46eSDavid Howells 	RTM_NEWROUTE	= 24,
45607ca46eSDavid Howells #define RTM_NEWROUTE	RTM_NEWROUTE
46607ca46eSDavid Howells 	RTM_DELROUTE,
47607ca46eSDavid Howells #define RTM_DELROUTE	RTM_DELROUTE
48607ca46eSDavid Howells 	RTM_GETROUTE,
49607ca46eSDavid Howells #define RTM_GETROUTE	RTM_GETROUTE
50607ca46eSDavid Howells 
51607ca46eSDavid Howells 	RTM_NEWNEIGH	= 28,
52607ca46eSDavid Howells #define RTM_NEWNEIGH	RTM_NEWNEIGH
53607ca46eSDavid Howells 	RTM_DELNEIGH,
54607ca46eSDavid Howells #define RTM_DELNEIGH	RTM_DELNEIGH
55607ca46eSDavid Howells 	RTM_GETNEIGH,
56607ca46eSDavid Howells #define RTM_GETNEIGH	RTM_GETNEIGH
57607ca46eSDavid Howells 
58607ca46eSDavid Howells 	RTM_NEWRULE	= 32,
59607ca46eSDavid Howells #define RTM_NEWRULE	RTM_NEWRULE
60607ca46eSDavid Howells 	RTM_DELRULE,
61607ca46eSDavid Howells #define RTM_DELRULE	RTM_DELRULE
62607ca46eSDavid Howells 	RTM_GETRULE,
63607ca46eSDavid Howells #define RTM_GETRULE	RTM_GETRULE
64607ca46eSDavid Howells 
65607ca46eSDavid Howells 	RTM_NEWQDISC	= 36,
66607ca46eSDavid Howells #define RTM_NEWQDISC	RTM_NEWQDISC
67607ca46eSDavid Howells 	RTM_DELQDISC,
68607ca46eSDavid Howells #define RTM_DELQDISC	RTM_DELQDISC
69607ca46eSDavid Howells 	RTM_GETQDISC,
70607ca46eSDavid Howells #define RTM_GETQDISC	RTM_GETQDISC
71607ca46eSDavid Howells 
72607ca46eSDavid Howells 	RTM_NEWTCLASS	= 40,
73607ca46eSDavid Howells #define RTM_NEWTCLASS	RTM_NEWTCLASS
74607ca46eSDavid Howells 	RTM_DELTCLASS,
75607ca46eSDavid Howells #define RTM_DELTCLASS	RTM_DELTCLASS
76607ca46eSDavid Howells 	RTM_GETTCLASS,
77607ca46eSDavid Howells #define RTM_GETTCLASS	RTM_GETTCLASS
78607ca46eSDavid Howells 
79607ca46eSDavid Howells 	RTM_NEWTFILTER	= 44,
80607ca46eSDavid Howells #define RTM_NEWTFILTER	RTM_NEWTFILTER
81607ca46eSDavid Howells 	RTM_DELTFILTER,
82607ca46eSDavid Howells #define RTM_DELTFILTER	RTM_DELTFILTER
83607ca46eSDavid Howells 	RTM_GETTFILTER,
84607ca46eSDavid Howells #define RTM_GETTFILTER	RTM_GETTFILTER
85607ca46eSDavid Howells 
86607ca46eSDavid Howells 	RTM_NEWACTION	= 48,
87607ca46eSDavid Howells #define RTM_NEWACTION   RTM_NEWACTION
88607ca46eSDavid Howells 	RTM_DELACTION,
89607ca46eSDavid Howells #define RTM_DELACTION   RTM_DELACTION
90607ca46eSDavid Howells 	RTM_GETACTION,
91607ca46eSDavid Howells #define RTM_GETACTION   RTM_GETACTION
92607ca46eSDavid Howells 
93607ca46eSDavid Howells 	RTM_NEWPREFIX	= 52,
94607ca46eSDavid Howells #define RTM_NEWPREFIX	RTM_NEWPREFIX
95607ca46eSDavid Howells 
96607ca46eSDavid Howells 	RTM_GETMULTICAST = 58,
97607ca46eSDavid Howells #define RTM_GETMULTICAST RTM_GETMULTICAST
98607ca46eSDavid Howells 
99607ca46eSDavid Howells 	RTM_GETANYCAST	= 62,
100607ca46eSDavid Howells #define RTM_GETANYCAST	RTM_GETANYCAST
101607ca46eSDavid Howells 
102607ca46eSDavid Howells 	RTM_NEWNEIGHTBL	= 64,
103607ca46eSDavid Howells #define RTM_NEWNEIGHTBL	RTM_NEWNEIGHTBL
104607ca46eSDavid Howells 	RTM_GETNEIGHTBL	= 66,
105607ca46eSDavid Howells #define RTM_GETNEIGHTBL	RTM_GETNEIGHTBL
106607ca46eSDavid Howells 	RTM_SETNEIGHTBL,
107607ca46eSDavid Howells #define RTM_SETNEIGHTBL	RTM_SETNEIGHTBL
108607ca46eSDavid Howells 
109607ca46eSDavid Howells 	RTM_NEWNDUSEROPT = 68,
110607ca46eSDavid Howells #define RTM_NEWNDUSEROPT RTM_NEWNDUSEROPT
111607ca46eSDavid Howells 
112607ca46eSDavid Howells 	RTM_NEWADDRLABEL = 72,
113607ca46eSDavid Howells #define RTM_NEWADDRLABEL RTM_NEWADDRLABEL
114607ca46eSDavid Howells 	RTM_DELADDRLABEL,
115607ca46eSDavid Howells #define RTM_DELADDRLABEL RTM_DELADDRLABEL
116607ca46eSDavid Howells 	RTM_GETADDRLABEL,
117607ca46eSDavid Howells #define RTM_GETADDRLABEL RTM_GETADDRLABEL
118607ca46eSDavid Howells 
119607ca46eSDavid Howells 	RTM_GETDCB = 78,
120607ca46eSDavid Howells #define RTM_GETDCB RTM_GETDCB
121607ca46eSDavid Howells 	RTM_SETDCB,
122607ca46eSDavid Howells #define RTM_SETDCB RTM_SETDCB
123607ca46eSDavid Howells 
124d900082bSNicolas Dichtel 	RTM_NEWNETCONF = 80,
125d900082bSNicolas Dichtel #define RTM_NEWNETCONF RTM_NEWNETCONF
126983701ebSDavid Ahern 	RTM_DELNETCONF,
127983701ebSDavid Ahern #define RTM_DELNETCONF RTM_DELNETCONF
128d900082bSNicolas Dichtel 	RTM_GETNETCONF = 82,
129d900082bSNicolas Dichtel #define RTM_GETNETCONF RTM_GETNETCONF
130d900082bSNicolas Dichtel 
13137a393bcSCong Wang 	RTM_NEWMDB = 84,
13237a393bcSCong Wang #define RTM_NEWMDB RTM_NEWMDB
13337a393bcSCong Wang 	RTM_DELMDB = 85,
13437a393bcSCong Wang #define RTM_DELMDB RTM_DELMDB
135ee07c6e7SCong Wang 	RTM_GETMDB = 86,
136ee07c6e7SCong Wang #define RTM_GETMDB RTM_GETMDB
137ee07c6e7SCong Wang 
1380c7aecd4SNicolas Dichtel 	RTM_NEWNSID = 88,
1390c7aecd4SNicolas Dichtel #define RTM_NEWNSID RTM_NEWNSID
1409a963454SNicolas Dichtel 	RTM_DELNSID = 89,
1419a963454SNicolas Dichtel #define RTM_DELNSID RTM_DELNSID
1420c7aecd4SNicolas Dichtel 	RTM_GETNSID = 90,
1430c7aecd4SNicolas Dichtel #define RTM_GETNSID RTM_GETNSID
1440c7aecd4SNicolas Dichtel 
14510c9ead9SRoopa Prabhu 	RTM_NEWSTATS = 92,
14610c9ead9SRoopa Prabhu #define RTM_NEWSTATS RTM_NEWSTATS
14710c9ead9SRoopa Prabhu 	RTM_GETSTATS = 94,
14810c9ead9SRoopa Prabhu #define RTM_GETSTATS RTM_GETSTATS
14910c9ead9SRoopa Prabhu 
15094df30a6SJulien Gomes 	RTM_NEWCACHEREPORT = 96,
15194df30a6SJulien Gomes #define RTM_NEWCACHEREPORT RTM_NEWCACHEREPORT
15294df30a6SJulien Gomes 
15332a4f5ecSJiri Pirko 	RTM_NEWCHAIN = 100,
15432a4f5ecSJiri Pirko #define RTM_NEWCHAIN RTM_NEWCHAIN
15532a4f5ecSJiri Pirko 	RTM_DELCHAIN,
15632a4f5ecSJiri Pirko #define RTM_DELCHAIN RTM_DELCHAIN
15732a4f5ecSJiri Pirko 	RTM_GETCHAIN,
15832a4f5ecSJiri Pirko #define RTM_GETCHAIN RTM_GETCHAIN
15932a4f5ecSJiri Pirko 
16065ee00a9SDavid Ahern 	RTM_NEWNEXTHOP = 104,
16165ee00a9SDavid Ahern #define RTM_NEWNEXTHOP	RTM_NEWNEXTHOP
16265ee00a9SDavid Ahern 	RTM_DELNEXTHOP,
16365ee00a9SDavid Ahern #define RTM_DELNEXTHOP	RTM_DELNEXTHOP
16465ee00a9SDavid Ahern 	RTM_GETNEXTHOP,
16565ee00a9SDavid Ahern #define RTM_GETNEXTHOP	RTM_GETNEXTHOP
16665ee00a9SDavid Ahern 
16736fbf1e5SJiri Pirko 	RTM_NEWLINKPROP = 108,
16836fbf1e5SJiri Pirko #define RTM_NEWLINKPROP	RTM_NEWLINKPROP
16936fbf1e5SJiri Pirko 	RTM_DELLINKPROP,
17036fbf1e5SJiri Pirko #define RTM_DELLINKPROP	RTM_DELLINKPROP
17136fbf1e5SJiri Pirko 	RTM_GETLINKPROP,
17236fbf1e5SJiri Pirko #define RTM_GETLINKPROP	RTM_GETLINKPROP
17336fbf1e5SJiri Pirko 
1748dcea187SNikolay Aleksandrov 	RTM_NEWVLAN = 112,
1758dcea187SNikolay Aleksandrov #define RTM_NEWNVLAN	RTM_NEWVLAN
1768dcea187SNikolay Aleksandrov 	RTM_DELVLAN,
1778dcea187SNikolay Aleksandrov #define RTM_DELVLAN	RTM_DELVLAN
1788dcea187SNikolay Aleksandrov 	RTM_GETVLAN,
1798dcea187SNikolay Aleksandrov #define RTM_GETVLAN	RTM_GETVLAN
1808dcea187SNikolay Aleksandrov 
181607ca46eSDavid Howells 	__RTM_MAX,
182607ca46eSDavid Howells #define RTM_MAX		(((__RTM_MAX + 3) & ~3) - 1)
183607ca46eSDavid Howells };
184607ca46eSDavid Howells 
185607ca46eSDavid Howells #define RTM_NR_MSGTYPES	(RTM_MAX + 1 - RTM_BASE)
186607ca46eSDavid Howells #define RTM_NR_FAMILIES	(RTM_NR_MSGTYPES >> 2)
187607ca46eSDavid Howells #define RTM_FAM(cmd)	(((cmd) - RTM_BASE) >> 2)
188607ca46eSDavid Howells 
189607ca46eSDavid Howells /*
190607ca46eSDavid Howells    Generic structure for encapsulation of optional route information.
191607ca46eSDavid Howells    It is reminiscent of sockaddr, but with sa_family replaced
192607ca46eSDavid Howells    with attribute type.
193607ca46eSDavid Howells  */
194607ca46eSDavid Howells 
195607ca46eSDavid Howells struct rtattr {
196607ca46eSDavid Howells 	unsigned short	rta_len;
197607ca46eSDavid Howells 	unsigned short	rta_type;
198607ca46eSDavid Howells };
199607ca46eSDavid Howells 
200607ca46eSDavid Howells /* Macros to handle rtattributes */
201607ca46eSDavid Howells 
202e8444637SArad, Ronen #define RTA_ALIGNTO	4U
203607ca46eSDavid Howells #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
204607ca46eSDavid Howells #define RTA_OK(rta,len) ((len) >= (int)sizeof(struct rtattr) && \
205607ca46eSDavid Howells 			 (rta)->rta_len >= sizeof(struct rtattr) && \
206607ca46eSDavid Howells 			 (rta)->rta_len <= (len))
207607ca46eSDavid Howells #define RTA_NEXT(rta,attrlen)	((attrlen) -= RTA_ALIGN((rta)->rta_len), \
208607ca46eSDavid Howells 				 (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len)))
209607ca46eSDavid Howells #define RTA_LENGTH(len)	(RTA_ALIGN(sizeof(struct rtattr)) + (len))
210607ca46eSDavid Howells #define RTA_SPACE(len)	RTA_ALIGN(RTA_LENGTH(len))
211607ca46eSDavid Howells #define RTA_DATA(rta)   ((void*)(((char*)(rta)) + RTA_LENGTH(0)))
212607ca46eSDavid Howells #define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0))
213607ca46eSDavid Howells 
214607ca46eSDavid Howells 
215607ca46eSDavid Howells 
216607ca46eSDavid Howells 
217607ca46eSDavid Howells /******************************************************************************
218607ca46eSDavid Howells  *		Definitions used in routing table administration.
219607ca46eSDavid Howells  ****/
220607ca46eSDavid Howells 
221607ca46eSDavid Howells struct rtmsg {
222607ca46eSDavid Howells 	unsigned char		rtm_family;
223607ca46eSDavid Howells 	unsigned char		rtm_dst_len;
224607ca46eSDavid Howells 	unsigned char		rtm_src_len;
225607ca46eSDavid Howells 	unsigned char		rtm_tos;
226607ca46eSDavid Howells 
227607ca46eSDavid Howells 	unsigned char		rtm_table;	/* Routing table id */
228607ca46eSDavid Howells 	unsigned char		rtm_protocol;	/* Routing protocol; see below	*/
229607ca46eSDavid Howells 	unsigned char		rtm_scope;	/* See below */
230607ca46eSDavid Howells 	unsigned char		rtm_type;	/* See below	*/
231607ca46eSDavid Howells 
232607ca46eSDavid Howells 	unsigned		rtm_flags;
233607ca46eSDavid Howells };
234607ca46eSDavid Howells 
235607ca46eSDavid Howells /* rtm_type */
236607ca46eSDavid Howells 
237607ca46eSDavid Howells enum {
238607ca46eSDavid Howells 	RTN_UNSPEC,
239607ca46eSDavid Howells 	RTN_UNICAST,		/* Gateway or direct route	*/
240607ca46eSDavid Howells 	RTN_LOCAL,		/* Accept locally		*/
241607ca46eSDavid Howells 	RTN_BROADCAST,		/* Accept locally as broadcast,
242607ca46eSDavid Howells 				   send as broadcast */
243607ca46eSDavid Howells 	RTN_ANYCAST,		/* Accept locally as broadcast,
244607ca46eSDavid Howells 				   but send as unicast */
245607ca46eSDavid Howells 	RTN_MULTICAST,		/* Multicast route		*/
246607ca46eSDavid Howells 	RTN_BLACKHOLE,		/* Drop				*/
247607ca46eSDavid Howells 	RTN_UNREACHABLE,	/* Destination is unreachable   */
248607ca46eSDavid Howells 	RTN_PROHIBIT,		/* Administratively prohibited	*/
249607ca46eSDavid Howells 	RTN_THROW,		/* Not in this table		*/
250607ca46eSDavid Howells 	RTN_NAT,		/* Translate this address	*/
251607ca46eSDavid Howells 	RTN_XRESOLVE,		/* Use external resolver	*/
252607ca46eSDavid Howells 	__RTN_MAX
253607ca46eSDavid Howells };
254607ca46eSDavid Howells 
255607ca46eSDavid Howells #define RTN_MAX (__RTN_MAX - 1)
256607ca46eSDavid Howells 
257607ca46eSDavid Howells 
258607ca46eSDavid Howells /* rtm_protocol */
259607ca46eSDavid Howells 
260607ca46eSDavid Howells #define RTPROT_UNSPEC		0
261607ca46eSDavid Howells #define RTPROT_REDIRECT		1	/* Route installed by ICMP redirects;
262607ca46eSDavid Howells 					   not used by current IPv4 */
263607ca46eSDavid Howells #define RTPROT_KERNEL		2	/* Route installed by kernel		*/
264607ca46eSDavid Howells #define RTPROT_BOOT		3	/* Route installed during boot		*/
265607ca46eSDavid Howells #define RTPROT_STATIC		4	/* Route installed by administrator	*/
266607ca46eSDavid Howells 
267607ca46eSDavid Howells /* Values of protocol >= RTPROT_STATIC are not interpreted by kernel;
268607ca46eSDavid Howells    they are just passed from user and back as is.
269607ca46eSDavid Howells    It will be used by hypothetical multiple routing daemons.
270607ca46eSDavid Howells    Note that protocol values should be standardized in order to
271607ca46eSDavid Howells    avoid conflicts.
272607ca46eSDavid Howells  */
273607ca46eSDavid Howells 
274607ca46eSDavid Howells #define RTPROT_GATED		8	/* Apparently, GateD */
275607ca46eSDavid Howells #define RTPROT_RA		9	/* RDISC/ND router advertisements */
276607ca46eSDavid Howells #define RTPROT_MRT		10	/* Merit MRT */
277607ca46eSDavid Howells #define RTPROT_ZEBRA		11	/* Zebra */
278607ca46eSDavid Howells #define RTPROT_BIRD		12	/* BIRD */
279607ca46eSDavid Howells #define RTPROT_DNROUTED		13	/* DECnet routing daemon */
280607ca46eSDavid Howells #define RTPROT_XORP		14	/* XORP */
281607ca46eSDavid Howells #define RTPROT_NTK		15	/* Netsukuku */
282607ca46eSDavid Howells #define RTPROT_DHCP		16	/* DHCP client */
2839a68ac72SNicolas Dichtel #define RTPROT_MROUTED		17	/* Multicast daemon */
28479a28dddSAlexandre Cassen #define RTPROT_KEEPALIVED	18	/* Keepalived daemon */
285be955b29SDave Taht #define RTPROT_BABEL		42	/* Babel daemon */
28635aada99SDonald Sharp #define RTPROT_BGP		186	/* BGP Routes */
28735aada99SDonald Sharp #define RTPROT_ISIS		187	/* ISIS Routes */
28835aada99SDonald Sharp #define RTPROT_OSPF		188	/* OSPF Routes */
28935aada99SDonald Sharp #define RTPROT_RIP		189	/* RIP Routes */
29035aada99SDonald Sharp #define RTPROT_EIGRP		192	/* EIGRP Routes */
291607ca46eSDavid Howells 
292607ca46eSDavid Howells /* rtm_scope
293607ca46eSDavid Howells 
294607ca46eSDavid Howells    Really it is not scope, but sort of distance to the destination.
295607ca46eSDavid Howells    NOWHERE are reserved for not existing destinations, HOST is our
296607ca46eSDavid Howells    local addresses, LINK are destinations, located on directly attached
297607ca46eSDavid Howells    link and UNIVERSE is everywhere in the Universe.
298607ca46eSDavid Howells 
299607ca46eSDavid Howells    Intermediate values are also possible f.e. interior routes
300607ca46eSDavid Howells    could be assigned a value between UNIVERSE and LINK.
301607ca46eSDavid Howells */
302607ca46eSDavid Howells 
303607ca46eSDavid Howells enum rt_scope_t {
304607ca46eSDavid Howells 	RT_SCOPE_UNIVERSE=0,
305607ca46eSDavid Howells /* User defined values  */
306607ca46eSDavid Howells 	RT_SCOPE_SITE=200,
307607ca46eSDavid Howells 	RT_SCOPE_LINK=253,
308607ca46eSDavid Howells 	RT_SCOPE_HOST=254,
309607ca46eSDavid Howells 	RT_SCOPE_NOWHERE=255
310607ca46eSDavid Howells };
311607ca46eSDavid Howells 
312607ca46eSDavid Howells /* rtm_flags */
313607ca46eSDavid Howells 
314607ca46eSDavid Howells #define RTM_F_NOTIFY		0x100	/* Notify user of route change	*/
315607ca46eSDavid Howells #define RTM_F_CLONED		0x200	/* This route is cloned		*/
316607ca46eSDavid Howells #define RTM_F_EQUALIZE		0x400	/* Multipath equalizer: NI	*/
317607ca46eSDavid Howells #define RTM_F_PREFIX		0x800	/* Prefix addresses		*/
318c36ba660SDavid Ahern #define RTM_F_LOOKUP_TABLE	0x1000	/* set rtm_table to FIB lookup result */
3190be1b305SRoopa Prabhu #define RTM_F_FIB_MATCH	        0x2000	/* return full fib lookup match */
32090b93f1bSIdo Schimmel #define RTM_F_OFFLOAD		0x4000	/* route is offloaded */
32190b93f1bSIdo Schimmel #define RTM_F_TRAP		0x8000	/* route is trapping packets */
322607ca46eSDavid Howells 
323607ca46eSDavid Howells /* Reserved table identifiers */
324607ca46eSDavid Howells 
325607ca46eSDavid Howells enum rt_class_t {
326607ca46eSDavid Howells 	RT_TABLE_UNSPEC=0,
327607ca46eSDavid Howells /* User defined values */
328607ca46eSDavid Howells 	RT_TABLE_COMPAT=252,
329607ca46eSDavid Howells 	RT_TABLE_DEFAULT=253,
330607ca46eSDavid Howells 	RT_TABLE_MAIN=254,
331607ca46eSDavid Howells 	RT_TABLE_LOCAL=255,
332607ca46eSDavid Howells 	RT_TABLE_MAX=0xFFFFFFFF
333607ca46eSDavid Howells };
334607ca46eSDavid Howells 
335607ca46eSDavid Howells 
336607ca46eSDavid Howells /* Routing message attributes */
337607ca46eSDavid Howells 
338607ca46eSDavid Howells enum rtattr_type_t {
339607ca46eSDavid Howells 	RTA_UNSPEC,
340607ca46eSDavid Howells 	RTA_DST,
341607ca46eSDavid Howells 	RTA_SRC,
342607ca46eSDavid Howells 	RTA_IIF,
343607ca46eSDavid Howells 	RTA_OIF,
344607ca46eSDavid Howells 	RTA_GATEWAY,
345607ca46eSDavid Howells 	RTA_PRIORITY,
346607ca46eSDavid Howells 	RTA_PREFSRC,
347607ca46eSDavid Howells 	RTA_METRICS,
348607ca46eSDavid Howells 	RTA_MULTIPATH,
349607ca46eSDavid Howells 	RTA_PROTOINFO, /* no longer used */
350607ca46eSDavid Howells 	RTA_FLOW,
351607ca46eSDavid Howells 	RTA_CACHEINFO,
352607ca46eSDavid Howells 	RTA_SESSION, /* no longer used */
353607ca46eSDavid Howells 	RTA_MP_ALGO, /* no longer used */
354607ca46eSDavid Howells 	RTA_TABLE,
355607ca46eSDavid Howells 	RTA_MARK,
356adfa85e4SNicolas Dichtel 	RTA_MFC_STATS,
35703c05665SEric W. Biederman 	RTA_VIA,
35803c05665SEric W. Biederman 	RTA_NEWDST,
359c78ba6d6SLubomir Rintel 	RTA_PREF,
360a0d9a860SRoopa Prabhu 	RTA_ENCAP_TYPE,
361a0d9a860SRoopa Prabhu 	RTA_ENCAP,
36232bc201eSXin Long 	RTA_EXPIRES,
363a9a08042SNicolas Dichtel 	RTA_PAD,
364622ec2c9SLorenzo Colitti 	RTA_UID,
3655b441ac8SRobert Shearman 	RTA_TTL_PROPAGATE,
366404eb77eSRoopa Prabhu 	RTA_IP_PROTO,
367404eb77eSRoopa Prabhu 	RTA_SPORT,
368404eb77eSRoopa Prabhu 	RTA_DPORT,
36965ee00a9SDavid Ahern 	RTA_NH_ID,
370607ca46eSDavid Howells 	__RTA_MAX
371607ca46eSDavid Howells };
372607ca46eSDavid Howells 
373607ca46eSDavid Howells #define RTA_MAX (__RTA_MAX - 1)
374607ca46eSDavid Howells 
375607ca46eSDavid Howells #define RTM_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
376607ca46eSDavid Howells #define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))
377607ca46eSDavid Howells 
378607ca46eSDavid Howells /* RTM_MULTIPATH --- array of struct rtnexthop.
379607ca46eSDavid Howells  *
380607ca46eSDavid Howells  * "struct rtnexthop" describes all necessary nexthop information,
381607ca46eSDavid Howells  * i.e. parameters of path to a destination via this nexthop.
382607ca46eSDavid Howells  *
383607ca46eSDavid Howells  * At the moment it is impossible to set different prefsrc, mtu, window
384607ca46eSDavid Howells  * and rtt for different paths from multipath.
385607ca46eSDavid Howells  */
386607ca46eSDavid Howells 
387607ca46eSDavid Howells struct rtnexthop {
388607ca46eSDavid Howells 	unsigned short		rtnh_len;
389607ca46eSDavid Howells 	unsigned char		rtnh_flags;
390607ca46eSDavid Howells 	unsigned char		rtnh_hops;
391607ca46eSDavid Howells 	int			rtnh_ifindex;
392607ca46eSDavid Howells };
393607ca46eSDavid Howells 
394607ca46eSDavid Howells /* rtnh_flags */
395607ca46eSDavid Howells 
396607ca46eSDavid Howells #define RTNH_F_DEAD		1	/* Nexthop is dead (used by multipath)	*/
397607ca46eSDavid Howells #define RTNH_F_PERVASIVE	2	/* Do recursive gateway lookup	*/
398607ca46eSDavid Howells #define RTNH_F_ONLINK		4	/* Gateway is forced on link	*/
399968a83f8SIdo Schimmel #define RTNH_F_OFFLOAD		8	/* Nexthop is offloaded */
4008a3d0316SAndy Gospodarek #define RTNH_F_LINKDOWN		16	/* carrier-down on nexthop */
4011708ebc9SNikolay Aleksandrov #define RTNH_F_UNRESOLVED	32	/* The entry is unresolved (ipmr) */
402968a83f8SIdo Schimmel #define RTNH_F_TRAP		64	/* Nexthop is trapping packets */
4038a3d0316SAndy Gospodarek 
404968a83f8SIdo Schimmel #define RTNH_COMPARE_MASK	(RTNH_F_DEAD | RTNH_F_LINKDOWN | \
405968a83f8SIdo Schimmel 				 RTNH_F_OFFLOAD | RTNH_F_TRAP)
406607ca46eSDavid Howells 
407607ca46eSDavid Howells /* Macros to handle hexthops */
408607ca46eSDavid Howells 
409607ca46eSDavid Howells #define RTNH_ALIGNTO	4
410607ca46eSDavid Howells #define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) )
411607ca46eSDavid Howells #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && \
412607ca46eSDavid Howells 			   ((int)(rtnh)->rtnh_len) <= (len))
413607ca46eSDavid Howells #define RTNH_NEXT(rtnh)	((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len)))
414607ca46eSDavid Howells #define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len))
415607ca46eSDavid Howells #define RTNH_SPACE(len)	RTNH_ALIGN(RTNH_LENGTH(len))
416607ca46eSDavid Howells #define RTNH_DATA(rtnh)   ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0)))
417607ca46eSDavid Howells 
41803c05665SEric W. Biederman /* RTA_VIA */
41903c05665SEric W. Biederman struct rtvia {
42003c05665SEric W. Biederman 	__kernel_sa_family_t	rtvia_family;
42103c05665SEric W. Biederman 	__u8			rtvia_addr[0];
42203c05665SEric W. Biederman };
42303c05665SEric W. Biederman 
424607ca46eSDavid Howells /* RTM_CACHEINFO */
425607ca46eSDavid Howells 
426607ca46eSDavid Howells struct rta_cacheinfo {
427607ca46eSDavid Howells 	__u32	rta_clntref;
428607ca46eSDavid Howells 	__u32	rta_lastuse;
429607ca46eSDavid Howells 	__s32	rta_expires;
430607ca46eSDavid Howells 	__u32	rta_error;
431607ca46eSDavid Howells 	__u32	rta_used;
432607ca46eSDavid Howells 
433607ca46eSDavid Howells #define RTNETLINK_HAVE_PEERINFO 1
434607ca46eSDavid Howells 	__u32	rta_id;
435607ca46eSDavid Howells 	__u32	rta_ts;
436607ca46eSDavid Howells 	__u32	rta_tsage;
437607ca46eSDavid Howells };
438607ca46eSDavid Howells 
439607ca46eSDavid Howells /* RTM_METRICS --- array of struct rtattr with types of RTAX_* */
440607ca46eSDavid Howells 
441607ca46eSDavid Howells enum {
442607ca46eSDavid Howells 	RTAX_UNSPEC,
443607ca46eSDavid Howells #define RTAX_UNSPEC RTAX_UNSPEC
444607ca46eSDavid Howells 	RTAX_LOCK,
445607ca46eSDavid Howells #define RTAX_LOCK RTAX_LOCK
446607ca46eSDavid Howells 	RTAX_MTU,
447607ca46eSDavid Howells #define RTAX_MTU RTAX_MTU
448607ca46eSDavid Howells 	RTAX_WINDOW,
449607ca46eSDavid Howells #define RTAX_WINDOW RTAX_WINDOW
450607ca46eSDavid Howells 	RTAX_RTT,
451607ca46eSDavid Howells #define RTAX_RTT RTAX_RTT
452607ca46eSDavid Howells 	RTAX_RTTVAR,
453607ca46eSDavid Howells #define RTAX_RTTVAR RTAX_RTTVAR
454607ca46eSDavid Howells 	RTAX_SSTHRESH,
455607ca46eSDavid Howells #define RTAX_SSTHRESH RTAX_SSTHRESH
456607ca46eSDavid Howells 	RTAX_CWND,
457607ca46eSDavid Howells #define RTAX_CWND RTAX_CWND
458607ca46eSDavid Howells 	RTAX_ADVMSS,
459607ca46eSDavid Howells #define RTAX_ADVMSS RTAX_ADVMSS
460607ca46eSDavid Howells 	RTAX_REORDERING,
461607ca46eSDavid Howells #define RTAX_REORDERING RTAX_REORDERING
462607ca46eSDavid Howells 	RTAX_HOPLIMIT,
463607ca46eSDavid Howells #define RTAX_HOPLIMIT RTAX_HOPLIMIT
464607ca46eSDavid Howells 	RTAX_INITCWND,
465607ca46eSDavid Howells #define RTAX_INITCWND RTAX_INITCWND
466607ca46eSDavid Howells 	RTAX_FEATURES,
467607ca46eSDavid Howells #define RTAX_FEATURES RTAX_FEATURES
468607ca46eSDavid Howells 	RTAX_RTO_MIN,
469607ca46eSDavid Howells #define RTAX_RTO_MIN RTAX_RTO_MIN
470607ca46eSDavid Howells 	RTAX_INITRWND,
471607ca46eSDavid Howells #define RTAX_INITRWND RTAX_INITRWND
472bcefe17cSCong Wang 	RTAX_QUICKACK,
473bcefe17cSCong Wang #define RTAX_QUICKACK RTAX_QUICKACK
474ea697639SDaniel Borkmann 	RTAX_CC_ALGO,
475ea697639SDaniel Borkmann #define RTAX_CC_ALGO RTAX_CC_ALGO
47671c02379SChristoph Paasch 	RTAX_FASTOPEN_NO_COOKIE,
47771c02379SChristoph Paasch #define RTAX_FASTOPEN_NO_COOKIE RTAX_FASTOPEN_NO_COOKIE
478607ca46eSDavid Howells 	__RTAX_MAX
479607ca46eSDavid Howells };
480607ca46eSDavid Howells 
481607ca46eSDavid Howells #define RTAX_MAX (__RTAX_MAX - 1)
482607ca46eSDavid Howells 
483b8d3e416SDaniel Borkmann #define RTAX_FEATURE_ECN	(1 << 0)
484b8d3e416SDaniel Borkmann #define RTAX_FEATURE_SACK	(1 << 1)
485b8d3e416SDaniel Borkmann #define RTAX_FEATURE_TIMESTAMP	(1 << 2)
486b8d3e416SDaniel Borkmann #define RTAX_FEATURE_ALLFRAG	(1 << 3)
487b8d3e416SDaniel Borkmann 
488b8d3e416SDaniel Borkmann #define RTAX_FEATURE_MASK	(RTAX_FEATURE_ECN | RTAX_FEATURE_SACK | \
489b8d3e416SDaniel Borkmann 				 RTAX_FEATURE_TIMESTAMP | RTAX_FEATURE_ALLFRAG)
490607ca46eSDavid Howells 
491607ca46eSDavid Howells struct rta_session {
492607ca46eSDavid Howells 	__u8	proto;
493607ca46eSDavid Howells 	__u8	pad1;
494607ca46eSDavid Howells 	__u16	pad2;
495607ca46eSDavid Howells 
496607ca46eSDavid Howells 	union {
497607ca46eSDavid Howells 		struct {
498607ca46eSDavid Howells 			__u16	sport;
499607ca46eSDavid Howells 			__u16	dport;
500607ca46eSDavid Howells 		} ports;
501607ca46eSDavid Howells 
502607ca46eSDavid Howells 		struct {
503607ca46eSDavid Howells 			__u8	type;
504607ca46eSDavid Howells 			__u8	code;
505607ca46eSDavid Howells 			__u16	ident;
506607ca46eSDavid Howells 		} icmpt;
507607ca46eSDavid Howells 
508607ca46eSDavid Howells 		__u32		spi;
509607ca46eSDavid Howells 	} u;
510607ca46eSDavid Howells };
511607ca46eSDavid Howells 
512adfa85e4SNicolas Dichtel struct rta_mfc_stats {
513adfa85e4SNicolas Dichtel 	__u64	mfcs_packets;
514adfa85e4SNicolas Dichtel 	__u64	mfcs_bytes;
515adfa85e4SNicolas Dichtel 	__u64	mfcs_wrong_if;
516adfa85e4SNicolas Dichtel };
517adfa85e4SNicolas Dichtel 
518607ca46eSDavid Howells /****
519607ca46eSDavid Howells  *		General form of address family dependent message.
520607ca46eSDavid Howells  ****/
521607ca46eSDavid Howells 
522607ca46eSDavid Howells struct rtgenmsg {
523607ca46eSDavid Howells 	unsigned char		rtgen_family;
524607ca46eSDavid Howells };
525607ca46eSDavid Howells 
526607ca46eSDavid Howells /*****************************************************************
527607ca46eSDavid Howells  *		Link layer specific messages.
528607ca46eSDavid Howells  ****/
529607ca46eSDavid Howells 
530607ca46eSDavid Howells /* struct ifinfomsg
531607ca46eSDavid Howells  * passes link level specific information, not dependent
532607ca46eSDavid Howells  * on network protocol.
533607ca46eSDavid Howells  */
534607ca46eSDavid Howells 
535607ca46eSDavid Howells struct ifinfomsg {
536607ca46eSDavid Howells 	unsigned char	ifi_family;
537607ca46eSDavid Howells 	unsigned char	__ifi_pad;
538607ca46eSDavid Howells 	unsigned short	ifi_type;		/* ARPHRD_* */
539607ca46eSDavid Howells 	int		ifi_index;		/* Link index	*/
540607ca46eSDavid Howells 	unsigned	ifi_flags;		/* IFF_* flags	*/
541607ca46eSDavid Howells 	unsigned	ifi_change;		/* IFF_* change mask */
542607ca46eSDavid Howells };
543607ca46eSDavid Howells 
544607ca46eSDavid Howells /********************************************************************
545607ca46eSDavid Howells  *		prefix information
546607ca46eSDavid Howells  ****/
547607ca46eSDavid Howells 
548607ca46eSDavid Howells struct prefixmsg {
549607ca46eSDavid Howells 	unsigned char	prefix_family;
550607ca46eSDavid Howells 	unsigned char	prefix_pad1;
551607ca46eSDavid Howells 	unsigned short	prefix_pad2;
552607ca46eSDavid Howells 	int		prefix_ifindex;
553607ca46eSDavid Howells 	unsigned char	prefix_type;
554607ca46eSDavid Howells 	unsigned char	prefix_len;
555607ca46eSDavid Howells 	unsigned char	prefix_flags;
556607ca46eSDavid Howells 	unsigned char	prefix_pad3;
557607ca46eSDavid Howells };
558607ca46eSDavid Howells 
559607ca46eSDavid Howells enum
560607ca46eSDavid Howells {
561607ca46eSDavid Howells 	PREFIX_UNSPEC,
562607ca46eSDavid Howells 	PREFIX_ADDRESS,
563607ca46eSDavid Howells 	PREFIX_CACHEINFO,
564607ca46eSDavid Howells 	__PREFIX_MAX
565607ca46eSDavid Howells };
566607ca46eSDavid Howells 
567607ca46eSDavid Howells #define PREFIX_MAX	(__PREFIX_MAX - 1)
568607ca46eSDavid Howells 
569607ca46eSDavid Howells struct prefix_cacheinfo {
570607ca46eSDavid Howells 	__u32	preferred_time;
571607ca46eSDavid Howells 	__u32	valid_time;
572607ca46eSDavid Howells };
573607ca46eSDavid Howells 
574607ca46eSDavid Howells 
575607ca46eSDavid Howells /*****************************************************************
576607ca46eSDavid Howells  *		Traffic control messages.
577607ca46eSDavid Howells  ****/
578607ca46eSDavid Howells 
579607ca46eSDavid Howells struct tcmsg {
580607ca46eSDavid Howells 	unsigned char	tcm_family;
581607ca46eSDavid Howells 	unsigned char	tcm__pad1;
582607ca46eSDavid Howells 	unsigned short	tcm__pad2;
583607ca46eSDavid Howells 	int		tcm_ifindex;
584607ca46eSDavid Howells 	__u32		tcm_handle;
585607ca46eSDavid Howells 	__u32		tcm_parent;
5867960d1daSJiri Pirko /* tcm_block_index is used instead of tcm_parent
5877960d1daSJiri Pirko  * in case tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK
5887960d1daSJiri Pirko  */
5897960d1daSJiri Pirko #define tcm_block_index tcm_parent
590607ca46eSDavid Howells 	__u32		tcm_info;
591607ca46eSDavid Howells };
592607ca46eSDavid Howells 
5937960d1daSJiri Pirko /* For manipulation of filters in shared block, tcm_ifindex is set to
5947960d1daSJiri Pirko  * TCM_IFINDEX_MAGIC_BLOCK, and tcm_parent is aliased to tcm_block_index
5957960d1daSJiri Pirko  * which is the block index.
5967960d1daSJiri Pirko  */
5977960d1daSJiri Pirko #define TCM_IFINDEX_MAGIC_BLOCK (0xFFFFFFFFU)
5987960d1daSJiri Pirko 
599607ca46eSDavid Howells enum {
600607ca46eSDavid Howells 	TCA_UNSPEC,
601607ca46eSDavid Howells 	TCA_KIND,
602607ca46eSDavid Howells 	TCA_OPTIONS,
603607ca46eSDavid Howells 	TCA_STATS,
604607ca46eSDavid Howells 	TCA_XSTATS,
605607ca46eSDavid Howells 	TCA_RATE,
606607ca46eSDavid Howells 	TCA_FCNT,
607607ca46eSDavid Howells 	TCA_STATS2,
608607ca46eSDavid Howells 	TCA_STAB,
6099854518eSNicolas Dichtel 	TCA_PAD,
61049b49971SJiri Kosina 	TCA_DUMP_INVISIBLE,
6115bc17018SJiri Pirko 	TCA_CHAIN,
6127a4fa291SYuval Mintz 	TCA_HW_OFFLOAD,
613d47a6b0eSJiri Pirko 	TCA_INGRESS_BLOCK,
614d47a6b0eSJiri Pirko 	TCA_EGRESS_BLOCK,
615f8ab1807SVlad Buslov 	TCA_DUMP_FLAGS,
616607ca46eSDavid Howells 	__TCA_MAX
617607ca46eSDavid Howells };
618607ca46eSDavid Howells 
619607ca46eSDavid Howells #define TCA_MAX (__TCA_MAX - 1)
620607ca46eSDavid Howells 
621f8ab1807SVlad Buslov #define TCA_DUMP_FLAGS_TERSE (1 << 0) /* Means that in dump user gets only basic
622f8ab1807SVlad Buslov 				       * data necessary to identify the objects
623f8ab1807SVlad Buslov 				       * (handle, cookie, etc.) and stats.
624f8ab1807SVlad Buslov 				       */
625f8ab1807SVlad Buslov 
626607ca46eSDavid Howells #define TCA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
627607ca46eSDavid Howells #define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg))
628607ca46eSDavid Howells 
629607ca46eSDavid Howells /********************************************************************
630607ca46eSDavid Howells  *		Neighbor Discovery userland options
631607ca46eSDavid Howells  ****/
632607ca46eSDavid Howells 
633607ca46eSDavid Howells struct nduseroptmsg {
634607ca46eSDavid Howells 	unsigned char	nduseropt_family;
635607ca46eSDavid Howells 	unsigned char	nduseropt_pad1;
636607ca46eSDavid Howells 	unsigned short	nduseropt_opts_len;	/* Total length of options */
637607ca46eSDavid Howells 	int		nduseropt_ifindex;
638607ca46eSDavid Howells 	__u8		nduseropt_icmp_type;
639607ca46eSDavid Howells 	__u8		nduseropt_icmp_code;
640607ca46eSDavid Howells 	unsigned short	nduseropt_pad2;
641607ca46eSDavid Howells 	unsigned int	nduseropt_pad3;
642607ca46eSDavid Howells 	/* Followed by one or more ND options */
643607ca46eSDavid Howells };
644607ca46eSDavid Howells 
645607ca46eSDavid Howells enum {
646607ca46eSDavid Howells 	NDUSEROPT_UNSPEC,
647607ca46eSDavid Howells 	NDUSEROPT_SRCADDR,
648607ca46eSDavid Howells 	__NDUSEROPT_MAX
649607ca46eSDavid Howells };
650607ca46eSDavid Howells 
651607ca46eSDavid Howells #define NDUSEROPT_MAX	(__NDUSEROPT_MAX - 1)
652607ca46eSDavid Howells 
653607ca46eSDavid Howells #ifndef __KERNEL__
654607ca46eSDavid Howells /* RTnetlink multicast groups - backwards compatibility for userspace */
655607ca46eSDavid Howells #define RTMGRP_LINK		1
656607ca46eSDavid Howells #define RTMGRP_NOTIFY		2
657607ca46eSDavid Howells #define RTMGRP_NEIGH		4
658607ca46eSDavid Howells #define RTMGRP_TC		8
659607ca46eSDavid Howells 
660607ca46eSDavid Howells #define RTMGRP_IPV4_IFADDR	0x10
661607ca46eSDavid Howells #define RTMGRP_IPV4_MROUTE	0x20
662607ca46eSDavid Howells #define RTMGRP_IPV4_ROUTE	0x40
663607ca46eSDavid Howells #define RTMGRP_IPV4_RULE	0x80
664607ca46eSDavid Howells 
665607ca46eSDavid Howells #define RTMGRP_IPV6_IFADDR	0x100
666607ca46eSDavid Howells #define RTMGRP_IPV6_MROUTE	0x200
667607ca46eSDavid Howells #define RTMGRP_IPV6_ROUTE	0x400
668607ca46eSDavid Howells #define RTMGRP_IPV6_IFINFO	0x800
669607ca46eSDavid Howells 
670607ca46eSDavid Howells #define RTMGRP_DECnet_IFADDR    0x1000
671607ca46eSDavid Howells #define RTMGRP_DECnet_ROUTE     0x4000
672607ca46eSDavid Howells 
673607ca46eSDavid Howells #define RTMGRP_IPV6_PREFIX	0x20000
674607ca46eSDavid Howells #endif
675607ca46eSDavid Howells 
676607ca46eSDavid Howells /* RTnetlink multicast groups */
677607ca46eSDavid Howells enum rtnetlink_groups {
678607ca46eSDavid Howells 	RTNLGRP_NONE,
679607ca46eSDavid Howells #define RTNLGRP_NONE		RTNLGRP_NONE
680607ca46eSDavid Howells 	RTNLGRP_LINK,
681607ca46eSDavid Howells #define RTNLGRP_LINK		RTNLGRP_LINK
682607ca46eSDavid Howells 	RTNLGRP_NOTIFY,
683607ca46eSDavid Howells #define RTNLGRP_NOTIFY		RTNLGRP_NOTIFY
684607ca46eSDavid Howells 	RTNLGRP_NEIGH,
685607ca46eSDavid Howells #define RTNLGRP_NEIGH		RTNLGRP_NEIGH
686607ca46eSDavid Howells 	RTNLGRP_TC,
687607ca46eSDavid Howells #define RTNLGRP_TC		RTNLGRP_TC
688607ca46eSDavid Howells 	RTNLGRP_IPV4_IFADDR,
689607ca46eSDavid Howells #define RTNLGRP_IPV4_IFADDR	RTNLGRP_IPV4_IFADDR
690607ca46eSDavid Howells 	RTNLGRP_IPV4_MROUTE,
691607ca46eSDavid Howells #define	RTNLGRP_IPV4_MROUTE	RTNLGRP_IPV4_MROUTE
692607ca46eSDavid Howells 	RTNLGRP_IPV4_ROUTE,
693607ca46eSDavid Howells #define RTNLGRP_IPV4_ROUTE	RTNLGRP_IPV4_ROUTE
694607ca46eSDavid Howells 	RTNLGRP_IPV4_RULE,
695607ca46eSDavid Howells #define RTNLGRP_IPV4_RULE	RTNLGRP_IPV4_RULE
696607ca46eSDavid Howells 	RTNLGRP_IPV6_IFADDR,
697607ca46eSDavid Howells #define RTNLGRP_IPV6_IFADDR	RTNLGRP_IPV6_IFADDR
698607ca46eSDavid Howells 	RTNLGRP_IPV6_MROUTE,
699607ca46eSDavid Howells #define RTNLGRP_IPV6_MROUTE	RTNLGRP_IPV6_MROUTE
700607ca46eSDavid Howells 	RTNLGRP_IPV6_ROUTE,
701607ca46eSDavid Howells #define RTNLGRP_IPV6_ROUTE	RTNLGRP_IPV6_ROUTE
702607ca46eSDavid Howells 	RTNLGRP_IPV6_IFINFO,
703607ca46eSDavid Howells #define RTNLGRP_IPV6_IFINFO	RTNLGRP_IPV6_IFINFO
704607ca46eSDavid Howells 	RTNLGRP_DECnet_IFADDR,
705607ca46eSDavid Howells #define RTNLGRP_DECnet_IFADDR	RTNLGRP_DECnet_IFADDR
706607ca46eSDavid Howells 	RTNLGRP_NOP2,
707607ca46eSDavid Howells 	RTNLGRP_DECnet_ROUTE,
708607ca46eSDavid Howells #define RTNLGRP_DECnet_ROUTE	RTNLGRP_DECnet_ROUTE
709607ca46eSDavid Howells 	RTNLGRP_DECnet_RULE,
710607ca46eSDavid Howells #define RTNLGRP_DECnet_RULE	RTNLGRP_DECnet_RULE
711607ca46eSDavid Howells 	RTNLGRP_NOP4,
712607ca46eSDavid Howells 	RTNLGRP_IPV6_PREFIX,
713607ca46eSDavid Howells #define RTNLGRP_IPV6_PREFIX	RTNLGRP_IPV6_PREFIX
714607ca46eSDavid Howells 	RTNLGRP_IPV6_RULE,
715607ca46eSDavid Howells #define RTNLGRP_IPV6_RULE	RTNLGRP_IPV6_RULE
716607ca46eSDavid Howells 	RTNLGRP_ND_USEROPT,
717607ca46eSDavid Howells #define RTNLGRP_ND_USEROPT	RTNLGRP_ND_USEROPT
718607ca46eSDavid Howells 	RTNLGRP_PHONET_IFADDR,
719607ca46eSDavid Howells #define RTNLGRP_PHONET_IFADDR	RTNLGRP_PHONET_IFADDR
720607ca46eSDavid Howells 	RTNLGRP_PHONET_ROUTE,
721607ca46eSDavid Howells #define RTNLGRP_PHONET_ROUTE	RTNLGRP_PHONET_ROUTE
722607ca46eSDavid Howells 	RTNLGRP_DCB,
723607ca46eSDavid Howells #define RTNLGRP_DCB		RTNLGRP_DCB
724edc9e748SNicolas Dichtel 	RTNLGRP_IPV4_NETCONF,
725edc9e748SNicolas Dichtel #define RTNLGRP_IPV4_NETCONF	RTNLGRP_IPV4_NETCONF
726f3a1bfb1SNicolas Dichtel 	RTNLGRP_IPV6_NETCONF,
727f3a1bfb1SNicolas Dichtel #define RTNLGRP_IPV6_NETCONF	RTNLGRP_IPV6_NETCONF
72837a393bcSCong Wang 	RTNLGRP_MDB,
72937a393bcSCong Wang #define RTNLGRP_MDB		RTNLGRP_MDB
7308de147dcSEric W. Biederman 	RTNLGRP_MPLS_ROUTE,
7318de147dcSEric W. Biederman #define RTNLGRP_MPLS_ROUTE	RTNLGRP_MPLS_ROUTE
7329a963454SNicolas Dichtel 	RTNLGRP_NSID,
7339a963454SNicolas Dichtel #define RTNLGRP_NSID		RTNLGRP_NSID
73424045a03SDavid Ahern 	RTNLGRP_MPLS_NETCONF,
73524045a03SDavid Ahern #define RTNLGRP_MPLS_NETCONF	RTNLGRP_MPLS_NETCONF
7365f729eaaSJulien Gomes 	RTNLGRP_IPV4_MROUTE_R,
7375f729eaaSJulien Gomes #define RTNLGRP_IPV4_MROUTE_R	RTNLGRP_IPV4_MROUTE_R
7385f729eaaSJulien Gomes 	RTNLGRP_IPV6_MROUTE_R,
7395f729eaaSJulien Gomes #define RTNLGRP_IPV6_MROUTE_R	RTNLGRP_IPV6_MROUTE_R
74065ee00a9SDavid Ahern 	RTNLGRP_NEXTHOP,
74165ee00a9SDavid Ahern #define RTNLGRP_NEXTHOP		RTNLGRP_NEXTHOP
742cf5bddb9SNikolay Aleksandrov 	RTNLGRP_BRVLAN,
743cf5bddb9SNikolay Aleksandrov #define RTNLGRP_BRVLAN		RTNLGRP_BRVLAN
744607ca46eSDavid Howells 	__RTNLGRP_MAX
745607ca46eSDavid Howells };
746607ca46eSDavid Howells #define RTNLGRP_MAX	(__RTNLGRP_MAX - 1)
747607ca46eSDavid Howells 
748607ca46eSDavid Howells /* TC action piece */
749607ca46eSDavid Howells struct tcamsg {
750607ca46eSDavid Howells 	unsigned char	tca_family;
751607ca46eSDavid Howells 	unsigned char	tca__pad1;
752607ca46eSDavid Howells 	unsigned short	tca__pad2;
753607ca46eSDavid Howells };
75490825b23SJamal Hadi Salim 
75590825b23SJamal Hadi Salim enum {
75690825b23SJamal Hadi Salim 	TCA_ROOT_UNSPEC,
75790825b23SJamal Hadi Salim 	TCA_ROOT_TAB,
75890825b23SJamal Hadi Salim #define TCA_ACT_TAB TCA_ROOT_TAB
75990825b23SJamal Hadi Salim #define TCAA_MAX TCA_ROOT_TAB
76090825b23SJamal Hadi Salim 	TCA_ROOT_FLAGS,
76190825b23SJamal Hadi Salim 	TCA_ROOT_COUNT,
762e62e484dSJamal Hadi Salim 	TCA_ROOT_TIME_DELTA, /* in msecs */
76390825b23SJamal Hadi Salim 	__TCA_ROOT_MAX,
76490825b23SJamal Hadi Salim #define	TCA_ROOT_MAX (__TCA_ROOT_MAX - 1)
76590825b23SJamal Hadi Salim };
76690825b23SJamal Hadi Salim 
767607ca46eSDavid Howells #define TA_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
768607ca46eSDavid Howells #define TA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcamsg))
76990825b23SJamal Hadi Salim /* tcamsg flags stored in attribute TCA_ROOT_FLAGS
77090825b23SJamal Hadi Salim  *
771*f460019bSVlad Buslov  * TCA_ACT_FLAG_LARGE_DUMP_ON user->kernel to request for larger than
772*f460019bSVlad Buslov  * TCA_ACT_MAX_PRIO actions in a dump. All dump responses will contain the
773*f460019bSVlad Buslov  * number of actions being dumped stored in for user app's consumption in
774*f460019bSVlad Buslov  * TCA_ROOT_COUNT
77590825b23SJamal Hadi Salim  *
776*f460019bSVlad Buslov  * TCA_ACT_FLAG_TERSE_DUMP user->kernel to request terse (brief) dump that only
77794f44f28SVlad Buslov  * includes essential action info (kind, index, etc.)
77894f44f28SVlad Buslov  *
77990825b23SJamal Hadi Salim  */
78090825b23SJamal Hadi Salim #define TCA_FLAG_LARGE_DUMP_ON		(1 << 0)
781*f460019bSVlad Buslov #define TCA_ACT_FLAG_LARGE_DUMP_ON	TCA_FLAG_LARGE_DUMP_ON
782*f460019bSVlad Buslov #define TCA_ACT_FLAG_TERSE_DUMP		(1 << 1)
783607ca46eSDavid Howells 
784607ca46eSDavid Howells /* New extended info filters for IFLA_EXT_MASK */
785607ca46eSDavid Howells #define RTEXT_FILTER_VF		(1 << 0)
7866cbdceebSVlad Yasevich #define RTEXT_FILTER_BRVLAN	(1 << 1)
78735a27ceeSRoopa Prabhu #define RTEXT_FILTER_BRVLAN_COMPRESSED	(1 << 2)
788d5566fd7SSowmini Varadhan #define	RTEXT_FILTER_SKIP_STATS	(1 << 3)
78936a8e8e2SHoratiu Vultur #define RTEXT_FILTER_MRP	(1 << 4)
7902be665c3SHenrik Bjoernlund #define RTEXT_FILTER_CFM_CONFIG	(1 << 5)
791e77824d8SHenrik Bjoernlund #define RTEXT_FILTER_CFM_STATUS	(1 << 6)
792607ca46eSDavid Howells 
793607ca46eSDavid Howells /* End of information exported to user level */
794607ca46eSDavid Howells 
795607ca46eSDavid Howells 
796607ca46eSDavid Howells 
797607ca46eSDavid Howells #endif /* _UAPI__LINUX_RTNETLINK_H */
798