blob: 6b13e591abc9e646ce11b15d7fe5ee8209a509c1 [file] [log] [blame]
Ben Cheng224b54f2013-10-15 18:26:18 -07001#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;
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070038
39 __u32 rx_nohandler; /* dropped, no handler found */
Ben Cheng224b54f2013-10-15 18:26:18 -070040};
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;
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070073
74 __u64 rx_nohandler; /* dropped, no handler found */
Ben Cheng224b54f2013-10-15 18:26:18 -070075};
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,
149 IFLA_CARRIER,
Christopher Ferrise0845012014-07-09 14:58:51 -0700150 IFLA_PHYS_PORT_ID,
Christopher Ferris31475242014-09-02 17:43:51 -0700151 IFLA_CARRIER_CHANGES,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800152 IFLA_PHYS_SWITCH_ID,
153 IFLA_LINK_NETNSID,
154 IFLA_PHYS_PORT_NAME,
155 IFLA_PROTO_DOWN,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700156 IFLA_GSO_MAX_SEGS,
157 IFLA_GSO_MAX_SIZE,
158 IFLA_PAD,
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800159 IFLA_XDP,
Ben Cheng224b54f2013-10-15 18:26:18 -0700160 __IFLA_MAX
161};
162
163
164#define IFLA_MAX (__IFLA_MAX - 1)
165
166/* backwards compatibility for userspace */
167#ifndef __KERNEL__
168#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
169#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
170#endif
171
172enum {
173 IFLA_INET_UNSPEC,
174 IFLA_INET_CONF,
175 __IFLA_INET_MAX,
176};
177
178#define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
179
180/* ifi_flags.
181
182 IFF_* flags.
183
184 The only change is:
185 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
186 more not changeable by user. They describe link media
187 characteristics and set by device driver.
188
189 Comments:
190 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
191 - If neither of these three flags are set;
192 the interface is NBMA.
193
194 - IFF_MULTICAST does not mean anything special:
195 multicasts can be used on all not-NBMA links.
196 IFF_MULTICAST means that this media uses special encapsulation
197 for multicast frames. Apparently, all IFF_POINTOPOINT and
198 IFF_BROADCAST devices are able to use multicasts too.
199 */
200
201/* IFLA_LINK.
202 For usual devices it is equal ifi_index.
203 If it is a "virtual interface" (f.e. tunnel), ifi_link
204 can point to real physical interface (f.e. for bandwidth calculations),
205 or maybe 0, what means, that real media is unknown (usual
206 for IPIP tunnels, when route to endpoint is allowed to change)
207 */
208
209/* Subtype attributes for IFLA_PROTINFO */
210enum {
211 IFLA_INET6_UNSPEC,
212 IFLA_INET6_FLAGS, /* link flags */
213 IFLA_INET6_CONF, /* sysctl parameters */
214 IFLA_INET6_STATS, /* statistics */
215 IFLA_INET6_MCAST, /* MC things. What of them? */
216 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
217 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
218 IFLA_INET6_TOKEN, /* device token */
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800219 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
Ben Cheng224b54f2013-10-15 18:26:18 -0700220 __IFLA_INET6_MAX
221};
222
223#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
224
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800225enum in6_addr_gen_mode {
226 IN6_ADDR_GEN_MODE_EUI64,
227 IN6_ADDR_GEN_MODE_NONE,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800228 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700229 IN6_ADDR_GEN_MODE_RANDOM,
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800230};
231
232/* Bridge section */
233
234enum {
235 IFLA_BR_UNSPEC,
236 IFLA_BR_FORWARD_DELAY,
237 IFLA_BR_HELLO_TIME,
238 IFLA_BR_MAX_AGE,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800239 IFLA_BR_AGEING_TIME,
240 IFLA_BR_STP_STATE,
241 IFLA_BR_PRIORITY,
242 IFLA_BR_VLAN_FILTERING,
243 IFLA_BR_VLAN_PROTOCOL,
244 IFLA_BR_GROUP_FWD_MASK,
245 IFLA_BR_ROOT_ID,
246 IFLA_BR_BRIDGE_ID,
247 IFLA_BR_ROOT_PORT,
248 IFLA_BR_ROOT_PATH_COST,
249 IFLA_BR_TOPOLOGY_CHANGE,
250 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
251 IFLA_BR_HELLO_TIMER,
252 IFLA_BR_TCN_TIMER,
253 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
254 IFLA_BR_GC_TIMER,
255 IFLA_BR_GROUP_ADDR,
256 IFLA_BR_FDB_FLUSH,
257 IFLA_BR_MCAST_ROUTER,
258 IFLA_BR_MCAST_SNOOPING,
259 IFLA_BR_MCAST_QUERY_USE_IFADDR,
260 IFLA_BR_MCAST_QUERIER,
261 IFLA_BR_MCAST_HASH_ELASTICITY,
262 IFLA_BR_MCAST_HASH_MAX,
263 IFLA_BR_MCAST_LAST_MEMBER_CNT,
264 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
265 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
266 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
267 IFLA_BR_MCAST_QUERIER_INTVL,
268 IFLA_BR_MCAST_QUERY_INTVL,
269 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
270 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
271 IFLA_BR_NF_CALL_IPTABLES,
272 IFLA_BR_NF_CALL_IP6TABLES,
273 IFLA_BR_NF_CALL_ARPTABLES,
274 IFLA_BR_VLAN_DEFAULT_PVID,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700275 IFLA_BR_PAD,
276 IFLA_BR_VLAN_STATS_ENABLED,
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800277 IFLA_BR_MCAST_STATS_ENABLED,
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800278 IFLA_BR_MCAST_IGMP_VERSION,
279 IFLA_BR_MCAST_MLD_VERSION,
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800280 __IFLA_BR_MAX,
281};
282
283#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
284
Christopher Ferris12e1f282016-02-04 12:35:07 -0800285struct ifla_bridge_id {
286 __u8 prio[2];
287 __u8 addr[6]; /* ETH_ALEN */
288};
289
Ben Cheng224b54f2013-10-15 18:26:18 -0700290enum {
291 BRIDGE_MODE_UNSPEC,
292 BRIDGE_MODE_HAIRPIN,
293};
294
295enum {
296 IFLA_BRPORT_UNSPEC,
297 IFLA_BRPORT_STATE, /* Spanning tree state */
298 IFLA_BRPORT_PRIORITY, /* " priority */
299 IFLA_BRPORT_COST, /* " cost */
300 IFLA_BRPORT_MODE, /* mode (hairpin) */
301 IFLA_BRPORT_GUARD, /* bpdu guard */
302 IFLA_BRPORT_PROTECT, /* root port protection */
303 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
Christopher Ferrise0845012014-07-09 14:58:51 -0700304 IFLA_BRPORT_LEARNING, /* mac learning */
305 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800306 IFLA_BRPORT_PROXYARP, /* proxy ARP */
307 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
308 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
309 IFLA_BRPORT_ROOT_ID, /* designated root */
310 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
311 IFLA_BRPORT_DESIGNATED_PORT,
312 IFLA_BRPORT_DESIGNATED_COST,
313 IFLA_BRPORT_ID,
314 IFLA_BRPORT_NO,
315 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
316 IFLA_BRPORT_CONFIG_PENDING,
317 IFLA_BRPORT_MESSAGE_AGE_TIMER,
318 IFLA_BRPORT_FORWARD_DELAY_TIMER,
319 IFLA_BRPORT_HOLD_TIMER,
320 IFLA_BRPORT_FLUSH,
321 IFLA_BRPORT_MULTICAST_ROUTER,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700322 IFLA_BRPORT_PAD,
Christopher Ferris33185402017-01-13 13:28:52 -0800323 IFLA_BRPORT_MCAST_FLOOD,
Ben Cheng224b54f2013-10-15 18:26:18 -0700324 __IFLA_BRPORT_MAX
325};
326#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
327
328struct ifla_cacheinfo {
329 __u32 max_reasm_len;
330 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
331 __u32 reachable_time;
332 __u32 retrans_time;
333};
334
335enum {
336 IFLA_INFO_UNSPEC,
337 IFLA_INFO_KIND,
338 IFLA_INFO_DATA,
339 IFLA_INFO_XSTATS,
Christopher Ferrise0845012014-07-09 14:58:51 -0700340 IFLA_INFO_SLAVE_KIND,
341 IFLA_INFO_SLAVE_DATA,
Ben Cheng224b54f2013-10-15 18:26:18 -0700342 __IFLA_INFO_MAX,
343};
344
345#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
346
347/* VLAN section */
348
349enum {
350 IFLA_VLAN_UNSPEC,
351 IFLA_VLAN_ID,
352 IFLA_VLAN_FLAGS,
353 IFLA_VLAN_EGRESS_QOS,
354 IFLA_VLAN_INGRESS_QOS,
355 IFLA_VLAN_PROTOCOL,
356 __IFLA_VLAN_MAX,
357};
358
359#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
360
361struct ifla_vlan_flags {
362 __u32 flags;
363 __u32 mask;
364};
365
366enum {
367 IFLA_VLAN_QOS_UNSPEC,
368 IFLA_VLAN_QOS_MAPPING,
369 __IFLA_VLAN_QOS_MAX
370};
371
372#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
373
374struct ifla_vlan_qos_mapping {
375 __u32 from;
376 __u32 to;
377};
378
379/* MACVLAN section */
380enum {
381 IFLA_MACVLAN_UNSPEC,
382 IFLA_MACVLAN_MODE,
383 IFLA_MACVLAN_FLAGS,
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800384 IFLA_MACVLAN_MACADDR_MODE,
385 IFLA_MACVLAN_MACADDR,
386 IFLA_MACVLAN_MACADDR_DATA,
387 IFLA_MACVLAN_MACADDR_COUNT,
Ben Cheng224b54f2013-10-15 18:26:18 -0700388 __IFLA_MACVLAN_MAX,
389};
390
391#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
392
393enum macvlan_mode {
394 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
395 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
396 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
397 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
Christopher Ferris7c0b6392015-01-23 15:34:26 -0800398 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
399};
400
401enum macvlan_macaddr_mode {
402 MACVLAN_MACADDR_ADD,
403 MACVLAN_MACADDR_DEL,
404 MACVLAN_MACADDR_FLUSH,
405 MACVLAN_MACADDR_SET,
Ben Cheng224b54f2013-10-15 18:26:18 -0700406};
407
408#define MACVLAN_FLAG_NOPROMISC 1
409
Christopher Ferris12e1f282016-02-04 12:35:07 -0800410/* VRF section */
411enum {
412 IFLA_VRF_UNSPEC,
413 IFLA_VRF_TABLE,
414 __IFLA_VRF_MAX
415};
416
417#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
418
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700419enum {
420 IFLA_VRF_PORT_UNSPEC,
421 IFLA_VRF_PORT_TABLE,
422 __IFLA_VRF_PORT_MAX
423};
424
425#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
426
427/* MACSEC section */
428enum {
429 IFLA_MACSEC_UNSPEC,
430 IFLA_MACSEC_SCI,
431 IFLA_MACSEC_PORT,
432 IFLA_MACSEC_ICV_LEN,
433 IFLA_MACSEC_CIPHER_SUITE,
434 IFLA_MACSEC_WINDOW,
435 IFLA_MACSEC_ENCODING_SA,
436 IFLA_MACSEC_ENCRYPT,
437 IFLA_MACSEC_PROTECT,
438 IFLA_MACSEC_INC_SCI,
439 IFLA_MACSEC_ES,
440 IFLA_MACSEC_SCB,
441 IFLA_MACSEC_REPLAY_PROTECT,
442 IFLA_MACSEC_VALIDATION,
443 IFLA_MACSEC_PAD,
444 __IFLA_MACSEC_MAX,
445};
446
447#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
448
449enum macsec_validation_type {
450 MACSEC_VALIDATE_DISABLED = 0,
451 MACSEC_VALIDATE_CHECK = 1,
452 MACSEC_VALIDATE_STRICT = 2,
453 __MACSEC_VALIDATE_END,
454 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
455};
456
Christopher Ferris12e1f282016-02-04 12:35:07 -0800457/* IPVLAN section */
458enum {
459 IFLA_IPVLAN_UNSPEC,
460 IFLA_IPVLAN_MODE,
461 __IFLA_IPVLAN_MAX
462};
463
464#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
465
466enum ipvlan_mode {
467 IPVLAN_MODE_L2 = 0,
468 IPVLAN_MODE_L3,
Christopher Ferris33185402017-01-13 13:28:52 -0800469 IPVLAN_MODE_L3S,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800470 IPVLAN_MODE_MAX
471};
472
Ben Cheng224b54f2013-10-15 18:26:18 -0700473/* VXLAN section */
474enum {
475 IFLA_VXLAN_UNSPEC,
476 IFLA_VXLAN_ID,
477 IFLA_VXLAN_GROUP, /* group or remote address */
478 IFLA_VXLAN_LINK,
479 IFLA_VXLAN_LOCAL,
480 IFLA_VXLAN_TTL,
481 IFLA_VXLAN_TOS,
482 IFLA_VXLAN_LEARNING,
483 IFLA_VXLAN_AGEING,
484 IFLA_VXLAN_LIMIT,
485 IFLA_VXLAN_PORT_RANGE, /* source port */
486 IFLA_VXLAN_PROXY,
487 IFLA_VXLAN_RSC,
488 IFLA_VXLAN_L2MISS,
489 IFLA_VXLAN_L3MISS,
490 IFLA_VXLAN_PORT, /* destination port */
Christopher Ferrise0845012014-07-09 14:58:51 -0700491 IFLA_VXLAN_GROUP6,
492 IFLA_VXLAN_LOCAL6,
Christopher Ferris31475242014-09-02 17:43:51 -0700493 IFLA_VXLAN_UDP_CSUM,
494 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
495 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800496 IFLA_VXLAN_REMCSUM_TX,
497 IFLA_VXLAN_REMCSUM_RX,
498 IFLA_VXLAN_GBP,
499 IFLA_VXLAN_REMCSUM_NOPARTIAL,
500 IFLA_VXLAN_COLLECT_METADATA,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700501 IFLA_VXLAN_LABEL,
502 IFLA_VXLAN_GPE,
Ben Cheng224b54f2013-10-15 18:26:18 -0700503 __IFLA_VXLAN_MAX
504};
505#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
506
507struct ifla_vxlan_port_range {
508 __be16 low;
509 __be16 high;
510};
511
Christopher Ferris12e1f282016-02-04 12:35:07 -0800512/* GENEVE section */
513enum {
514 IFLA_GENEVE_UNSPEC,
515 IFLA_GENEVE_ID,
516 IFLA_GENEVE_REMOTE,
517 IFLA_GENEVE_TTL,
518 IFLA_GENEVE_TOS,
519 IFLA_GENEVE_PORT, /* destination port */
520 IFLA_GENEVE_COLLECT_METADATA,
521 IFLA_GENEVE_REMOTE6,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700522 IFLA_GENEVE_UDP_CSUM,
523 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
524 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
525 IFLA_GENEVE_LABEL,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800526 __IFLA_GENEVE_MAX
527};
528#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
529
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700530/* PPP section */
531enum {
532 IFLA_PPP_UNSPEC,
533 IFLA_PPP_DEV_FD,
534 __IFLA_PPP_MAX
535};
536#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
537
538/* GTP section */
539enum {
540 IFLA_GTP_UNSPEC,
541 IFLA_GTP_FD0,
542 IFLA_GTP_FD1,
543 IFLA_GTP_PDP_HASHSIZE,
544 __IFLA_GTP_MAX,
545};
546#define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
547
Christopher Ferrise0845012014-07-09 14:58:51 -0700548/* Bonding section */
549
550enum {
551 IFLA_BOND_UNSPEC,
552 IFLA_BOND_MODE,
553 IFLA_BOND_ACTIVE_SLAVE,
554 IFLA_BOND_MIIMON,
555 IFLA_BOND_UPDELAY,
556 IFLA_BOND_DOWNDELAY,
557 IFLA_BOND_USE_CARRIER,
558 IFLA_BOND_ARP_INTERVAL,
559 IFLA_BOND_ARP_IP_TARGET,
560 IFLA_BOND_ARP_VALIDATE,
561 IFLA_BOND_ARP_ALL_TARGETS,
562 IFLA_BOND_PRIMARY,
563 IFLA_BOND_PRIMARY_RESELECT,
564 IFLA_BOND_FAIL_OVER_MAC,
565 IFLA_BOND_XMIT_HASH_POLICY,
566 IFLA_BOND_RESEND_IGMP,
567 IFLA_BOND_NUM_PEER_NOTIF,
568 IFLA_BOND_ALL_SLAVES_ACTIVE,
569 IFLA_BOND_MIN_LINKS,
570 IFLA_BOND_LP_INTERVAL,
571 IFLA_BOND_PACKETS_PER_SLAVE,
572 IFLA_BOND_AD_LACP_RATE,
573 IFLA_BOND_AD_SELECT,
574 IFLA_BOND_AD_INFO,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800575 IFLA_BOND_AD_ACTOR_SYS_PRIO,
576 IFLA_BOND_AD_USER_PORT_KEY,
577 IFLA_BOND_AD_ACTOR_SYSTEM,
578 IFLA_BOND_TLB_DYNAMIC_LB,
Christopher Ferrise0845012014-07-09 14:58:51 -0700579 __IFLA_BOND_MAX,
580};
581
582#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
583
584enum {
585 IFLA_BOND_AD_INFO_UNSPEC,
586 IFLA_BOND_AD_INFO_AGGREGATOR,
587 IFLA_BOND_AD_INFO_NUM_PORTS,
588 IFLA_BOND_AD_INFO_ACTOR_KEY,
589 IFLA_BOND_AD_INFO_PARTNER_KEY,
590 IFLA_BOND_AD_INFO_PARTNER_MAC,
591 __IFLA_BOND_AD_INFO_MAX,
592};
593
594#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
595
596enum {
597 IFLA_BOND_SLAVE_UNSPEC,
598 IFLA_BOND_SLAVE_STATE,
599 IFLA_BOND_SLAVE_MII_STATUS,
600 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
601 IFLA_BOND_SLAVE_PERM_HWADDR,
602 IFLA_BOND_SLAVE_QUEUE_ID,
603 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800604 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
605 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
Christopher Ferrise0845012014-07-09 14:58:51 -0700606 __IFLA_BOND_SLAVE_MAX,
607};
608
609#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
610
Ben Cheng224b54f2013-10-15 18:26:18 -0700611/* SR-IOV virtual function management section */
612
613enum {
614 IFLA_VF_INFO_UNSPEC,
615 IFLA_VF_INFO,
616 __IFLA_VF_INFO_MAX,
617};
618
619#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
620
621enum {
622 IFLA_VF_UNSPEC,
623 IFLA_VF_MAC, /* Hardware queue specific attributes */
Christopher Ferris33185402017-01-13 13:28:52 -0800624 IFLA_VF_VLAN, /* VLAN ID and QoS */
Christopher Ferris31475242014-09-02 17:43:51 -0700625 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
Ben Cheng224b54f2013-10-15 18:26:18 -0700626 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
Christopher Ferrise0845012014-07-09 14:58:51 -0700627 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
Christopher Ferris31475242014-09-02 17:43:51 -0700628 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800629 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
630 * on/off switch
631 */
632 IFLA_VF_STATS, /* network device statistics */
633 IFLA_VF_TRUST, /* Trust VF */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700634 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
635 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
Christopher Ferris33185402017-01-13 13:28:52 -0800636 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */
Ben Cheng224b54f2013-10-15 18:26:18 -0700637 __IFLA_VF_MAX,
638};
639
640#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
641
642struct ifla_vf_mac {
643 __u32 vf;
644 __u8 mac[32]; /* MAX_ADDR_LEN */
645};
646
647struct ifla_vf_vlan {
648 __u32 vf;
649 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
650 __u32 qos;
651};
652
Christopher Ferris33185402017-01-13 13:28:52 -0800653enum {
654 IFLA_VF_VLAN_INFO_UNSPEC,
655 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */
656 __IFLA_VF_VLAN_INFO_MAX,
657};
658
659#define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
660#define MAX_VLAN_LIST_LEN 1
661
662struct ifla_vf_vlan_info {
663 __u32 vf;
664 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
665 __u32 qos;
666 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */
667};
668
Ben Cheng224b54f2013-10-15 18:26:18 -0700669struct ifla_vf_tx_rate {
670 __u32 vf;
671 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
672};
673
Christopher Ferris31475242014-09-02 17:43:51 -0700674struct ifla_vf_rate {
675 __u32 vf;
676 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
677 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
678};
679
Ben Cheng224b54f2013-10-15 18:26:18 -0700680struct ifla_vf_spoofchk {
681 __u32 vf;
682 __u32 setting;
683};
684
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700685struct ifla_vf_guid {
686 __u32 vf;
687 __u64 guid;
688};
689
Christopher Ferrise0845012014-07-09 14:58:51 -0700690enum {
691 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
692 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
693 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
694 __IFLA_VF_LINK_STATE_MAX,
695};
696
697struct ifla_vf_link_state {
698 __u32 vf;
699 __u32 link_state;
700};
701
Christopher Ferris12e1f282016-02-04 12:35:07 -0800702struct ifla_vf_rss_query_en {
703 __u32 vf;
704 __u32 setting;
705};
706
707enum {
708 IFLA_VF_STATS_RX_PACKETS,
709 IFLA_VF_STATS_TX_PACKETS,
710 IFLA_VF_STATS_RX_BYTES,
711 IFLA_VF_STATS_TX_BYTES,
712 IFLA_VF_STATS_BROADCAST,
713 IFLA_VF_STATS_MULTICAST,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700714 IFLA_VF_STATS_PAD,
Christopher Ferris12e1f282016-02-04 12:35:07 -0800715 __IFLA_VF_STATS_MAX,
716};
717
718#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
719
720struct ifla_vf_trust {
721 __u32 vf;
722 __u32 setting;
723};
724
Ben Cheng224b54f2013-10-15 18:26:18 -0700725/* VF ports management section
726 *
727 * Nested layout of set/get msg is:
728 *
729 * [IFLA_NUM_VF]
730 * [IFLA_VF_PORTS]
731 * [IFLA_VF_PORT]
732 * [IFLA_PORT_*], ...
733 * [IFLA_VF_PORT]
734 * [IFLA_PORT_*], ...
735 * ...
736 * [IFLA_PORT_SELF]
737 * [IFLA_PORT_*], ...
738 */
739
740enum {
741 IFLA_VF_PORT_UNSPEC,
742 IFLA_VF_PORT, /* nest */
743 __IFLA_VF_PORT_MAX,
744};
745
746#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
747
748enum {
749 IFLA_PORT_UNSPEC,
750 IFLA_PORT_VF, /* __u32 */
751 IFLA_PORT_PROFILE, /* string */
752 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
753 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
754 IFLA_PORT_HOST_UUID, /* binary UUID */
755 IFLA_PORT_REQUEST, /* __u8 */
756 IFLA_PORT_RESPONSE, /* __u16, output only */
757 __IFLA_PORT_MAX,
758};
759
760#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
761
762#define PORT_PROFILE_MAX 40
763#define PORT_UUID_MAX 16
764#define PORT_SELF_VF -1
765
766enum {
767 PORT_REQUEST_PREASSOCIATE = 0,
768 PORT_REQUEST_PREASSOCIATE_RR,
769 PORT_REQUEST_ASSOCIATE,
770 PORT_REQUEST_DISASSOCIATE,
771};
772
773enum {
774 PORT_VDP_RESPONSE_SUCCESS = 0,
775 PORT_VDP_RESPONSE_INVALID_FORMAT,
776 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
777 PORT_VDP_RESPONSE_UNUSED_VTID,
778 PORT_VDP_RESPONSE_VTID_VIOLATION,
779 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
780 PORT_VDP_RESPONSE_OUT_OF_SYNC,
781 /* 0x08-0xFF reserved for future VDP use */
782 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
783 PORT_PROFILE_RESPONSE_INPROGRESS,
784 PORT_PROFILE_RESPONSE_INVALID,
785 PORT_PROFILE_RESPONSE_BADSTATE,
786 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
787 PORT_PROFILE_RESPONSE_ERROR,
788};
789
790struct ifla_port_vsi {
791 __u8 vsi_mgr_id;
792 __u8 vsi_type_id[3];
793 __u8 vsi_type_version;
794 __u8 pad[3];
795};
796
797
798/* IPoIB section */
799
800enum {
801 IFLA_IPOIB_UNSPEC,
802 IFLA_IPOIB_PKEY,
803 IFLA_IPOIB_MODE,
804 IFLA_IPOIB_UMCAST,
805 __IFLA_IPOIB_MAX
806};
807
808enum {
809 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
810 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
811};
812
813#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
814
Christopher Ferrise0845012014-07-09 14:58:51 -0700815
816/* HSR section */
817
818enum {
819 IFLA_HSR_UNSPEC,
820 IFLA_HSR_SLAVE1,
821 IFLA_HSR_SLAVE2,
822 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
823 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
824 IFLA_HSR_SEQ_NR,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700825 IFLA_HSR_VERSION, /* HSR version */
Christopher Ferrise0845012014-07-09 14:58:51 -0700826 __IFLA_HSR_MAX,
827};
828
829#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
830
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700831/* STATS section */
832
833struct if_stats_msg {
834 __u8 family;
835 __u8 pad1;
836 __u16 pad2;
837 __u32 ifindex;
838 __u32 filter_mask;
839};
840
841/* A stats attribute can be netdev specific or a global stat.
842 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
843 */
844enum {
845 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
846 IFLA_STATS_LINK_64,
847 IFLA_STATS_LINK_XSTATS,
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800848 IFLA_STATS_LINK_XSTATS_SLAVE,
Christopher Ferris33185402017-01-13 13:28:52 -0800849 IFLA_STATS_LINK_OFFLOAD_XSTATS,
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700850 __IFLA_STATS_MAX,
851};
852
853#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
854
855#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
856
857/* These are embedded into IFLA_STATS_LINK_XSTATS:
858 * [IFLA_STATS_LINK_XSTATS]
859 * -> [LINK_XSTATS_TYPE_xxx]
860 * -> [rtnl link type specific attributes]
861 */
862enum {
863 LINK_XSTATS_TYPE_UNSPEC,
864 LINK_XSTATS_TYPE_BRIDGE,
865 __LINK_XSTATS_TYPE_MAX
866};
867#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
868
Christopher Ferris33185402017-01-13 13:28:52 -0800869/* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
870enum {
871 IFLA_OFFLOAD_XSTATS_UNSPEC,
872 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */
873 __IFLA_OFFLOAD_XSTATS_MAX
874};
875#define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
876
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800877/* XDP section */
878
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800879#define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
880#define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST)
881
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800882enum {
883 IFLA_XDP_UNSPEC,
884 IFLA_XDP_FD,
885 IFLA_XDP_ATTACHED,
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800886 IFLA_XDP_FLAGS,
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800887 __IFLA_XDP_MAX,
888};
889
890#define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
891
Ben Cheng224b54f2013-10-15 18:26:18 -0700892#endif /* _UAPI_LINUX_IF_LINK_H */