1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 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 */ 9 struct rtnl_link_stats { 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; 19 __u32 collisions; 20 /* detailed rx_errors: */ 21 __u32 rx_length_errors; 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; 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; 38 39 __u32 rx_nohandler; 40 }; 41 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 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 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). 214 */ 215 struct rtnl_link_stats64 { 216 __u64 rx_packets; 217 __u64 tx_packets; 218 __u64 rx_bytes; 219 __u64 tx_bytes; 220 __u64 rx_errors; 221 __u64 tx_errors; 222 __u64 rx_dropped; 223 __u64 tx_dropped; 224 __u64 multicast; 225 __u64 collisions; 226 227 /* detailed rx_errors: */ 228 __u64 rx_length_errors; 229 __u64 rx_over_errors; 230 __u64 rx_crc_errors; 231 __u64 rx_frame_errors; 232 __u64 rx_fifo_errors; 233 __u64 rx_missed_errors; 234 235 /* detailed tx_errors */ 236 __u64 tx_aborted_errors; 237 __u64 tx_carrier_errors; 238 __u64 tx_fifo_errors; 239 __u64 tx_heartbeat_errors; 240 __u64 tx_window_errors; 241 242 /* for cslip etc */ 243 __u64 rx_compressed; 244 __u64 tx_compressed; 245 __u64 rx_nohandler; 246 }; 247 248 /* Subset of link stats useful for in-HW collection. Meaning of the fields is as 249 * for struct rtnl_link_stats64. 250 */ 251 struct rtnl_hw_stats64 { 252 __u64 rx_packets; 253 __u64 tx_packets; 254 __u64 rx_bytes; 255 __u64 tx_bytes; 256 __u64 rx_errors; 257 __u64 tx_errors; 258 __u64 rx_dropped; 259 __u64 tx_dropped; 260 __u64 multicast; 261 }; 262 263 /* The struct should be in sync with struct ifmap */ 264 struct rtnl_link_ifmap { 265 __u64 mem_start; 266 __u64 mem_end; 267 __u64 base_addr; 268 __u16 irq; 269 __u8 dma; 270 __u8 port; 271 }; 272 273 /* 274 * IFLA_AF_SPEC 275 * Contains nested attributes for address family specific attributes. 276 * Each address family may create a attribute with the address family 277 * number as type and create its own attribute structure in it. 278 * 279 * Example: 280 * [IFLA_AF_SPEC] = { 281 * [AF_INET] = { 282 * [IFLA_INET_CONF] = ..., 283 * }, 284 * [AF_INET6] = { 285 * [IFLA_INET6_FLAGS] = ..., 286 * [IFLA_INET6_CONF] = ..., 287 * } 288 * } 289 */ 290 291 enum { 292 IFLA_UNSPEC, 293 IFLA_ADDRESS, 294 IFLA_BROADCAST, 295 IFLA_IFNAME, 296 IFLA_MTU, 297 IFLA_LINK, 298 IFLA_QDISC, 299 IFLA_STATS, 300 IFLA_COST, 301 #define IFLA_COST IFLA_COST 302 IFLA_PRIORITY, 303 #define IFLA_PRIORITY IFLA_PRIORITY 304 IFLA_MASTER, 305 #define IFLA_MASTER IFLA_MASTER 306 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */ 307 #define IFLA_WIRELESS IFLA_WIRELESS 308 IFLA_PROTINFO, /* Protocol specific information for a link */ 309 #define IFLA_PROTINFO IFLA_PROTINFO 310 IFLA_TXQLEN, 311 #define IFLA_TXQLEN IFLA_TXQLEN 312 IFLA_MAP, 313 #define IFLA_MAP IFLA_MAP 314 IFLA_WEIGHT, 315 #define IFLA_WEIGHT IFLA_WEIGHT 316 IFLA_OPERSTATE, 317 IFLA_LINKMODE, 318 IFLA_LINKINFO, 319 #define IFLA_LINKINFO IFLA_LINKINFO 320 IFLA_NET_NS_PID, 321 IFLA_IFALIAS, 322 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */ 323 IFLA_VFINFO_LIST, 324 IFLA_STATS64, 325 IFLA_VF_PORTS, 326 IFLA_PORT_SELF, 327 IFLA_AF_SPEC, 328 IFLA_GROUP, /* Group the device belongs to */ 329 IFLA_NET_NS_FD, 330 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */ 331 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */ 332 #define IFLA_PROMISCUITY IFLA_PROMISCUITY 333 IFLA_NUM_TX_QUEUES, 334 IFLA_NUM_RX_QUEUES, 335 IFLA_CARRIER, 336 IFLA_PHYS_PORT_ID, 337 IFLA_CARRIER_CHANGES, 338 IFLA_PHYS_SWITCH_ID, 339 IFLA_LINK_NETNSID, 340 IFLA_PHYS_PORT_NAME, 341 IFLA_PROTO_DOWN, 342 IFLA_GSO_MAX_SEGS, 343 IFLA_GSO_MAX_SIZE, 344 IFLA_PAD, 345 IFLA_XDP, 346 IFLA_EVENT, 347 IFLA_NEW_NETNSID, 348 IFLA_IF_NETNSID, 349 IFLA_TARGET_NETNSID = IFLA_IF_NETNSID, /* new alias */ 350 IFLA_CARRIER_UP_COUNT, 351 IFLA_CARRIER_DOWN_COUNT, 352 IFLA_NEW_IFINDEX, 353 IFLA_MIN_MTU, 354 IFLA_MAX_MTU, 355 IFLA_PROP_LIST, 356 IFLA_ALT_IFNAME, /* Alternative ifname */ 357 IFLA_PERM_ADDRESS, 358 IFLA_PROTO_DOWN_REASON, 359 360 /* device (sysfs) name as parent, used instead 361 * of IFLA_LINK where there's no parent netdev 362 */ 363 IFLA_PARENT_DEV_NAME, 364 IFLA_PARENT_DEV_BUS_NAME, 365 IFLA_GRO_MAX_SIZE, 366 367 __IFLA_MAX 368 }; 369 370 371 #define IFLA_MAX (__IFLA_MAX - 1) 372 373 enum { 374 IFLA_PROTO_DOWN_REASON_UNSPEC, 375 IFLA_PROTO_DOWN_REASON_MASK, /* u32, mask for reason bits */ 376 IFLA_PROTO_DOWN_REASON_VALUE, /* u32, reason bit value */ 377 378 __IFLA_PROTO_DOWN_REASON_CNT, 379 IFLA_PROTO_DOWN_REASON_MAX = __IFLA_PROTO_DOWN_REASON_CNT - 1 380 }; 381 382 /* backwards compatibility for userspace */ 383 #ifndef __KERNEL__ 384 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg)))) 385 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg)) 386 #endif 387 388 enum { 389 IFLA_INET_UNSPEC, 390 IFLA_INET_CONF, 391 __IFLA_INET_MAX, 392 }; 393 394 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1) 395 396 /* ifi_flags. 397 398 IFF_* flags. 399 400 The only change is: 401 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are 402 more not changeable by user. They describe link media 403 characteristics and set by device driver. 404 405 Comments: 406 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid 407 - If neither of these three flags are set; 408 the interface is NBMA. 409 410 - IFF_MULTICAST does not mean anything special: 411 multicasts can be used on all not-NBMA links. 412 IFF_MULTICAST means that this media uses special encapsulation 413 for multicast frames. Apparently, all IFF_POINTOPOINT and 414 IFF_BROADCAST devices are able to use multicasts too. 415 */ 416 417 /* IFLA_LINK. 418 For usual devices it is equal ifi_index. 419 If it is a "virtual interface" (f.e. tunnel), ifi_link 420 can point to real physical interface (f.e. for bandwidth calculations), 421 or maybe 0, what means, that real media is unknown (usual 422 for IPIP tunnels, when route to endpoint is allowed to change) 423 */ 424 425 /* Subtype attributes for IFLA_PROTINFO */ 426 enum { 427 IFLA_INET6_UNSPEC, 428 IFLA_INET6_FLAGS, /* link flags */ 429 IFLA_INET6_CONF, /* sysctl parameters */ 430 IFLA_INET6_STATS, /* statistics */ 431 IFLA_INET6_MCAST, /* MC things. What of them? */ 432 IFLA_INET6_CACHEINFO, /* time values and max reasm size */ 433 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */ 434 IFLA_INET6_TOKEN, /* device token */ 435 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */ 436 IFLA_INET6_RA_MTU, /* mtu carried in the RA message */ 437 __IFLA_INET6_MAX 438 }; 439 440 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1) 441 442 enum in6_addr_gen_mode { 443 IN6_ADDR_GEN_MODE_EUI64, 444 IN6_ADDR_GEN_MODE_NONE, 445 IN6_ADDR_GEN_MODE_STABLE_PRIVACY, 446 IN6_ADDR_GEN_MODE_RANDOM, 447 }; 448 449 /* Bridge section */ 450 451 enum { 452 IFLA_BR_UNSPEC, 453 IFLA_BR_FORWARD_DELAY, 454 IFLA_BR_HELLO_TIME, 455 IFLA_BR_MAX_AGE, 456 IFLA_BR_AGEING_TIME, 457 IFLA_BR_STP_STATE, 458 IFLA_BR_PRIORITY, 459 IFLA_BR_VLAN_FILTERING, 460 IFLA_BR_VLAN_PROTOCOL, 461 IFLA_BR_GROUP_FWD_MASK, 462 IFLA_BR_ROOT_ID, 463 IFLA_BR_BRIDGE_ID, 464 IFLA_BR_ROOT_PORT, 465 IFLA_BR_ROOT_PATH_COST, 466 IFLA_BR_TOPOLOGY_CHANGE, 467 IFLA_BR_TOPOLOGY_CHANGE_DETECTED, 468 IFLA_BR_HELLO_TIMER, 469 IFLA_BR_TCN_TIMER, 470 IFLA_BR_TOPOLOGY_CHANGE_TIMER, 471 IFLA_BR_GC_TIMER, 472 IFLA_BR_GROUP_ADDR, 473 IFLA_BR_FDB_FLUSH, 474 IFLA_BR_MCAST_ROUTER, 475 IFLA_BR_MCAST_SNOOPING, 476 IFLA_BR_MCAST_QUERY_USE_IFADDR, 477 IFLA_BR_MCAST_QUERIER, 478 IFLA_BR_MCAST_HASH_ELASTICITY, 479 IFLA_BR_MCAST_HASH_MAX, 480 IFLA_BR_MCAST_LAST_MEMBER_CNT, 481 IFLA_BR_MCAST_STARTUP_QUERY_CNT, 482 IFLA_BR_MCAST_LAST_MEMBER_INTVL, 483 IFLA_BR_MCAST_MEMBERSHIP_INTVL, 484 IFLA_BR_MCAST_QUERIER_INTVL, 485 IFLA_BR_MCAST_QUERY_INTVL, 486 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL, 487 IFLA_BR_MCAST_STARTUP_QUERY_INTVL, 488 IFLA_BR_NF_CALL_IPTABLES, 489 IFLA_BR_NF_CALL_IP6TABLES, 490 IFLA_BR_NF_CALL_ARPTABLES, 491 IFLA_BR_VLAN_DEFAULT_PVID, 492 IFLA_BR_PAD, 493 IFLA_BR_VLAN_STATS_ENABLED, 494 IFLA_BR_MCAST_STATS_ENABLED, 495 IFLA_BR_MCAST_IGMP_VERSION, 496 IFLA_BR_MCAST_MLD_VERSION, 497 IFLA_BR_VLAN_STATS_PER_PORT, 498 IFLA_BR_MULTI_BOOLOPT, 499 IFLA_BR_MCAST_QUERIER_STATE, 500 __IFLA_BR_MAX, 501 }; 502 503 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1) 504 505 struct ifla_bridge_id { 506 __u8 prio[2]; 507 __u8 addr[6]; /* ETH_ALEN */ 508 }; 509 510 enum { 511 BRIDGE_MODE_UNSPEC, 512 BRIDGE_MODE_HAIRPIN, 513 }; 514 515 enum { 516 IFLA_BRPORT_UNSPEC, 517 IFLA_BRPORT_STATE, /* Spanning tree state */ 518 IFLA_BRPORT_PRIORITY, /* " priority */ 519 IFLA_BRPORT_COST, /* " cost */ 520 IFLA_BRPORT_MODE, /* mode (hairpin) */ 521 IFLA_BRPORT_GUARD, /* bpdu guard */ 522 IFLA_BRPORT_PROTECT, /* root port protection */ 523 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */ 524 IFLA_BRPORT_LEARNING, /* mac learning */ 525 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */ 526 IFLA_BRPORT_PROXYARP, /* proxy ARP */ 527 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */ 528 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */ 529 IFLA_BRPORT_ROOT_ID, /* designated root */ 530 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */ 531 IFLA_BRPORT_DESIGNATED_PORT, 532 IFLA_BRPORT_DESIGNATED_COST, 533 IFLA_BRPORT_ID, 534 IFLA_BRPORT_NO, 535 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK, 536 IFLA_BRPORT_CONFIG_PENDING, 537 IFLA_BRPORT_MESSAGE_AGE_TIMER, 538 IFLA_BRPORT_FORWARD_DELAY_TIMER, 539 IFLA_BRPORT_HOLD_TIMER, 540 IFLA_BRPORT_FLUSH, 541 IFLA_BRPORT_MULTICAST_ROUTER, 542 IFLA_BRPORT_PAD, 543 IFLA_BRPORT_MCAST_FLOOD, 544 IFLA_BRPORT_MCAST_TO_UCAST, 545 IFLA_BRPORT_VLAN_TUNNEL, 546 IFLA_BRPORT_BCAST_FLOOD, 547 IFLA_BRPORT_GROUP_FWD_MASK, 548 IFLA_BRPORT_NEIGH_SUPPRESS, 549 IFLA_BRPORT_ISOLATED, 550 IFLA_BRPORT_BACKUP_PORT, 551 IFLA_BRPORT_MRP_RING_OPEN, 552 IFLA_BRPORT_MRP_IN_OPEN, 553 IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT, 554 IFLA_BRPORT_MCAST_EHT_HOSTS_CNT, 555 IFLA_BRPORT_LOCKED, 556 __IFLA_BRPORT_MAX 557 }; 558 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) 559 560 struct ifla_cacheinfo { 561 __u32 max_reasm_len; 562 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ 563 __u32 reachable_time; 564 __u32 retrans_time; 565 }; 566 567 enum { 568 IFLA_INFO_UNSPEC, 569 IFLA_INFO_KIND, 570 IFLA_INFO_DATA, 571 IFLA_INFO_XSTATS, 572 IFLA_INFO_SLAVE_KIND, 573 IFLA_INFO_SLAVE_DATA, 574 __IFLA_INFO_MAX, 575 }; 576 577 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1) 578 579 /* VLAN section */ 580 581 enum { 582 IFLA_VLAN_UNSPEC, 583 IFLA_VLAN_ID, 584 IFLA_VLAN_FLAGS, 585 IFLA_VLAN_EGRESS_QOS, 586 IFLA_VLAN_INGRESS_QOS, 587 IFLA_VLAN_PROTOCOL, 588 __IFLA_VLAN_MAX, 589 }; 590 591 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1) 592 593 struct ifla_vlan_flags { 594 __u32 flags; 595 __u32 mask; 596 }; 597 598 enum { 599 IFLA_VLAN_QOS_UNSPEC, 600 IFLA_VLAN_QOS_MAPPING, 601 __IFLA_VLAN_QOS_MAX 602 }; 603 604 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1) 605 606 struct ifla_vlan_qos_mapping { 607 __u32 from; 608 __u32 to; 609 }; 610 611 /* MACVLAN section */ 612 enum { 613 IFLA_MACVLAN_UNSPEC, 614 IFLA_MACVLAN_MODE, 615 IFLA_MACVLAN_FLAGS, 616 IFLA_MACVLAN_MACADDR_MODE, 617 IFLA_MACVLAN_MACADDR, 618 IFLA_MACVLAN_MACADDR_DATA, 619 IFLA_MACVLAN_MACADDR_COUNT, 620 IFLA_MACVLAN_BC_QUEUE_LEN, 621 IFLA_MACVLAN_BC_QUEUE_LEN_USED, 622 __IFLA_MACVLAN_MAX, 623 }; 624 625 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1) 626 627 enum macvlan_mode { 628 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */ 629 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */ 630 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */ 631 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */ 632 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */ 633 }; 634 635 enum macvlan_macaddr_mode { 636 MACVLAN_MACADDR_ADD, 637 MACVLAN_MACADDR_DEL, 638 MACVLAN_MACADDR_FLUSH, 639 MACVLAN_MACADDR_SET, 640 }; 641 642 #define MACVLAN_FLAG_NOPROMISC 1 643 #define MACVLAN_FLAG_NODST 2 /* skip dst macvlan if matching src macvlan */ 644 645 /* VRF section */ 646 enum { 647 IFLA_VRF_UNSPEC, 648 IFLA_VRF_TABLE, 649 __IFLA_VRF_MAX 650 }; 651 652 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1) 653 654 enum { 655 IFLA_VRF_PORT_UNSPEC, 656 IFLA_VRF_PORT_TABLE, 657 __IFLA_VRF_PORT_MAX 658 }; 659 660 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1) 661 662 /* MACSEC section */ 663 enum { 664 IFLA_MACSEC_UNSPEC, 665 IFLA_MACSEC_SCI, 666 IFLA_MACSEC_PORT, 667 IFLA_MACSEC_ICV_LEN, 668 IFLA_MACSEC_CIPHER_SUITE, 669 IFLA_MACSEC_WINDOW, 670 IFLA_MACSEC_ENCODING_SA, 671 IFLA_MACSEC_ENCRYPT, 672 IFLA_MACSEC_PROTECT, 673 IFLA_MACSEC_INC_SCI, 674 IFLA_MACSEC_ES, 675 IFLA_MACSEC_SCB, 676 IFLA_MACSEC_REPLAY_PROTECT, 677 IFLA_MACSEC_VALIDATION, 678 IFLA_MACSEC_PAD, 679 IFLA_MACSEC_OFFLOAD, 680 __IFLA_MACSEC_MAX, 681 }; 682 683 #define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1) 684 685 /* XFRM section */ 686 enum { 687 IFLA_XFRM_UNSPEC, 688 IFLA_XFRM_LINK, 689 IFLA_XFRM_IF_ID, 690 __IFLA_XFRM_MAX 691 }; 692 693 #define IFLA_XFRM_MAX (__IFLA_XFRM_MAX - 1) 694 695 enum macsec_validation_type { 696 MACSEC_VALIDATE_DISABLED = 0, 697 MACSEC_VALIDATE_CHECK = 1, 698 MACSEC_VALIDATE_STRICT = 2, 699 __MACSEC_VALIDATE_END, 700 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1, 701 }; 702 703 enum macsec_offload { 704 MACSEC_OFFLOAD_OFF = 0, 705 MACSEC_OFFLOAD_PHY = 1, 706 MACSEC_OFFLOAD_MAC = 2, 707 __MACSEC_OFFLOAD_END, 708 MACSEC_OFFLOAD_MAX = __MACSEC_OFFLOAD_END - 1, 709 }; 710 711 /* IPVLAN section */ 712 enum { 713 IFLA_IPVLAN_UNSPEC, 714 IFLA_IPVLAN_MODE, 715 IFLA_IPVLAN_FLAGS, 716 __IFLA_IPVLAN_MAX 717 }; 718 719 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1) 720 721 enum ipvlan_mode { 722 IPVLAN_MODE_L2 = 0, 723 IPVLAN_MODE_L3, 724 IPVLAN_MODE_L3S, 725 IPVLAN_MODE_MAX 726 }; 727 728 #define IPVLAN_F_PRIVATE 0x01 729 #define IPVLAN_F_VEPA 0x02 730 731 /* Tunnel RTM header */ 732 struct tunnel_msg { 733 __u8 family; 734 __u8 flags; 735 __u16 reserved2; 736 __u32 ifindex; 737 }; 738 739 /* VXLAN section */ 740 741 /* include statistics in the dump */ 742 #define TUNNEL_MSG_FLAG_STATS 0x01 743 744 #define TUNNEL_MSG_VALID_USER_FLAGS TUNNEL_MSG_FLAG_STATS 745 746 /* Embedded inside VXLAN_VNIFILTER_ENTRY_STATS */ 747 enum { 748 VNIFILTER_ENTRY_STATS_UNSPEC, 749 VNIFILTER_ENTRY_STATS_RX_BYTES, 750 VNIFILTER_ENTRY_STATS_RX_PKTS, 751 VNIFILTER_ENTRY_STATS_RX_DROPS, 752 VNIFILTER_ENTRY_STATS_RX_ERRORS, 753 VNIFILTER_ENTRY_STATS_TX_BYTES, 754 VNIFILTER_ENTRY_STATS_TX_PKTS, 755 VNIFILTER_ENTRY_STATS_TX_DROPS, 756 VNIFILTER_ENTRY_STATS_TX_ERRORS, 757 VNIFILTER_ENTRY_STATS_PAD, 758 __VNIFILTER_ENTRY_STATS_MAX 759 }; 760 #define VNIFILTER_ENTRY_STATS_MAX (__VNIFILTER_ENTRY_STATS_MAX - 1) 761 762 enum { 763 VXLAN_VNIFILTER_ENTRY_UNSPEC, 764 VXLAN_VNIFILTER_ENTRY_START, 765 VXLAN_VNIFILTER_ENTRY_END, 766 VXLAN_VNIFILTER_ENTRY_GROUP, 767 VXLAN_VNIFILTER_ENTRY_GROUP6, 768 VXLAN_VNIFILTER_ENTRY_STATS, 769 __VXLAN_VNIFILTER_ENTRY_MAX 770 }; 771 #define VXLAN_VNIFILTER_ENTRY_MAX (__VXLAN_VNIFILTER_ENTRY_MAX - 1) 772 773 enum { 774 VXLAN_VNIFILTER_UNSPEC, 775 VXLAN_VNIFILTER_ENTRY, 776 __VXLAN_VNIFILTER_MAX 777 }; 778 #define VXLAN_VNIFILTER_MAX (__VXLAN_VNIFILTER_MAX - 1) 779 780 enum { 781 IFLA_VXLAN_UNSPEC, 782 IFLA_VXLAN_ID, 783 IFLA_VXLAN_GROUP, /* group or remote address */ 784 IFLA_VXLAN_LINK, 785 IFLA_VXLAN_LOCAL, 786 IFLA_VXLAN_TTL, 787 IFLA_VXLAN_TOS, 788 IFLA_VXLAN_LEARNING, 789 IFLA_VXLAN_AGEING, 790 IFLA_VXLAN_LIMIT, 791 IFLA_VXLAN_PORT_RANGE, /* source port */ 792 IFLA_VXLAN_PROXY, 793 IFLA_VXLAN_RSC, 794 IFLA_VXLAN_L2MISS, 795 IFLA_VXLAN_L3MISS, 796 IFLA_VXLAN_PORT, /* destination port */ 797 IFLA_VXLAN_GROUP6, 798 IFLA_VXLAN_LOCAL6, 799 IFLA_VXLAN_UDP_CSUM, 800 IFLA_VXLAN_UDP_ZERO_CSUM6_TX, 801 IFLA_VXLAN_UDP_ZERO_CSUM6_RX, 802 IFLA_VXLAN_REMCSUM_TX, 803 IFLA_VXLAN_REMCSUM_RX, 804 IFLA_VXLAN_GBP, 805 IFLA_VXLAN_REMCSUM_NOPARTIAL, 806 IFLA_VXLAN_COLLECT_METADATA, 807 IFLA_VXLAN_LABEL, 808 IFLA_VXLAN_GPE, 809 IFLA_VXLAN_TTL_INHERIT, 810 IFLA_VXLAN_DF, 811 IFLA_VXLAN_VNIFILTER, /* only applicable with COLLECT_METADATA mode */ 812 __IFLA_VXLAN_MAX 813 }; 814 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1) 815 816 struct ifla_vxlan_port_range { 817 __be16 low; 818 __be16 high; 819 }; 820 821 enum ifla_vxlan_df { 822 VXLAN_DF_UNSET = 0, 823 VXLAN_DF_SET, 824 VXLAN_DF_INHERIT, 825 __VXLAN_DF_END, 826 VXLAN_DF_MAX = __VXLAN_DF_END - 1, 827 }; 828 829 /* GENEVE section */ 830 enum { 831 IFLA_GENEVE_UNSPEC, 832 IFLA_GENEVE_ID, 833 IFLA_GENEVE_REMOTE, 834 IFLA_GENEVE_TTL, 835 IFLA_GENEVE_TOS, 836 IFLA_GENEVE_PORT, /* destination port */ 837 IFLA_GENEVE_COLLECT_METADATA, 838 IFLA_GENEVE_REMOTE6, 839 IFLA_GENEVE_UDP_CSUM, 840 IFLA_GENEVE_UDP_ZERO_CSUM6_TX, 841 IFLA_GENEVE_UDP_ZERO_CSUM6_RX, 842 IFLA_GENEVE_LABEL, 843 IFLA_GENEVE_TTL_INHERIT, 844 IFLA_GENEVE_DF, 845 __IFLA_GENEVE_MAX 846 }; 847 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1) 848 849 enum ifla_geneve_df { 850 GENEVE_DF_UNSET = 0, 851 GENEVE_DF_SET, 852 GENEVE_DF_INHERIT, 853 __GENEVE_DF_END, 854 GENEVE_DF_MAX = __GENEVE_DF_END - 1, 855 }; 856 857 /* Bareudp section */ 858 enum { 859 IFLA_BAREUDP_UNSPEC, 860 IFLA_BAREUDP_PORT, 861 IFLA_BAREUDP_ETHERTYPE, 862 IFLA_BAREUDP_SRCPORT_MIN, 863 IFLA_BAREUDP_MULTIPROTO_MODE, 864 __IFLA_BAREUDP_MAX 865 }; 866 867 #define IFLA_BAREUDP_MAX (__IFLA_BAREUDP_MAX - 1) 868 869 /* PPP section */ 870 enum { 871 IFLA_PPP_UNSPEC, 872 IFLA_PPP_DEV_FD, 873 __IFLA_PPP_MAX 874 }; 875 #define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1) 876 877 /* GTP section */ 878 879 enum ifla_gtp_role { 880 GTP_ROLE_GGSN = 0, 881 GTP_ROLE_SGSN, 882 }; 883 884 enum { 885 IFLA_GTP_UNSPEC, 886 IFLA_GTP_FD0, 887 IFLA_GTP_FD1, 888 IFLA_GTP_PDP_HASHSIZE, 889 IFLA_GTP_ROLE, 890 __IFLA_GTP_MAX, 891 }; 892 #define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1) 893 894 /* Bonding section */ 895 896 enum { 897 IFLA_BOND_UNSPEC, 898 IFLA_BOND_MODE, 899 IFLA_BOND_ACTIVE_SLAVE, 900 IFLA_BOND_MIIMON, 901 IFLA_BOND_UPDELAY, 902 IFLA_BOND_DOWNDELAY, 903 IFLA_BOND_USE_CARRIER, 904 IFLA_BOND_ARP_INTERVAL, 905 IFLA_BOND_ARP_IP_TARGET, 906 IFLA_BOND_ARP_VALIDATE, 907 IFLA_BOND_ARP_ALL_TARGETS, 908 IFLA_BOND_PRIMARY, 909 IFLA_BOND_PRIMARY_RESELECT, 910 IFLA_BOND_FAIL_OVER_MAC, 911 IFLA_BOND_XMIT_HASH_POLICY, 912 IFLA_BOND_RESEND_IGMP, 913 IFLA_BOND_NUM_PEER_NOTIF, 914 IFLA_BOND_ALL_SLAVES_ACTIVE, 915 IFLA_BOND_MIN_LINKS, 916 IFLA_BOND_LP_INTERVAL, 917 IFLA_BOND_PACKETS_PER_SLAVE, 918 IFLA_BOND_AD_LACP_RATE, 919 IFLA_BOND_AD_SELECT, 920 IFLA_BOND_AD_INFO, 921 IFLA_BOND_AD_ACTOR_SYS_PRIO, 922 IFLA_BOND_AD_USER_PORT_KEY, 923 IFLA_BOND_AD_ACTOR_SYSTEM, 924 IFLA_BOND_TLB_DYNAMIC_LB, 925 IFLA_BOND_PEER_NOTIF_DELAY, 926 IFLA_BOND_AD_LACP_ACTIVE, 927 IFLA_BOND_MISSED_MAX, 928 IFLA_BOND_NS_IP6_TARGET, 929 __IFLA_BOND_MAX, 930 }; 931 932 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1) 933 934 enum { 935 IFLA_BOND_AD_INFO_UNSPEC, 936 IFLA_BOND_AD_INFO_AGGREGATOR, 937 IFLA_BOND_AD_INFO_NUM_PORTS, 938 IFLA_BOND_AD_INFO_ACTOR_KEY, 939 IFLA_BOND_AD_INFO_PARTNER_KEY, 940 IFLA_BOND_AD_INFO_PARTNER_MAC, 941 __IFLA_BOND_AD_INFO_MAX, 942 }; 943 944 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1) 945 946 enum { 947 IFLA_BOND_SLAVE_UNSPEC, 948 IFLA_BOND_SLAVE_STATE, 949 IFLA_BOND_SLAVE_MII_STATUS, 950 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT, 951 IFLA_BOND_SLAVE_PERM_HWADDR, 952 IFLA_BOND_SLAVE_QUEUE_ID, 953 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID, 954 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE, 955 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE, 956 __IFLA_BOND_SLAVE_MAX, 957 }; 958 959 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1) 960 961 /* SR-IOV virtual function management section */ 962 963 enum { 964 IFLA_VF_INFO_UNSPEC, 965 IFLA_VF_INFO, 966 __IFLA_VF_INFO_MAX, 967 }; 968 969 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1) 970 971 enum { 972 IFLA_VF_UNSPEC, 973 IFLA_VF_MAC, /* Hardware queue specific attributes */ 974 IFLA_VF_VLAN, /* VLAN ID and QoS */ 975 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */ 976 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */ 977 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */ 978 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */ 979 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query 980 * on/off switch 981 */ 982 IFLA_VF_STATS, /* network device statistics */ 983 IFLA_VF_TRUST, /* Trust VF */ 984 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */ 985 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */ 986 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */ 987 IFLA_VF_BROADCAST, /* VF broadcast */ 988 __IFLA_VF_MAX, 989 }; 990 991 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1) 992 993 struct ifla_vf_mac { 994 __u32 vf; 995 __u8 mac[32]; /* MAX_ADDR_LEN */ 996 }; 997 998 struct ifla_vf_broadcast { 999 __u8 broadcast[32]; 1000 }; 1001 1002 struct ifla_vf_vlan { 1003 __u32 vf; 1004 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */ 1005 __u32 qos; 1006 }; 1007 1008 enum { 1009 IFLA_VF_VLAN_INFO_UNSPEC, 1010 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */ 1011 __IFLA_VF_VLAN_INFO_MAX, 1012 }; 1013 1014 #define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1) 1015 #define MAX_VLAN_LIST_LEN 1 1016 1017 struct ifla_vf_vlan_info { 1018 __u32 vf; 1019 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */ 1020 __u32 qos; 1021 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */ 1022 }; 1023 1024 struct ifla_vf_tx_rate { 1025 __u32 vf; 1026 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */ 1027 }; 1028 1029 struct ifla_vf_rate { 1030 __u32 vf; 1031 __u32 min_tx_rate; /* Min Bandwidth in Mbps */ 1032 __u32 max_tx_rate; /* Max Bandwidth in Mbps */ 1033 }; 1034 1035 struct ifla_vf_spoofchk { 1036 __u32 vf; 1037 __u32 setting; 1038 }; 1039 1040 struct ifla_vf_guid { 1041 __u32 vf; 1042 __u64 guid; 1043 }; 1044 1045 enum { 1046 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */ 1047 IFLA_VF_LINK_STATE_ENABLE, /* link always up */ 1048 IFLA_VF_LINK_STATE_DISABLE, /* link always down */ 1049 __IFLA_VF_LINK_STATE_MAX, 1050 }; 1051 1052 struct ifla_vf_link_state { 1053 __u32 vf; 1054 __u32 link_state; 1055 }; 1056 1057 struct ifla_vf_rss_query_en { 1058 __u32 vf; 1059 __u32 setting; 1060 }; 1061 1062 enum { 1063 IFLA_VF_STATS_RX_PACKETS, 1064 IFLA_VF_STATS_TX_PACKETS, 1065 IFLA_VF_STATS_RX_BYTES, 1066 IFLA_VF_STATS_TX_BYTES, 1067 IFLA_VF_STATS_BROADCAST, 1068 IFLA_VF_STATS_MULTICAST, 1069 IFLA_VF_STATS_PAD, 1070 IFLA_VF_STATS_RX_DROPPED, 1071 IFLA_VF_STATS_TX_DROPPED, 1072 __IFLA_VF_STATS_MAX, 1073 }; 1074 1075 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1) 1076 1077 struct ifla_vf_trust { 1078 __u32 vf; 1079 __u32 setting; 1080 }; 1081 1082 /* VF ports management section 1083 * 1084 * Nested layout of set/get msg is: 1085 * 1086 * [IFLA_NUM_VF] 1087 * [IFLA_VF_PORTS] 1088 * [IFLA_VF_PORT] 1089 * [IFLA_PORT_*], ... 1090 * [IFLA_VF_PORT] 1091 * [IFLA_PORT_*], ... 1092 * ... 1093 * [IFLA_PORT_SELF] 1094 * [IFLA_PORT_*], ... 1095 */ 1096 1097 enum { 1098 IFLA_VF_PORT_UNSPEC, 1099 IFLA_VF_PORT, /* nest */ 1100 __IFLA_VF_PORT_MAX, 1101 }; 1102 1103 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1) 1104 1105 enum { 1106 IFLA_PORT_UNSPEC, 1107 IFLA_PORT_VF, /* __u32 */ 1108 IFLA_PORT_PROFILE, /* string */ 1109 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */ 1110 IFLA_PORT_INSTANCE_UUID, /* binary UUID */ 1111 IFLA_PORT_HOST_UUID, /* binary UUID */ 1112 IFLA_PORT_REQUEST, /* __u8 */ 1113 IFLA_PORT_RESPONSE, /* __u16, output only */ 1114 __IFLA_PORT_MAX, 1115 }; 1116 1117 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1) 1118 1119 #define PORT_PROFILE_MAX 40 1120 #define PORT_UUID_MAX 16 1121 #define PORT_SELF_VF -1 1122 1123 enum { 1124 PORT_REQUEST_PREASSOCIATE = 0, 1125 PORT_REQUEST_PREASSOCIATE_RR, 1126 PORT_REQUEST_ASSOCIATE, 1127 PORT_REQUEST_DISASSOCIATE, 1128 }; 1129 1130 enum { 1131 PORT_VDP_RESPONSE_SUCCESS = 0, 1132 PORT_VDP_RESPONSE_INVALID_FORMAT, 1133 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES, 1134 PORT_VDP_RESPONSE_UNUSED_VTID, 1135 PORT_VDP_RESPONSE_VTID_VIOLATION, 1136 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION, 1137 PORT_VDP_RESPONSE_OUT_OF_SYNC, 1138 /* 0x08-0xFF reserved for future VDP use */ 1139 PORT_PROFILE_RESPONSE_SUCCESS = 0x100, 1140 PORT_PROFILE_RESPONSE_INPROGRESS, 1141 PORT_PROFILE_RESPONSE_INVALID, 1142 PORT_PROFILE_RESPONSE_BADSTATE, 1143 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES, 1144 PORT_PROFILE_RESPONSE_ERROR, 1145 }; 1146 1147 struct ifla_port_vsi { 1148 __u8 vsi_mgr_id; 1149 __u8 vsi_type_id[3]; 1150 __u8 vsi_type_version; 1151 __u8 pad[3]; 1152 }; 1153 1154 1155 /* IPoIB section */ 1156 1157 enum { 1158 IFLA_IPOIB_UNSPEC, 1159 IFLA_IPOIB_PKEY, 1160 IFLA_IPOIB_MODE, 1161 IFLA_IPOIB_UMCAST, 1162 __IFLA_IPOIB_MAX 1163 }; 1164 1165 enum { 1166 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */ 1167 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */ 1168 }; 1169 1170 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1) 1171 1172 1173 /* HSR/PRP section, both uses same interface */ 1174 1175 /* Different redundancy protocols for hsr device */ 1176 enum { 1177 HSR_PROTOCOL_HSR, 1178 HSR_PROTOCOL_PRP, 1179 HSR_PROTOCOL_MAX, 1180 }; 1181 1182 enum { 1183 IFLA_HSR_UNSPEC, 1184 IFLA_HSR_SLAVE1, 1185 IFLA_HSR_SLAVE2, 1186 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */ 1187 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */ 1188 IFLA_HSR_SEQ_NR, 1189 IFLA_HSR_VERSION, /* HSR version */ 1190 IFLA_HSR_PROTOCOL, /* Indicate different protocol than 1191 * HSR. For example PRP. 1192 */ 1193 __IFLA_HSR_MAX, 1194 }; 1195 1196 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1) 1197 1198 /* STATS section */ 1199 1200 struct if_stats_msg { 1201 __u8 family; 1202 __u8 pad1; 1203 __u16 pad2; 1204 __u32 ifindex; 1205 __u32 filter_mask; 1206 }; 1207 1208 /* A stats attribute can be netdev specific or a global stat. 1209 * For netdev stats, lets use the prefix IFLA_STATS_LINK_* 1210 */ 1211 enum { 1212 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */ 1213 IFLA_STATS_LINK_64, 1214 IFLA_STATS_LINK_XSTATS, 1215 IFLA_STATS_LINK_XSTATS_SLAVE, 1216 IFLA_STATS_LINK_OFFLOAD_XSTATS, 1217 IFLA_STATS_AF_SPEC, 1218 __IFLA_STATS_MAX, 1219 }; 1220 1221 #define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1) 1222 1223 #define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1)) 1224 1225 enum { 1226 IFLA_STATS_GETSET_UNSPEC, 1227 IFLA_STATS_GET_FILTERS, /* Nest of IFLA_STATS_LINK_xxx, each a u32 with 1228 * a filter mask for the corresponding group. 1229 */ 1230 IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS, /* 0 or 1 as u8 */ 1231 __IFLA_STATS_GETSET_MAX, 1232 }; 1233 1234 #define IFLA_STATS_GETSET_MAX (__IFLA_STATS_GETSET_MAX - 1) 1235 1236 /* These are embedded into IFLA_STATS_LINK_XSTATS: 1237 * [IFLA_STATS_LINK_XSTATS] 1238 * -> [LINK_XSTATS_TYPE_xxx] 1239 * -> [rtnl link type specific attributes] 1240 */ 1241 enum { 1242 LINK_XSTATS_TYPE_UNSPEC, 1243 LINK_XSTATS_TYPE_BRIDGE, 1244 LINK_XSTATS_TYPE_BOND, 1245 __LINK_XSTATS_TYPE_MAX 1246 }; 1247 #define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1) 1248 1249 /* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */ 1250 enum { 1251 IFLA_OFFLOAD_XSTATS_UNSPEC, 1252 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */ 1253 IFLA_OFFLOAD_XSTATS_HW_S_INFO, /* HW stats info. A nest */ 1254 IFLA_OFFLOAD_XSTATS_L3_STATS, /* struct rtnl_hw_stats64 */ 1255 __IFLA_OFFLOAD_XSTATS_MAX 1256 }; 1257 #define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1) 1258 1259 enum { 1260 IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC, 1261 IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST, /* u8 */ 1262 IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED, /* u8 */ 1263 __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX, 1264 }; 1265 #define IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX \ 1266 (__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX - 1) 1267 1268 /* XDP section */ 1269 1270 #define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0) 1271 #define XDP_FLAGS_SKB_MODE (1U << 1) 1272 #define XDP_FLAGS_DRV_MODE (1U << 2) 1273 #define XDP_FLAGS_HW_MODE (1U << 3) 1274 #define XDP_FLAGS_REPLACE (1U << 4) 1275 #define XDP_FLAGS_MODES (XDP_FLAGS_SKB_MODE | \ 1276 XDP_FLAGS_DRV_MODE | \ 1277 XDP_FLAGS_HW_MODE) 1278 #define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST | \ 1279 XDP_FLAGS_MODES | XDP_FLAGS_REPLACE) 1280 1281 /* These are stored into IFLA_XDP_ATTACHED on dump. */ 1282 enum { 1283 XDP_ATTACHED_NONE = 0, 1284 XDP_ATTACHED_DRV, 1285 XDP_ATTACHED_SKB, 1286 XDP_ATTACHED_HW, 1287 XDP_ATTACHED_MULTI, 1288 }; 1289 1290 enum { 1291 IFLA_XDP_UNSPEC, 1292 IFLA_XDP_FD, 1293 IFLA_XDP_ATTACHED, 1294 IFLA_XDP_FLAGS, 1295 IFLA_XDP_PROG_ID, 1296 IFLA_XDP_DRV_PROG_ID, 1297 IFLA_XDP_SKB_PROG_ID, 1298 IFLA_XDP_HW_PROG_ID, 1299 IFLA_XDP_EXPECTED_FD, 1300 __IFLA_XDP_MAX, 1301 }; 1302 1303 #define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1) 1304 1305 enum { 1306 IFLA_EVENT_NONE, 1307 IFLA_EVENT_REBOOT, /* internal reset / reboot */ 1308 IFLA_EVENT_FEATURES, /* change in offload features */ 1309 IFLA_EVENT_BONDING_FAILOVER, /* change in active slave */ 1310 IFLA_EVENT_NOTIFY_PEERS, /* re-sent grat. arp/ndisc */ 1311 IFLA_EVENT_IGMP_RESEND, /* re-sent IGMP JOIN */ 1312 IFLA_EVENT_BONDING_OPTIONS, /* change in bonding options */ 1313 }; 1314 1315 /* tun section */ 1316 1317 enum { 1318 IFLA_TUN_UNSPEC, 1319 IFLA_TUN_OWNER, 1320 IFLA_TUN_GROUP, 1321 IFLA_TUN_TYPE, 1322 IFLA_TUN_PI, 1323 IFLA_TUN_VNET_HDR, 1324 IFLA_TUN_PERSIST, 1325 IFLA_TUN_MULTI_QUEUE, 1326 IFLA_TUN_NUM_QUEUES, 1327 IFLA_TUN_NUM_DISABLED_QUEUES, 1328 __IFLA_TUN_MAX, 1329 }; 1330 1331 #define IFLA_TUN_MAX (__IFLA_TUN_MAX - 1) 1332 1333 /* rmnet section */ 1334 1335 #define RMNET_FLAGS_INGRESS_DEAGGREGATION (1U << 0) 1336 #define RMNET_FLAGS_INGRESS_MAP_COMMANDS (1U << 1) 1337 #define RMNET_FLAGS_INGRESS_MAP_CKSUMV4 (1U << 2) 1338 #define RMNET_FLAGS_EGRESS_MAP_CKSUMV4 (1U << 3) 1339 #define RMNET_FLAGS_INGRESS_MAP_CKSUMV5 (1U << 4) 1340 #define RMNET_FLAGS_EGRESS_MAP_CKSUMV5 (1U << 5) 1341 1342 enum { 1343 IFLA_RMNET_UNSPEC, 1344 IFLA_RMNET_MUX_ID, 1345 IFLA_RMNET_FLAGS, 1346 __IFLA_RMNET_MAX, 1347 }; 1348 1349 #define IFLA_RMNET_MAX (__IFLA_RMNET_MAX - 1) 1350 1351 struct ifla_rmnet_flags { 1352 __u32 flags; 1353 __u32 mask; 1354 }; 1355 1356 /* MCTP section */ 1357 1358 enum { 1359 IFLA_MCTP_UNSPEC, 1360 IFLA_MCTP_NET, 1361 __IFLA_MCTP_MAX, 1362 }; 1363 1364 #define IFLA_MCTP_MAX (__IFLA_MCTP_MAX - 1) 1365 1366 #endif /* _UAPI_LINUX_IF_LINK_H */ 1367