]> git.proxmox.com Git - mirror_iproute2.git/blame - include/uapi/linux/if_link.h
Update kernel headers
[mirror_iproute2.git] / include / uapi / linux / if_link.h
CommitLineData
ba914908 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
910773dc
SH
2#ifndef _LINUX_IF_LINK_H
3#define _LINUX_IF_LINK_H
ead2ba70 4
67881151 5#include <linux/types.h>
ead2ba70
SH
6#include <linux/netlink.h>
7
04a9fc0a 8/* This struct should be in sync with struct rtnl_link_stats64 */
ab322673 9struct rtnl_link_stats {
454429e8
DA
10 __u32 rx_packets;
11 __u32 tx_packets;
12 __u32 rx_bytes;
13 __u32 tx_bytes;
14 __u32 rx_errors;
15 __u32 tx_errors;
16 __u32 rx_dropped;
17 __u32 tx_dropped;
18 __u32 multicast;
ead2ba70 19 __u32 collisions;
ead2ba70
SH
20 /* detailed rx_errors: */
21 __u32 rx_length_errors;
454429e8
DA
22 __u32 rx_over_errors;
23 __u32 rx_crc_errors;
24 __u32 rx_frame_errors;
25 __u32 rx_fifo_errors;
26 __u32 rx_missed_errors;
ead2ba70
SH
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;
8593b2ca 38
454429e8 39 __u32 rx_nohandler;
ead2ba70
SH
40};
41
c8eb4b52
DA
42/**
43 * struct rtnl_link_stats64 - The main device statistics structure.
44 *
45 * @rx_packets: Number of good packets received by the interface.
46 * For hardware interfaces counts all good packets received from the device
47 * by the host, including packets which host had to drop at various stages
48 * of processing (even in the driver).
49 *
50 * @tx_packets: Number of packets successfully transmitted.
51 * For hardware interfaces counts packets which host was able to successfully
52 * hand over to the device, which does not necessarily mean that packets
53 * had been successfully transmitted out of the device, only that device
54 * acknowledged it copied them out of host memory.
55 *
56 * @rx_bytes: Number of good received bytes, corresponding to @rx_packets.
57 *
58 * For IEEE 802.3 devices should count the length of Ethernet Frames
59 * excluding the FCS.
60 *
61 * @tx_bytes: Number of good transmitted bytes, corresponding to @tx_packets.
62 *
63 * For IEEE 802.3 devices should count the length of Ethernet Frames
64 * excluding the FCS.
65 *
66 * @rx_errors: Total number of bad packets received on this network device.
67 * This counter must include events counted by @rx_length_errors,
68 * @rx_crc_errors, @rx_frame_errors and other errors not otherwise
69 * counted.
70 *
71 * @tx_errors: Total number of transmit problems.
72 * This counter must include events counter by @tx_aborted_errors,
73 * @tx_carrier_errors, @tx_fifo_errors, @tx_heartbeat_errors,
74 * @tx_window_errors and other errors not otherwise counted.
75 *
76 * @rx_dropped: Number of packets received but not processed,
77 * e.g. due to lack of resources or unsupported protocol.
78 * For hardware interfaces this counter should not include packets
79 * dropped by the device which are counted separately in
80 * @rx_missed_errors (since procfs folds those two counters together).
81 *
82 * @tx_dropped: Number of packets dropped on their way to transmission,
83 * e.g. due to lack of resources.
84 *
85 * @multicast: Multicast packets received.
86 * For hardware interfaces this statistic is commonly calculated
87 * at the device level (unlike @rx_packets) and therefore may include
88 * packets which did not reach the host.
89 *
90 * For IEEE 802.3 devices this counter may be equivalent to:
91 *
92 * - 30.3.1.1.21 aMulticastFramesReceivedOK
93 *
94 * @collisions: Number of collisions during packet transmissions.
95 *
96 * @rx_length_errors: Number of packets dropped due to invalid length.
97 * Part of aggregate "frame" errors in `/proc/net/dev`.
98 *
99 * For IEEE 802.3 devices this counter should be equivalent to a sum
100 * of the following attributes:
101 *
102 * - 30.3.1.1.23 aInRangeLengthErrors
103 * - 30.3.1.1.24 aOutOfRangeLengthField
104 * - 30.3.1.1.25 aFrameTooLongErrors
105 *
106 * @rx_over_errors: Receiver FIFO overflow event counter.
107 *
108 * Historically the count of overflow events. Such events may be
109 * reported in the receive descriptors or via interrupts, and may
110 * not correspond one-to-one with dropped packets.
111 *
112 * The recommended interpretation for high speed interfaces is -
113 * number of packets dropped because they did not fit into buffers
114 * provided by the host, e.g. packets larger than MTU or next buffer
115 * in the ring was not available for a scatter transfer.
116 *
117 * Part of aggregate "frame" errors in `/proc/net/dev`.
118 *
119 * This statistics was historically used interchangeably with
120 * @rx_fifo_errors.
121 *
122 * This statistic corresponds to hardware events and is not commonly used
123 * on software devices.
124 *
125 * @rx_crc_errors: Number of packets received with a CRC error.
126 * Part of aggregate "frame" errors in `/proc/net/dev`.
127 *
128 * For IEEE 802.3 devices this counter must be equivalent to:
129 *
130 * - 30.3.1.1.6 aFrameCheckSequenceErrors
131 *
132 * @rx_frame_errors: Receiver frame alignment errors.
133 * Part of aggregate "frame" errors in `/proc/net/dev`.
134 *
135 * For IEEE 802.3 devices this counter should be equivalent to:
136 *
137 * - 30.3.1.1.7 aAlignmentErrors
138 *
139 * @rx_fifo_errors: Receiver FIFO error counter.
140 *
141 * Historically the count of overflow events. Those events may be
142 * reported in the receive descriptors or via interrupts, and may
143 * not correspond one-to-one with dropped packets.
144 *
145 * This statistics was used interchangeably with @rx_over_errors.
146 * Not recommended for use in drivers for high speed interfaces.
147 *
148 * This statistic is used on software devices, e.g. to count software
149 * packet queue overflow (can) or sequencing errors (GRE).
150 *
151 * @rx_missed_errors: Count of packets missed by the host.
152 * Folded into the "drop" counter in `/proc/net/dev`.
153 *
154 * Counts number of packets dropped by the device due to lack
155 * of buffer space. This usually indicates that the host interface
156 * is slower than the network interface, or host is not keeping up
157 * with the receive packet rate.
158 *
159 * This statistic corresponds to hardware events and is not used
160 * on software devices.
161 *
162 * @tx_aborted_errors:
163 * Part of aggregate "carrier" errors in `/proc/net/dev`.
164 * For IEEE 802.3 devices capable of half-duplex operation this counter
165 * must be equivalent to:
166 *
167 * - 30.3.1.1.11 aFramesAbortedDueToXSColls
168 *
169 * High speed interfaces may use this counter as a general device
170 * discard counter.
171 *
172 * @tx_carrier_errors: Number of frame transmission errors due to loss
173 * of carrier during transmission.
174 * Part of aggregate "carrier" errors in `/proc/net/dev`.
175 *
176 * For IEEE 802.3 devices this counter must be equivalent to:
177 *
178 * - 30.3.1.1.13 aCarrierSenseErrors
179 *
180 * @tx_fifo_errors: Number of frame transmission errors due to device
181 * FIFO underrun / underflow. This condition occurs when the device
182 * begins transmission of a frame but is unable to deliver the
183 * entire frame to the transmitter in time for transmission.
184 * Part of aggregate "carrier" errors in `/proc/net/dev`.
185 *
186 * @tx_heartbeat_errors: Number of Heartbeat / SQE Test errors for
187 * old half-duplex Ethernet.
188 * Part of aggregate "carrier" errors in `/proc/net/dev`.
189 *
190 * For IEEE 802.3 devices possibly equivalent to:
191 *
192 * - 30.3.2.1.4 aSQETestErrors
193 *
194 * @tx_window_errors: Number of frame transmission errors due
195 * to late collisions (for Ethernet - after the first 64B of transmission).
196 * Part of aggregate "carrier" errors in `/proc/net/dev`.
197 *
198 * For IEEE 802.3 devices this counter must be equivalent to:
199 *
200 * - 30.3.1.1.10 aLateCollisions
201 *
202 * @rx_compressed: Number of correctly received compressed packets.
203 * This counters is only meaningful for interfaces which support
204 * packet compression (e.g. CSLIP, PPP).
205 *
206 * @tx_compressed: Number of transmitted compressed packets.
207 * This counters is only meaningful for interfaces which support
208 * packet compression (e.g. CSLIP, PPP).
209 *
210 * @rx_nohandler: Number of packets received on the interface
211 * but dropped by the networking stack because the device is
212 * not designated to receive packets (e.g. backup link in a bond).
213 */
b4397f58 214struct rtnl_link_stats64 {
c8eb4b52
DA
215 __u64 rx_packets;
216 __u64 tx_packets;
217 __u64 rx_bytes;
218 __u64 tx_bytes;
219 __u64 rx_errors;
220 __u64 tx_errors;
221 __u64 rx_dropped;
222 __u64 tx_dropped;
223 __u64 multicast;
b4397f58
SH
224 __u64 collisions;
225
226 /* detailed rx_errors: */
227 __u64 rx_length_errors;
c8eb4b52
DA
228 __u64 rx_over_errors;
229 __u64 rx_crc_errors;
230 __u64 rx_frame_errors;
231 __u64 rx_fifo_errors;
232 __u64 rx_missed_errors;
b4397f58
SH
233
234 /* detailed tx_errors */
235 __u64 tx_aborted_errors;
236 __u64 tx_carrier_errors;
237 __u64 tx_fifo_errors;
238 __u64 tx_heartbeat_errors;
239 __u64 tx_window_errors;
240
241 /* for cslip etc */
242 __u64 rx_compressed;
243 __u64 tx_compressed;
c8eb4b52 244 __u64 rx_nohandler;
b4397f58
SH
245};
246
ead2ba70 247/* The struct should be in sync with struct ifmap */
ab322673 248struct rtnl_link_ifmap {
ead2ba70
SH
249 __u64 mem_start;
250 __u64 mem_end;
251 __u64 base_addr;
252 __u16 irq;
253 __u8 dma;
254 __u8 port;
255};
256
9351fec7
SH
257/*
258 * IFLA_AF_SPEC
259 * Contains nested attributes for address family specific attributes.
260 * Each address family may create a attribute with the address family
261 * number as type and create its own attribute structure in it.
262 *
263 * Example:
264 * [IFLA_AF_SPEC] = {
265 * [AF_INET] = {
266 * [IFLA_INET_CONF] = ...,
267 * },
268 * [AF_INET6] = {
269 * [IFLA_INET6_FLAGS] = ...,
270 * [IFLA_INET6_CONF] = ...,
271 * }
272 * }
273 */
274
ab322673 275enum {
ead2ba70
SH
276 IFLA_UNSPEC,
277 IFLA_ADDRESS,
278 IFLA_BROADCAST,
279 IFLA_IFNAME,
280 IFLA_MTU,
281 IFLA_LINK,
282 IFLA_QDISC,
283 IFLA_STATS,
284 IFLA_COST,
285#define IFLA_COST IFLA_COST
286 IFLA_PRIORITY,
287#define IFLA_PRIORITY IFLA_PRIORITY
288 IFLA_MASTER,
289#define IFLA_MASTER IFLA_MASTER
290 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
291#define IFLA_WIRELESS IFLA_WIRELESS
292 IFLA_PROTINFO, /* Protocol specific information for a link */
293#define IFLA_PROTINFO IFLA_PROTINFO
294 IFLA_TXQLEN,
295#define IFLA_TXQLEN IFLA_TXQLEN
296 IFLA_MAP,
297#define IFLA_MAP IFLA_MAP
298 IFLA_WEIGHT,
299#define IFLA_WEIGHT IFLA_WEIGHT
300 IFLA_OPERSTATE,
301 IFLA_LINKMODE,
a6ffa8b0
SH
302 IFLA_LINKINFO,
303#define IFLA_LINKINFO IFLA_LINKINFO
5472ac6f 304 IFLA_NET_NS_PID,
05bfd165 305 IFLA_IFALIAS,
8ecdcce0 306 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
a1713954 307 IFLA_VFINFO_LIST,
b4397f58
SH
308 IFLA_STATS64,
309 IFLA_VF_PORTS,
310 IFLA_PORT_SELF,
9351fec7 311 IFLA_AF_SPEC,
21cfb5e1 312 IFLA_GROUP, /* Group the device belongs to */
e760a19a 313 IFLA_NET_NS_FD,
c23abafb 314 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
5e4dc84f
SH
315 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
316#define IFLA_PROMISCUITY IFLA_PROMISCUITY
a564b709
SH
317 IFLA_NUM_TX_QUEUES,
318 IFLA_NUM_RX_QUEUES,
609106d3 319 IFLA_CARRIER,
5318b2c6 320 IFLA_PHYS_PORT_ID,
ce3436ca 321 IFLA_CARRIER_CHANGES,
1c098687 322 IFLA_PHYS_SWITCH_ID,
8c58d403 323 IFLA_LINK_NETNSID,
cbdc3ed8 324 IFLA_PHYS_PORT_NAME,
a3563ede 325 IFLA_PROTO_DOWN,
6268b08c
SH
326 IFLA_GSO_MAX_SEGS,
327 IFLA_GSO_MAX_SIZE,
32c0b9b7 328 IFLA_PAD,
ba91cd9d 329 IFLA_XDP,
8612ca2f 330 IFLA_EVENT,
f53da99a 331 IFLA_NEW_NETNSID,
665ef5a5 332 IFLA_IF_NETNSID,
d9c0be4e 333 IFLA_TARGET_NETNSID = IFLA_IF_NETNSID, /* new alias */
07ed8df6
DA
334 IFLA_CARRIER_UP_COUNT,
335 IFLA_CARRIER_DOWN_COUNT,
336 IFLA_NEW_IFINDEX,
74eb09ad
DA
337 IFLA_MIN_MTU,
338 IFLA_MAX_MTU,
9dcd8788
DA
339 IFLA_PROP_LIST,
340 IFLA_ALT_IFNAME, /* Alternative ifname */
974f889c 341 IFLA_PERM_ADDRESS,
91922a41 342 IFLA_PROTO_DOWN_REASON,
ead2ba70
SH
343 __IFLA_MAX
344};
345
346
347#define IFLA_MAX (__IFLA_MAX - 1)
348
91922a41
DA
349enum {
350 IFLA_PROTO_DOWN_REASON_UNSPEC,
351 IFLA_PROTO_DOWN_REASON_MASK, /* u32, mask for reason bits */
352 IFLA_PROTO_DOWN_REASON_VALUE, /* u32, reason bit value */
353
354 __IFLA_PROTO_DOWN_REASON_CNT,
355 IFLA_PROTO_DOWN_REASON_MAX = __IFLA_PROTO_DOWN_REASON_CNT - 1
356};
357
5a8ba228 358/* backwards compatibility for userspace */
5a8ba228
SH
359#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
360#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
5a8ba228 361
9351fec7
SH
362enum {
363 IFLA_INET_UNSPEC,
364 IFLA_INET_CONF,
365 __IFLA_INET_MAX,
366};
367
368#define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
369
ead2ba70
SH
370/* ifi_flags.
371
372 IFF_* flags.
373
374 The only change is:
375 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
376 more not changeable by user. They describe link media
377 characteristics and set by device driver.
378
379 Comments:
380 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
381 - If neither of these three flags are set;
382 the interface is NBMA.
383
384 - IFF_MULTICAST does not mean anything special:
385 multicasts can be used on all not-NBMA links.
386 IFF_MULTICAST means that this media uses special encapsulation
387 for multicast frames. Apparently, all IFF_POINTOPOINT and
388 IFF_BROADCAST devices are able to use multicasts too.
389 */
390
391/* IFLA_LINK.
392 For usual devices it is equal ifi_index.
393 If it is a "virtual interface" (f.e. tunnel), ifi_link
394 can point to real physical interface (f.e. for bandwidth calculations),
395 or maybe 0, what means, that real media is unknown (usual
396 for IPIP tunnels, when route to endpoint is allowed to change)
397 */
398
399/* Subtype attributes for IFLA_PROTINFO */
ab322673 400enum {
ead2ba70
SH
401 IFLA_INET6_UNSPEC,
402 IFLA_INET6_FLAGS, /* link flags */
403 IFLA_INET6_CONF, /* sysctl parameters */
404 IFLA_INET6_STATS, /* statistics */
405 IFLA_INET6_MCAST, /* MC things. What of them? */
406 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
de3d12f4 407 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
79e9a1db 408 IFLA_INET6_TOKEN, /* device token */
945eaebd 409 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
ead2ba70
SH
410 __IFLA_INET6_MAX
411};
412
413#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
414
945eaebd
SH
415enum in6_addr_gen_mode {
416 IN6_ADDR_GEN_MODE_EUI64,
417 IN6_ADDR_GEN_MODE_NONE,
cbdc3ed8 418 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
a4c89d80 419 IN6_ADDR_GEN_MODE_RANDOM,
945eaebd
SH
420};
421
dddfc7f6
SH
422/* Bridge section */
423
424enum {
425 IFLA_BR_UNSPEC,
426 IFLA_BR_FORWARD_DELAY,
427 IFLA_BR_HELLO_TIME,
428 IFLA_BR_MAX_AGE,
cbdc3ed8
SH
429 IFLA_BR_AGEING_TIME,
430 IFLA_BR_STP_STATE,
431 IFLA_BR_PRIORITY,
8fcba79e 432 IFLA_BR_VLAN_FILTERING,
8d62f3e2 433 IFLA_BR_VLAN_PROTOCOL,
23e90509
SH
434 IFLA_BR_GROUP_FWD_MASK,
435 IFLA_BR_ROOT_ID,
436 IFLA_BR_BRIDGE_ID,
437 IFLA_BR_ROOT_PORT,
438 IFLA_BR_ROOT_PATH_COST,
439 IFLA_BR_TOPOLOGY_CHANGE,
440 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
441 IFLA_BR_HELLO_TIMER,
442 IFLA_BR_TCN_TIMER,
443 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
444 IFLA_BR_GC_TIMER,
445 IFLA_BR_GROUP_ADDR,
446 IFLA_BR_FDB_FLUSH,
447 IFLA_BR_MCAST_ROUTER,
448 IFLA_BR_MCAST_SNOOPING,
449 IFLA_BR_MCAST_QUERY_USE_IFADDR,
450 IFLA_BR_MCAST_QUERIER,
451 IFLA_BR_MCAST_HASH_ELASTICITY,
452 IFLA_BR_MCAST_HASH_MAX,
453 IFLA_BR_MCAST_LAST_MEMBER_CNT,
454 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
455 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
456 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
457 IFLA_BR_MCAST_QUERIER_INTVL,
458 IFLA_BR_MCAST_QUERY_INTVL,
459 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
460 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
461 IFLA_BR_NF_CALL_IPTABLES,
462 IFLA_BR_NF_CALL_IP6TABLES,
463 IFLA_BR_NF_CALL_ARPTABLES,
464 IFLA_BR_VLAN_DEFAULT_PVID,
31ce6e01
SH
465 IFLA_BR_PAD,
466 IFLA_BR_VLAN_STATS_ENABLED,
4824bb41 467 IFLA_BR_MCAST_STATS_ENABLED,
1a97748b
SH
468 IFLA_BR_MCAST_IGMP_VERSION,
469 IFLA_BR_MCAST_MLD_VERSION,
39776a86 470 IFLA_BR_VLAN_STATS_PER_PORT,
17689d30 471 IFLA_BR_MULTI_BOOLOPT,
dddfc7f6
SH
472 __IFLA_BR_MAX,
473};
474
475#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
476
23e90509
SH
477struct ifla_bridge_id {
478 __u8 prio[2];
479 __u8 addr[6]; /* ETH_ALEN */
480};
481
910773dc
SH
482enum {
483 BRIDGE_MODE_UNSPEC,
484 BRIDGE_MODE_HAIRPIN,
485};
486
487enum {
488 IFLA_BRPORT_UNSPEC,
489 IFLA_BRPORT_STATE, /* Spanning tree state */
490 IFLA_BRPORT_PRIORITY, /* " priority */
491 IFLA_BRPORT_COST, /* " cost */
492 IFLA_BRPORT_MODE, /* mode (hairpin) */
493 IFLA_BRPORT_GUARD, /* bpdu guard */
494 IFLA_BRPORT_PROTECT, /* root port protection */
495 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
ecefa08c
SH
496 IFLA_BRPORT_LEARNING, /* mac learning */
497 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
1c098687
SH
498 IFLA_BRPORT_PROXYARP, /* proxy ARP */
499 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
61333d24 500 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
23e90509
SH
501 IFLA_BRPORT_ROOT_ID, /* designated root */
502 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
503 IFLA_BRPORT_DESIGNATED_PORT,
504 IFLA_BRPORT_DESIGNATED_COST,
505 IFLA_BRPORT_ID,
506 IFLA_BRPORT_NO,
507 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
508 IFLA_BRPORT_CONFIG_PENDING,
509 IFLA_BRPORT_MESSAGE_AGE_TIMER,
510 IFLA_BRPORT_FORWARD_DELAY_TIMER,
511 IFLA_BRPORT_HOLD_TIMER,
512 IFLA_BRPORT_FLUSH,
513 IFLA_BRPORT_MULTICAST_ROUTER,
31ce6e01 514 IFLA_BRPORT_PAD,
e8a67bc4 515 IFLA_BRPORT_MCAST_FLOOD,
b479a7d7 516 IFLA_BRPORT_MCAST_TO_UCAST,
985091aa 517 IFLA_BRPORT_VLAN_TUNNEL,
7ff1fce5 518 IFLA_BRPORT_BCAST_FLOOD,
1db903de 519 IFLA_BRPORT_GROUP_FWD_MASK,
f53da99a 520 IFLA_BRPORT_NEIGH_SUPPRESS,
57ac202c 521 IFLA_BRPORT_ISOLATED,
8b099da5 522 IFLA_BRPORT_BACKUP_PORT,
02ade5a8 523 IFLA_BRPORT_MRP_RING_OPEN,
beaf281c 524 IFLA_BRPORT_MRP_IN_OPEN,
910773dc
SH
525 __IFLA_BRPORT_MAX
526};
527#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
528
ab322673 529struct ifla_cacheinfo {
ead2ba70
SH
530 __u32 max_reasm_len;
531 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
532 __u32 reachable_time;
533 __u32 retrans_time;
534};
535
ab322673 536enum {
a6ffa8b0
SH
537 IFLA_INFO_UNSPEC,
538 IFLA_INFO_KIND,
539 IFLA_INFO_DATA,
540 IFLA_INFO_XSTATS,
8cfeddab
SH
541 IFLA_INFO_SLAVE_KIND,
542 IFLA_INFO_SLAVE_DATA,
a6ffa8b0
SH
543 __IFLA_INFO_MAX,
544};
545
546#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
547
548/* VLAN section */
549
ab322673 550enum {
a6ffa8b0
SH
551 IFLA_VLAN_UNSPEC,
552 IFLA_VLAN_ID,
553 IFLA_VLAN_FLAGS,
554 IFLA_VLAN_EGRESS_QOS,
555 IFLA_VLAN_INGRESS_QOS,
79e9a1db 556 IFLA_VLAN_PROTOCOL,
a6ffa8b0
SH
557 __IFLA_VLAN_MAX,
558};
559
560#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
561
562struct ifla_vlan_flags {
563 __u32 flags;
564 __u32 mask;
565};
566
ab322673 567enum {
a6ffa8b0
SH
568 IFLA_VLAN_QOS_UNSPEC,
569 IFLA_VLAN_QOS_MAPPING,
570 __IFLA_VLAN_QOS_MAX
571};
572
573#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
574
ab322673 575struct ifla_vlan_qos_mapping {
a6ffa8b0
SH
576 __u32 from;
577 __u32 to;
578};
579
ab322673
SH
580/* MACVLAN section */
581enum {
582 IFLA_MACVLAN_UNSPEC,
583 IFLA_MACVLAN_MODE,
5e4dc84f 584 IFLA_MACVLAN_FLAGS,
dddfc7f6
SH
585 IFLA_MACVLAN_MACADDR_MODE,
586 IFLA_MACVLAN_MACADDR,
587 IFLA_MACVLAN_MACADDR_DATA,
588 IFLA_MACVLAN_MACADDR_COUNT,
ab322673
SH
589 __IFLA_MACVLAN_MAX,
590};
591
592#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
593
594enum macvlan_mode {
595 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
596 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
597 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
9351fec7 598 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
dddfc7f6
SH
599 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
600};
601
602enum macvlan_macaddr_mode {
603 MACVLAN_MACADDR_ADD,
604 MACVLAN_MACADDR_DEL,
605 MACVLAN_MACADDR_FLUSH,
606 MACVLAN_MACADDR_SET,
ab322673
SH
607};
608
5e4dc84f
SH
609#define MACVLAN_FLAG_NOPROMISC 1
610
75d67d35
SH
611/* VRF section */
612enum {
613 IFLA_VRF_UNSPEC,
614 IFLA_VRF_TABLE,
615 __IFLA_VRF_MAX
616};
617
618#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
619
8593b2ca
SH
620enum {
621 IFLA_VRF_PORT_UNSPEC,
622 IFLA_VRF_PORT_TABLE,
623 __IFLA_VRF_PORT_MAX
624};
625
626#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
627
b7e0091a
SH
628/* MACSEC section */
629enum {
630 IFLA_MACSEC_UNSPEC,
631 IFLA_MACSEC_SCI,
632 IFLA_MACSEC_PORT,
633 IFLA_MACSEC_ICV_LEN,
634 IFLA_MACSEC_CIPHER_SUITE,
635 IFLA_MACSEC_WINDOW,
636 IFLA_MACSEC_ENCODING_SA,
637 IFLA_MACSEC_ENCRYPT,
638 IFLA_MACSEC_PROTECT,
639 IFLA_MACSEC_INC_SCI,
640 IFLA_MACSEC_ES,
641 IFLA_MACSEC_SCB,
642 IFLA_MACSEC_REPLAY_PROTECT,
643 IFLA_MACSEC_VALIDATION,
31ce6e01 644 IFLA_MACSEC_PAD,
ce9191ff 645 IFLA_MACSEC_OFFLOAD,
b7e0091a
SH
646 __IFLA_MACSEC_MAX,
647};
648
649#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
650
74eb09ad
DA
651/* XFRM section */
652enum {
653 IFLA_XFRM_UNSPEC,
654 IFLA_XFRM_LINK,
655 IFLA_XFRM_IF_ID,
656 __IFLA_XFRM_MAX
657};
658
659#define IFLA_XFRM_MAX (__IFLA_XFRM_MAX - 1)
660
b7e0091a
SH
661enum macsec_validation_type {
662 MACSEC_VALIDATE_DISABLED = 0,
663 MACSEC_VALIDATE_CHECK = 1,
664 MACSEC_VALIDATE_STRICT = 2,
665 __MACSEC_VALIDATE_END,
666 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
667};
668
8b802d20
DA
669enum macsec_offload {
670 MACSEC_OFFLOAD_OFF = 0,
671 MACSEC_OFFLOAD_PHY = 1,
ce9191ff 672 MACSEC_OFFLOAD_MAC = 2,
8b802d20
DA
673 __MACSEC_OFFLOAD_END,
674 MACSEC_OFFLOAD_MAX = __MACSEC_OFFLOAD_END - 1,
675};
676
1c098687
SH
677/* IPVLAN section */
678enum {
679 IFLA_IPVLAN_UNSPEC,
680 IFLA_IPVLAN_MODE,
fe388b9e 681 IFLA_IPVLAN_FLAGS,
1c098687
SH
682 __IFLA_IPVLAN_MAX
683};
684
685#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
686
687enum ipvlan_mode {
688 IPVLAN_MODE_L2 = 0,
689 IPVLAN_MODE_L3,
e8a67bc4 690 IPVLAN_MODE_L3S,
1c098687
SH
691 IPVLAN_MODE_MAX
692};
693
fe388b9e
SH
694#define IPVLAN_F_PRIVATE 0x01
695#define IPVLAN_F_VEPA 0x02
696
f2264071
SH
697/* VXLAN section */
698enum {
699 IFLA_VXLAN_UNSPEC,
700 IFLA_VXLAN_ID,
79e9a1db 701 IFLA_VXLAN_GROUP, /* group or remote address */
f2264071
SH
702 IFLA_VXLAN_LINK,
703 IFLA_VXLAN_LOCAL,
704 IFLA_VXLAN_TTL,
705 IFLA_VXLAN_TOS,
706 IFLA_VXLAN_LEARNING,
707 IFLA_VXLAN_AGEING,
708 IFLA_VXLAN_LIMIT,
79e9a1db 709 IFLA_VXLAN_PORT_RANGE, /* source port */
910773dc
SH
710 IFLA_VXLAN_PROXY,
711 IFLA_VXLAN_RSC,
712 IFLA_VXLAN_L2MISS,
713 IFLA_VXLAN_L3MISS,
79e9a1db 714 IFLA_VXLAN_PORT, /* destination port */
c92716d1
SH
715 IFLA_VXLAN_GROUP6,
716 IFLA_VXLAN_LOCAL6,
fd5c1d43
SH
717 IFLA_VXLAN_UDP_CSUM,
718 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
719 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
8c58d403
SH
720 IFLA_VXLAN_REMCSUM_TX,
721 IFLA_VXLAN_REMCSUM_RX,
722 IFLA_VXLAN_GBP,
1f01dd89 723 IFLA_VXLAN_REMCSUM_NOPARTIAL,
089d93d6 724 IFLA_VXLAN_COLLECT_METADATA,
b7e0091a 725 IFLA_VXLAN_LABEL,
bc9fb257 726 IFLA_VXLAN_GPE,
075bf62a 727 IFLA_VXLAN_TTL_INHERIT,
3d98eba4 728 IFLA_VXLAN_DF,
f2264071
SH
729 __IFLA_VXLAN_MAX
730};
731#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
732
2d596120
SH
733struct ifla_vxlan_port_range {
734 __be16 low;
735 __be16 high;
736};
737
3d98eba4
SB
738enum ifla_vxlan_df {
739 VXLAN_DF_UNSET = 0,
740 VXLAN_DF_SET,
741 VXLAN_DF_INHERIT,
742 __VXLAN_DF_END,
743 VXLAN_DF_MAX = __VXLAN_DF_END - 1,
744};
745
8f42ceaf
SH
746/* GENEVE section */
747enum {
748 IFLA_GENEVE_UNSPEC,
749 IFLA_GENEVE_ID,
750 IFLA_GENEVE_REMOTE,
f4c05c2e 751 IFLA_GENEVE_TTL,
f4739b2e 752 IFLA_GENEVE_TOS,
8d62f3e2
SH
753 IFLA_GENEVE_PORT, /* destination port */
754 IFLA_GENEVE_COLLECT_METADATA,
0198930b 755 IFLA_GENEVE_REMOTE6,
741c20b0
SH
756 IFLA_GENEVE_UDP_CSUM,
757 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
758 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
b7e0091a 759 IFLA_GENEVE_LABEL,
d9c0be4e 760 IFLA_GENEVE_TTL_INHERIT,
64dbd03e 761 IFLA_GENEVE_DF,
8f42ceaf
SH
762 __IFLA_GENEVE_MAX
763};
764#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
765
64dbd03e
SB
766enum ifla_geneve_df {
767 GENEVE_DF_UNSET = 0,
768 GENEVE_DF_SET,
769 GENEVE_DF_INHERIT,
770 __GENEVE_DF_END,
771 GENEVE_DF_MAX = __GENEVE_DF_END - 1,
772};
773
b6b8e40b
DA
774/* Bareudp section */
775enum {
776 IFLA_BAREUDP_UNSPEC,
777 IFLA_BAREUDP_PORT,
778 IFLA_BAREUDP_ETHERTYPE,
779 IFLA_BAREUDP_SRCPORT_MIN,
780 IFLA_BAREUDP_MULTIPROTO_MODE,
781 __IFLA_BAREUDP_MAX
782};
783
784#define IFLA_BAREUDP_MAX (__IFLA_BAREUDP_MAX - 1)
785
31ce6e01
SH
786/* PPP section */
787enum {
788 IFLA_PPP_UNSPEC,
789 IFLA_PPP_DEV_FD,
790 __IFLA_PPP_MAX
791};
792#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
793
794/* GTP section */
45f78b4d
SH
795
796enum ifla_gtp_role {
797 GTP_ROLE_GGSN = 0,
798 GTP_ROLE_SGSN,
799};
800
31ce6e01
SH
801enum {
802 IFLA_GTP_UNSPEC,
803 IFLA_GTP_FD0,
804 IFLA_GTP_FD1,
805 IFLA_GTP_PDP_HASHSIZE,
45f78b4d 806 IFLA_GTP_ROLE,
31ce6e01
SH
807 __IFLA_GTP_MAX,
808};
809#define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
810
793da0e7
SH
811/* Bonding section */
812
813enum {
814 IFLA_BOND_UNSPEC,
815 IFLA_BOND_MODE,
816 IFLA_BOND_ACTIVE_SLAVE,
ec69a50c
SH
817 IFLA_BOND_MIIMON,
818 IFLA_BOND_UPDELAY,
819 IFLA_BOND_DOWNDELAY,
820 IFLA_BOND_USE_CARRIER,
821 IFLA_BOND_ARP_INTERVAL,
822 IFLA_BOND_ARP_IP_TARGET,
823 IFLA_BOND_ARP_VALIDATE,
824 IFLA_BOND_ARP_ALL_TARGETS,
825 IFLA_BOND_PRIMARY,
826 IFLA_BOND_PRIMARY_RESELECT,
827 IFLA_BOND_FAIL_OVER_MAC,
828 IFLA_BOND_XMIT_HASH_POLICY,
829 IFLA_BOND_RESEND_IGMP,
a4c51eb3
SH
830 IFLA_BOND_NUM_PEER_NOTIF,
831 IFLA_BOND_ALL_SLAVES_ACTIVE,
832 IFLA_BOND_MIN_LINKS,
833 IFLA_BOND_LP_INTERVAL,
834 IFLA_BOND_PACKETS_PER_SLAVE,
af9cd912
SH
835 IFLA_BOND_AD_LACP_RATE,
836 IFLA_BOND_AD_SELECT,
837 IFLA_BOND_AD_INFO,
8f42ceaf
SH
838 IFLA_BOND_AD_ACTOR_SYS_PRIO,
839 IFLA_BOND_AD_USER_PORT_KEY,
840 IFLA_BOND_AD_ACTOR_SYSTEM,
089d93d6 841 IFLA_BOND_TLB_DYNAMIC_LB,
01db6c41 842 IFLA_BOND_PEER_NOTIF_DELAY,
793da0e7
SH
843 __IFLA_BOND_MAX,
844};
845
846#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
847
af9cd912 848enum {
8cfeddab 849 IFLA_BOND_AD_INFO_UNSPEC,
af9cd912
SH
850 IFLA_BOND_AD_INFO_AGGREGATOR,
851 IFLA_BOND_AD_INFO_NUM_PORTS,
852 IFLA_BOND_AD_INFO_ACTOR_KEY,
853 IFLA_BOND_AD_INFO_PARTNER_KEY,
854 IFLA_BOND_AD_INFO_PARTNER_MAC,
855 __IFLA_BOND_AD_INFO_MAX,
856};
857
858#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
859
3ba9ccda 860enum {
8cfeddab
SH
861 IFLA_BOND_SLAVE_UNSPEC,
862 IFLA_BOND_SLAVE_STATE,
863 IFLA_BOND_SLAVE_MII_STATUS,
864 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
865 IFLA_BOND_SLAVE_PERM_HWADDR,
866 IFLA_BOND_SLAVE_QUEUE_ID,
867 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
ff631c3a
SH
868 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
869 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
8cfeddab 870 __IFLA_BOND_SLAVE_MAX,
3ba9ccda
SH
871};
872
8cfeddab 873#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
3ba9ccda 874
04a9fc0a 875/* SR-IOV virtual function management section */
8ecdcce0 876
a1713954
SH
877enum {
878 IFLA_VF_INFO_UNSPEC,
879 IFLA_VF_INFO,
880 __IFLA_VF_INFO_MAX,
881};
882
883#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
884
885enum {
886 IFLA_VF_UNSPEC,
887 IFLA_VF_MAC, /* Hardware queue specific attributes */
d9927247 888 IFLA_VF_VLAN, /* VLAN ID and QoS */
fd5c1d43 889 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
9044a454 890 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
ecefa08c 891 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
fd5c1d43 892 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
94f66538
SH
893 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
894 * on/off switch
895 */
ff631c3a 896 IFLA_VF_STATS, /* network device statistics */
dddf1b44 897 IFLA_VF_TRUST, /* Trust VF */
6268b08c
SH
898 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
899 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
d9927247 900 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */
ea985eb4 901 IFLA_VF_BROADCAST, /* VF broadcast */
a1713954
SH
902 __IFLA_VF_MAX,
903};
904
905#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
906
8ecdcce0
SH
907struct ifla_vf_mac {
908 __u32 vf;
909 __u8 mac[32]; /* MAX_ADDR_LEN */
910};
911
ea985eb4
DA
912struct ifla_vf_broadcast {
913 __u8 broadcast[32];
914};
915
8ecdcce0
SH
916struct ifla_vf_vlan {
917 __u32 vf;
918 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
919 __u32 qos;
920};
921
d9927247
SH
922enum {
923 IFLA_VF_VLAN_INFO_UNSPEC,
924 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */
925 __IFLA_VF_VLAN_INFO_MAX,
926};
927
928#define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
929#define MAX_VLAN_LIST_LEN 1
930
931struct ifla_vf_vlan_info {
932 __u32 vf;
933 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
934 __u32 qos;
935 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */
936};
937
8ecdcce0
SH
938struct ifla_vf_tx_rate {
939 __u32 vf;
940 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
941};
942
fd5c1d43
SH
943struct ifla_vf_rate {
944 __u32 vf;
945 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
946 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
947};
948
9044a454 949struct ifla_vf_spoofchk {
8ecdcce0 950 __u32 vf;
9044a454 951 __u32 setting;
8ecdcce0 952};
b4397f58 953
6268b08c
SH
954struct ifla_vf_guid {
955 __u32 vf;
956 __u64 guid;
957};
958
ecefa08c
SH
959enum {
960 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
961 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
962 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
963 __IFLA_VF_LINK_STATE_MAX,
964};
965
966struct ifla_vf_link_state {
967 __u32 vf;
968 __u32 link_state;
969};
970
94f66538
SH
971struct ifla_vf_rss_query_en {
972 __u32 vf;
973 __u32 setting;
974};
975
ff631c3a
SH
976enum {
977 IFLA_VF_STATS_RX_PACKETS,
978 IFLA_VF_STATS_TX_PACKETS,
979 IFLA_VF_STATS_RX_BYTES,
980 IFLA_VF_STATS_TX_BYTES,
981 IFLA_VF_STATS_BROADCAST,
982 IFLA_VF_STATS_MULTICAST,
31ce6e01 983 IFLA_VF_STATS_PAD,
c0788a09
DA
984 IFLA_VF_STATS_RX_DROPPED,
985 IFLA_VF_STATS_TX_DROPPED,
ff631c3a
SH
986 __IFLA_VF_STATS_MAX,
987};
988
989#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
990
dddf1b44
SH
991struct ifla_vf_trust {
992 __u32 vf;
993 __u32 setting;
994};
995
b4397f58
SH
996/* VF ports management section
997 *
998 * Nested layout of set/get msg is:
999 *
1000 * [IFLA_NUM_VF]
1001 * [IFLA_VF_PORTS]
1002 * [IFLA_VF_PORT]
1003 * [IFLA_PORT_*], ...
1004 * [IFLA_VF_PORT]
1005 * [IFLA_PORT_*], ...
1006 * ...
1007 * [IFLA_PORT_SELF]
1008 * [IFLA_PORT_*], ...
1009 */
1010
1011enum {
1012 IFLA_VF_PORT_UNSPEC,
1013 IFLA_VF_PORT, /* nest */
1014 __IFLA_VF_PORT_MAX,
1015};
1016
1017#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
1018
1019enum {
1020 IFLA_PORT_UNSPEC,
1021 IFLA_PORT_VF, /* __u32 */
1022 IFLA_PORT_PROFILE, /* string */
1023 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
1024 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
1025 IFLA_PORT_HOST_UUID, /* binary UUID */
1026 IFLA_PORT_REQUEST, /* __u8 */
1027 IFLA_PORT_RESPONSE, /* __u16, output only */
1028 __IFLA_PORT_MAX,
1029};
1030
1031#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
1032
1033#define PORT_PROFILE_MAX 40
1034#define PORT_UUID_MAX 16
1035#define PORT_SELF_VF -1
1036
1037enum {
1038 PORT_REQUEST_PREASSOCIATE = 0,
1039 PORT_REQUEST_PREASSOCIATE_RR,
1040 PORT_REQUEST_ASSOCIATE,
1041 PORT_REQUEST_DISASSOCIATE,
1042};
1043
1044enum {
1045 PORT_VDP_RESPONSE_SUCCESS = 0,
1046 PORT_VDP_RESPONSE_INVALID_FORMAT,
1047 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
1048 PORT_VDP_RESPONSE_UNUSED_VTID,
1049 PORT_VDP_RESPONSE_VTID_VIOLATION,
1050 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
1051 PORT_VDP_RESPONSE_OUT_OF_SYNC,
1052 /* 0x08-0xFF reserved for future VDP use */
1053 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
1054 PORT_PROFILE_RESPONSE_INPROGRESS,
1055 PORT_PROFILE_RESPONSE_INVALID,
1056 PORT_PROFILE_RESPONSE_BADSTATE,
1057 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
1058 PORT_PROFILE_RESPONSE_ERROR,
1059};
1060
1061struct ifla_port_vsi {
1062 __u8 vsi_mgr_id;
1063 __u8 vsi_type_id[3];
1064 __u8 vsi_type_version;
1065 __u8 pad[3];
1066};
1067
f2264071
SH
1068
1069/* IPoIB section */
1070
1071enum {
1072 IFLA_IPOIB_UNSPEC,
1073 IFLA_IPOIB_PKEY,
1074 IFLA_IPOIB_MODE,
1075 IFLA_IPOIB_UMCAST,
1076 __IFLA_IPOIB_MAX
1077};
1078
1079enum {
1080 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
1081 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
1082};
1083
1084#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
1085
fb876d89 1086
91922a41
DA
1087/* HSR/PRP section, both uses same interface */
1088
1089/* Different redundancy protocols for hsr device */
1090enum {
1091 HSR_PROTOCOL_HSR,
1092 HSR_PROTOCOL_PRP,
1093 HSR_PROTOCOL_MAX,
1094};
fb876d89
SH
1095
1096enum {
1097 IFLA_HSR_UNSPEC,
1098 IFLA_HSR_SLAVE1,
1099 IFLA_HSR_SLAVE2,
ec69a50c
SH
1100 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
1101 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
1102 IFLA_HSR_SEQ_NR,
32c0b9b7 1103 IFLA_HSR_VERSION, /* HSR version */
91922a41
DA
1104 IFLA_HSR_PROTOCOL, /* Indicate different protocol than
1105 * HSR. For example PRP.
1106 */
fb876d89
SH
1107 __IFLA_HSR_MAX,
1108};
1109
1110#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
1111
32c0b9b7
SH
1112/* STATS section */
1113
1114struct if_stats_msg {
1115 __u8 family;
1116 __u8 pad1;
1117 __u16 pad2;
1118 __u32 ifindex;
1119 __u32 filter_mask;
1120};
1121
1122/* A stats attribute can be netdev specific or a global stat.
1123 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
1124 */
1125enum {
1126 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
1127 IFLA_STATS_LINK_64,
31ce6e01 1128 IFLA_STATS_LINK_XSTATS,
4824bb41 1129 IFLA_STATS_LINK_XSTATS_SLAVE,
e8a67bc4 1130 IFLA_STATS_LINK_OFFLOAD_XSTATS,
a044b36a 1131 IFLA_STATS_AF_SPEC,
32c0b9b7
SH
1132 __IFLA_STATS_MAX,
1133};
1134
1135#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
1136
1137#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
1138
31ce6e01
SH
1139/* These are embedded into IFLA_STATS_LINK_XSTATS:
1140 * [IFLA_STATS_LINK_XSTATS]
1141 * -> [LINK_XSTATS_TYPE_xxx]
1142 * -> [rtnl link type specific attributes]
1143 */
1144enum {
1145 LINK_XSTATS_TYPE_UNSPEC,
1146 LINK_XSTATS_TYPE_BRIDGE,
f79b7733 1147 LINK_XSTATS_TYPE_BOND,
31ce6e01
SH
1148 __LINK_XSTATS_TYPE_MAX
1149};
1150#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
1151
e8a67bc4
SH
1152/* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
1153enum {
1154 IFLA_OFFLOAD_XSTATS_UNSPEC,
1155 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */
1156 __IFLA_OFFLOAD_XSTATS_MAX
1157};
1158#define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
1159
ba91cd9d
SH
1160/* XDP section */
1161
bf9a0aff 1162#define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
a2325adf
SH
1163#define XDP_FLAGS_SKB_MODE (1U << 1)
1164#define XDP_FLAGS_DRV_MODE (1U << 2)
35a004dc 1165#define XDP_FLAGS_HW_MODE (1U << 3)
ce9191ff 1166#define XDP_FLAGS_REPLACE (1U << 4)
35a004dc
SH
1167#define XDP_FLAGS_MODES (XDP_FLAGS_SKB_MODE | \
1168 XDP_FLAGS_DRV_MODE | \
1169 XDP_FLAGS_HW_MODE)
7ff1fce5 1170#define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST | \
ce9191ff 1171 XDP_FLAGS_MODES | XDP_FLAGS_REPLACE)
a2325adf
SH
1172
1173/* These are stored into IFLA_XDP_ATTACHED on dump. */
1174enum {
1175 XDP_ATTACHED_NONE = 0,
1176 XDP_ATTACHED_DRV,
1177 XDP_ATTACHED_SKB,
35a004dc 1178 XDP_ATTACHED_HW,
3eebc1d4 1179 XDP_ATTACHED_MULTI,
a2325adf 1180};
bf9a0aff 1181
ba91cd9d
SH
1182enum {
1183 IFLA_XDP_UNSPEC,
1184 IFLA_XDP_FD,
1185 IFLA_XDP_ATTACHED,
bf9a0aff 1186 IFLA_XDP_FLAGS,
35a004dc 1187 IFLA_XDP_PROG_ID,
3eebc1d4
DA
1188 IFLA_XDP_DRV_PROG_ID,
1189 IFLA_XDP_SKB_PROG_ID,
1190 IFLA_XDP_HW_PROG_ID,
ce9191ff 1191 IFLA_XDP_EXPECTED_FD,
ba91cd9d
SH
1192 __IFLA_XDP_MAX,
1193};
1194
1195#define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
1196
8612ca2f
SH
1197enum {
1198 IFLA_EVENT_NONE,
1199 IFLA_EVENT_REBOOT, /* internal reset / reboot */
1200 IFLA_EVENT_FEATURES, /* change in offload features */
1201 IFLA_EVENT_BONDING_FAILOVER, /* change in active slave */
1202 IFLA_EVENT_NOTIFY_PEERS, /* re-sent grat. arp/ndisc */
1203 IFLA_EVENT_IGMP_RESEND, /* re-sent IGMP JOIN */
1204 IFLA_EVENT_BONDING_OPTIONS, /* change in bonding options */
1205};
1206
07ed8df6
DA
1207/* tun section */
1208
1209enum {
1210 IFLA_TUN_UNSPEC,
1211 IFLA_TUN_OWNER,
1212 IFLA_TUN_GROUP,
1213 IFLA_TUN_TYPE,
1214 IFLA_TUN_PI,
1215 IFLA_TUN_VNET_HDR,
1216 IFLA_TUN_PERSIST,
1217 IFLA_TUN_MULTI_QUEUE,
1218 IFLA_TUN_NUM_QUEUES,
1219 IFLA_TUN_NUM_DISABLED_QUEUES,
1220 __IFLA_TUN_MAX,
1221};
1222
1223#define IFLA_TUN_MAX (__IFLA_TUN_MAX - 1)
1224
9effc146
DA
1225/* rmnet section */
1226
1227#define RMNET_FLAGS_INGRESS_DEAGGREGATION (1U << 0)
1228#define RMNET_FLAGS_INGRESS_MAP_COMMANDS (1U << 1)
1229#define RMNET_FLAGS_INGRESS_MAP_CKSUMV4 (1U << 2)
1230#define RMNET_FLAGS_EGRESS_MAP_CKSUMV4 (1U << 3)
1231
1232enum {
1233 IFLA_RMNET_UNSPEC,
1234 IFLA_RMNET_MUX_ID,
1235 IFLA_RMNET_FLAGS,
1236 __IFLA_RMNET_MAX,
1237};
1238
1239#define IFLA_RMNET_MAX (__IFLA_RMNET_MAX - 1)
1240
1241struct ifla_rmnet_flags {
1242 __u32 flags;
1243 __u32 mask;
1244};
1245
910773dc 1246#endif /* _LINUX_IF_LINK_H */