Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[deliverable/linux.git] / include / uapi / linux / if_link.h
CommitLineData
607ca46e
DH
1#ifndef _UAPI_LINUX_IF_LINK_H
2#define _UAPI_LINUX_IF_LINK_H
3
4#include <linux/types.h>
5#include <linux/netlink.h>
6
7/* This struct should be in sync with struct rtnl_link_stats64 */
8struct rtnl_link_stats {
9 __u32 rx_packets; /* total packets received */
10 __u32 tx_packets; /* total packets transmitted */
11 __u32 rx_bytes; /* total bytes received */
12 __u32 tx_bytes; /* total bytes transmitted */
13 __u32 rx_errors; /* bad packets received */
14 __u32 tx_errors; /* packet transmit problems */
15 __u32 rx_dropped; /* no space in linux buffers */
16 __u32 tx_dropped; /* no space available in linux */
17 __u32 multicast; /* multicast packets received */
18 __u32 collisions;
19
20 /* detailed rx_errors: */
21 __u32 rx_length_errors;
22 __u32 rx_over_errors; /* receiver ring buff overflow */
23 __u32 rx_crc_errors; /* recved pkt with crc error */
24 __u32 rx_frame_errors; /* recv'd frame alignment error */
25 __u32 rx_fifo_errors; /* recv'r fifo overrun */
26 __u32 rx_missed_errors; /* receiver missed packet */
27
28 /* detailed tx_errors */
29 __u32 tx_aborted_errors;
30 __u32 tx_carrier_errors;
31 __u32 tx_fifo_errors;
32 __u32 tx_heartbeat_errors;
33 __u32 tx_window_errors;
34
35 /* for cslip etc */
36 __u32 rx_compressed;
37 __u32 tx_compressed;
6e7333d3
JW
38
39 __u32 rx_nohandler; /* dropped, no handler found */
607ca46e
DH
40};
41
42/* The main device statistics structure */
43struct rtnl_link_stats64 {
44 __u64 rx_packets; /* total packets received */
45 __u64 tx_packets; /* total packets transmitted */
46 __u64 rx_bytes; /* total bytes received */
47 __u64 tx_bytes; /* total bytes transmitted */
48 __u64 rx_errors; /* bad packets received */
49 __u64 tx_errors; /* packet transmit problems */
50 __u64 rx_dropped; /* no space in linux buffers */
51 __u64 tx_dropped; /* no space available in linux */
52 __u64 multicast; /* multicast packets received */
53 __u64 collisions;
54
55 /* detailed rx_errors: */
56 __u64 rx_length_errors;
57 __u64 rx_over_errors; /* receiver ring buff overflow */
58 __u64 rx_crc_errors; /* recved pkt with crc error */
59 __u64 rx_frame_errors; /* recv'd frame alignment error */
60 __u64 rx_fifo_errors; /* recv'r fifo overrun */
61 __u64 rx_missed_errors; /* receiver missed packet */
62
63 /* detailed tx_errors */
64 __u64 tx_aborted_errors;
65 __u64 tx_carrier_errors;
66 __u64 tx_fifo_errors;
67 __u64 tx_heartbeat_errors;
68 __u64 tx_window_errors;
69
70 /* for cslip etc */
71 __u64 rx_compressed;
72 __u64 tx_compressed;
6e7333d3
JW
73
74 __u64 rx_nohandler; /* dropped, no handler found */
607ca46e
DH
75};
76
77/* The struct should be in sync with struct ifmap */
78struct rtnl_link_ifmap {
79 __u64 mem_start;
80 __u64 mem_end;
81 __u64 base_addr;
82 __u16 irq;
83 __u8 dma;
84 __u8 port;
85};
86
87/*
88 * IFLA_AF_SPEC
89 * Contains nested attributes for address family specific attributes.
90 * Each address family may create a attribute with the address family
91 * number as type and create its own attribute structure in it.
92 *
93 * Example:
94 * [IFLA_AF_SPEC] = {
95 * [AF_INET] = {
96 * [IFLA_INET_CONF] = ...,
97 * },
98 * [AF_INET6] = {
99 * [IFLA_INET6_FLAGS] = ...,
100 * [IFLA_INET6_CONF] = ...,
101 * }
102 * }
103 */
104
105enum {
106 IFLA_UNSPEC,
107 IFLA_ADDRESS,
108 IFLA_BROADCAST,
109 IFLA_IFNAME,
110 IFLA_MTU,
111 IFLA_LINK,
112 IFLA_QDISC,
113 IFLA_STATS,
114 IFLA_COST,
115#define IFLA_COST IFLA_COST
116 IFLA_PRIORITY,
117#define IFLA_PRIORITY IFLA_PRIORITY
118 IFLA_MASTER,
119#define IFLA_MASTER IFLA_MASTER
120 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
121#define IFLA_WIRELESS IFLA_WIRELESS
122 IFLA_PROTINFO, /* Protocol specific information for a link */
123#define IFLA_PROTINFO IFLA_PROTINFO
124 IFLA_TXQLEN,
125#define IFLA_TXQLEN IFLA_TXQLEN
126 IFLA_MAP,
127#define IFLA_MAP IFLA_MAP
128 IFLA_WEIGHT,
129#define IFLA_WEIGHT IFLA_WEIGHT
130 IFLA_OPERSTATE,
131 IFLA_LINKMODE,
132 IFLA_LINKINFO,
133#define IFLA_LINKINFO IFLA_LINKINFO
134 IFLA_NET_NS_PID,
135 IFLA_IFALIAS,
136 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
137 IFLA_VFINFO_LIST,
138 IFLA_STATS64,
139 IFLA_VF_PORTS,
140 IFLA_PORT_SELF,
141 IFLA_AF_SPEC,
142 IFLA_GROUP, /* Group the device belongs to */
143 IFLA_NET_NS_FD,
144 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
145 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
146#define IFLA_PROMISCUITY IFLA_PROMISCUITY
147 IFLA_NUM_TX_QUEUES,
148 IFLA_NUM_RX_QUEUES,
9a57247f 149 IFLA_CARRIER,
66cae9ed 150 IFLA_PHYS_PORT_ID,
2d3b479d 151 IFLA_CARRIER_CHANGES,
82f28412 152 IFLA_PHYS_SWITCH_ID,
d37512a2 153 IFLA_LINK_NETNSID,
db24a904 154 IFLA_PHYS_PORT_NAME,
88d6378b 155 IFLA_PROTO_DOWN,
c70ce028
ED
156 IFLA_GSO_MAX_SEGS,
157 IFLA_GSO_MAX_SIZE,
18402843 158 IFLA_PAD,
607ca46e
DH
159 __IFLA_MAX
160};
161
162
163#define IFLA_MAX (__IFLA_MAX - 1)
164
165/* backwards compatibility for userspace */
166#ifndef __KERNEL__
167#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
168#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
169#endif
170
171enum {
172 IFLA_INET_UNSPEC,
173 IFLA_INET_CONF,
174 __IFLA_INET_MAX,
175};
176
177#define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
178
179/* ifi_flags.
180
181 IFF_* flags.
182
183 The only change is:
184 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
185 more not changeable by user. They describe link media
186 characteristics and set by device driver.
187
188 Comments:
189 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
190 - If neither of these three flags are set;
191 the interface is NBMA.
192
193 - IFF_MULTICAST does not mean anything special:
194 multicasts can be used on all not-NBMA links.
195 IFF_MULTICAST means that this media uses special encapsulation
196 for multicast frames. Apparently, all IFF_POINTOPOINT and
197 IFF_BROADCAST devices are able to use multicasts too.
198 */
199
200/* IFLA_LINK.
201 For usual devices it is equal ifi_index.
202 If it is a "virtual interface" (f.e. tunnel), ifi_link
203 can point to real physical interface (f.e. for bandwidth calculations),
204 or maybe 0, what means, that real media is unknown (usual
205 for IPIP tunnels, when route to endpoint is allowed to change)
206 */
207
208/* Subtype attributes for IFLA_PROTINFO */
209enum {
210 IFLA_INET6_UNSPEC,
211 IFLA_INET6_FLAGS, /* link flags */
212 IFLA_INET6_CONF, /* sysctl parameters */
213 IFLA_INET6_STATS, /* statistics */
214 IFLA_INET6_MCAST, /* MC things. What of them? */
215 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
216 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
f53adae4 217 IFLA_INET6_TOKEN, /* device token */
bc91b0f0 218 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
607ca46e
DH
219 __IFLA_INET6_MAX
220};
221
222#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
223
bc91b0f0
JP
224enum in6_addr_gen_mode {
225 IN6_ADDR_GEN_MODE_EUI64,
226 IN6_ADDR_GEN_MODE_NONE,
622c81d5 227 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
cc9da6cc 228 IN6_ADDR_GEN_MODE_RANDOM,
bc91b0f0
JP
229};
230
e5c3ea5c
JP
231/* Bridge section */
232
233enum {
234 IFLA_BR_UNSPEC,
235 IFLA_BR_FORWARD_DELAY,
236 IFLA_BR_HELLO_TIME,
237 IFLA_BR_MAX_AGE,
af615762
JT
238 IFLA_BR_AGEING_TIME,
239 IFLA_BR_STP_STATE,
240 IFLA_BR_PRIORITY,
a7854037 241 IFLA_BR_VLAN_FILTERING,
d2d427b3 242 IFLA_BR_VLAN_PROTOCOL,
7910228b 243 IFLA_BR_GROUP_FWD_MASK,
5127c81f 244 IFLA_BR_ROOT_ID,
7599a220 245 IFLA_BR_BRIDGE_ID,
8762ba68 246 IFLA_BR_ROOT_PORT,
684dd248 247 IFLA_BR_ROOT_PATH_COST,
ed416309
NA
248 IFLA_BR_TOPOLOGY_CHANGE,
249 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
d76bd14e
NA
250 IFLA_BR_HELLO_TIMER,
251 IFLA_BR_TCN_TIMER,
252 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
253 IFLA_BR_GC_TIMER,
111189ab 254 IFLA_BR_GROUP_ADDR,
150217c6 255 IFLA_BR_FDB_FLUSH,
a9a6bc70 256 IFLA_BR_MCAST_ROUTER,
89126327 257 IFLA_BR_MCAST_SNOOPING,
295141d9 258 IFLA_BR_MCAST_QUERY_USE_IFADDR,
ba062d7c 259 IFLA_BR_MCAST_QUERIER,
431db3c0 260 IFLA_BR_MCAST_HASH_ELASTICITY,
858079fd 261 IFLA_BR_MCAST_HASH_MAX,
79b859f5 262 IFLA_BR_MCAST_LAST_MEMBER_CNT,
b89e6bab 263 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
7e4df51e
NA
264 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
265 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
266 IFLA_BR_MCAST_QUERIER_INTVL,
267 IFLA_BR_MCAST_QUERY_INTVL,
268 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
269 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
93870cc0
NA
270 IFLA_BR_NF_CALL_IPTABLES,
271 IFLA_BR_NF_CALL_IP6TABLES,
272 IFLA_BR_NF_CALL_ARPTABLES,
0f963b75 273 IFLA_BR_VLAN_DEFAULT_PVID,
12a0faa3 274 IFLA_BR_PAD,
6dada9b1 275 IFLA_BR_VLAN_STATS_ENABLED,
e5c3ea5c
JP
276 __IFLA_BR_MAX,
277};
278
279#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
280
5127c81f
NA
281struct ifla_bridge_id {
282 __u8 prio[2];
283 __u8 addr[6]; /* ETH_ALEN */
284};
285
25c71c75 286enum {
287 BRIDGE_MODE_UNSPEC,
288 BRIDGE_MODE_HAIRPIN,
289};
290
291enum {
292 IFLA_BRPORT_UNSPEC,
293 IFLA_BRPORT_STATE, /* Spanning tree state */
294 IFLA_BRPORT_PRIORITY, /* " priority */
295 IFLA_BRPORT_COST, /* " cost */
296 IFLA_BRPORT_MODE, /* mode (hairpin) */
a2e01a65 297 IFLA_BRPORT_GUARD, /* bpdu guard */
1007dd1a 298 IFLA_BRPORT_PROTECT, /* root port protection */
c2d3babf 299 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
9ba18891 300 IFLA_BRPORT_LEARNING, /* mac learning */
867a5943 301 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
95850116 302 IFLA_BRPORT_PROXYARP, /* proxy ARP */
efacacda 303 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
842a9ae0 304 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
4ebc7660 305 IFLA_BRPORT_ROOT_ID, /* designated root */
80df9a26 306 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
96f94e7f
NA
307 IFLA_BRPORT_DESIGNATED_PORT,
308 IFLA_BRPORT_DESIGNATED_COST,
42d452c4
NA
309 IFLA_BRPORT_ID,
310 IFLA_BRPORT_NO,
e08e838a
NA
311 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
312 IFLA_BRPORT_CONFIG_PENDING,
61c0a9a8
NA
313 IFLA_BRPORT_MESSAGE_AGE_TIMER,
314 IFLA_BRPORT_FORWARD_DELAY_TIMER,
315 IFLA_BRPORT_HOLD_TIMER,
9b0c6e4d 316 IFLA_BRPORT_FLUSH,
5d6ae479 317 IFLA_BRPORT_MULTICAST_ROUTER,
12a0faa3 318 IFLA_BRPORT_PAD,
25c71c75 319 __IFLA_BRPORT_MAX
320};
321#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
322
607ca46e
DH
323struct ifla_cacheinfo {
324 __u32 max_reasm_len;
325 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
326 __u32 reachable_time;
327 __u32 retrans_time;
328};
329
330enum {
331 IFLA_INFO_UNSPEC,
332 IFLA_INFO_KIND,
333 IFLA_INFO_DATA,
334 IFLA_INFO_XSTATS,
ba7d49b1
JP
335 IFLA_INFO_SLAVE_KIND,
336 IFLA_INFO_SLAVE_DATA,
607ca46e
DH
337 __IFLA_INFO_MAX,
338};
339
340#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
341
342/* VLAN section */
343
344enum {
345 IFLA_VLAN_UNSPEC,
346 IFLA_VLAN_ID,
347 IFLA_VLAN_FLAGS,
348 IFLA_VLAN_EGRESS_QOS,
349 IFLA_VLAN_INGRESS_QOS,
8ad227ff 350 IFLA_VLAN_PROTOCOL,
607ca46e
DH
351 __IFLA_VLAN_MAX,
352};
353
354#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
355
356struct ifla_vlan_flags {
357 __u32 flags;
358 __u32 mask;
359};
360
361enum {
362 IFLA_VLAN_QOS_UNSPEC,
363 IFLA_VLAN_QOS_MAPPING,
364 __IFLA_VLAN_QOS_MAX
365};
366
367#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
368
369struct ifla_vlan_qos_mapping {
370 __u32 from;
371 __u32 to;
372};
373
374/* MACVLAN section */
375enum {
376 IFLA_MACVLAN_UNSPEC,
377 IFLA_MACVLAN_MODE,
378 IFLA_MACVLAN_FLAGS,
79cf79ab
MB
379 IFLA_MACVLAN_MACADDR_MODE,
380 IFLA_MACVLAN_MACADDR,
381 IFLA_MACVLAN_MACADDR_DATA,
382 IFLA_MACVLAN_MACADDR_COUNT,
607ca46e
DH
383 __IFLA_MACVLAN_MAX,
384};
385
386#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
387
388enum macvlan_mode {
389 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
390 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
391 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
392 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
79cf79ab
MB
393 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
394};
395
396enum macvlan_macaddr_mode {
397 MACVLAN_MACADDR_ADD,
398 MACVLAN_MACADDR_DEL,
399 MACVLAN_MACADDR_FLUSH,
400 MACVLAN_MACADDR_SET,
607ca46e
DH
401};
402
403#define MACVLAN_FLAG_NOPROMISC 1
404
4e3c8992
DA
405/* VRF section */
406enum {
407 IFLA_VRF_UNSPEC,
408 IFLA_VRF_TABLE,
409 __IFLA_VRF_MAX
410};
411
412#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
413
67eb0331
DA
414enum {
415 IFLA_VRF_PORT_UNSPEC,
416 IFLA_VRF_PORT_TABLE,
417 __IFLA_VRF_PORT_MAX
418};
419
420#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
421
dece8d2b
SD
422/* MACSEC section */
423enum {
424 IFLA_MACSEC_UNSPEC,
425 IFLA_MACSEC_SCI,
426 IFLA_MACSEC_PORT,
427 IFLA_MACSEC_ICV_LEN,
428 IFLA_MACSEC_CIPHER_SUITE,
429 IFLA_MACSEC_WINDOW,
430 IFLA_MACSEC_ENCODING_SA,
431 IFLA_MACSEC_ENCRYPT,
432 IFLA_MACSEC_PROTECT,
433 IFLA_MACSEC_INC_SCI,
434 IFLA_MACSEC_ES,
435 IFLA_MACSEC_SCB,
436 IFLA_MACSEC_REPLAY_PROTECT,
437 IFLA_MACSEC_VALIDATION,
f60d94c0 438 IFLA_MACSEC_PAD,
dece8d2b
SD
439 __IFLA_MACSEC_MAX,
440};
441
442#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
443
444enum macsec_validation_type {
445 MACSEC_VALIDATE_DISABLED = 0,
446 MACSEC_VALIDATE_CHECK = 1,
447 MACSEC_VALIDATE_STRICT = 2,
448 __MACSEC_VALIDATE_END,
449 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
450};
451
2ad7bf36
MB
452/* IPVLAN section */
453enum {
454 IFLA_IPVLAN_UNSPEC,
455 IFLA_IPVLAN_MODE,
456 __IFLA_IPVLAN_MAX
457};
458
459#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
460
461enum ipvlan_mode {
462 IPVLAN_MODE_L2 = 0,
463 IPVLAN_MODE_L3,
464 IPVLAN_MODE_MAX
465};
466
607ca46e
DH
467/* VXLAN section */
468enum {
469 IFLA_VXLAN_UNSPEC,
470 IFLA_VXLAN_ID,
5d174dd8 471 IFLA_VXLAN_GROUP, /* group or remote address */
607ca46e
DH
472 IFLA_VXLAN_LINK,
473 IFLA_VXLAN_LOCAL,
474 IFLA_VXLAN_TTL,
475 IFLA_VXLAN_TOS,
476 IFLA_VXLAN_LEARNING,
477 IFLA_VXLAN_AGEING,
478 IFLA_VXLAN_LIMIT,
823aa873 479 IFLA_VXLAN_PORT_RANGE, /* source port */
e4f67add
DS
480 IFLA_VXLAN_PROXY,
481 IFLA_VXLAN_RSC,
482 IFLA_VXLAN_L2MISS,
483 IFLA_VXLAN_L3MISS,
823aa873 484 IFLA_VXLAN_PORT, /* destination port */
e4c7ed41
CW
485 IFLA_VXLAN_GROUP6,
486 IFLA_VXLAN_LOCAL6,
359a0ea9
TH
487 IFLA_VXLAN_UDP_CSUM,
488 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
489 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
dfd8645e
TH
490 IFLA_VXLAN_REMCSUM_TX,
491 IFLA_VXLAN_REMCSUM_RX,
3511494c 492 IFLA_VXLAN_GBP,
0ace2ca8 493 IFLA_VXLAN_REMCSUM_NOPARTIAL,
f8a9b1bc 494 IFLA_VXLAN_COLLECT_METADATA,
e7f70af1 495 IFLA_VXLAN_LABEL,
e1e5314d 496 IFLA_VXLAN_GPE,
607ca46e
DH
497 __IFLA_VXLAN_MAX
498};
499#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
500
501struct ifla_vxlan_port_range {
502 __be16 low;
503 __be16 high;
504};
505
2d07dc79
JL
506/* GENEVE section */
507enum {
508 IFLA_GENEVE_UNSPEC,
509 IFLA_GENEVE_ID,
510 IFLA_GENEVE_REMOTE,
8760ce58 511 IFLA_GENEVE_TTL,
d8951125 512 IFLA_GENEVE_TOS,
cd7918b3 513 IFLA_GENEVE_PORT, /* destination port */
e305ac6c 514 IFLA_GENEVE_COLLECT_METADATA,
8ed66f0e 515 IFLA_GENEVE_REMOTE6,
abe492b4
TH
516 IFLA_GENEVE_UDP_CSUM,
517 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
518 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
8eb3b995 519 IFLA_GENEVE_LABEL,
2d07dc79
JL
520 __IFLA_GENEVE_MAX
521};
522#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
523
96d934c7
GN
524/* PPP section */
525enum {
526 IFLA_PPP_UNSPEC,
527 IFLA_PPP_DEV_FD,
528 __IFLA_PPP_MAX
529};
530#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
531
459aa660
PN
532/* GTP section */
533enum {
534 IFLA_GTP_UNSPEC,
535 IFLA_GTP_FD0,
536 IFLA_GTP_FD1,
537 IFLA_GTP_PDP_HASHSIZE,
538 __IFLA_GTP_MAX,
539};
540#define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
541
90af2311
JP
542/* Bonding section */
543
544enum {
545 IFLA_BOND_UNSPEC,
546 IFLA_BOND_MODE,
ec76aa49 547 IFLA_BOND_ACTIVE_SLAVE,
eecdaa6e 548 IFLA_BOND_MIIMON,
25852e29 549 IFLA_BOND_UPDELAY,
c7461f9b 550 IFLA_BOND_DOWNDELAY,
9f53e14e 551 IFLA_BOND_USE_CARRIER,
06151dbc 552 IFLA_BOND_ARP_INTERVAL,
7f28fa10 553 IFLA_BOND_ARP_IP_TARGET,
29c49482 554 IFLA_BOND_ARP_VALIDATE,
d5c84254 555 IFLA_BOND_ARP_ALL_TARGETS,
0a98a0d1 556 IFLA_BOND_PRIMARY,
8a41ae44 557 IFLA_BOND_PRIMARY_RESELECT,
89901972 558 IFLA_BOND_FAIL_OVER_MAC,
f70161c6 559 IFLA_BOND_XMIT_HASH_POLICY,
d8838de7 560 IFLA_BOND_RESEND_IGMP,
2c9839c1 561 IFLA_BOND_NUM_PEER_NOTIF,
1cc0b1e3 562 IFLA_BOND_ALL_SLAVES_ACTIVE,
7d101008 563 IFLA_BOND_MIN_LINKS,
8d836d09 564 IFLA_BOND_LP_INTERVAL,
c13ab3ff 565 IFLA_BOND_PACKETS_PER_SLAVE,
998e40bb 566 IFLA_BOND_AD_LACP_RATE,
ec029fac 567 IFLA_BOND_AD_SELECT,
4ee7ac75 568 IFLA_BOND_AD_INFO,
171a42c3
AG
569 IFLA_BOND_AD_ACTOR_SYS_PRIO,
570 IFLA_BOND_AD_USER_PORT_KEY,
571 IFLA_BOND_AD_ACTOR_SYSTEM,
0f7bffd9 572 IFLA_BOND_TLB_DYNAMIC_LB,
90af2311
JP
573 __IFLA_BOND_MAX,
574};
575
576#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
577
4ee7ac75 578enum {
237266f7 579 IFLA_BOND_AD_INFO_UNSPEC,
4ee7ac75 580 IFLA_BOND_AD_INFO_AGGREGATOR,
581 IFLA_BOND_AD_INFO_NUM_PORTS,
582 IFLA_BOND_AD_INFO_ACTOR_KEY,
583 IFLA_BOND_AD_INFO_PARTNER_KEY,
584 IFLA_BOND_AD_INFO_PARTNER_MAC,
585 __IFLA_BOND_AD_INFO_MAX,
586};
587
588#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
589
1d3ee88a 590enum {
df7dbcbb
JP
591 IFLA_BOND_SLAVE_UNSPEC,
592 IFLA_BOND_SLAVE_STATE,
593 IFLA_BOND_SLAVE_MII_STATUS,
594 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
595 IFLA_BOND_SLAVE_PERM_HWADDR,
596 IFLA_BOND_SLAVE_QUEUE_ID,
597 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
254cb6db 598 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
46ea297e 599 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
df7dbcbb 600 __IFLA_BOND_SLAVE_MAX,
1d3ee88a 601};
602
df7dbcbb 603#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
1d3ee88a 604
607ca46e
DH
605/* SR-IOV virtual function management section */
606
607enum {
608 IFLA_VF_INFO_UNSPEC,
609 IFLA_VF_INFO,
610 __IFLA_VF_INFO_MAX,
611};
612
613#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
614
615enum {
616 IFLA_VF_UNSPEC,
617 IFLA_VF_MAC, /* Hardware queue specific attributes */
618 IFLA_VF_VLAN,
ed616689 619 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
607ca46e 620 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
1d8faf48 621 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
ed616689 622 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
01a3d796
VZ
623 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
624 * on/off switch
625 */
3b766cd8 626 IFLA_VF_STATS, /* network device statistics */
dd461d6a 627 IFLA_VF_TRUST, /* Trust VF */
cc8e27cc
EC
628 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
629 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
607ca46e
DH
630 __IFLA_VF_MAX,
631};
632
633#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
634
635struct ifla_vf_mac {
636 __u32 vf;
637 __u8 mac[32]; /* MAX_ADDR_LEN */
638};
639
640struct ifla_vf_vlan {
641 __u32 vf;
642 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
643 __u32 qos;
644};
645
646struct ifla_vf_tx_rate {
647 __u32 vf;
648 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
649};
650
ed616689
SC
651struct ifla_vf_rate {
652 __u32 vf;
653 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
654 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
655};
656
607ca46e
DH
657struct ifla_vf_spoofchk {
658 __u32 vf;
659 __u32 setting;
660};
661
cc8e27cc
EC
662struct ifla_vf_guid {
663 __u32 vf;
664 __u64 guid;
665};
666
1d8faf48
RE
667enum {
668 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
669 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
670 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
671 __IFLA_VF_LINK_STATE_MAX,
672};
673
674struct ifla_vf_link_state {
675 __u32 vf;
676 __u32 link_state;
677};
678
01a3d796
VZ
679struct ifla_vf_rss_query_en {
680 __u32 vf;
681 __u32 setting;
682};
683
3b766cd8
EBE
684enum {
685 IFLA_VF_STATS_RX_PACKETS,
686 IFLA_VF_STATS_TX_PACKETS,
687 IFLA_VF_STATS_RX_BYTES,
688 IFLA_VF_STATS_TX_BYTES,
689 IFLA_VF_STATS_BROADCAST,
690 IFLA_VF_STATS_MULTICAST,
343a6d8e 691 IFLA_VF_STATS_PAD,
3b766cd8
EBE
692 __IFLA_VF_STATS_MAX,
693};
694
695#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
696
dd461d6a
HS
697struct ifla_vf_trust {
698 __u32 vf;
699 __u32 setting;
700};
701
607ca46e
DH
702/* VF ports management section
703 *
704 * Nested layout of set/get msg is:
705 *
706 * [IFLA_NUM_VF]
707 * [IFLA_VF_PORTS]
708 * [IFLA_VF_PORT]
709 * [IFLA_PORT_*], ...
710 * [IFLA_VF_PORT]
711 * [IFLA_PORT_*], ...
712 * ...
713 * [IFLA_PORT_SELF]
714 * [IFLA_PORT_*], ...
715 */
716
717enum {
718 IFLA_VF_PORT_UNSPEC,
719 IFLA_VF_PORT, /* nest */
720 __IFLA_VF_PORT_MAX,
721};
722
723#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
724
725enum {
726 IFLA_PORT_UNSPEC,
727 IFLA_PORT_VF, /* __u32 */
728 IFLA_PORT_PROFILE, /* string */
729 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
730 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
731 IFLA_PORT_HOST_UUID, /* binary UUID */
732 IFLA_PORT_REQUEST, /* __u8 */
733 IFLA_PORT_RESPONSE, /* __u16, output only */
734 __IFLA_PORT_MAX,
735};
736
737#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
738
739#define PORT_PROFILE_MAX 40
740#define PORT_UUID_MAX 16
741#define PORT_SELF_VF -1
742
743enum {
744 PORT_REQUEST_PREASSOCIATE = 0,
745 PORT_REQUEST_PREASSOCIATE_RR,
746 PORT_REQUEST_ASSOCIATE,
747 PORT_REQUEST_DISASSOCIATE,
748};
749
750enum {
751 PORT_VDP_RESPONSE_SUCCESS = 0,
752 PORT_VDP_RESPONSE_INVALID_FORMAT,
753 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
754 PORT_VDP_RESPONSE_UNUSED_VTID,
755 PORT_VDP_RESPONSE_VTID_VIOLATION,
756 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
757 PORT_VDP_RESPONSE_OUT_OF_SYNC,
758 /* 0x08-0xFF reserved for future VDP use */
759 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
760 PORT_PROFILE_RESPONSE_INPROGRESS,
761 PORT_PROFILE_RESPONSE_INVALID,
762 PORT_PROFILE_RESPONSE_BADSTATE,
763 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
764 PORT_PROFILE_RESPONSE_ERROR,
765};
766
767struct ifla_port_vsi {
768 __u8 vsi_mgr_id;
769 __u8 vsi_type_id[3];
770 __u8 vsi_type_version;
771 __u8 pad[3];
772};
773
774
775/* IPoIB section */
776
777enum {
778 IFLA_IPOIB_UNSPEC,
779 IFLA_IPOIB_PKEY,
780 IFLA_IPOIB_MODE,
781 IFLA_IPOIB_UMCAST,
782 __IFLA_IPOIB_MAX
783};
784
785enum {
786 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
787 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
788};
789
790#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
791
f421436a
AB
792
793/* HSR section */
794
795enum {
796 IFLA_HSR_UNSPEC,
797 IFLA_HSR_SLAVE1,
798 IFLA_HSR_SLAVE2,
98bf8362
AB
799 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
800 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
801 IFLA_HSR_SEQ_NR,
b84e9307 802 IFLA_HSR_VERSION, /* HSR version */
f421436a
AB
803 __IFLA_HSR_MAX,
804};
805
806#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
807
10c9ead9
RP
808/* STATS section */
809
810struct if_stats_msg {
811 __u8 family;
812 __u8 pad1;
813 __u16 pad2;
814 __u32 ifindex;
815 __u32 filter_mask;
816};
817
818/* A stats attribute can be netdev specific or a global stat.
819 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
820 */
821enum {
822 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
823 IFLA_STATS_LINK_64,
97a47fac 824 IFLA_STATS_LINK_XSTATS,
10c9ead9
RP
825 __IFLA_STATS_MAX,
826};
827
828#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
829
830#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
831
97a47fac
NA
832/* These are embedded into IFLA_STATS_LINK_XSTATS:
833 * [IFLA_STATS_LINK_XSTATS]
834 * -> [LINK_XSTATS_TYPE_xxx]
835 * -> [rtnl link type specific attributes]
836 */
837enum {
838 LINK_XSTATS_TYPE_UNSPEC,
a60c0903 839 LINK_XSTATS_TYPE_BRIDGE,
97a47fac
NA
840 __LINK_XSTATS_TYPE_MAX
841};
842#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
843
607ca46e 844#endif /* _UAPI_LINUX_IF_LINK_H */
This page took 0.41848 seconds and 5 git commands to generate.