net: rtnetlink: add linkxstats callbacks and attribute
[linux-2.6-block.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,
e5c3ea5c
JP
275 __IFLA_BR_MAX,
276};
277
278#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
279
5127c81f
NA
280struct ifla_bridge_id {
281 __u8 prio[2];
282 __u8 addr[6]; /* ETH_ALEN */
283};
284
25c71c75 285enum {
286 BRIDGE_MODE_UNSPEC,
287 BRIDGE_MODE_HAIRPIN,
288};
289
290enum {
291 IFLA_BRPORT_UNSPEC,
292 IFLA_BRPORT_STATE, /* Spanning tree state */
293 IFLA_BRPORT_PRIORITY, /* " priority */
294 IFLA_BRPORT_COST, /* " cost */
295 IFLA_BRPORT_MODE, /* mode (hairpin) */
a2e01a65 296 IFLA_BRPORT_GUARD, /* bpdu guard */
1007dd1a 297 IFLA_BRPORT_PROTECT, /* root port protection */
c2d3babf 298 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
9ba18891 299 IFLA_BRPORT_LEARNING, /* mac learning */
867a5943 300 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
95850116 301 IFLA_BRPORT_PROXYARP, /* proxy ARP */
efacacda 302 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
842a9ae0 303 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
4ebc7660 304 IFLA_BRPORT_ROOT_ID, /* designated root */
80df9a26 305 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
96f94e7f
NA
306 IFLA_BRPORT_DESIGNATED_PORT,
307 IFLA_BRPORT_DESIGNATED_COST,
42d452c4
NA
308 IFLA_BRPORT_ID,
309 IFLA_BRPORT_NO,
e08e838a
NA
310 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
311 IFLA_BRPORT_CONFIG_PENDING,
61c0a9a8
NA
312 IFLA_BRPORT_MESSAGE_AGE_TIMER,
313 IFLA_BRPORT_FORWARD_DELAY_TIMER,
314 IFLA_BRPORT_HOLD_TIMER,
9b0c6e4d 315 IFLA_BRPORT_FLUSH,
5d6ae479 316 IFLA_BRPORT_MULTICAST_ROUTER,
12a0faa3 317 IFLA_BRPORT_PAD,
25c71c75 318 __IFLA_BRPORT_MAX
319};
320#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
321
607ca46e
DH
322struct ifla_cacheinfo {
323 __u32 max_reasm_len;
324 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
325 __u32 reachable_time;
326 __u32 retrans_time;
327};
328
329enum {
330 IFLA_INFO_UNSPEC,
331 IFLA_INFO_KIND,
332 IFLA_INFO_DATA,
333 IFLA_INFO_XSTATS,
ba7d49b1
JP
334 IFLA_INFO_SLAVE_KIND,
335 IFLA_INFO_SLAVE_DATA,
607ca46e
DH
336 __IFLA_INFO_MAX,
337};
338
339#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
340
341/* VLAN section */
342
343enum {
344 IFLA_VLAN_UNSPEC,
345 IFLA_VLAN_ID,
346 IFLA_VLAN_FLAGS,
347 IFLA_VLAN_EGRESS_QOS,
348 IFLA_VLAN_INGRESS_QOS,
8ad227ff 349 IFLA_VLAN_PROTOCOL,
607ca46e
DH
350 __IFLA_VLAN_MAX,
351};
352
353#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
354
355struct ifla_vlan_flags {
356 __u32 flags;
357 __u32 mask;
358};
359
360enum {
361 IFLA_VLAN_QOS_UNSPEC,
362 IFLA_VLAN_QOS_MAPPING,
363 __IFLA_VLAN_QOS_MAX
364};
365
366#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
367
368struct ifla_vlan_qos_mapping {
369 __u32 from;
370 __u32 to;
371};
372
373/* MACVLAN section */
374enum {
375 IFLA_MACVLAN_UNSPEC,
376 IFLA_MACVLAN_MODE,
377 IFLA_MACVLAN_FLAGS,
79cf79ab
MB
378 IFLA_MACVLAN_MACADDR_MODE,
379 IFLA_MACVLAN_MACADDR,
380 IFLA_MACVLAN_MACADDR_DATA,
381 IFLA_MACVLAN_MACADDR_COUNT,
607ca46e
DH
382 __IFLA_MACVLAN_MAX,
383};
384
385#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
386
387enum macvlan_mode {
388 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
389 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
390 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
391 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
79cf79ab
MB
392 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
393};
394
395enum macvlan_macaddr_mode {
396 MACVLAN_MACADDR_ADD,
397 MACVLAN_MACADDR_DEL,
398 MACVLAN_MACADDR_FLUSH,
399 MACVLAN_MACADDR_SET,
607ca46e
DH
400};
401
402#define MACVLAN_FLAG_NOPROMISC 1
403
4e3c8992
DA
404/* VRF section */
405enum {
406 IFLA_VRF_UNSPEC,
407 IFLA_VRF_TABLE,
408 __IFLA_VRF_MAX
409};
410
411#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
412
67eb0331
DA
413enum {
414 IFLA_VRF_PORT_UNSPEC,
415 IFLA_VRF_PORT_TABLE,
416 __IFLA_VRF_PORT_MAX
417};
418
419#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
420
dece8d2b
SD
421/* MACSEC section */
422enum {
423 IFLA_MACSEC_UNSPEC,
424 IFLA_MACSEC_SCI,
425 IFLA_MACSEC_PORT,
426 IFLA_MACSEC_ICV_LEN,
427 IFLA_MACSEC_CIPHER_SUITE,
428 IFLA_MACSEC_WINDOW,
429 IFLA_MACSEC_ENCODING_SA,
430 IFLA_MACSEC_ENCRYPT,
431 IFLA_MACSEC_PROTECT,
432 IFLA_MACSEC_INC_SCI,
433 IFLA_MACSEC_ES,
434 IFLA_MACSEC_SCB,
435 IFLA_MACSEC_REPLAY_PROTECT,
436 IFLA_MACSEC_VALIDATION,
f60d94c0 437 IFLA_MACSEC_PAD,
dece8d2b
SD
438 __IFLA_MACSEC_MAX,
439};
440
441#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
442
443enum macsec_validation_type {
444 MACSEC_VALIDATE_DISABLED = 0,
445 MACSEC_VALIDATE_CHECK = 1,
446 MACSEC_VALIDATE_STRICT = 2,
447 __MACSEC_VALIDATE_END,
448 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
449};
450
2ad7bf36
MB
451/* IPVLAN section */
452enum {
453 IFLA_IPVLAN_UNSPEC,
454 IFLA_IPVLAN_MODE,
455 __IFLA_IPVLAN_MAX
456};
457
458#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
459
460enum ipvlan_mode {
461 IPVLAN_MODE_L2 = 0,
462 IPVLAN_MODE_L3,
463 IPVLAN_MODE_MAX
464};
465
607ca46e
DH
466/* VXLAN section */
467enum {
468 IFLA_VXLAN_UNSPEC,
469 IFLA_VXLAN_ID,
5d174dd8 470 IFLA_VXLAN_GROUP, /* group or remote address */
607ca46e
DH
471 IFLA_VXLAN_LINK,
472 IFLA_VXLAN_LOCAL,
473 IFLA_VXLAN_TTL,
474 IFLA_VXLAN_TOS,
475 IFLA_VXLAN_LEARNING,
476 IFLA_VXLAN_AGEING,
477 IFLA_VXLAN_LIMIT,
823aa873 478 IFLA_VXLAN_PORT_RANGE, /* source port */
e4f67add
DS
479 IFLA_VXLAN_PROXY,
480 IFLA_VXLAN_RSC,
481 IFLA_VXLAN_L2MISS,
482 IFLA_VXLAN_L3MISS,
823aa873 483 IFLA_VXLAN_PORT, /* destination port */
e4c7ed41
CW
484 IFLA_VXLAN_GROUP6,
485 IFLA_VXLAN_LOCAL6,
359a0ea9
TH
486 IFLA_VXLAN_UDP_CSUM,
487 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
488 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
dfd8645e
TH
489 IFLA_VXLAN_REMCSUM_TX,
490 IFLA_VXLAN_REMCSUM_RX,
3511494c 491 IFLA_VXLAN_GBP,
0ace2ca8 492 IFLA_VXLAN_REMCSUM_NOPARTIAL,
f8a9b1bc 493 IFLA_VXLAN_COLLECT_METADATA,
e7f70af1 494 IFLA_VXLAN_LABEL,
e1e5314d 495 IFLA_VXLAN_GPE,
607ca46e
DH
496 __IFLA_VXLAN_MAX
497};
498#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
499
500struct ifla_vxlan_port_range {
501 __be16 low;
502 __be16 high;
503};
504
2d07dc79
JL
505/* GENEVE section */
506enum {
507 IFLA_GENEVE_UNSPEC,
508 IFLA_GENEVE_ID,
509 IFLA_GENEVE_REMOTE,
8760ce58 510 IFLA_GENEVE_TTL,
d8951125 511 IFLA_GENEVE_TOS,
cd7918b3 512 IFLA_GENEVE_PORT, /* destination port */
e305ac6c 513 IFLA_GENEVE_COLLECT_METADATA,
8ed66f0e 514 IFLA_GENEVE_REMOTE6,
abe492b4
TH
515 IFLA_GENEVE_UDP_CSUM,
516 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
517 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
8eb3b995 518 IFLA_GENEVE_LABEL,
2d07dc79
JL
519 __IFLA_GENEVE_MAX
520};
521#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
522
96d934c7
GN
523/* PPP section */
524enum {
525 IFLA_PPP_UNSPEC,
526 IFLA_PPP_DEV_FD,
527 __IFLA_PPP_MAX
528};
529#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
530
90af2311
JP
531/* Bonding section */
532
533enum {
534 IFLA_BOND_UNSPEC,
535 IFLA_BOND_MODE,
ec76aa49 536 IFLA_BOND_ACTIVE_SLAVE,
eecdaa6e 537 IFLA_BOND_MIIMON,
25852e29 538 IFLA_BOND_UPDELAY,
c7461f9b 539 IFLA_BOND_DOWNDELAY,
9f53e14e 540 IFLA_BOND_USE_CARRIER,
06151dbc 541 IFLA_BOND_ARP_INTERVAL,
7f28fa10 542 IFLA_BOND_ARP_IP_TARGET,
29c49482 543 IFLA_BOND_ARP_VALIDATE,
d5c84254 544 IFLA_BOND_ARP_ALL_TARGETS,
0a98a0d1 545 IFLA_BOND_PRIMARY,
8a41ae44 546 IFLA_BOND_PRIMARY_RESELECT,
89901972 547 IFLA_BOND_FAIL_OVER_MAC,
f70161c6 548 IFLA_BOND_XMIT_HASH_POLICY,
d8838de7 549 IFLA_BOND_RESEND_IGMP,
2c9839c1 550 IFLA_BOND_NUM_PEER_NOTIF,
1cc0b1e3 551 IFLA_BOND_ALL_SLAVES_ACTIVE,
7d101008 552 IFLA_BOND_MIN_LINKS,
8d836d09 553 IFLA_BOND_LP_INTERVAL,
c13ab3ff 554 IFLA_BOND_PACKETS_PER_SLAVE,
998e40bb 555 IFLA_BOND_AD_LACP_RATE,
ec029fac 556 IFLA_BOND_AD_SELECT,
4ee7ac75 557 IFLA_BOND_AD_INFO,
171a42c3
AG
558 IFLA_BOND_AD_ACTOR_SYS_PRIO,
559 IFLA_BOND_AD_USER_PORT_KEY,
560 IFLA_BOND_AD_ACTOR_SYSTEM,
0f7bffd9 561 IFLA_BOND_TLB_DYNAMIC_LB,
90af2311
JP
562 __IFLA_BOND_MAX,
563};
564
565#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
566
4ee7ac75 567enum {
237266f7 568 IFLA_BOND_AD_INFO_UNSPEC,
4ee7ac75 569 IFLA_BOND_AD_INFO_AGGREGATOR,
570 IFLA_BOND_AD_INFO_NUM_PORTS,
571 IFLA_BOND_AD_INFO_ACTOR_KEY,
572 IFLA_BOND_AD_INFO_PARTNER_KEY,
573 IFLA_BOND_AD_INFO_PARTNER_MAC,
574 __IFLA_BOND_AD_INFO_MAX,
575};
576
577#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
578
1d3ee88a 579enum {
df7dbcbb
JP
580 IFLA_BOND_SLAVE_UNSPEC,
581 IFLA_BOND_SLAVE_STATE,
582 IFLA_BOND_SLAVE_MII_STATUS,
583 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
584 IFLA_BOND_SLAVE_PERM_HWADDR,
585 IFLA_BOND_SLAVE_QUEUE_ID,
586 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
254cb6db 587 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
46ea297e 588 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
df7dbcbb 589 __IFLA_BOND_SLAVE_MAX,
1d3ee88a 590};
591
df7dbcbb 592#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
1d3ee88a 593
607ca46e
DH
594/* SR-IOV virtual function management section */
595
596enum {
597 IFLA_VF_INFO_UNSPEC,
598 IFLA_VF_INFO,
599 __IFLA_VF_INFO_MAX,
600};
601
602#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
603
604enum {
605 IFLA_VF_UNSPEC,
606 IFLA_VF_MAC, /* Hardware queue specific attributes */
607 IFLA_VF_VLAN,
ed616689 608 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
607ca46e 609 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
1d8faf48 610 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
ed616689 611 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
01a3d796
VZ
612 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
613 * on/off switch
614 */
3b766cd8 615 IFLA_VF_STATS, /* network device statistics */
dd461d6a 616 IFLA_VF_TRUST, /* Trust VF */
cc8e27cc
EC
617 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
618 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
607ca46e
DH
619 __IFLA_VF_MAX,
620};
621
622#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
623
624struct ifla_vf_mac {
625 __u32 vf;
626 __u8 mac[32]; /* MAX_ADDR_LEN */
627};
628
629struct ifla_vf_vlan {
630 __u32 vf;
631 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
632 __u32 qos;
633};
634
635struct ifla_vf_tx_rate {
636 __u32 vf;
637 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
638};
639
ed616689
SC
640struct ifla_vf_rate {
641 __u32 vf;
642 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
643 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
644};
645
607ca46e
DH
646struct ifla_vf_spoofchk {
647 __u32 vf;
648 __u32 setting;
649};
650
cc8e27cc
EC
651struct ifla_vf_guid {
652 __u32 vf;
653 __u64 guid;
654};
655
1d8faf48
RE
656enum {
657 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
658 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
659 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
660 __IFLA_VF_LINK_STATE_MAX,
661};
662
663struct ifla_vf_link_state {
664 __u32 vf;
665 __u32 link_state;
666};
667
01a3d796
VZ
668struct ifla_vf_rss_query_en {
669 __u32 vf;
670 __u32 setting;
671};
672
3b766cd8
EBE
673enum {
674 IFLA_VF_STATS_RX_PACKETS,
675 IFLA_VF_STATS_TX_PACKETS,
676 IFLA_VF_STATS_RX_BYTES,
677 IFLA_VF_STATS_TX_BYTES,
678 IFLA_VF_STATS_BROADCAST,
679 IFLA_VF_STATS_MULTICAST,
343a6d8e 680 IFLA_VF_STATS_PAD,
3b766cd8
EBE
681 __IFLA_VF_STATS_MAX,
682};
683
684#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
685
dd461d6a
HS
686struct ifla_vf_trust {
687 __u32 vf;
688 __u32 setting;
689};
690
607ca46e
DH
691/* VF ports management section
692 *
693 * Nested layout of set/get msg is:
694 *
695 * [IFLA_NUM_VF]
696 * [IFLA_VF_PORTS]
697 * [IFLA_VF_PORT]
698 * [IFLA_PORT_*], ...
699 * [IFLA_VF_PORT]
700 * [IFLA_PORT_*], ...
701 * ...
702 * [IFLA_PORT_SELF]
703 * [IFLA_PORT_*], ...
704 */
705
706enum {
707 IFLA_VF_PORT_UNSPEC,
708 IFLA_VF_PORT, /* nest */
709 __IFLA_VF_PORT_MAX,
710};
711
712#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
713
714enum {
715 IFLA_PORT_UNSPEC,
716 IFLA_PORT_VF, /* __u32 */
717 IFLA_PORT_PROFILE, /* string */
718 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
719 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
720 IFLA_PORT_HOST_UUID, /* binary UUID */
721 IFLA_PORT_REQUEST, /* __u8 */
722 IFLA_PORT_RESPONSE, /* __u16, output only */
723 __IFLA_PORT_MAX,
724};
725
726#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
727
728#define PORT_PROFILE_MAX 40
729#define PORT_UUID_MAX 16
730#define PORT_SELF_VF -1
731
732enum {
733 PORT_REQUEST_PREASSOCIATE = 0,
734 PORT_REQUEST_PREASSOCIATE_RR,
735 PORT_REQUEST_ASSOCIATE,
736 PORT_REQUEST_DISASSOCIATE,
737};
738
739enum {
740 PORT_VDP_RESPONSE_SUCCESS = 0,
741 PORT_VDP_RESPONSE_INVALID_FORMAT,
742 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
743 PORT_VDP_RESPONSE_UNUSED_VTID,
744 PORT_VDP_RESPONSE_VTID_VIOLATION,
745 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
746 PORT_VDP_RESPONSE_OUT_OF_SYNC,
747 /* 0x08-0xFF reserved for future VDP use */
748 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
749 PORT_PROFILE_RESPONSE_INPROGRESS,
750 PORT_PROFILE_RESPONSE_INVALID,
751 PORT_PROFILE_RESPONSE_BADSTATE,
752 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
753 PORT_PROFILE_RESPONSE_ERROR,
754};
755
756struct ifla_port_vsi {
757 __u8 vsi_mgr_id;
758 __u8 vsi_type_id[3];
759 __u8 vsi_type_version;
760 __u8 pad[3];
761};
762
763
764/* IPoIB section */
765
766enum {
767 IFLA_IPOIB_UNSPEC,
768 IFLA_IPOIB_PKEY,
769 IFLA_IPOIB_MODE,
770 IFLA_IPOIB_UMCAST,
771 __IFLA_IPOIB_MAX
772};
773
774enum {
775 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
776 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
777};
778
779#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
780
f421436a
AB
781
782/* HSR section */
783
784enum {
785 IFLA_HSR_UNSPEC,
786 IFLA_HSR_SLAVE1,
787 IFLA_HSR_SLAVE2,
98bf8362
AB
788 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
789 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
790 IFLA_HSR_SEQ_NR,
b84e9307 791 IFLA_HSR_VERSION, /* HSR version */
f421436a
AB
792 __IFLA_HSR_MAX,
793};
794
795#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
796
10c9ead9
RP
797/* STATS section */
798
799struct if_stats_msg {
800 __u8 family;
801 __u8 pad1;
802 __u16 pad2;
803 __u32 ifindex;
804 __u32 filter_mask;
805};
806
807/* A stats attribute can be netdev specific or a global stat.
808 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
809 */
810enum {
811 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
812 IFLA_STATS_LINK_64,
97a47fac 813 IFLA_STATS_LINK_XSTATS,
10c9ead9
RP
814 __IFLA_STATS_MAX,
815};
816
817#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
818
819#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
820
97a47fac
NA
821/* These are embedded into IFLA_STATS_LINK_XSTATS:
822 * [IFLA_STATS_LINK_XSTATS]
823 * -> [LINK_XSTATS_TYPE_xxx]
824 * -> [rtnl link type specific attributes]
825 */
826enum {
827 LINK_XSTATS_TYPE_UNSPEC,
828 __LINK_XSTATS_TYPE_MAX
829};
830#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
831
607ca46e 832#endif /* _UAPI_LINUX_IF_LINK_H */