1 #ifndef _UAPI_LINUX_IF_LINK_H
2 #define _UAPI_LINUX_IF_LINK_H
4 #include <linux/types.h>
5 #include <linux/netlink.h>
7 /* This struct should be in sync with struct rtnl_link_stats64 */
8 struct 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 */
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 */
28 /* detailed tx_errors */
29 __u32 tx_aborted_errors
;
30 __u32 tx_carrier_errors
;
32 __u32 tx_heartbeat_errors
;
33 __u32 tx_window_errors
;
39 __u32 rx_nohandler
; /* dropped, no handler found */
42 /* The main device statistics structure */
43 struct 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 */
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 */
63 /* detailed tx_errors */
64 __u64 tx_aborted_errors
;
65 __u64 tx_carrier_errors
;
67 __u64 tx_heartbeat_errors
;
68 __u64 tx_window_errors
;
74 __u64 rx_nohandler
; /* dropped, no handler found */
77 /* The struct should be in sync with struct ifmap */
78 struct rtnl_link_ifmap
{
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.
96 * [IFLA_INET_CONF] = ...,
99 * [IFLA_INET6_FLAGS] = ...,
100 * [IFLA_INET6_CONF] = ...,
115 #define IFLA_COST IFLA_COST
117 #define IFLA_PRIORITY IFLA_PRIORITY
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
125 #define IFLA_TXQLEN IFLA_TXQLEN
127 #define IFLA_MAP IFLA_MAP
129 #define IFLA_WEIGHT IFLA_WEIGHT
133 #define IFLA_LINKINFO IFLA_LINKINFO
136 IFLA_NUM_VF
, /* Number of VFs if device is SR-IOV PF */
142 IFLA_GROUP
, /* Group the device belongs to */
144 IFLA_EXT_MASK
, /* Extended info mask, VFs, etc */
145 IFLA_PROMISCUITY
, /* Promiscuity count: > 0 means acts PROMISC */
146 #define IFLA_PROMISCUITY IFLA_PROMISCUITY
151 IFLA_CARRIER_CHANGES
,
164 #define IFLA_MAX (__IFLA_MAX - 1)
166 /* backwards compatibility for userspace */
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))
178 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
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.
190 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
191 - If neither of these three flags are set;
192 the interface is NBMA.
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.
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)
209 /* Subtype attributes for IFLA_PROTINFO */
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 */
219 IFLA_INET6_ADDR_GEN_MODE
, /* implicit address generator mode */
223 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
225 enum in6_addr_gen_mode
{
226 IN6_ADDR_GEN_MODE_EUI64
,
227 IN6_ADDR_GEN_MODE_NONE
,
228 IN6_ADDR_GEN_MODE_STABLE_PRIVACY
,
229 IN6_ADDR_GEN_MODE_RANDOM
,
236 IFLA_BR_FORWARD_DELAY
,
242 IFLA_BR_VLAN_FILTERING
,
243 IFLA_BR_VLAN_PROTOCOL
,
244 IFLA_BR_GROUP_FWD_MASK
,
248 IFLA_BR_ROOT_PATH_COST
,
249 IFLA_BR_TOPOLOGY_CHANGE
,
250 IFLA_BR_TOPOLOGY_CHANGE_DETECTED
,
253 IFLA_BR_TOPOLOGY_CHANGE_TIMER
,
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
,
276 IFLA_BR_VLAN_STATS_ENABLED
,
277 IFLA_BR_MCAST_STATS_ENABLED
,
281 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
283 struct ifla_bridge_id
{
285 __u8 addr
[6]; /* ETH_ALEN */
295 IFLA_BRPORT_STATE
, /* Spanning tree state */
296 IFLA_BRPORT_PRIORITY
, /* " priority */
297 IFLA_BRPORT_COST
, /* " cost */
298 IFLA_BRPORT_MODE
, /* mode (hairpin) */
299 IFLA_BRPORT_GUARD
, /* bpdu guard */
300 IFLA_BRPORT_PROTECT
, /* root port protection */
301 IFLA_BRPORT_FAST_LEAVE
, /* multicast fast leave */
302 IFLA_BRPORT_LEARNING
, /* mac learning */
303 IFLA_BRPORT_UNICAST_FLOOD
, /* flood unicast traffic */
304 IFLA_BRPORT_PROXYARP
, /* proxy ARP */
305 IFLA_BRPORT_LEARNING_SYNC
, /* mac learning sync from device */
306 IFLA_BRPORT_PROXYARP_WIFI
, /* proxy ARP for Wi-Fi */
307 IFLA_BRPORT_ROOT_ID
, /* designated root */
308 IFLA_BRPORT_BRIDGE_ID
, /* designated bridge */
309 IFLA_BRPORT_DESIGNATED_PORT
,
310 IFLA_BRPORT_DESIGNATED_COST
,
313 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK
,
314 IFLA_BRPORT_CONFIG_PENDING
,
315 IFLA_BRPORT_MESSAGE_AGE_TIMER
,
316 IFLA_BRPORT_FORWARD_DELAY_TIMER
,
317 IFLA_BRPORT_HOLD_TIMER
,
319 IFLA_BRPORT_MULTICAST_ROUTER
,
323 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
325 struct ifla_cacheinfo
{
327 __u32 tstamp
; /* ipv6InterfaceTable updated timestamp */
328 __u32 reachable_time
;
337 IFLA_INFO_SLAVE_KIND
,
338 IFLA_INFO_SLAVE_DATA
,
342 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
350 IFLA_VLAN_EGRESS_QOS
,
351 IFLA_VLAN_INGRESS_QOS
,
356 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
358 struct ifla_vlan_flags
{
364 IFLA_VLAN_QOS_UNSPEC
,
365 IFLA_VLAN_QOS_MAPPING
,
369 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
371 struct ifla_vlan_qos_mapping
{
376 /* MACVLAN section */
381 IFLA_MACVLAN_MACADDR_MODE
,
382 IFLA_MACVLAN_MACADDR
,
383 IFLA_MACVLAN_MACADDR_DATA
,
384 IFLA_MACVLAN_MACADDR_COUNT
,
388 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
391 MACVLAN_MODE_PRIVATE
= 1, /* don't talk to other macvlans */
392 MACVLAN_MODE_VEPA
= 2, /* talk to other ports through ext bridge */
393 MACVLAN_MODE_BRIDGE
= 4, /* talk to bridge ports directly */
394 MACVLAN_MODE_PASSTHRU
= 8,/* take over the underlying device */
395 MACVLAN_MODE_SOURCE
= 16,/* use source MAC address list to assign */
398 enum macvlan_macaddr_mode
{
401 MACVLAN_MACADDR_FLUSH
,
405 #define MACVLAN_FLAG_NOPROMISC 1
414 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
417 IFLA_VRF_PORT_UNSPEC
,
422 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
430 IFLA_MACSEC_CIPHER_SUITE
,
432 IFLA_MACSEC_ENCODING_SA
,
438 IFLA_MACSEC_REPLAY_PROTECT
,
439 IFLA_MACSEC_VALIDATION
,
444 #define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
446 enum macsec_validation_type
{
447 MACSEC_VALIDATE_DISABLED
= 0,
448 MACSEC_VALIDATE_CHECK
= 1,
449 MACSEC_VALIDATE_STRICT
= 2,
450 __MACSEC_VALIDATE_END
,
451 MACSEC_VALIDATE_MAX
= __MACSEC_VALIDATE_END
- 1,
461 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
473 IFLA_VXLAN_GROUP
, /* group or remote address */
481 IFLA_VXLAN_PORT_RANGE
, /* source port */
486 IFLA_VXLAN_PORT
, /* destination port */
490 IFLA_VXLAN_UDP_ZERO_CSUM6_TX
,
491 IFLA_VXLAN_UDP_ZERO_CSUM6_RX
,
492 IFLA_VXLAN_REMCSUM_TX
,
493 IFLA_VXLAN_REMCSUM_RX
,
495 IFLA_VXLAN_REMCSUM_NOPARTIAL
,
496 IFLA_VXLAN_COLLECT_METADATA
,
501 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
503 struct ifla_vxlan_port_range
{
515 IFLA_GENEVE_PORT
, /* destination port */
516 IFLA_GENEVE_COLLECT_METADATA
,
518 IFLA_GENEVE_UDP_CSUM
,
519 IFLA_GENEVE_UDP_ZERO_CSUM6_TX
,
520 IFLA_GENEVE_UDP_ZERO_CSUM6_RX
,
524 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
532 #define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
539 IFLA_GTP_PDP_HASHSIZE
,
542 #define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
544 /* Bonding section */
549 IFLA_BOND_ACTIVE_SLAVE
,
553 IFLA_BOND_USE_CARRIER
,
554 IFLA_BOND_ARP_INTERVAL
,
555 IFLA_BOND_ARP_IP_TARGET
,
556 IFLA_BOND_ARP_VALIDATE
,
557 IFLA_BOND_ARP_ALL_TARGETS
,
559 IFLA_BOND_PRIMARY_RESELECT
,
560 IFLA_BOND_FAIL_OVER_MAC
,
561 IFLA_BOND_XMIT_HASH_POLICY
,
562 IFLA_BOND_RESEND_IGMP
,
563 IFLA_BOND_NUM_PEER_NOTIF
,
564 IFLA_BOND_ALL_SLAVES_ACTIVE
,
566 IFLA_BOND_LP_INTERVAL
,
567 IFLA_BOND_PACKETS_PER_SLAVE
,
568 IFLA_BOND_AD_LACP_RATE
,
571 IFLA_BOND_AD_ACTOR_SYS_PRIO
,
572 IFLA_BOND_AD_USER_PORT_KEY
,
573 IFLA_BOND_AD_ACTOR_SYSTEM
,
574 IFLA_BOND_TLB_DYNAMIC_LB
,
578 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
581 IFLA_BOND_AD_INFO_UNSPEC
,
582 IFLA_BOND_AD_INFO_AGGREGATOR
,
583 IFLA_BOND_AD_INFO_NUM_PORTS
,
584 IFLA_BOND_AD_INFO_ACTOR_KEY
,
585 IFLA_BOND_AD_INFO_PARTNER_KEY
,
586 IFLA_BOND_AD_INFO_PARTNER_MAC
,
587 __IFLA_BOND_AD_INFO_MAX
,
590 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
593 IFLA_BOND_SLAVE_UNSPEC
,
594 IFLA_BOND_SLAVE_STATE
,
595 IFLA_BOND_SLAVE_MII_STATUS
,
596 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT
,
597 IFLA_BOND_SLAVE_PERM_HWADDR
,
598 IFLA_BOND_SLAVE_QUEUE_ID
,
599 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID
,
600 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE
,
601 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE
,
602 __IFLA_BOND_SLAVE_MAX
,
605 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
607 /* SR-IOV virtual function management section */
615 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
619 IFLA_VF_MAC
, /* Hardware queue specific attributes */
621 IFLA_VF_TX_RATE
, /* Max TX Bandwidth Allocation */
622 IFLA_VF_SPOOFCHK
, /* Spoof Checking on/off switch */
623 IFLA_VF_LINK_STATE
, /* link state enable/disable/auto switch */
624 IFLA_VF_RATE
, /* Min and Max TX Bandwidth Allocation */
625 IFLA_VF_RSS_QUERY_EN
, /* RSS Redirection Table and Hash Key query
628 IFLA_VF_STATS
, /* network device statistics */
629 IFLA_VF_TRUST
, /* Trust VF */
630 IFLA_VF_IB_NODE_GUID
, /* VF Infiniband node GUID */
631 IFLA_VF_IB_PORT_GUID
, /* VF Infiniband port GUID */
635 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
639 __u8 mac
[32]; /* MAX_ADDR_LEN */
642 struct ifla_vf_vlan
{
644 __u32 vlan
; /* 0 - 4095, 0 disables VLAN filter */
648 struct ifla_vf_tx_rate
{
650 __u32 rate
; /* Max TX bandwidth in Mbps, 0 disables throttling */
653 struct ifla_vf_rate
{
655 __u32 min_tx_rate
; /* Min Bandwidth in Mbps */
656 __u32 max_tx_rate
; /* Max Bandwidth in Mbps */
659 struct ifla_vf_spoofchk
{
664 struct ifla_vf_guid
{
670 IFLA_VF_LINK_STATE_AUTO
, /* link state of the uplink */
671 IFLA_VF_LINK_STATE_ENABLE
, /* link always up */
672 IFLA_VF_LINK_STATE_DISABLE
, /* link always down */
673 __IFLA_VF_LINK_STATE_MAX
,
676 struct ifla_vf_link_state
{
681 struct ifla_vf_rss_query_en
{
687 IFLA_VF_STATS_RX_PACKETS
,
688 IFLA_VF_STATS_TX_PACKETS
,
689 IFLA_VF_STATS_RX_BYTES
,
690 IFLA_VF_STATS_TX_BYTES
,
691 IFLA_VF_STATS_BROADCAST
,
692 IFLA_VF_STATS_MULTICAST
,
697 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
699 struct ifla_vf_trust
{
704 /* VF ports management section
706 * Nested layout of set/get msg is:
721 IFLA_VF_PORT
, /* nest */
725 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
729 IFLA_PORT_VF
, /* __u32 */
730 IFLA_PORT_PROFILE
, /* string */
731 IFLA_PORT_VSI_TYPE
, /* 802.1Qbg (pre-)standard VDP */
732 IFLA_PORT_INSTANCE_UUID
, /* binary UUID */
733 IFLA_PORT_HOST_UUID
, /* binary UUID */
734 IFLA_PORT_REQUEST
, /* __u8 */
735 IFLA_PORT_RESPONSE
, /* __u16, output only */
739 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
741 #define PORT_PROFILE_MAX 40
742 #define PORT_UUID_MAX 16
743 #define PORT_SELF_VF -1
746 PORT_REQUEST_PREASSOCIATE
= 0,
747 PORT_REQUEST_PREASSOCIATE_RR
,
748 PORT_REQUEST_ASSOCIATE
,
749 PORT_REQUEST_DISASSOCIATE
,
753 PORT_VDP_RESPONSE_SUCCESS
= 0,
754 PORT_VDP_RESPONSE_INVALID_FORMAT
,
755 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES
,
756 PORT_VDP_RESPONSE_UNUSED_VTID
,
757 PORT_VDP_RESPONSE_VTID_VIOLATION
,
758 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION
,
759 PORT_VDP_RESPONSE_OUT_OF_SYNC
,
760 /* 0x08-0xFF reserved for future VDP use */
761 PORT_PROFILE_RESPONSE_SUCCESS
= 0x100,
762 PORT_PROFILE_RESPONSE_INPROGRESS
,
763 PORT_PROFILE_RESPONSE_INVALID
,
764 PORT_PROFILE_RESPONSE_BADSTATE
,
765 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES
,
766 PORT_PROFILE_RESPONSE_ERROR
,
769 struct ifla_port_vsi
{
772 __u8 vsi_type_version
;
788 IPOIB_MODE_DATAGRAM
= 0, /* using unreliable datagram QPs */
789 IPOIB_MODE_CONNECTED
= 1, /* using connected QPs */
792 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
801 IFLA_HSR_MULTICAST_SPEC
, /* Last byte of supervision addr */
802 IFLA_HSR_SUPERVISION_ADDR
, /* Supervision frame multicast addr */
804 IFLA_HSR_VERSION
, /* HSR version */
808 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
812 struct if_stats_msg
{
820 /* A stats attribute can be netdev specific or a global stat.
821 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
824 IFLA_STATS_UNSPEC
, /* also used as 64bit pad attribute */
826 IFLA_STATS_LINK_XSTATS
,
827 IFLA_STATS_LINK_XSTATS_SLAVE
,
831 #define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
833 #define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
835 /* These are embedded into IFLA_STATS_LINK_XSTATS:
836 * [IFLA_STATS_LINK_XSTATS]
837 * -> [LINK_XSTATS_TYPE_xxx]
838 * -> [rtnl link type specific attributes]
841 LINK_XSTATS_TYPE_UNSPEC
,
842 LINK_XSTATS_TYPE_BRIDGE
,
843 __LINK_XSTATS_TYPE_MAX
845 #define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
856 #define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
858 #endif /* _UAPI_LINUX_IF_LINK_H */