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 153607ca46eSDavid Howells __RTM_MAX, 154607ca46eSDavid Howells #define RTM_MAX (((__RTM_MAX + 3) & ~3) - 1) 155607ca46eSDavid Howells }; 156607ca46eSDavid Howells 157607ca46eSDavid Howells #define RTM_NR_MSGTYPES (RTM_MAX + 1 - RTM_BASE) 158607ca46eSDavid Howells #define RTM_NR_FAMILIES (RTM_NR_MSGTYPES >> 2) 159607ca46eSDavid Howells #define RTM_FAM(cmd) (((cmd) - RTM_BASE) >> 2) 160607ca46eSDavid Howells 161607ca46eSDavid Howells /* 162607ca46eSDavid Howells Generic structure for encapsulation of optional route information. 163607ca46eSDavid Howells It is reminiscent of sockaddr, but with sa_family replaced 164607ca46eSDavid Howells with attribute type. 165607ca46eSDavid Howells */ 166607ca46eSDavid Howells 167607ca46eSDavid Howells struct rtattr { 168607ca46eSDavid Howells unsigned short rta_len; 169607ca46eSDavid Howells unsigned short rta_type; 170607ca46eSDavid Howells }; 171607ca46eSDavid Howells 172607ca46eSDavid Howells /* Macros to handle rtattributes */ 173607ca46eSDavid Howells 174e8444637SArad, Ronen #define RTA_ALIGNTO 4U 175607ca46eSDavid Howells #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) ) 176607ca46eSDavid Howells #define RTA_OK(rta,len) ((len) >= (int)sizeof(struct rtattr) && \ 177607ca46eSDavid Howells (rta)->rta_len >= sizeof(struct rtattr) && \ 178607ca46eSDavid Howells (rta)->rta_len <= (len)) 179607ca46eSDavid Howells #define RTA_NEXT(rta,attrlen) ((attrlen) -= RTA_ALIGN((rta)->rta_len), \ 180607ca46eSDavid Howells (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len))) 181607ca46eSDavid Howells #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len)) 182607ca46eSDavid Howells #define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len)) 183607ca46eSDavid Howells #define RTA_DATA(rta) ((void*)(((char*)(rta)) + RTA_LENGTH(0))) 184607ca46eSDavid Howells #define RTA_PAYLOAD(rta) ((int)((rta)->rta_len) - RTA_LENGTH(0)) 185607ca46eSDavid Howells 186607ca46eSDavid Howells 187607ca46eSDavid Howells 188607ca46eSDavid Howells 189607ca46eSDavid Howells /****************************************************************************** 190607ca46eSDavid Howells * Definitions used in routing table administration. 191607ca46eSDavid Howells ****/ 192607ca46eSDavid Howells 193607ca46eSDavid Howells struct rtmsg { 194607ca46eSDavid Howells unsigned char rtm_family; 195607ca46eSDavid Howells unsigned char rtm_dst_len; 196607ca46eSDavid Howells unsigned char rtm_src_len; 197607ca46eSDavid Howells unsigned char rtm_tos; 198607ca46eSDavid Howells 199607ca46eSDavid Howells unsigned char rtm_table; /* Routing table id */ 200607ca46eSDavid Howells unsigned char rtm_protocol; /* Routing protocol; see below */ 201607ca46eSDavid Howells unsigned char rtm_scope; /* See below */ 202607ca46eSDavid Howells unsigned char rtm_type; /* See below */ 203607ca46eSDavid Howells 204607ca46eSDavid Howells unsigned rtm_flags; 205607ca46eSDavid Howells }; 206607ca46eSDavid Howells 207607ca46eSDavid Howells /* rtm_type */ 208607ca46eSDavid Howells 209607ca46eSDavid Howells enum { 210607ca46eSDavid Howells RTN_UNSPEC, 211607ca46eSDavid Howells RTN_UNICAST, /* Gateway or direct route */ 212607ca46eSDavid Howells RTN_LOCAL, /* Accept locally */ 213607ca46eSDavid Howells RTN_BROADCAST, /* Accept locally as broadcast, 214607ca46eSDavid Howells send as broadcast */ 215607ca46eSDavid Howells RTN_ANYCAST, /* Accept locally as broadcast, 216607ca46eSDavid Howells but send as unicast */ 217607ca46eSDavid Howells RTN_MULTICAST, /* Multicast route */ 218607ca46eSDavid Howells RTN_BLACKHOLE, /* Drop */ 219607ca46eSDavid Howells RTN_UNREACHABLE, /* Destination is unreachable */ 220607ca46eSDavid Howells RTN_PROHIBIT, /* Administratively prohibited */ 221607ca46eSDavid Howells RTN_THROW, /* Not in this table */ 222607ca46eSDavid Howells RTN_NAT, /* Translate this address */ 223607ca46eSDavid Howells RTN_XRESOLVE, /* Use external resolver */ 224607ca46eSDavid Howells __RTN_MAX 225607ca46eSDavid Howells }; 226607ca46eSDavid Howells 227607ca46eSDavid Howells #define RTN_MAX (__RTN_MAX - 1) 228607ca46eSDavid Howells 229607ca46eSDavid Howells 230607ca46eSDavid Howells /* rtm_protocol */ 231607ca46eSDavid Howells 232607ca46eSDavid Howells #define RTPROT_UNSPEC 0 233607ca46eSDavid Howells #define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects; 234607ca46eSDavid Howells not used by current IPv4 */ 235607ca46eSDavid Howells #define RTPROT_KERNEL 2 /* Route installed by kernel */ 236607ca46eSDavid Howells #define RTPROT_BOOT 3 /* Route installed during boot */ 237607ca46eSDavid Howells #define RTPROT_STATIC 4 /* Route installed by administrator */ 238607ca46eSDavid Howells 239607ca46eSDavid Howells /* Values of protocol >= RTPROT_STATIC are not interpreted by kernel; 240607ca46eSDavid Howells they are just passed from user and back as is. 241607ca46eSDavid Howells It will be used by hypothetical multiple routing daemons. 242607ca46eSDavid Howells Note that protocol values should be standardized in order to 243607ca46eSDavid Howells avoid conflicts. 244607ca46eSDavid Howells */ 245607ca46eSDavid Howells 246607ca46eSDavid Howells #define RTPROT_GATED 8 /* Apparently, GateD */ 247607ca46eSDavid Howells #define RTPROT_RA 9 /* RDISC/ND router advertisements */ 248607ca46eSDavid Howells #define RTPROT_MRT 10 /* Merit MRT */ 249607ca46eSDavid Howells #define RTPROT_ZEBRA 11 /* Zebra */ 250607ca46eSDavid Howells #define RTPROT_BIRD 12 /* BIRD */ 251607ca46eSDavid Howells #define RTPROT_DNROUTED 13 /* DECnet routing daemon */ 252607ca46eSDavid Howells #define RTPROT_XORP 14 /* XORP */ 253607ca46eSDavid Howells #define RTPROT_NTK 15 /* Netsukuku */ 254607ca46eSDavid Howells #define RTPROT_DHCP 16 /* DHCP client */ 2559a68ac72SNicolas Dichtel #define RTPROT_MROUTED 17 /* Multicast daemon */ 256be955b29SDave Taht #define RTPROT_BABEL 42 /* Babel daemon */ 257607ca46eSDavid Howells 258607ca46eSDavid Howells /* rtm_scope 259607ca46eSDavid Howells 260607ca46eSDavid Howells Really it is not scope, but sort of distance to the destination. 261607ca46eSDavid Howells NOWHERE are reserved for not existing destinations, HOST is our 262607ca46eSDavid Howells local addresses, LINK are destinations, located on directly attached 263607ca46eSDavid Howells link and UNIVERSE is everywhere in the Universe. 264607ca46eSDavid Howells 265607ca46eSDavid Howells Intermediate values are also possible f.e. interior routes 266607ca46eSDavid Howells could be assigned a value between UNIVERSE and LINK. 267607ca46eSDavid Howells */ 268607ca46eSDavid Howells 269607ca46eSDavid Howells enum rt_scope_t { 270607ca46eSDavid Howells RT_SCOPE_UNIVERSE=0, 271607ca46eSDavid Howells /* User defined values */ 272607ca46eSDavid Howells RT_SCOPE_SITE=200, 273607ca46eSDavid Howells RT_SCOPE_LINK=253, 274607ca46eSDavid Howells RT_SCOPE_HOST=254, 275607ca46eSDavid Howells RT_SCOPE_NOWHERE=255 276607ca46eSDavid Howells }; 277607ca46eSDavid Howells 278607ca46eSDavid Howells /* rtm_flags */ 279607ca46eSDavid Howells 280607ca46eSDavid Howells #define RTM_F_NOTIFY 0x100 /* Notify user of route change */ 281607ca46eSDavid Howells #define RTM_F_CLONED 0x200 /* This route is cloned */ 282607ca46eSDavid Howells #define RTM_F_EQUALIZE 0x400 /* Multipath equalizer: NI */ 283607ca46eSDavid Howells #define RTM_F_PREFIX 0x800 /* Prefix addresses */ 284c36ba660SDavid Ahern #define RTM_F_LOOKUP_TABLE 0x1000 /* set rtm_table to FIB lookup result */ 2850be1b305SRoopa Prabhu #define RTM_F_FIB_MATCH 0x2000 /* return full fib lookup match */ 286607ca46eSDavid Howells 287607ca46eSDavid Howells /* Reserved table identifiers */ 288607ca46eSDavid Howells 289607ca46eSDavid Howells enum rt_class_t { 290607ca46eSDavid Howells RT_TABLE_UNSPEC=0, 291607ca46eSDavid Howells /* User defined values */ 292607ca46eSDavid Howells RT_TABLE_COMPAT=252, 293607ca46eSDavid Howells RT_TABLE_DEFAULT=253, 294607ca46eSDavid Howells RT_TABLE_MAIN=254, 295607ca46eSDavid Howells RT_TABLE_LOCAL=255, 296607ca46eSDavid Howells RT_TABLE_MAX=0xFFFFFFFF 297607ca46eSDavid Howells }; 298607ca46eSDavid Howells 299607ca46eSDavid Howells 300607ca46eSDavid Howells /* Routing message attributes */ 301607ca46eSDavid Howells 302607ca46eSDavid Howells enum rtattr_type_t { 303607ca46eSDavid Howells RTA_UNSPEC, 304607ca46eSDavid Howells RTA_DST, 305607ca46eSDavid Howells RTA_SRC, 306607ca46eSDavid Howells RTA_IIF, 307607ca46eSDavid Howells RTA_OIF, 308607ca46eSDavid Howells RTA_GATEWAY, 309607ca46eSDavid Howells RTA_PRIORITY, 310607ca46eSDavid Howells RTA_PREFSRC, 311607ca46eSDavid Howells RTA_METRICS, 312607ca46eSDavid Howells RTA_MULTIPATH, 313607ca46eSDavid Howells RTA_PROTOINFO, /* no longer used */ 314607ca46eSDavid Howells RTA_FLOW, 315607ca46eSDavid Howells RTA_CACHEINFO, 316607ca46eSDavid Howells RTA_SESSION, /* no longer used */ 317607ca46eSDavid Howells RTA_MP_ALGO, /* no longer used */ 318607ca46eSDavid Howells RTA_TABLE, 319607ca46eSDavid Howells RTA_MARK, 320adfa85e4SNicolas Dichtel RTA_MFC_STATS, 32103c05665SEric W. Biederman RTA_VIA, 32203c05665SEric W. Biederman RTA_NEWDST, 323c78ba6d6SLubomir Rintel RTA_PREF, 324a0d9a860SRoopa Prabhu RTA_ENCAP_TYPE, 325a0d9a860SRoopa Prabhu RTA_ENCAP, 32632bc201eSXin Long RTA_EXPIRES, 327a9a08042SNicolas Dichtel RTA_PAD, 328622ec2c9SLorenzo Colitti RTA_UID, 3295b441ac8SRobert Shearman RTA_TTL_PROPAGATE, 330404eb77eSRoopa Prabhu RTA_IP_PROTO, 331404eb77eSRoopa Prabhu RTA_SPORT, 332404eb77eSRoopa Prabhu RTA_DPORT, 333607ca46eSDavid Howells __RTA_MAX 334607ca46eSDavid Howells }; 335607ca46eSDavid Howells 336607ca46eSDavid Howells #define RTA_MAX (__RTA_MAX - 1) 337607ca46eSDavid Howells 338607ca46eSDavid Howells #define RTM_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg)))) 339607ca46eSDavid Howells #define RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg)) 340607ca46eSDavid Howells 341607ca46eSDavid Howells /* RTM_MULTIPATH --- array of struct rtnexthop. 342607ca46eSDavid Howells * 343607ca46eSDavid Howells * "struct rtnexthop" describes all necessary nexthop information, 344607ca46eSDavid Howells * i.e. parameters of path to a destination via this nexthop. 345607ca46eSDavid Howells * 346607ca46eSDavid Howells * At the moment it is impossible to set different prefsrc, mtu, window 347607ca46eSDavid Howells * and rtt for different paths from multipath. 348607ca46eSDavid Howells */ 349607ca46eSDavid Howells 350607ca46eSDavid Howells struct rtnexthop { 351607ca46eSDavid Howells unsigned short rtnh_len; 352607ca46eSDavid Howells unsigned char rtnh_flags; 353607ca46eSDavid Howells unsigned char rtnh_hops; 354607ca46eSDavid Howells int rtnh_ifindex; 355607ca46eSDavid Howells }; 356607ca46eSDavid Howells 357607ca46eSDavid Howells /* rtnh_flags */ 358607ca46eSDavid Howells 359607ca46eSDavid Howells #define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */ 360607ca46eSDavid Howells #define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */ 361607ca46eSDavid Howells #define RTNH_F_ONLINK 4 /* Gateway is forced on link */ 362eea39946SRoopa Prabhu #define RTNH_F_OFFLOAD 8 /* offloaded route */ 3638a3d0316SAndy Gospodarek #define RTNH_F_LINKDOWN 16 /* carrier-down on nexthop */ 3641708ebc9SNikolay Aleksandrov #define RTNH_F_UNRESOLVED 32 /* The entry is unresolved (ipmr) */ 3658a3d0316SAndy Gospodarek 36685dda4e5SJiri Pirko #define RTNH_COMPARE_MASK (RTNH_F_DEAD | RTNH_F_LINKDOWN | RTNH_F_OFFLOAD) 367607ca46eSDavid Howells 368607ca46eSDavid Howells /* Macros to handle hexthops */ 369607ca46eSDavid Howells 370607ca46eSDavid Howells #define RTNH_ALIGNTO 4 371607ca46eSDavid Howells #define RTNH_ALIGN(len) ( ((len)+RTNH_ALIGNTO-1) & ~(RTNH_ALIGNTO-1) ) 372607ca46eSDavid Howells #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && \ 373607ca46eSDavid Howells ((int)(rtnh)->rtnh_len) <= (len)) 374607ca46eSDavid Howells #define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len))) 375607ca46eSDavid Howells #define RTNH_LENGTH(len) (RTNH_ALIGN(sizeof(struct rtnexthop)) + (len)) 376607ca46eSDavid Howells #define RTNH_SPACE(len) RTNH_ALIGN(RTNH_LENGTH(len)) 377607ca46eSDavid Howells #define RTNH_DATA(rtnh) ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0))) 378607ca46eSDavid Howells 37903c05665SEric W. Biederman /* RTA_VIA */ 38003c05665SEric W. Biederman struct rtvia { 38103c05665SEric W. Biederman __kernel_sa_family_t rtvia_family; 38203c05665SEric W. Biederman __u8 rtvia_addr[0]; 38303c05665SEric W. Biederman }; 38403c05665SEric W. Biederman 385607ca46eSDavid Howells /* RTM_CACHEINFO */ 386607ca46eSDavid Howells 387607ca46eSDavid Howells struct rta_cacheinfo { 388607ca46eSDavid Howells __u32 rta_clntref; 389607ca46eSDavid Howells __u32 rta_lastuse; 390607ca46eSDavid Howells __s32 rta_expires; 391607ca46eSDavid Howells __u32 rta_error; 392607ca46eSDavid Howells __u32 rta_used; 393607ca46eSDavid Howells 394607ca46eSDavid Howells #define RTNETLINK_HAVE_PEERINFO 1 395607ca46eSDavid Howells __u32 rta_id; 396607ca46eSDavid Howells __u32 rta_ts; 397607ca46eSDavid Howells __u32 rta_tsage; 398607ca46eSDavid Howells }; 399607ca46eSDavid Howells 400607ca46eSDavid Howells /* RTM_METRICS --- array of struct rtattr with types of RTAX_* */ 401607ca46eSDavid Howells 402607ca46eSDavid Howells enum { 403607ca46eSDavid Howells RTAX_UNSPEC, 404607ca46eSDavid Howells #define RTAX_UNSPEC RTAX_UNSPEC 405607ca46eSDavid Howells RTAX_LOCK, 406607ca46eSDavid Howells #define RTAX_LOCK RTAX_LOCK 407607ca46eSDavid Howells RTAX_MTU, 408607ca46eSDavid Howells #define RTAX_MTU RTAX_MTU 409607ca46eSDavid Howells RTAX_WINDOW, 410607ca46eSDavid Howells #define RTAX_WINDOW RTAX_WINDOW 411607ca46eSDavid Howells RTAX_RTT, 412607ca46eSDavid Howells #define RTAX_RTT RTAX_RTT 413607ca46eSDavid Howells RTAX_RTTVAR, 414607ca46eSDavid Howells #define RTAX_RTTVAR RTAX_RTTVAR 415607ca46eSDavid Howells RTAX_SSTHRESH, 416607ca46eSDavid Howells #define RTAX_SSTHRESH RTAX_SSTHRESH 417607ca46eSDavid Howells RTAX_CWND, 418607ca46eSDavid Howells #define RTAX_CWND RTAX_CWND 419607ca46eSDavid Howells RTAX_ADVMSS, 420607ca46eSDavid Howells #define RTAX_ADVMSS RTAX_ADVMSS 421607ca46eSDavid Howells RTAX_REORDERING, 422607ca46eSDavid Howells #define RTAX_REORDERING RTAX_REORDERING 423607ca46eSDavid Howells RTAX_HOPLIMIT, 424607ca46eSDavid Howells #define RTAX_HOPLIMIT RTAX_HOPLIMIT 425607ca46eSDavid Howells RTAX_INITCWND, 426607ca46eSDavid Howells #define RTAX_INITCWND RTAX_INITCWND 427607ca46eSDavid Howells RTAX_FEATURES, 428607ca46eSDavid Howells #define RTAX_FEATURES RTAX_FEATURES 429607ca46eSDavid Howells RTAX_RTO_MIN, 430607ca46eSDavid Howells #define RTAX_RTO_MIN RTAX_RTO_MIN 431607ca46eSDavid Howells RTAX_INITRWND, 432607ca46eSDavid Howells #define RTAX_INITRWND RTAX_INITRWND 433bcefe17cSCong Wang RTAX_QUICKACK, 434bcefe17cSCong Wang #define RTAX_QUICKACK RTAX_QUICKACK 435ea697639SDaniel Borkmann RTAX_CC_ALGO, 436ea697639SDaniel Borkmann #define RTAX_CC_ALGO RTAX_CC_ALGO 43771c02379SChristoph Paasch RTAX_FASTOPEN_NO_COOKIE, 43871c02379SChristoph Paasch #define RTAX_FASTOPEN_NO_COOKIE RTAX_FASTOPEN_NO_COOKIE 439607ca46eSDavid Howells __RTAX_MAX 440607ca46eSDavid Howells }; 441607ca46eSDavid Howells 442607ca46eSDavid Howells #define RTAX_MAX (__RTAX_MAX - 1) 443607ca46eSDavid Howells 444b8d3e416SDaniel Borkmann #define RTAX_FEATURE_ECN (1 << 0) 445b8d3e416SDaniel Borkmann #define RTAX_FEATURE_SACK (1 << 1) 446b8d3e416SDaniel Borkmann #define RTAX_FEATURE_TIMESTAMP (1 << 2) 447b8d3e416SDaniel Borkmann #define RTAX_FEATURE_ALLFRAG (1 << 3) 448b8d3e416SDaniel Borkmann 449b8d3e416SDaniel Borkmann #define RTAX_FEATURE_MASK (RTAX_FEATURE_ECN | RTAX_FEATURE_SACK | \ 450b8d3e416SDaniel Borkmann RTAX_FEATURE_TIMESTAMP | RTAX_FEATURE_ALLFRAG) 451607ca46eSDavid Howells 452607ca46eSDavid Howells struct rta_session { 453607ca46eSDavid Howells __u8 proto; 454607ca46eSDavid Howells __u8 pad1; 455607ca46eSDavid Howells __u16 pad2; 456607ca46eSDavid Howells 457607ca46eSDavid Howells union { 458607ca46eSDavid Howells struct { 459607ca46eSDavid Howells __u16 sport; 460607ca46eSDavid Howells __u16 dport; 461607ca46eSDavid Howells } ports; 462607ca46eSDavid Howells 463607ca46eSDavid Howells struct { 464607ca46eSDavid Howells __u8 type; 465607ca46eSDavid Howells __u8 code; 466607ca46eSDavid Howells __u16 ident; 467607ca46eSDavid Howells } icmpt; 468607ca46eSDavid Howells 469607ca46eSDavid Howells __u32 spi; 470607ca46eSDavid Howells } u; 471607ca46eSDavid Howells }; 472607ca46eSDavid Howells 473adfa85e4SNicolas Dichtel struct rta_mfc_stats { 474adfa85e4SNicolas Dichtel __u64 mfcs_packets; 475adfa85e4SNicolas Dichtel __u64 mfcs_bytes; 476adfa85e4SNicolas Dichtel __u64 mfcs_wrong_if; 477adfa85e4SNicolas Dichtel }; 478adfa85e4SNicolas Dichtel 479607ca46eSDavid Howells /**** 480607ca46eSDavid Howells * General form of address family dependent message. 481607ca46eSDavid Howells ****/ 482607ca46eSDavid Howells 483607ca46eSDavid Howells struct rtgenmsg { 484607ca46eSDavid Howells unsigned char rtgen_family; 485607ca46eSDavid Howells }; 486607ca46eSDavid Howells 487607ca46eSDavid Howells /***************************************************************** 488607ca46eSDavid Howells * Link layer specific messages. 489607ca46eSDavid Howells ****/ 490607ca46eSDavid Howells 491607ca46eSDavid Howells /* struct ifinfomsg 492607ca46eSDavid Howells * passes link level specific information, not dependent 493607ca46eSDavid Howells * on network protocol. 494607ca46eSDavid Howells */ 495607ca46eSDavid Howells 496607ca46eSDavid Howells struct ifinfomsg { 497607ca46eSDavid Howells unsigned char ifi_family; 498607ca46eSDavid Howells unsigned char __ifi_pad; 499607ca46eSDavid Howells unsigned short ifi_type; /* ARPHRD_* */ 500607ca46eSDavid Howells int ifi_index; /* Link index */ 501607ca46eSDavid Howells unsigned ifi_flags; /* IFF_* flags */ 502607ca46eSDavid Howells unsigned ifi_change; /* IFF_* change mask */ 503607ca46eSDavid Howells }; 504607ca46eSDavid Howells 505607ca46eSDavid Howells /******************************************************************** 506607ca46eSDavid Howells * prefix information 507607ca46eSDavid Howells ****/ 508607ca46eSDavid Howells 509607ca46eSDavid Howells struct prefixmsg { 510607ca46eSDavid Howells unsigned char prefix_family; 511607ca46eSDavid Howells unsigned char prefix_pad1; 512607ca46eSDavid Howells unsigned short prefix_pad2; 513607ca46eSDavid Howells int prefix_ifindex; 514607ca46eSDavid Howells unsigned char prefix_type; 515607ca46eSDavid Howells unsigned char prefix_len; 516607ca46eSDavid Howells unsigned char prefix_flags; 517607ca46eSDavid Howells unsigned char prefix_pad3; 518607ca46eSDavid Howells }; 519607ca46eSDavid Howells 520607ca46eSDavid Howells enum 521607ca46eSDavid Howells { 522607ca46eSDavid Howells PREFIX_UNSPEC, 523607ca46eSDavid Howells PREFIX_ADDRESS, 524607ca46eSDavid Howells PREFIX_CACHEINFO, 525607ca46eSDavid Howells __PREFIX_MAX 526607ca46eSDavid Howells }; 527607ca46eSDavid Howells 528607ca46eSDavid Howells #define PREFIX_MAX (__PREFIX_MAX - 1) 529607ca46eSDavid Howells 530607ca46eSDavid Howells struct prefix_cacheinfo { 531607ca46eSDavid Howells __u32 preferred_time; 532607ca46eSDavid Howells __u32 valid_time; 533607ca46eSDavid Howells }; 534607ca46eSDavid Howells 535607ca46eSDavid Howells 536607ca46eSDavid Howells /***************************************************************** 537607ca46eSDavid Howells * Traffic control messages. 538607ca46eSDavid Howells ****/ 539607ca46eSDavid Howells 540607ca46eSDavid Howells struct tcmsg { 541607ca46eSDavid Howells unsigned char tcm_family; 542607ca46eSDavid Howells unsigned char tcm__pad1; 543607ca46eSDavid Howells unsigned short tcm__pad2; 544607ca46eSDavid Howells int tcm_ifindex; 545607ca46eSDavid Howells __u32 tcm_handle; 546607ca46eSDavid Howells __u32 tcm_parent; 5477960d1daSJiri Pirko /* tcm_block_index is used instead of tcm_parent 5487960d1daSJiri Pirko * in case tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK 5497960d1daSJiri Pirko */ 5507960d1daSJiri Pirko #define tcm_block_index tcm_parent 551607ca46eSDavid Howells __u32 tcm_info; 552607ca46eSDavid Howells }; 553607ca46eSDavid Howells 5547960d1daSJiri Pirko /* For manipulation of filters in shared block, tcm_ifindex is set to 5557960d1daSJiri Pirko * TCM_IFINDEX_MAGIC_BLOCK, and tcm_parent is aliased to tcm_block_index 5567960d1daSJiri Pirko * which is the block index. 5577960d1daSJiri Pirko */ 5587960d1daSJiri Pirko #define TCM_IFINDEX_MAGIC_BLOCK (0xFFFFFFFFU) 5597960d1daSJiri Pirko 560607ca46eSDavid Howells enum { 561607ca46eSDavid Howells TCA_UNSPEC, 562607ca46eSDavid Howells TCA_KIND, 563607ca46eSDavid Howells TCA_OPTIONS, 564607ca46eSDavid Howells TCA_STATS, 565607ca46eSDavid Howells TCA_XSTATS, 566607ca46eSDavid Howells TCA_RATE, 567607ca46eSDavid Howells TCA_FCNT, 568607ca46eSDavid Howells TCA_STATS2, 569607ca46eSDavid Howells TCA_STAB, 5709854518eSNicolas Dichtel TCA_PAD, 57149b49971SJiri Kosina TCA_DUMP_INVISIBLE, 5725bc17018SJiri Pirko TCA_CHAIN, 5737a4fa291SYuval Mintz TCA_HW_OFFLOAD, 574d47a6b0eSJiri Pirko TCA_INGRESS_BLOCK, 575d47a6b0eSJiri Pirko TCA_EGRESS_BLOCK, 576607ca46eSDavid Howells __TCA_MAX 577607ca46eSDavid Howells }; 578607ca46eSDavid Howells 579607ca46eSDavid Howells #define TCA_MAX (__TCA_MAX - 1) 580607ca46eSDavid Howells 581607ca46eSDavid Howells #define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg)))) 582607ca46eSDavid Howells #define TCA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcmsg)) 583607ca46eSDavid Howells 584607ca46eSDavid Howells /******************************************************************** 585607ca46eSDavid Howells * Neighbor Discovery userland options 586607ca46eSDavid Howells ****/ 587607ca46eSDavid Howells 588607ca46eSDavid Howells struct nduseroptmsg { 589607ca46eSDavid Howells unsigned char nduseropt_family; 590607ca46eSDavid Howells unsigned char nduseropt_pad1; 591607ca46eSDavid Howells unsigned short nduseropt_opts_len; /* Total length of options */ 592607ca46eSDavid Howells int nduseropt_ifindex; 593607ca46eSDavid Howells __u8 nduseropt_icmp_type; 594607ca46eSDavid Howells __u8 nduseropt_icmp_code; 595607ca46eSDavid Howells unsigned short nduseropt_pad2; 596607ca46eSDavid Howells unsigned int nduseropt_pad3; 597607ca46eSDavid Howells /* Followed by one or more ND options */ 598607ca46eSDavid Howells }; 599607ca46eSDavid Howells 600607ca46eSDavid Howells enum { 601607ca46eSDavid Howells NDUSEROPT_UNSPEC, 602607ca46eSDavid Howells NDUSEROPT_SRCADDR, 603607ca46eSDavid Howells __NDUSEROPT_MAX 604607ca46eSDavid Howells }; 605607ca46eSDavid Howells 606607ca46eSDavid Howells #define NDUSEROPT_MAX (__NDUSEROPT_MAX - 1) 607607ca46eSDavid Howells 608607ca46eSDavid Howells #ifndef __KERNEL__ 609607ca46eSDavid Howells /* RTnetlink multicast groups - backwards compatibility for userspace */ 610607ca46eSDavid Howells #define RTMGRP_LINK 1 611607ca46eSDavid Howells #define RTMGRP_NOTIFY 2 612607ca46eSDavid Howells #define RTMGRP_NEIGH 4 613607ca46eSDavid Howells #define RTMGRP_TC 8 614607ca46eSDavid Howells 615607ca46eSDavid Howells #define RTMGRP_IPV4_IFADDR 0x10 616607ca46eSDavid Howells #define RTMGRP_IPV4_MROUTE 0x20 617607ca46eSDavid Howells #define RTMGRP_IPV4_ROUTE 0x40 618607ca46eSDavid Howells #define RTMGRP_IPV4_RULE 0x80 619607ca46eSDavid Howells 620607ca46eSDavid Howells #define RTMGRP_IPV6_IFADDR 0x100 621607ca46eSDavid Howells #define RTMGRP_IPV6_MROUTE 0x200 622607ca46eSDavid Howells #define RTMGRP_IPV6_ROUTE 0x400 623607ca46eSDavid Howells #define RTMGRP_IPV6_IFINFO 0x800 624607ca46eSDavid Howells 625607ca46eSDavid Howells #define RTMGRP_DECnet_IFADDR 0x1000 626607ca46eSDavid Howells #define RTMGRP_DECnet_ROUTE 0x4000 627607ca46eSDavid Howells 628607ca46eSDavid Howells #define RTMGRP_IPV6_PREFIX 0x20000 629607ca46eSDavid Howells #endif 630607ca46eSDavid Howells 631607ca46eSDavid Howells /* RTnetlink multicast groups */ 632607ca46eSDavid Howells enum rtnetlink_groups { 633607ca46eSDavid Howells RTNLGRP_NONE, 634607ca46eSDavid Howells #define RTNLGRP_NONE RTNLGRP_NONE 635607ca46eSDavid Howells RTNLGRP_LINK, 636607ca46eSDavid Howells #define RTNLGRP_LINK RTNLGRP_LINK 637607ca46eSDavid Howells RTNLGRP_NOTIFY, 638607ca46eSDavid Howells #define RTNLGRP_NOTIFY RTNLGRP_NOTIFY 639607ca46eSDavid Howells RTNLGRP_NEIGH, 640607ca46eSDavid Howells #define RTNLGRP_NEIGH RTNLGRP_NEIGH 641607ca46eSDavid Howells RTNLGRP_TC, 642607ca46eSDavid Howells #define RTNLGRP_TC RTNLGRP_TC 643607ca46eSDavid Howells RTNLGRP_IPV4_IFADDR, 644607ca46eSDavid Howells #define RTNLGRP_IPV4_IFADDR RTNLGRP_IPV4_IFADDR 645607ca46eSDavid Howells RTNLGRP_IPV4_MROUTE, 646607ca46eSDavid Howells #define RTNLGRP_IPV4_MROUTE RTNLGRP_IPV4_MROUTE 647607ca46eSDavid Howells RTNLGRP_IPV4_ROUTE, 648607ca46eSDavid Howells #define RTNLGRP_IPV4_ROUTE RTNLGRP_IPV4_ROUTE 649607ca46eSDavid Howells RTNLGRP_IPV4_RULE, 650607ca46eSDavid Howells #define RTNLGRP_IPV4_RULE RTNLGRP_IPV4_RULE 651607ca46eSDavid Howells RTNLGRP_IPV6_IFADDR, 652607ca46eSDavid Howells #define RTNLGRP_IPV6_IFADDR RTNLGRP_IPV6_IFADDR 653607ca46eSDavid Howells RTNLGRP_IPV6_MROUTE, 654607ca46eSDavid Howells #define RTNLGRP_IPV6_MROUTE RTNLGRP_IPV6_MROUTE 655607ca46eSDavid Howells RTNLGRP_IPV6_ROUTE, 656607ca46eSDavid Howells #define RTNLGRP_IPV6_ROUTE RTNLGRP_IPV6_ROUTE 657607ca46eSDavid Howells RTNLGRP_IPV6_IFINFO, 658607ca46eSDavid Howells #define RTNLGRP_IPV6_IFINFO RTNLGRP_IPV6_IFINFO 659607ca46eSDavid Howells RTNLGRP_DECnet_IFADDR, 660607ca46eSDavid Howells #define RTNLGRP_DECnet_IFADDR RTNLGRP_DECnet_IFADDR 661607ca46eSDavid Howells RTNLGRP_NOP2, 662607ca46eSDavid Howells RTNLGRP_DECnet_ROUTE, 663607ca46eSDavid Howells #define RTNLGRP_DECnet_ROUTE RTNLGRP_DECnet_ROUTE 664607ca46eSDavid Howells RTNLGRP_DECnet_RULE, 665607ca46eSDavid Howells #define RTNLGRP_DECnet_RULE RTNLGRP_DECnet_RULE 666607ca46eSDavid Howells RTNLGRP_NOP4, 667607ca46eSDavid Howells RTNLGRP_IPV6_PREFIX, 668607ca46eSDavid Howells #define RTNLGRP_IPV6_PREFIX RTNLGRP_IPV6_PREFIX 669607ca46eSDavid Howells RTNLGRP_IPV6_RULE, 670607ca46eSDavid Howells #define RTNLGRP_IPV6_RULE RTNLGRP_IPV6_RULE 671607ca46eSDavid Howells RTNLGRP_ND_USEROPT, 672607ca46eSDavid Howells #define RTNLGRP_ND_USEROPT RTNLGRP_ND_USEROPT 673607ca46eSDavid Howells RTNLGRP_PHONET_IFADDR, 674607ca46eSDavid Howells #define RTNLGRP_PHONET_IFADDR RTNLGRP_PHONET_IFADDR 675607ca46eSDavid Howells RTNLGRP_PHONET_ROUTE, 676607ca46eSDavid Howells #define RTNLGRP_PHONET_ROUTE RTNLGRP_PHONET_ROUTE 677607ca46eSDavid Howells RTNLGRP_DCB, 678607ca46eSDavid Howells #define RTNLGRP_DCB RTNLGRP_DCB 679edc9e748SNicolas Dichtel RTNLGRP_IPV4_NETCONF, 680edc9e748SNicolas Dichtel #define RTNLGRP_IPV4_NETCONF RTNLGRP_IPV4_NETCONF 681f3a1bfb1SNicolas Dichtel RTNLGRP_IPV6_NETCONF, 682f3a1bfb1SNicolas Dichtel #define RTNLGRP_IPV6_NETCONF RTNLGRP_IPV6_NETCONF 68337a393bcSCong Wang RTNLGRP_MDB, 68437a393bcSCong Wang #define RTNLGRP_MDB RTNLGRP_MDB 6858de147dcSEric W. Biederman RTNLGRP_MPLS_ROUTE, 6868de147dcSEric W. Biederman #define RTNLGRP_MPLS_ROUTE RTNLGRP_MPLS_ROUTE 6879a963454SNicolas Dichtel RTNLGRP_NSID, 6889a963454SNicolas Dichtel #define RTNLGRP_NSID RTNLGRP_NSID 68924045a03SDavid Ahern RTNLGRP_MPLS_NETCONF, 69024045a03SDavid Ahern #define RTNLGRP_MPLS_NETCONF RTNLGRP_MPLS_NETCONF 6915f729eaaSJulien Gomes RTNLGRP_IPV4_MROUTE_R, 6925f729eaaSJulien Gomes #define RTNLGRP_IPV4_MROUTE_R RTNLGRP_IPV4_MROUTE_R 6935f729eaaSJulien Gomes RTNLGRP_IPV6_MROUTE_R, 6945f729eaaSJulien Gomes #define RTNLGRP_IPV6_MROUTE_R RTNLGRP_IPV6_MROUTE_R 695607ca46eSDavid Howells __RTNLGRP_MAX 696607ca46eSDavid Howells }; 697607ca46eSDavid Howells #define RTNLGRP_MAX (__RTNLGRP_MAX - 1) 698607ca46eSDavid Howells 699607ca46eSDavid Howells /* TC action piece */ 700607ca46eSDavid Howells struct tcamsg { 701607ca46eSDavid Howells unsigned char tca_family; 702607ca46eSDavid Howells unsigned char tca__pad1; 703607ca46eSDavid Howells unsigned short tca__pad2; 704607ca46eSDavid Howells }; 70590825b23SJamal Hadi Salim 70690825b23SJamal Hadi Salim enum { 70790825b23SJamal Hadi Salim TCA_ROOT_UNSPEC, 70890825b23SJamal Hadi Salim TCA_ROOT_TAB, 70990825b23SJamal Hadi Salim #define TCA_ACT_TAB TCA_ROOT_TAB 71090825b23SJamal Hadi Salim #define TCAA_MAX TCA_ROOT_TAB 71190825b23SJamal Hadi Salim TCA_ROOT_FLAGS, 71290825b23SJamal Hadi Salim TCA_ROOT_COUNT, 713e62e484dSJamal Hadi Salim TCA_ROOT_TIME_DELTA, /* in msecs */ 71490825b23SJamal Hadi Salim __TCA_ROOT_MAX, 71590825b23SJamal Hadi Salim #define TCA_ROOT_MAX (__TCA_ROOT_MAX - 1) 71690825b23SJamal Hadi Salim }; 71790825b23SJamal Hadi Salim 718607ca46eSDavid Howells #define TA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg)))) 719607ca46eSDavid Howells #define TA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct tcamsg)) 72090825b23SJamal Hadi Salim /* tcamsg flags stored in attribute TCA_ROOT_FLAGS 72190825b23SJamal Hadi Salim * 72290825b23SJamal Hadi Salim * TCA_FLAG_LARGE_DUMP_ON user->kernel to request for larger than TCA_ACT_MAX_PRIO 72390825b23SJamal Hadi Salim * actions in a dump. All dump responses will contain the number of actions 72490825b23SJamal Hadi Salim * being dumped stored in for user app's consumption in TCA_ROOT_COUNT 72590825b23SJamal Hadi Salim * 72690825b23SJamal Hadi Salim */ 72790825b23SJamal Hadi Salim #define TCA_FLAG_LARGE_DUMP_ON (1 << 0) 728607ca46eSDavid Howells 729607ca46eSDavid Howells /* New extended info filters for IFLA_EXT_MASK */ 730607ca46eSDavid Howells #define RTEXT_FILTER_VF (1 << 0) 7316cbdceebSVlad Yasevich #define RTEXT_FILTER_BRVLAN (1 << 1) 73235a27ceeSRoopa Prabhu #define RTEXT_FILTER_BRVLAN_COMPRESSED (1 << 2) 733d5566fd7SSowmini Varadhan #define RTEXT_FILTER_SKIP_STATS (1 << 3) 734607ca46eSDavid Howells 735607ca46eSDavid Howells /* End of information exported to user level */ 736607ca46eSDavid Howells 737607ca46eSDavid Howells 738607ca46eSDavid Howells 739607ca46eSDavid Howells #endif /* _UAPI__LINUX_RTNETLINK_H */ 740