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