net-core: rx_otherhost_dropped to core_stats
[linux-block.git] / include / uapi / linux / if_link.h
CommitLineData
6f52b16c 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
607ca46e
DH
2#ifndef _UAPI_LINUX_IF_LINK_H
3#define _UAPI_LINUX_IF_LINK_H
4
5#include <linux/types.h>
6#include <linux/netlink.h>
7
8/* This struct should be in sync with struct rtnl_link_stats64 */
9struct rtnl_link_stats {
78a3ea55
JK
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;
607ca46e 19 __u32 collisions;
607ca46e
DH
20 /* detailed rx_errors: */
21 __u32 rx_length_errors;
78a3ea55
JK
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;
607ca46e
DH
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 38
78a3ea55 39 __u32 rx_nohandler;
607ca46e
DH
40};
41
0db0c34c
JK
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.
cf072069
JK
78 * For hardware interfaces this counter may include packets discarded
79 * due to L2 address filtering but should not include packets dropped
80 * by the device due to buffer exhaustion which are counted separately in
0db0c34c
JK
81 * @rx_missed_errors (since procfs folds those two counters together).
82 *
83 * @tx_dropped: Number of packets dropped on their way to transmission,
84 * e.g. due to lack of resources.
85 *
86 * @multicast: Multicast packets received.
87 * For hardware interfaces this statistic is commonly calculated
88 * at the device level (unlike @rx_packets) and therefore may include
89 * packets which did not reach the host.
90 *
91 * For IEEE 802.3 devices this counter may be equivalent to:
92 *
93 * - 30.3.1.1.21 aMulticastFramesReceivedOK
94 *
95 * @collisions: Number of collisions during packet transmissions.
96 *
97 * @rx_length_errors: Number of packets dropped due to invalid length.
98 * Part of aggregate "frame" errors in `/proc/net/dev`.
99 *
100 * For IEEE 802.3 devices this counter should be equivalent to a sum
101 * of the following attributes:
102 *
103 * - 30.3.1.1.23 aInRangeLengthErrors
104 * - 30.3.1.1.24 aOutOfRangeLengthField
105 * - 30.3.1.1.25 aFrameTooLongErrors
106 *
107 * @rx_over_errors: Receiver FIFO overflow event counter.
108 *
109 * Historically the count of overflow events. Such events may be
110 * reported in the receive descriptors or via interrupts, and may
111 * not correspond one-to-one with dropped packets.
112 *
113 * The recommended interpretation for high speed interfaces is -
114 * number of packets dropped because they did not fit into buffers
115 * provided by the host, e.g. packets larger than MTU or next buffer
116 * in the ring was not available for a scatter transfer.
117 *
118 * Part of aggregate "frame" errors in `/proc/net/dev`.
119 *
120 * This statistics was historically used interchangeably with
121 * @rx_fifo_errors.
122 *
123 * This statistic corresponds to hardware events and is not commonly used
124 * on software devices.
125 *
126 * @rx_crc_errors: Number of packets received with a CRC error.
127 * Part of aggregate "frame" errors in `/proc/net/dev`.
128 *
129 * For IEEE 802.3 devices this counter must be equivalent to:
130 *
131 * - 30.3.1.1.6 aFrameCheckSequenceErrors
132 *
133 * @rx_frame_errors: Receiver frame alignment errors.
134 * Part of aggregate "frame" errors in `/proc/net/dev`.
135 *
136 * For IEEE 802.3 devices this counter should be equivalent to:
137 *
138 * - 30.3.1.1.7 aAlignmentErrors
139 *
140 * @rx_fifo_errors: Receiver FIFO error counter.
141 *
142 * Historically the count of overflow events. Those events may be
143 * reported in the receive descriptors or via interrupts, and may
144 * not correspond one-to-one with dropped packets.
145 *
146 * This statistics was used interchangeably with @rx_over_errors.
147 * Not recommended for use in drivers for high speed interfaces.
148 *
149 * This statistic is used on software devices, e.g. to count software
150 * packet queue overflow (can) or sequencing errors (GRE).
151 *
152 * @rx_missed_errors: Count of packets missed by the host.
153 * Folded into the "drop" counter in `/proc/net/dev`.
154 *
155 * Counts number of packets dropped by the device due to lack
156 * of buffer space. This usually indicates that the host interface
157 * is slower than the network interface, or host is not keeping up
158 * with the receive packet rate.
159 *
160 * This statistic corresponds to hardware events and is not used
161 * on software devices.
162 *
163 * @tx_aborted_errors:
164 * Part of aggregate "carrier" errors in `/proc/net/dev`.
165 * For IEEE 802.3 devices capable of half-duplex operation this counter
166 * must be equivalent to:
167 *
168 * - 30.3.1.1.11 aFramesAbortedDueToXSColls
169 *
170 * High speed interfaces may use this counter as a general device
171 * discard counter.
172 *
173 * @tx_carrier_errors: Number of frame transmission errors due to loss
174 * of carrier during transmission.
175 * Part of aggregate "carrier" errors in `/proc/net/dev`.
176 *
177 * For IEEE 802.3 devices this counter must be equivalent to:
178 *
179 * - 30.3.1.1.13 aCarrierSenseErrors
180 *
181 * @tx_fifo_errors: Number of frame transmission errors due to device
182 * FIFO underrun / underflow. This condition occurs when the device
183 * begins transmission of a frame but is unable to deliver the
184 * entire frame to the transmitter in time for transmission.
185 * Part of aggregate "carrier" errors in `/proc/net/dev`.
186 *
187 * @tx_heartbeat_errors: Number of Heartbeat / SQE Test errors for
188 * old half-duplex Ethernet.
189 * Part of aggregate "carrier" errors in `/proc/net/dev`.
190 *
191 * For IEEE 802.3 devices possibly equivalent to:
192 *
193 * - 30.3.2.1.4 aSQETestErrors
194 *
195 * @tx_window_errors: Number of frame transmission errors due
196 * to late collisions (for Ethernet - after the first 64B of transmission).
197 * Part of aggregate "carrier" errors in `/proc/net/dev`.
198 *
199 * For IEEE 802.3 devices this counter must be equivalent to:
200 *
201 * - 30.3.1.1.10 aLateCollisions
202 *
203 * @rx_compressed: Number of correctly received compressed packets.
204 * This counters is only meaningful for interfaces which support
205 * packet compression (e.g. CSLIP, PPP).
206 *
207 * @tx_compressed: Number of transmitted compressed packets.
208 * This counters is only meaningful for interfaces which support
209 * packet compression (e.g. CSLIP, PPP).
210 *
211 * @rx_nohandler: Number of packets received on the interface
212 * but dropped by the networking stack because the device is
213 * not designated to receive packets (e.g. backup link in a bond).
794c24e9
JJ
214 *
215 * @rx_otherhost_dropped: Number of packets dropped due to mismatch
216 * in destination MAC address.
0db0c34c 217 */
607ca46e 218struct rtnl_link_stats64 {
0db0c34c
JK
219 __u64 rx_packets;
220 __u64 tx_packets;
221 __u64 rx_bytes;
222 __u64 tx_bytes;
223 __u64 rx_errors;
224 __u64 tx_errors;
225 __u64 rx_dropped;
226 __u64 tx_dropped;
227 __u64 multicast;
607ca46e
DH
228 __u64 collisions;
229
230 /* detailed rx_errors: */
231 __u64 rx_length_errors;
0db0c34c
JK
232 __u64 rx_over_errors;
233 __u64 rx_crc_errors;
234 __u64 rx_frame_errors;
235 __u64 rx_fifo_errors;
236 __u64 rx_missed_errors;
607ca46e
DH
237
238 /* detailed tx_errors */
239 __u64 tx_aborted_errors;
240 __u64 tx_carrier_errors;
241 __u64 tx_fifo_errors;
242 __u64 tx_heartbeat_errors;
243 __u64 tx_window_errors;
244
245 /* for cslip etc */
246 __u64 rx_compressed;
247 __u64 tx_compressed;
0db0c34c 248 __u64 rx_nohandler;
794c24e9
JJ
249
250 __u64 rx_otherhost_dropped;
607ca46e
DH
251};
252
9309f97a
PM
253/* Subset of link stats useful for in-HW collection. Meaning of the fields is as
254 * for struct rtnl_link_stats64.
255 */
256struct rtnl_hw_stats64 {
257 __u64 rx_packets;
258 __u64 tx_packets;
259 __u64 rx_bytes;
260 __u64 tx_bytes;
261 __u64 rx_errors;
262 __u64 tx_errors;
263 __u64 rx_dropped;
264 __u64 tx_dropped;
265 __u64 multicast;
266};
267
607ca46e
DH
268/* The struct should be in sync with struct ifmap */
269struct rtnl_link_ifmap {
270 __u64 mem_start;
271 __u64 mem_end;
272 __u64 base_addr;
273 __u16 irq;
274 __u8 dma;
275 __u8 port;
276};
277
278/*
279 * IFLA_AF_SPEC
280 * Contains nested attributes for address family specific attributes.
281 * Each address family may create a attribute with the address family
282 * number as type and create its own attribute structure in it.
283 *
284 * Example:
285 * [IFLA_AF_SPEC] = {
286 * [AF_INET] = {
287 * [IFLA_INET_CONF] = ...,
288 * },
289 * [AF_INET6] = {
290 * [IFLA_INET6_FLAGS] = ...,
291 * [IFLA_INET6_CONF] = ...,
292 * }
293 * }
294 */
295
296enum {
297 IFLA_UNSPEC,
298 IFLA_ADDRESS,
299 IFLA_BROADCAST,
300 IFLA_IFNAME,
301 IFLA_MTU,
302 IFLA_LINK,
303 IFLA_QDISC,
304 IFLA_STATS,
305 IFLA_COST,
306#define IFLA_COST IFLA_COST
307 IFLA_PRIORITY,
308#define IFLA_PRIORITY IFLA_PRIORITY
309 IFLA_MASTER,
310#define IFLA_MASTER IFLA_MASTER
311 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
312#define IFLA_WIRELESS IFLA_WIRELESS
313 IFLA_PROTINFO, /* Protocol specific information for a link */
314#define IFLA_PROTINFO IFLA_PROTINFO
315 IFLA_TXQLEN,
316#define IFLA_TXQLEN IFLA_TXQLEN
317 IFLA_MAP,
318#define IFLA_MAP IFLA_MAP
319 IFLA_WEIGHT,
320#define IFLA_WEIGHT IFLA_WEIGHT
321 IFLA_OPERSTATE,
322 IFLA_LINKMODE,
323 IFLA_LINKINFO,
324#define IFLA_LINKINFO IFLA_LINKINFO
325 IFLA_NET_NS_PID,
326 IFLA_IFALIAS,
327 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
328 IFLA_VFINFO_LIST,
329 IFLA_STATS64,
330 IFLA_VF_PORTS,
331 IFLA_PORT_SELF,
332 IFLA_AF_SPEC,
333 IFLA_GROUP, /* Group the device belongs to */
334 IFLA_NET_NS_FD,
335 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
336 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
337#define IFLA_PROMISCUITY IFLA_PROMISCUITY
338 IFLA_NUM_TX_QUEUES,
339 IFLA_NUM_RX_QUEUES,
9a57247f 340 IFLA_CARRIER,
66cae9ed 341 IFLA_PHYS_PORT_ID,
2d3b479d 342 IFLA_CARRIER_CHANGES,
82f28412 343 IFLA_PHYS_SWITCH_ID,
d37512a2 344 IFLA_LINK_NETNSID,
db24a904 345 IFLA_PHYS_PORT_NAME,
88d6378b 346 IFLA_PROTO_DOWN,
c70ce028
ED
347 IFLA_GSO_MAX_SEGS,
348 IFLA_GSO_MAX_SIZE,
18402843 349 IFLA_PAD,
d1fdd913 350 IFLA_XDP,
3d3ea5af 351 IFLA_EVENT,
6621dd29 352 IFLA_NEW_NETNSID,
79e1ad14 353 IFLA_IF_NETNSID,
19d8f1ad 354 IFLA_TARGET_NETNSID = IFLA_IF_NETNSID, /* new alias */
b2d3bcfa
DD
355 IFLA_CARRIER_UP_COUNT,
356 IFLA_CARRIER_DOWN_COUNT,
38e01b30 357 IFLA_NEW_IFINDEX,
3e7a50ce
SH
358 IFLA_MIN_MTU,
359 IFLA_MAX_MTU,
36fbf1e5
JP
360 IFLA_PROP_LIST,
361 IFLA_ALT_IFNAME, /* Alternative ifname */
f74877a5 362 IFLA_PERM_ADDRESS,
829eb208 363 IFLA_PROTO_DOWN_REASON,
00e77ed8
JB
364
365 /* device (sysfs) name as parent, used instead
366 * of IFLA_LINK where there's no parent netdev
367 */
368 IFLA_PARENT_DEV_NAME,
369 IFLA_PARENT_DEV_BUS_NAME,
eac1b93c 370 IFLA_GRO_MAX_SIZE,
00e77ed8 371
607ca46e
DH
372 __IFLA_MAX
373};
374
375
376#define IFLA_MAX (__IFLA_MAX - 1)
377
829eb208
RP
378enum {
379 IFLA_PROTO_DOWN_REASON_UNSPEC,
380 IFLA_PROTO_DOWN_REASON_MASK, /* u32, mask for reason bits */
381 IFLA_PROTO_DOWN_REASON_VALUE, /* u32, reason bit value */
382
383 __IFLA_PROTO_DOWN_REASON_CNT,
384 IFLA_PROTO_DOWN_REASON_MAX = __IFLA_PROTO_DOWN_REASON_CNT - 1
385};
386
607ca46e
DH
387/* backwards compatibility for userspace */
388#ifndef __KERNEL__
389#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
390#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
391#endif
392
393enum {
394 IFLA_INET_UNSPEC,
395 IFLA_INET_CONF,
396 __IFLA_INET_MAX,
397};
398
399#define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
400
401/* ifi_flags.
402
403 IFF_* flags.
404
405 The only change is:
406 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
407 more not changeable by user. They describe link media
408 characteristics and set by device driver.
409
410 Comments:
411 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
412 - If neither of these three flags are set;
413 the interface is NBMA.
414
415 - IFF_MULTICAST does not mean anything special:
416 multicasts can be used on all not-NBMA links.
417 IFF_MULTICAST means that this media uses special encapsulation
418 for multicast frames. Apparently, all IFF_POINTOPOINT and
419 IFF_BROADCAST devices are able to use multicasts too.
420 */
421
422/* IFLA_LINK.
423 For usual devices it is equal ifi_index.
424 If it is a "virtual interface" (f.e. tunnel), ifi_link
425 can point to real physical interface (f.e. for bandwidth calculations),
426 or maybe 0, what means, that real media is unknown (usual
427 for IPIP tunnels, when route to endpoint is allowed to change)
428 */
429
430/* Subtype attributes for IFLA_PROTINFO */
431enum {
432 IFLA_INET6_UNSPEC,
433 IFLA_INET6_FLAGS, /* link flags */
434 IFLA_INET6_CONF, /* sysctl parameters */
435 IFLA_INET6_STATS, /* statistics */
436 IFLA_INET6_MCAST, /* MC things. What of them? */
437 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
438 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
f53adae4 439 IFLA_INET6_TOKEN, /* device token */
bc91b0f0 440 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
49b99da2 441 IFLA_INET6_RA_MTU, /* mtu carried in the RA message */
607ca46e
DH
442 __IFLA_INET6_MAX
443};
444
445#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
446
bc91b0f0
JP
447enum in6_addr_gen_mode {
448 IN6_ADDR_GEN_MODE_EUI64,
449 IN6_ADDR_GEN_MODE_NONE,
622c81d5 450 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
cc9da6cc 451 IN6_ADDR_GEN_MODE_RANDOM,
bc91b0f0
JP
452};
453
e5c3ea5c
JP
454/* Bridge section */
455
456enum {
457 IFLA_BR_UNSPEC,
458 IFLA_BR_FORWARD_DELAY,
459 IFLA_BR_HELLO_TIME,
460 IFLA_BR_MAX_AGE,
af615762
JT
461 IFLA_BR_AGEING_TIME,
462 IFLA_BR_STP_STATE,
463 IFLA_BR_PRIORITY,
a7854037 464 IFLA_BR_VLAN_FILTERING,
d2d427b3 465 IFLA_BR_VLAN_PROTOCOL,
7910228b 466 IFLA_BR_GROUP_FWD_MASK,
5127c81f 467 IFLA_BR_ROOT_ID,
7599a220 468 IFLA_BR_BRIDGE_ID,
8762ba68 469 IFLA_BR_ROOT_PORT,
684dd248 470 IFLA_BR_ROOT_PATH_COST,
ed416309
NA
471 IFLA_BR_TOPOLOGY_CHANGE,
472 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
d76bd14e
NA
473 IFLA_BR_HELLO_TIMER,
474 IFLA_BR_TCN_TIMER,
475 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
476 IFLA_BR_GC_TIMER,
111189ab 477 IFLA_BR_GROUP_ADDR,
150217c6 478 IFLA_BR_FDB_FLUSH,
a9a6bc70 479 IFLA_BR_MCAST_ROUTER,
89126327 480 IFLA_BR_MCAST_SNOOPING,
295141d9 481 IFLA_BR_MCAST_QUERY_USE_IFADDR,
ba062d7c 482 IFLA_BR_MCAST_QUERIER,
431db3c0 483 IFLA_BR_MCAST_HASH_ELASTICITY,
858079fd 484 IFLA_BR_MCAST_HASH_MAX,
79b859f5 485 IFLA_BR_MCAST_LAST_MEMBER_CNT,
b89e6bab 486 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
7e4df51e
NA
487 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
488 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
489 IFLA_BR_MCAST_QUERIER_INTVL,
490 IFLA_BR_MCAST_QUERY_INTVL,
491 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
492 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
93870cc0
NA
493 IFLA_BR_NF_CALL_IPTABLES,
494 IFLA_BR_NF_CALL_IP6TABLES,
495 IFLA_BR_NF_CALL_ARPTABLES,
0f963b75 496 IFLA_BR_VLAN_DEFAULT_PVID,
12a0faa3 497 IFLA_BR_PAD,
6dada9b1 498 IFLA_BR_VLAN_STATS_ENABLED,
1080ab95 499 IFLA_BR_MCAST_STATS_ENABLED,
5e923585 500 IFLA_BR_MCAST_IGMP_VERSION,
aa2ae3e7 501 IFLA_BR_MCAST_MLD_VERSION,
9163a0fc 502 IFLA_BR_VLAN_STATS_PER_PORT,
a428afe8 503 IFLA_BR_MULTI_BOOLOPT,
c7fa1d9b 504 IFLA_BR_MCAST_QUERIER_STATE,
e5c3ea5c
JP
505 __IFLA_BR_MAX,
506};
507
508#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
509
5127c81f
NA
510struct ifla_bridge_id {
511 __u8 prio[2];
512 __u8 addr[6]; /* ETH_ALEN */
513};
514
25c71c75 515enum {
516 BRIDGE_MODE_UNSPEC,
517 BRIDGE_MODE_HAIRPIN,
518};
519
520enum {
521 IFLA_BRPORT_UNSPEC,
522 IFLA_BRPORT_STATE, /* Spanning tree state */
523 IFLA_BRPORT_PRIORITY, /* " priority */
524 IFLA_BRPORT_COST, /* " cost */
525 IFLA_BRPORT_MODE, /* mode (hairpin) */
a2e01a65 526 IFLA_BRPORT_GUARD, /* bpdu guard */
1007dd1a 527 IFLA_BRPORT_PROTECT, /* root port protection */
c2d3babf 528 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
9ba18891 529 IFLA_BRPORT_LEARNING, /* mac learning */
867a5943 530 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
95850116 531 IFLA_BRPORT_PROXYARP, /* proxy ARP */
efacacda 532 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
842a9ae0 533 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
4ebc7660 534 IFLA_BRPORT_ROOT_ID, /* designated root */
80df9a26 535 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
96f94e7f
NA
536 IFLA_BRPORT_DESIGNATED_PORT,
537 IFLA_BRPORT_DESIGNATED_COST,
42d452c4
NA
538 IFLA_BRPORT_ID,
539 IFLA_BRPORT_NO,
e08e838a
NA
540 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
541 IFLA_BRPORT_CONFIG_PENDING,
61c0a9a8
NA
542 IFLA_BRPORT_MESSAGE_AGE_TIMER,
543 IFLA_BRPORT_FORWARD_DELAY_TIMER,
544 IFLA_BRPORT_HOLD_TIMER,
9b0c6e4d 545 IFLA_BRPORT_FLUSH,
5d6ae479 546 IFLA_BRPORT_MULTICAST_ROUTER,
12a0faa3 547 IFLA_BRPORT_PAD,
b6cb5ac8 548 IFLA_BRPORT_MCAST_FLOOD,
6db6f0ea 549 IFLA_BRPORT_MCAST_TO_UCAST,
b3c7ef0a 550 IFLA_BRPORT_VLAN_TUNNEL,
99f906e9 551 IFLA_BRPORT_BCAST_FLOOD,
5af48b59 552 IFLA_BRPORT_GROUP_FWD_MASK,
821f1b21 553 IFLA_BRPORT_NEIGH_SUPPRESS,
7d850abd 554 IFLA_BRPORT_ISOLATED,
2756f68c 555 IFLA_BRPORT_BACKUP_PORT,
3e54442c 556 IFLA_BRPORT_MRP_RING_OPEN,
ffb3adba 557 IFLA_BRPORT_MRP_IN_OPEN,
2dba407f
NA
558 IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT,
559 IFLA_BRPORT_MCAST_EHT_HOSTS_CNT,
a21d9a67 560 IFLA_BRPORT_LOCKED,
25c71c75 561 __IFLA_BRPORT_MAX
562};
563#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
564
607ca46e
DH
565struct ifla_cacheinfo {
566 __u32 max_reasm_len;
567 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
568 __u32 reachable_time;
569 __u32 retrans_time;
570};
571
572enum {
573 IFLA_INFO_UNSPEC,
574 IFLA_INFO_KIND,
575 IFLA_INFO_DATA,
576 IFLA_INFO_XSTATS,
ba7d49b1
JP
577 IFLA_INFO_SLAVE_KIND,
578 IFLA_INFO_SLAVE_DATA,
607ca46e
DH
579 __IFLA_INFO_MAX,
580};
581
582#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
583
584/* VLAN section */
585
586enum {
587 IFLA_VLAN_UNSPEC,
588 IFLA_VLAN_ID,
589 IFLA_VLAN_FLAGS,
590 IFLA_VLAN_EGRESS_QOS,
591 IFLA_VLAN_INGRESS_QOS,
8ad227ff 592 IFLA_VLAN_PROTOCOL,
607ca46e
DH
593 __IFLA_VLAN_MAX,
594};
595
596#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
597
598struct ifla_vlan_flags {
599 __u32 flags;
600 __u32 mask;
601};
602
603enum {
604 IFLA_VLAN_QOS_UNSPEC,
605 IFLA_VLAN_QOS_MAPPING,
606 __IFLA_VLAN_QOS_MAX
607};
608
609#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
610
611struct ifla_vlan_qos_mapping {
612 __u32 from;
613 __u32 to;
614};
615
616/* MACVLAN section */
617enum {
618 IFLA_MACVLAN_UNSPEC,
619 IFLA_MACVLAN_MODE,
620 IFLA_MACVLAN_FLAGS,
79cf79ab
MB
621 IFLA_MACVLAN_MACADDR_MODE,
622 IFLA_MACVLAN_MACADDR,
623 IFLA_MACVLAN_MACADDR_DATA,
624 IFLA_MACVLAN_MACADDR_COUNT,
d4bff72c
TK
625 IFLA_MACVLAN_BC_QUEUE_LEN,
626 IFLA_MACVLAN_BC_QUEUE_LEN_USED,
607ca46e
DH
627 __IFLA_MACVLAN_MAX,
628};
629
630#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
631
632enum macvlan_mode {
633 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
634 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
635 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
636 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
79cf79ab
MB
637 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
638};
639
640enum macvlan_macaddr_mode {
641 MACVLAN_MACADDR_ADD,
642 MACVLAN_MACADDR_DEL,
643 MACVLAN_MACADDR_FLUSH,
644 MACVLAN_MACADDR_SET,
607ca46e
DH
645};
646
647#define MACVLAN_FLAG_NOPROMISC 1
427f0c8c 648#define MACVLAN_FLAG_NODST 2 /* skip dst macvlan if matching src macvlan */
607ca46e 649
4e3c8992
DA
650/* VRF section */
651enum {
652 IFLA_VRF_UNSPEC,
653 IFLA_VRF_TABLE,
654 __IFLA_VRF_MAX
655};
656
657#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
658
67eb0331
DA
659enum {
660 IFLA_VRF_PORT_UNSPEC,
661 IFLA_VRF_PORT_TABLE,
662 __IFLA_VRF_PORT_MAX
663};
664
665#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
666
dece8d2b
SD
667/* MACSEC section */
668enum {
669 IFLA_MACSEC_UNSPEC,
670 IFLA_MACSEC_SCI,
671 IFLA_MACSEC_PORT,
672 IFLA_MACSEC_ICV_LEN,
673 IFLA_MACSEC_CIPHER_SUITE,
674 IFLA_MACSEC_WINDOW,
675 IFLA_MACSEC_ENCODING_SA,
676 IFLA_MACSEC_ENCRYPT,
677 IFLA_MACSEC_PROTECT,
678 IFLA_MACSEC_INC_SCI,
679 IFLA_MACSEC_ES,
680 IFLA_MACSEC_SCB,
681 IFLA_MACSEC_REPLAY_PROTECT,
682 IFLA_MACSEC_VALIDATION,
f60d94c0 683 IFLA_MACSEC_PAD,
791bb3fc 684 IFLA_MACSEC_OFFLOAD,
dece8d2b
SD
685 __IFLA_MACSEC_MAX,
686};
687
688#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
689
f203b76d
SK
690/* XFRM section */
691enum {
692 IFLA_XFRM_UNSPEC,
693 IFLA_XFRM_LINK,
694 IFLA_XFRM_IF_ID,
695 __IFLA_XFRM_MAX
696};
697
698#define IFLA_XFRM_MAX (__IFLA_XFRM_MAX - 1)
dece8d2b
SD
699
700enum macsec_validation_type {
701 MACSEC_VALIDATE_DISABLED = 0,
702 MACSEC_VALIDATE_CHECK = 1,
703 MACSEC_VALIDATE_STRICT = 2,
704 __MACSEC_VALIDATE_END,
705 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
706};
707
76564261
AT
708enum macsec_offload {
709 MACSEC_OFFLOAD_OFF = 0,
710 MACSEC_OFFLOAD_PHY = 1,
21114b7f 711 MACSEC_OFFLOAD_MAC = 2,
76564261
AT
712 __MACSEC_OFFLOAD_END,
713 MACSEC_OFFLOAD_MAX = __MACSEC_OFFLOAD_END - 1,
714};
715
2ad7bf36
MB
716/* IPVLAN section */
717enum {
718 IFLA_IPVLAN_UNSPEC,
719 IFLA_IPVLAN_MODE,
a190d04d 720 IFLA_IPVLAN_FLAGS,
2ad7bf36
MB
721 __IFLA_IPVLAN_MAX
722};
723
724#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
725
726enum ipvlan_mode {
727 IPVLAN_MODE_L2 = 0,
728 IPVLAN_MODE_L3,
4fbae7d8 729 IPVLAN_MODE_L3S,
2ad7bf36
MB
730 IPVLAN_MODE_MAX
731};
732
a190d04d 733#define IPVLAN_F_PRIVATE 0x01
fe89aa6b 734#define IPVLAN_F_VEPA 0x02
a190d04d 735
7b8135f4
RP
736/* Tunnel RTM header */
737struct tunnel_msg {
738 __u8 family;
445b2f36 739 __u8 flags;
7b8135f4
RP
740 __u16 reserved2;
741 __u32 ifindex;
742};
743
607ca46e 744/* VXLAN section */
445b2f36
NA
745
746/* include statistics in the dump */
747#define TUNNEL_MSG_FLAG_STATS 0x01
748
749#define TUNNEL_MSG_VALID_USER_FLAGS TUNNEL_MSG_FLAG_STATS
750
751/* Embedded inside VXLAN_VNIFILTER_ENTRY_STATS */
752enum {
753 VNIFILTER_ENTRY_STATS_UNSPEC,
754 VNIFILTER_ENTRY_STATS_RX_BYTES,
755 VNIFILTER_ENTRY_STATS_RX_PKTS,
756 VNIFILTER_ENTRY_STATS_RX_DROPS,
757 VNIFILTER_ENTRY_STATS_RX_ERRORS,
758 VNIFILTER_ENTRY_STATS_TX_BYTES,
759 VNIFILTER_ENTRY_STATS_TX_PKTS,
760 VNIFILTER_ENTRY_STATS_TX_DROPS,
761 VNIFILTER_ENTRY_STATS_TX_ERRORS,
762 VNIFILTER_ENTRY_STATS_PAD,
763 __VNIFILTER_ENTRY_STATS_MAX
764};
765#define VNIFILTER_ENTRY_STATS_MAX (__VNIFILTER_ENTRY_STATS_MAX - 1)
766
7b8135f4
RP
767enum {
768 VXLAN_VNIFILTER_ENTRY_UNSPEC,
769 VXLAN_VNIFILTER_ENTRY_START,
770 VXLAN_VNIFILTER_ENTRY_END,
771 VXLAN_VNIFILTER_ENTRY_GROUP,
772 VXLAN_VNIFILTER_ENTRY_GROUP6,
445b2f36 773 VXLAN_VNIFILTER_ENTRY_STATS,
7b8135f4
RP
774 __VXLAN_VNIFILTER_ENTRY_MAX
775};
776#define VXLAN_VNIFILTER_ENTRY_MAX (__VXLAN_VNIFILTER_ENTRY_MAX - 1)
777
778enum {
779 VXLAN_VNIFILTER_UNSPEC,
780 VXLAN_VNIFILTER_ENTRY,
781 __VXLAN_VNIFILTER_MAX
782};
783#define VXLAN_VNIFILTER_MAX (__VXLAN_VNIFILTER_MAX - 1)
784
607ca46e
DH
785enum {
786 IFLA_VXLAN_UNSPEC,
787 IFLA_VXLAN_ID,
5d174dd8 788 IFLA_VXLAN_GROUP, /* group or remote address */
607ca46e
DH
789 IFLA_VXLAN_LINK,
790 IFLA_VXLAN_LOCAL,
791 IFLA_VXLAN_TTL,
792 IFLA_VXLAN_TOS,
793 IFLA_VXLAN_LEARNING,
794 IFLA_VXLAN_AGEING,
795 IFLA_VXLAN_LIMIT,
823aa873 796 IFLA_VXLAN_PORT_RANGE, /* source port */
e4f67add
DS
797 IFLA_VXLAN_PROXY,
798 IFLA_VXLAN_RSC,
799 IFLA_VXLAN_L2MISS,
800 IFLA_VXLAN_L3MISS,
823aa873 801 IFLA_VXLAN_PORT, /* destination port */
e4c7ed41
CW
802 IFLA_VXLAN_GROUP6,
803 IFLA_VXLAN_LOCAL6,
359a0ea9
TH
804 IFLA_VXLAN_UDP_CSUM,
805 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
806 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
dfd8645e
TH
807 IFLA_VXLAN_REMCSUM_TX,
808 IFLA_VXLAN_REMCSUM_RX,
3511494c 809 IFLA_VXLAN_GBP,
0ace2ca8 810 IFLA_VXLAN_REMCSUM_NOPARTIAL,
f8a9b1bc 811 IFLA_VXLAN_COLLECT_METADATA,
e7f70af1 812 IFLA_VXLAN_LABEL,
e1e5314d 813 IFLA_VXLAN_GPE,
72f6d71e 814 IFLA_VXLAN_TTL_INHERIT,
b4d30697 815 IFLA_VXLAN_DF,
7b8135f4 816 IFLA_VXLAN_VNIFILTER, /* only applicable with COLLECT_METADATA mode */
607ca46e
DH
817 __IFLA_VXLAN_MAX
818};
819#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
820
821struct ifla_vxlan_port_range {
822 __be16 low;
823 __be16 high;
824};
825
b4d30697
SB
826enum ifla_vxlan_df {
827 VXLAN_DF_UNSET = 0,
828 VXLAN_DF_SET,
829 VXLAN_DF_INHERIT,
830 __VXLAN_DF_END,
831 VXLAN_DF_MAX = __VXLAN_DF_END - 1,
832};
833
2d07dc79
JL
834/* GENEVE section */
835enum {
836 IFLA_GENEVE_UNSPEC,
837 IFLA_GENEVE_ID,
838 IFLA_GENEVE_REMOTE,
8760ce58 839 IFLA_GENEVE_TTL,
d8951125 840 IFLA_GENEVE_TOS,
cd7918b3 841 IFLA_GENEVE_PORT, /* destination port */
e305ac6c 842 IFLA_GENEVE_COLLECT_METADATA,
8ed66f0e 843 IFLA_GENEVE_REMOTE6,
abe492b4
TH
844 IFLA_GENEVE_UDP_CSUM,
845 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
846 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
8eb3b995 847 IFLA_GENEVE_LABEL,
52d0d404 848 IFLA_GENEVE_TTL_INHERIT,
a025fb5f 849 IFLA_GENEVE_DF,
435fe1c0 850 IFLA_GENEVE_INNER_PROTO_INHERIT,
2d07dc79
JL
851 __IFLA_GENEVE_MAX
852};
853#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
854
a025fb5f
SB
855enum ifla_geneve_df {
856 GENEVE_DF_UNSET = 0,
857 GENEVE_DF_SET,
858 GENEVE_DF_INHERIT,
859 __GENEVE_DF_END,
860 GENEVE_DF_MAX = __GENEVE_DF_END - 1,
861};
862
571912c6
MV
863/* Bareudp section */
864enum {
865 IFLA_BAREUDP_UNSPEC,
866 IFLA_BAREUDP_PORT,
867 IFLA_BAREUDP_ETHERTYPE,
868 IFLA_BAREUDP_SRCPORT_MIN,
4b5f6723 869 IFLA_BAREUDP_MULTIPROTO_MODE,
571912c6
MV
870 __IFLA_BAREUDP_MAX
871};
872
873#define IFLA_BAREUDP_MAX (__IFLA_BAREUDP_MAX - 1)
874
96d934c7
GN
875/* PPP section */
876enum {
877 IFLA_PPP_UNSPEC,
878 IFLA_PPP_DEV_FD,
879 __IFLA_PPP_MAX
880};
881#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
882
459aa660 883/* GTP section */
91ed81f9
JB
884
885enum ifla_gtp_role {
886 GTP_ROLE_GGSN = 0,
887 GTP_ROLE_SGSN,
888};
889
459aa660
PN
890enum {
891 IFLA_GTP_UNSPEC,
892 IFLA_GTP_FD0,
893 IFLA_GTP_FD1,
894 IFLA_GTP_PDP_HASHSIZE,
91ed81f9 895 IFLA_GTP_ROLE,
b20dc3c6 896 IFLA_GTP_CREATE_SOCKETS,
9af41cc3 897 IFLA_GTP_RESTART_COUNT,
459aa660
PN
898 __IFLA_GTP_MAX,
899};
900#define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
901
90af2311
JP
902/* Bonding section */
903
904enum {
905 IFLA_BOND_UNSPEC,
906 IFLA_BOND_MODE,
ec76aa49 907 IFLA_BOND_ACTIVE_SLAVE,
eecdaa6e 908 IFLA_BOND_MIIMON,
25852e29 909 IFLA_BOND_UPDELAY,
c7461f9b 910 IFLA_BOND_DOWNDELAY,
9f53e14e 911 IFLA_BOND_USE_CARRIER,
06151dbc 912 IFLA_BOND_ARP_INTERVAL,
7f28fa10 913 IFLA_BOND_ARP_IP_TARGET,
29c49482 914 IFLA_BOND_ARP_VALIDATE,
d5c84254 915 IFLA_BOND_ARP_ALL_TARGETS,
0a98a0d1 916 IFLA_BOND_PRIMARY,
8a41ae44 917 IFLA_BOND_PRIMARY_RESELECT,
89901972 918 IFLA_BOND_FAIL_OVER_MAC,
f70161c6 919 IFLA_BOND_XMIT_HASH_POLICY,
d8838de7 920 IFLA_BOND_RESEND_IGMP,
2c9839c1 921 IFLA_BOND_NUM_PEER_NOTIF,
1cc0b1e3 922 IFLA_BOND_ALL_SLAVES_ACTIVE,
7d101008 923 IFLA_BOND_MIN_LINKS,
8d836d09 924 IFLA_BOND_LP_INTERVAL,
c13ab3ff 925 IFLA_BOND_PACKETS_PER_SLAVE,
998e40bb 926 IFLA_BOND_AD_LACP_RATE,
ec029fac 927 IFLA_BOND_AD_SELECT,
4ee7ac75 928 IFLA_BOND_AD_INFO,
171a42c3
AG
929 IFLA_BOND_AD_ACTOR_SYS_PRIO,
930 IFLA_BOND_AD_USER_PORT_KEY,
931 IFLA_BOND_AD_ACTOR_SYSTEM,
0f7bffd9 932 IFLA_BOND_TLB_DYNAMIC_LB,
07a4ddec 933 IFLA_BOND_PEER_NOTIF_DELAY,
3a755cd8 934 IFLA_BOND_AD_LACP_ACTIVE,
5944b5ab 935 IFLA_BOND_MISSED_MAX,
129e3c1b 936 IFLA_BOND_NS_IP6_TARGET,
90af2311
JP
937 __IFLA_BOND_MAX,
938};
939
940#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
941
4ee7ac75 942enum {
237266f7 943 IFLA_BOND_AD_INFO_UNSPEC,
4ee7ac75 944 IFLA_BOND_AD_INFO_AGGREGATOR,
945 IFLA_BOND_AD_INFO_NUM_PORTS,
946 IFLA_BOND_AD_INFO_ACTOR_KEY,
947 IFLA_BOND_AD_INFO_PARTNER_KEY,
948 IFLA_BOND_AD_INFO_PARTNER_MAC,
949 __IFLA_BOND_AD_INFO_MAX,
950};
951
952#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
953
1d3ee88a 954enum {
df7dbcbb
JP
955 IFLA_BOND_SLAVE_UNSPEC,
956 IFLA_BOND_SLAVE_STATE,
957 IFLA_BOND_SLAVE_MII_STATUS,
958 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
959 IFLA_BOND_SLAVE_PERM_HWADDR,
960 IFLA_BOND_SLAVE_QUEUE_ID,
961 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
254cb6db 962 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
46ea297e 963 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
df7dbcbb 964 __IFLA_BOND_SLAVE_MAX,
1d3ee88a 965};
966
df7dbcbb 967#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
1d3ee88a 968
607ca46e
DH
969/* SR-IOV virtual function management section */
970
971enum {
972 IFLA_VF_INFO_UNSPEC,
973 IFLA_VF_INFO,
974 __IFLA_VF_INFO_MAX,
975};
976
977#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
978
979enum {
980 IFLA_VF_UNSPEC,
981 IFLA_VF_MAC, /* Hardware queue specific attributes */
79aab093 982 IFLA_VF_VLAN, /* VLAN ID and QoS */
ed616689 983 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
607ca46e 984 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
1d8faf48 985 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
ed616689 986 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
01a3d796
VZ
987 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
988 * on/off switch
989 */
3b766cd8 990 IFLA_VF_STATS, /* network device statistics */
dd461d6a 991 IFLA_VF_TRUST, /* Trust VF */
cc8e27cc
EC
992 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
993 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
79aab093 994 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */
75345f88 995 IFLA_VF_BROADCAST, /* VF broadcast */
607ca46e
DH
996 __IFLA_VF_MAX,
997};
998
999#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
1000
1001struct ifla_vf_mac {
1002 __u32 vf;
1003 __u8 mac[32]; /* MAX_ADDR_LEN */
1004};
1005
75345f88
DK
1006struct ifla_vf_broadcast {
1007 __u8 broadcast[32];
1008};
1009
607ca46e
DH
1010struct ifla_vf_vlan {
1011 __u32 vf;
1012 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
1013 __u32 qos;
1014};
1015
79aab093
MS
1016enum {
1017 IFLA_VF_VLAN_INFO_UNSPEC,
1018 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */
1019 __IFLA_VF_VLAN_INFO_MAX,
1020};
1021
1022#define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
1023#define MAX_VLAN_LIST_LEN 1
1024
1025struct ifla_vf_vlan_info {
1026 __u32 vf;
1027 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
1028 __u32 qos;
1029 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */
1030};
1031
607ca46e
DH
1032struct ifla_vf_tx_rate {
1033 __u32 vf;
1034 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
1035};
1036
ed616689
SC
1037struct ifla_vf_rate {
1038 __u32 vf;
1039 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
1040 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
1041};
1042
607ca46e
DH
1043struct ifla_vf_spoofchk {
1044 __u32 vf;
1045 __u32 setting;
1046};
1047
cc8e27cc
EC
1048struct ifla_vf_guid {
1049 __u32 vf;
1050 __u64 guid;
1051};
1052
1d8faf48
RE
1053enum {
1054 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
1055 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
1056 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
1057 __IFLA_VF_LINK_STATE_MAX,
1058};
1059
1060struct ifla_vf_link_state {
1061 __u32 vf;
1062 __u32 link_state;
1063};
1064
01a3d796
VZ
1065struct ifla_vf_rss_query_en {
1066 __u32 vf;
1067 __u32 setting;
1068};
1069
3b766cd8
EBE
1070enum {
1071 IFLA_VF_STATS_RX_PACKETS,
1072 IFLA_VF_STATS_TX_PACKETS,
1073 IFLA_VF_STATS_RX_BYTES,
1074 IFLA_VF_STATS_TX_BYTES,
1075 IFLA_VF_STATS_BROADCAST,
1076 IFLA_VF_STATS_MULTICAST,
343a6d8e 1077 IFLA_VF_STATS_PAD,
c5a9f6f0
EE
1078 IFLA_VF_STATS_RX_DROPPED,
1079 IFLA_VF_STATS_TX_DROPPED,
3b766cd8
EBE
1080 __IFLA_VF_STATS_MAX,
1081};
1082
1083#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
1084
dd461d6a
HS
1085struct ifla_vf_trust {
1086 __u32 vf;
1087 __u32 setting;
1088};
1089
607ca46e
DH
1090/* VF ports management section
1091 *
1092 * Nested layout of set/get msg is:
1093 *
1094 * [IFLA_NUM_VF]
1095 * [IFLA_VF_PORTS]
1096 * [IFLA_VF_PORT]
1097 * [IFLA_PORT_*], ...
1098 * [IFLA_VF_PORT]
1099 * [IFLA_PORT_*], ...
1100 * ...
1101 * [IFLA_PORT_SELF]
1102 * [IFLA_PORT_*], ...
1103 */
1104
1105enum {
1106 IFLA_VF_PORT_UNSPEC,
1107 IFLA_VF_PORT, /* nest */
1108 __IFLA_VF_PORT_MAX,
1109};
1110
1111#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
1112
1113enum {
1114 IFLA_PORT_UNSPEC,
1115 IFLA_PORT_VF, /* __u32 */
1116 IFLA_PORT_PROFILE, /* string */
1117 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
1118 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
1119 IFLA_PORT_HOST_UUID, /* binary UUID */
1120 IFLA_PORT_REQUEST, /* __u8 */
1121 IFLA_PORT_RESPONSE, /* __u16, output only */
1122 __IFLA_PORT_MAX,
1123};
1124
1125#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
1126
1127#define PORT_PROFILE_MAX 40
1128#define PORT_UUID_MAX 16
1129#define PORT_SELF_VF -1
1130
1131enum {
1132 PORT_REQUEST_PREASSOCIATE = 0,
1133 PORT_REQUEST_PREASSOCIATE_RR,
1134 PORT_REQUEST_ASSOCIATE,
1135 PORT_REQUEST_DISASSOCIATE,
1136};
1137
1138enum {
1139 PORT_VDP_RESPONSE_SUCCESS = 0,
1140 PORT_VDP_RESPONSE_INVALID_FORMAT,
1141 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
1142 PORT_VDP_RESPONSE_UNUSED_VTID,
1143 PORT_VDP_RESPONSE_VTID_VIOLATION,
1144 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
1145 PORT_VDP_RESPONSE_OUT_OF_SYNC,
1146 /* 0x08-0xFF reserved for future VDP use */
1147 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
1148 PORT_PROFILE_RESPONSE_INPROGRESS,
1149 PORT_PROFILE_RESPONSE_INVALID,
1150 PORT_PROFILE_RESPONSE_BADSTATE,
1151 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
1152 PORT_PROFILE_RESPONSE_ERROR,
1153};
1154
1155struct ifla_port_vsi {
1156 __u8 vsi_mgr_id;
1157 __u8 vsi_type_id[3];
1158 __u8 vsi_type_version;
1159 __u8 pad[3];
1160};
1161
1162
1163/* IPoIB section */
1164
1165enum {
1166 IFLA_IPOIB_UNSPEC,
1167 IFLA_IPOIB_PKEY,
1168 IFLA_IPOIB_MODE,
1169 IFLA_IPOIB_UMCAST,
1170 __IFLA_IPOIB_MAX
1171};
1172
1173enum {
1174 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
1175 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
1176};
1177
1178#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
1179
f421436a 1180
8f4c0e01
MK
1181/* HSR/PRP section, both uses same interface */
1182
1183/* Different redundancy protocols for hsr device */
1184enum {
1185 HSR_PROTOCOL_HSR,
1186 HSR_PROTOCOL_PRP,
1187 HSR_PROTOCOL_MAX,
1188};
f421436a
AB
1189
1190enum {
1191 IFLA_HSR_UNSPEC,
1192 IFLA_HSR_SLAVE1,
1193 IFLA_HSR_SLAVE2,
98bf8362
AB
1194 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
1195 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
1196 IFLA_HSR_SEQ_NR,
b84e9307 1197 IFLA_HSR_VERSION, /* HSR version */
8f4c0e01
MK
1198 IFLA_HSR_PROTOCOL, /* Indicate different protocol than
1199 * HSR. For example PRP.
1200 */
f421436a
AB
1201 __IFLA_HSR_MAX,
1202};
1203
1204#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
1205
10c9ead9
RP
1206/* STATS section */
1207
1208struct if_stats_msg {
1209 __u8 family;
1210 __u8 pad1;
1211 __u16 pad2;
1212 __u32 ifindex;
1213 __u32 filter_mask;
1214};
1215
1216/* A stats attribute can be netdev specific or a global stat.
1217 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
1218 */
1219enum {
1220 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
1221 IFLA_STATS_LINK_64,
97a47fac 1222 IFLA_STATS_LINK_XSTATS,
80e73cc5 1223 IFLA_STATS_LINK_XSTATS_SLAVE,
69ae6ad2 1224 IFLA_STATS_LINK_OFFLOAD_XSTATS,
aefb4d4a 1225 IFLA_STATS_AF_SPEC,
10c9ead9
RP
1226 __IFLA_STATS_MAX,
1227};
1228
1229#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
1230
1231#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
1232
46efc97b
PM
1233enum {
1234 IFLA_STATS_GETSET_UNSPEC,
1235 IFLA_STATS_GET_FILTERS, /* Nest of IFLA_STATS_LINK_xxx, each a u32 with
1236 * a filter mask for the corresponding group.
1237 */
5fd0b838 1238 IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS, /* 0 or 1 as u8 */
46efc97b
PM
1239 __IFLA_STATS_GETSET_MAX,
1240};
1241
1242#define IFLA_STATS_GETSET_MAX (__IFLA_STATS_GETSET_MAX - 1)
1243
97a47fac
NA
1244/* These are embedded into IFLA_STATS_LINK_XSTATS:
1245 * [IFLA_STATS_LINK_XSTATS]
1246 * -> [LINK_XSTATS_TYPE_xxx]
1247 * -> [rtnl link type specific attributes]
1248 */
1249enum {
1250 LINK_XSTATS_TYPE_UNSPEC,
a60c0903 1251 LINK_XSTATS_TYPE_BRIDGE,
a258aeac 1252 LINK_XSTATS_TYPE_BOND,
97a47fac
NA
1253 __LINK_XSTATS_TYPE_MAX
1254};
1255#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
1256
69ae6ad2
NF
1257/* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
1258enum {
1259 IFLA_OFFLOAD_XSTATS_UNSPEC,
1260 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */
0e7788fd
PM
1261 IFLA_OFFLOAD_XSTATS_HW_S_INFO, /* HW stats info. A nest */
1262 IFLA_OFFLOAD_XSTATS_L3_STATS, /* struct rtnl_hw_stats64 */
69ae6ad2
NF
1263 __IFLA_OFFLOAD_XSTATS_MAX
1264};
1265#define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
1266
0e7788fd
PM
1267enum {
1268 IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC,
1269 IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST, /* u8 */
1270 IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED, /* u8 */
1271 __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX,
1272};
1273#define IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX \
1274 (__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX - 1)
1275
d1fdd913
BB
1276/* XDP section */
1277
85de8576 1278#define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
0489df9a
DB
1279#define XDP_FLAGS_SKB_MODE (1U << 1)
1280#define XDP_FLAGS_DRV_MODE (1U << 2)
ee5d032f 1281#define XDP_FLAGS_HW_MODE (1U << 3)
92234c8f 1282#define XDP_FLAGS_REPLACE (1U << 4)
ee5d032f
JK
1283#define XDP_FLAGS_MODES (XDP_FLAGS_SKB_MODE | \
1284 XDP_FLAGS_DRV_MODE | \
1285 XDP_FLAGS_HW_MODE)
b5cdae32 1286#define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST | \
92234c8f 1287 XDP_FLAGS_MODES | XDP_FLAGS_REPLACE)
85de8576 1288
d67b9cd2
DB
1289/* These are stored into IFLA_XDP_ATTACHED on dump. */
1290enum {
1291 XDP_ATTACHED_NONE = 0,
1292 XDP_ATTACHED_DRV,
1293 XDP_ATTACHED_SKB,
ce158e58 1294 XDP_ATTACHED_HW,
a25717d2 1295 XDP_ATTACHED_MULTI,
d67b9cd2
DB
1296};
1297
d1fdd913
BB
1298enum {
1299 IFLA_XDP_UNSPEC,
1300 IFLA_XDP_FD,
1301 IFLA_XDP_ATTACHED,
85de8576 1302 IFLA_XDP_FLAGS,
58038695 1303 IFLA_XDP_PROG_ID,
4f91da26
JK
1304 IFLA_XDP_DRV_PROG_ID,
1305 IFLA_XDP_SKB_PROG_ID,
1306 IFLA_XDP_HW_PROG_ID,
92234c8f 1307 IFLA_XDP_EXPECTED_FD,
d1fdd913
BB
1308 __IFLA_XDP_MAX,
1309};
1310
1311#define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
1312
3d3ea5af
VY
1313enum {
1314 IFLA_EVENT_NONE,
1315 IFLA_EVENT_REBOOT, /* internal reset / reboot */
1316 IFLA_EVENT_FEATURES, /* change in offload features */
1317 IFLA_EVENT_BONDING_FAILOVER, /* change in active slave */
1318 IFLA_EVENT_NOTIFY_PEERS, /* re-sent grat. arp/ndisc */
1319 IFLA_EVENT_IGMP_RESEND, /* re-sent IGMP JOIN */
1320 IFLA_EVENT_BONDING_OPTIONS, /* change in bonding options */
1321};
1322
1ec010e7
SD
1323/* tun section */
1324
1325enum {
1326 IFLA_TUN_UNSPEC,
1327 IFLA_TUN_OWNER,
1328 IFLA_TUN_GROUP,
1329 IFLA_TUN_TYPE,
1330 IFLA_TUN_PI,
1331 IFLA_TUN_VNET_HDR,
1332 IFLA_TUN_PERSIST,
1333 IFLA_TUN_MULTI_QUEUE,
1334 IFLA_TUN_NUM_QUEUES,
1335 IFLA_TUN_NUM_DISABLED_QUEUES,
1336 __IFLA_TUN_MAX,
1337};
1338
1339#define IFLA_TUN_MAX (__IFLA_TUN_MAX - 1)
1340
14452ca3
SAK
1341/* rmnet section */
1342
1343#define RMNET_FLAGS_INGRESS_DEAGGREGATION (1U << 0)
1344#define RMNET_FLAGS_INGRESS_MAP_COMMANDS (1U << 1)
1345#define RMNET_FLAGS_INGRESS_MAP_CKSUMV4 (1U << 2)
1346#define RMNET_FLAGS_EGRESS_MAP_CKSUMV4 (1U << 3)
e1d9a90a 1347#define RMNET_FLAGS_INGRESS_MAP_CKSUMV5 (1U << 4)
b6e5d27e 1348#define RMNET_FLAGS_EGRESS_MAP_CKSUMV5 (1U << 5)
14452ca3
SAK
1349
1350enum {
1351 IFLA_RMNET_UNSPEC,
1352 IFLA_RMNET_MUX_ID,
1353 IFLA_RMNET_FLAGS,
1354 __IFLA_RMNET_MAX,
1355};
1356
1357#define IFLA_RMNET_MAX (__IFLA_RMNET_MAX - 1)
1358
1359struct ifla_rmnet_flags {
1360 __u32 flags;
1361 __u32 mask;
1362};
1363
583be982
JK
1364/* MCTP section */
1365
1366enum {
1367 IFLA_MCTP_UNSPEC,
1368 IFLA_MCTP_NET,
1369 __IFLA_MCTP_MAX,
1370};
1371
1372#define IFLA_MCTP_MAX (__IFLA_MCTP_MAX - 1)
1373
607ca46e 1374#endif /* _UAPI_LINUX_IF_LINK_H */