1 #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 */ 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 */ 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; 38 39 __u32 rx_nohandler; /* dropped, no handler found */ 40 }; 41 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 */ 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; 73 74 __u64 rx_nohandler; /* dropped, no handler found */ 75 }; 76 77 /* The struct should be in sync with struct ifmap */ 78 struct 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 105 enum { 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, 150 IFLA_PHYS_PORT_ID, 151 IFLA_CARRIER_CHANGES, 152 IFLA_PHYS_SWITCH_ID, 153 IFLA_LINK_NETNSID, 154 IFLA_PHYS_PORT_NAME, 155 IFLA_PROTO_DOWN, 156 __IFLA_MAX 157 }; 158 159 160 #define IFLA_MAX (__IFLA_MAX - 1) 161 162 /* backwards compatibility for userspace */ 163 #ifndef __KERNEL__ 164 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg)))) 165 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg)) 166 #endif 167 168 enum { 169 IFLA_INET_UNSPEC, 170 IFLA_INET_CONF, 171 __IFLA_INET_MAX, 172 }; 173 174 #define IFLA_INET_MAX (__IFLA_INET_MAX - 1) 175 176 /* ifi_flags. 177 178 IFF_* flags. 179 180 The only change is: 181 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are 182 more not changeable by user. They describe link media 183 characteristics and set by device driver. 184 185 Comments: 186 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid 187 - If neither of these three flags are set; 188 the interface is NBMA. 189 190 - IFF_MULTICAST does not mean anything special: 191 multicasts can be used on all not-NBMA links. 192 IFF_MULTICAST means that this media uses special encapsulation 193 for multicast frames. Apparently, all IFF_POINTOPOINT and 194 IFF_BROADCAST devices are able to use multicasts too. 195 */ 196 197 /* IFLA_LINK. 198 For usual devices it is equal ifi_index. 199 If it is a "virtual interface" (f.e. tunnel), ifi_link 200 can point to real physical interface (f.e. for bandwidth calculations), 201 or maybe 0, what means, that real media is unknown (usual 202 for IPIP tunnels, when route to endpoint is allowed to change) 203 */ 204 205 /* Subtype attributes for IFLA_PROTINFO */ 206 enum { 207 IFLA_INET6_UNSPEC, 208 IFLA_INET6_FLAGS, /* link flags */ 209 IFLA_INET6_CONF, /* sysctl parameters */ 210 IFLA_INET6_STATS, /* statistics */ 211 IFLA_INET6_MCAST, /* MC things. What of them? */ 212 IFLA_INET6_CACHEINFO, /* time values and max reasm size */ 213 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */ 214 IFLA_INET6_TOKEN, /* device token */ 215 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */ 216 __IFLA_INET6_MAX 217 }; 218 219 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1) 220 221 enum in6_addr_gen_mode { 222 IN6_ADDR_GEN_MODE_EUI64, 223 IN6_ADDR_GEN_MODE_NONE, 224 IN6_ADDR_GEN_MODE_STABLE_PRIVACY, 225 IN6_ADDR_GEN_MODE_RANDOM, 226 }; 227 228 /* Bridge section */ 229 230 enum { 231 IFLA_BR_UNSPEC, 232 IFLA_BR_FORWARD_DELAY, 233 IFLA_BR_HELLO_TIME, 234 IFLA_BR_MAX_AGE, 235 IFLA_BR_AGEING_TIME, 236 IFLA_BR_STP_STATE, 237 IFLA_BR_PRIORITY, 238 IFLA_BR_VLAN_FILTERING, 239 IFLA_BR_VLAN_PROTOCOL, 240 IFLA_BR_GROUP_FWD_MASK, 241 IFLA_BR_ROOT_ID, 242 IFLA_BR_BRIDGE_ID, 243 IFLA_BR_ROOT_PORT, 244 IFLA_BR_ROOT_PATH_COST, 245 IFLA_BR_TOPOLOGY_CHANGE, 246 IFLA_BR_TOPOLOGY_CHANGE_DETECTED, 247 IFLA_BR_HELLO_TIMER, 248 IFLA_BR_TCN_TIMER, 249 IFLA_BR_TOPOLOGY_CHANGE_TIMER, 250 IFLA_BR_GC_TIMER, 251 IFLA_BR_GROUP_ADDR, 252 IFLA_BR_FDB_FLUSH, 253 IFLA_BR_MCAST_ROUTER, 254 IFLA_BR_MCAST_SNOOPING, 255 IFLA_BR_MCAST_QUERY_USE_IFADDR, 256 IFLA_BR_MCAST_QUERIER, 257 IFLA_BR_MCAST_HASH_ELASTICITY, 258 IFLA_BR_MCAST_HASH_MAX, 259 IFLA_BR_MCAST_LAST_MEMBER_CNT, 260 IFLA_BR_MCAST_STARTUP_QUERY_CNT, 261 IFLA_BR_MCAST_LAST_MEMBER_INTVL, 262 IFLA_BR_MCAST_MEMBERSHIP_INTVL, 263 IFLA_BR_MCAST_QUERIER_INTVL, 264 IFLA_BR_MCAST_QUERY_INTVL, 265 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL, 266 IFLA_BR_MCAST_STARTUP_QUERY_INTVL, 267 IFLA_BR_NF_CALL_IPTABLES, 268 IFLA_BR_NF_CALL_IP6TABLES, 269 IFLA_BR_NF_CALL_ARPTABLES, 270 IFLA_BR_VLAN_DEFAULT_PVID, 271 __IFLA_BR_MAX, 272 }; 273 274 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1) 275 276 struct ifla_bridge_id { 277 __u8 prio[2]; 278 __u8 addr[6]; /* ETH_ALEN */ 279 }; 280 281 enum { 282 BRIDGE_MODE_UNSPEC, 283 BRIDGE_MODE_HAIRPIN, 284 }; 285 286 enum { 287 IFLA_BRPORT_UNSPEC, 288 IFLA_BRPORT_STATE, /* Spanning tree state */ 289 IFLA_BRPORT_PRIORITY, /* " priority */ 290 IFLA_BRPORT_COST, /* " cost */ 291 IFLA_BRPORT_MODE, /* mode (hairpin) */ 292 IFLA_BRPORT_GUARD, /* bpdu guard */ 293 IFLA_BRPORT_PROTECT, /* root port protection */ 294 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */ 295 IFLA_BRPORT_LEARNING, /* mac learning */ 296 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */ 297 IFLA_BRPORT_PROXYARP, /* proxy ARP */ 298 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */ 299 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */ 300 IFLA_BRPORT_ROOT_ID, /* designated root */ 301 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */ 302 IFLA_BRPORT_DESIGNATED_PORT, 303 IFLA_BRPORT_DESIGNATED_COST, 304 IFLA_BRPORT_ID, 305 IFLA_BRPORT_NO, 306 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK, 307 IFLA_BRPORT_CONFIG_PENDING, 308 IFLA_BRPORT_MESSAGE_AGE_TIMER, 309 IFLA_BRPORT_FORWARD_DELAY_TIMER, 310 IFLA_BRPORT_HOLD_TIMER, 311 IFLA_BRPORT_FLUSH, 312 IFLA_BRPORT_MULTICAST_ROUTER, 313 __IFLA_BRPORT_MAX 314 }; 315 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1) 316 317 struct ifla_cacheinfo { 318 __u32 max_reasm_len; 319 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ 320 __u32 reachable_time; 321 __u32 retrans_time; 322 }; 323 324 enum { 325 IFLA_INFO_UNSPEC, 326 IFLA_INFO_KIND, 327 IFLA_INFO_DATA, 328 IFLA_INFO_XSTATS, 329 IFLA_INFO_SLAVE_KIND, 330 IFLA_INFO_SLAVE_DATA, 331 __IFLA_INFO_MAX, 332 }; 333 334 #define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1) 335 336 /* VLAN section */ 337 338 enum { 339 IFLA_VLAN_UNSPEC, 340 IFLA_VLAN_ID, 341 IFLA_VLAN_FLAGS, 342 IFLA_VLAN_EGRESS_QOS, 343 IFLA_VLAN_INGRESS_QOS, 344 IFLA_VLAN_PROTOCOL, 345 __IFLA_VLAN_MAX, 346 }; 347 348 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1) 349 350 struct ifla_vlan_flags { 351 __u32 flags; 352 __u32 mask; 353 }; 354 355 enum { 356 IFLA_VLAN_QOS_UNSPEC, 357 IFLA_VLAN_QOS_MAPPING, 358 __IFLA_VLAN_QOS_MAX 359 }; 360 361 #define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1) 362 363 struct ifla_vlan_qos_mapping { 364 __u32 from; 365 __u32 to; 366 }; 367 368 /* MACVLAN section */ 369 enum { 370 IFLA_MACVLAN_UNSPEC, 371 IFLA_MACVLAN_MODE, 372 IFLA_MACVLAN_FLAGS, 373 IFLA_MACVLAN_MACADDR_MODE, 374 IFLA_MACVLAN_MACADDR, 375 IFLA_MACVLAN_MACADDR_DATA, 376 IFLA_MACVLAN_MACADDR_COUNT, 377 __IFLA_MACVLAN_MAX, 378 }; 379 380 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1) 381 382 enum macvlan_mode { 383 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */ 384 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */ 385 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */ 386 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */ 387 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */ 388 }; 389 390 enum macvlan_macaddr_mode { 391 MACVLAN_MACADDR_ADD, 392 MACVLAN_MACADDR_DEL, 393 MACVLAN_MACADDR_FLUSH, 394 MACVLAN_MACADDR_SET, 395 }; 396 397 #define MACVLAN_FLAG_NOPROMISC 1 398 399 /* VRF section */ 400 enum { 401 IFLA_VRF_UNSPEC, 402 IFLA_VRF_TABLE, 403 __IFLA_VRF_MAX 404 }; 405 406 #define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1) 407 408 enum { 409 IFLA_VRF_PORT_UNSPEC, 410 IFLA_VRF_PORT_TABLE, 411 __IFLA_VRF_PORT_MAX 412 }; 413 414 #define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1) 415 416 /* IPVLAN section */ 417 enum { 418 IFLA_IPVLAN_UNSPEC, 419 IFLA_IPVLAN_MODE, 420 __IFLA_IPVLAN_MAX 421 }; 422 423 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1) 424 425 enum ipvlan_mode { 426 IPVLAN_MODE_L2 = 0, 427 IPVLAN_MODE_L3, 428 IPVLAN_MODE_MAX 429 }; 430 431 /* VXLAN section */ 432 enum { 433 IFLA_VXLAN_UNSPEC, 434 IFLA_VXLAN_ID, 435 IFLA_VXLAN_GROUP, /* group or remote address */ 436 IFLA_VXLAN_LINK, 437 IFLA_VXLAN_LOCAL, 438 IFLA_VXLAN_TTL, 439 IFLA_VXLAN_TOS, 440 IFLA_VXLAN_LEARNING, 441 IFLA_VXLAN_AGEING, 442 IFLA_VXLAN_LIMIT, 443 IFLA_VXLAN_PORT_RANGE, /* source port */ 444 IFLA_VXLAN_PROXY, 445 IFLA_VXLAN_RSC, 446 IFLA_VXLAN_L2MISS, 447 IFLA_VXLAN_L3MISS, 448 IFLA_VXLAN_PORT, /* destination port */ 449 IFLA_VXLAN_GROUP6, 450 IFLA_VXLAN_LOCAL6, 451 IFLA_VXLAN_UDP_CSUM, 452 IFLA_VXLAN_UDP_ZERO_CSUM6_TX, 453 IFLA_VXLAN_UDP_ZERO_CSUM6_RX, 454 IFLA_VXLAN_REMCSUM_TX, 455 IFLA_VXLAN_REMCSUM_RX, 456 IFLA_VXLAN_GBP, 457 IFLA_VXLAN_REMCSUM_NOPARTIAL, 458 IFLA_VXLAN_COLLECT_METADATA, 459 __IFLA_VXLAN_MAX 460 }; 461 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1) 462 463 struct ifla_vxlan_port_range { 464 __be16 low; 465 __be16 high; 466 }; 467 468 /* GENEVE section */ 469 enum { 470 IFLA_GENEVE_UNSPEC, 471 IFLA_GENEVE_ID, 472 IFLA_GENEVE_REMOTE, 473 IFLA_GENEVE_TTL, 474 IFLA_GENEVE_TOS, 475 IFLA_GENEVE_PORT, /* destination port */ 476 IFLA_GENEVE_COLLECT_METADATA, 477 IFLA_GENEVE_REMOTE6, 478 IFLA_GENEVE_UDP_CSUM, 479 IFLA_GENEVE_UDP_ZERO_CSUM6_TX, 480 IFLA_GENEVE_UDP_ZERO_CSUM6_RX, 481 __IFLA_GENEVE_MAX 482 }; 483 #define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1) 484 485 /* Bonding section */ 486 487 enum { 488 IFLA_BOND_UNSPEC, 489 IFLA_BOND_MODE, 490 IFLA_BOND_ACTIVE_SLAVE, 491 IFLA_BOND_MIIMON, 492 IFLA_BOND_UPDELAY, 493 IFLA_BOND_DOWNDELAY, 494 IFLA_BOND_USE_CARRIER, 495 IFLA_BOND_ARP_INTERVAL, 496 IFLA_BOND_ARP_IP_TARGET, 497 IFLA_BOND_ARP_VALIDATE, 498 IFLA_BOND_ARP_ALL_TARGETS, 499 IFLA_BOND_PRIMARY, 500 IFLA_BOND_PRIMARY_RESELECT, 501 IFLA_BOND_FAIL_OVER_MAC, 502 IFLA_BOND_XMIT_HASH_POLICY, 503 IFLA_BOND_RESEND_IGMP, 504 IFLA_BOND_NUM_PEER_NOTIF, 505 IFLA_BOND_ALL_SLAVES_ACTIVE, 506 IFLA_BOND_MIN_LINKS, 507 IFLA_BOND_LP_INTERVAL, 508 IFLA_BOND_PACKETS_PER_SLAVE, 509 IFLA_BOND_AD_LACP_RATE, 510 IFLA_BOND_AD_SELECT, 511 IFLA_BOND_AD_INFO, 512 IFLA_BOND_AD_ACTOR_SYS_PRIO, 513 IFLA_BOND_AD_USER_PORT_KEY, 514 IFLA_BOND_AD_ACTOR_SYSTEM, 515 IFLA_BOND_TLB_DYNAMIC_LB, 516 __IFLA_BOND_MAX, 517 }; 518 519 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1) 520 521 enum { 522 IFLA_BOND_AD_INFO_UNSPEC, 523 IFLA_BOND_AD_INFO_AGGREGATOR, 524 IFLA_BOND_AD_INFO_NUM_PORTS, 525 IFLA_BOND_AD_INFO_ACTOR_KEY, 526 IFLA_BOND_AD_INFO_PARTNER_KEY, 527 IFLA_BOND_AD_INFO_PARTNER_MAC, 528 __IFLA_BOND_AD_INFO_MAX, 529 }; 530 531 #define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1) 532 533 enum { 534 IFLA_BOND_SLAVE_UNSPEC, 535 IFLA_BOND_SLAVE_STATE, 536 IFLA_BOND_SLAVE_MII_STATUS, 537 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT, 538 IFLA_BOND_SLAVE_PERM_HWADDR, 539 IFLA_BOND_SLAVE_QUEUE_ID, 540 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID, 541 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE, 542 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE, 543 __IFLA_BOND_SLAVE_MAX, 544 }; 545 546 #define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1) 547 548 /* SR-IOV virtual function management section */ 549 550 enum { 551 IFLA_VF_INFO_UNSPEC, 552 IFLA_VF_INFO, 553 __IFLA_VF_INFO_MAX, 554 }; 555 556 #define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1) 557 558 enum { 559 IFLA_VF_UNSPEC, 560 IFLA_VF_MAC, /* Hardware queue specific attributes */ 561 IFLA_VF_VLAN, 562 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */ 563 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */ 564 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */ 565 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */ 566 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query 567 * on/off switch 568 */ 569 IFLA_VF_STATS, /* network device statistics */ 570 IFLA_VF_TRUST, /* Trust VF */ 571 __IFLA_VF_MAX, 572 }; 573 574 #define IFLA_VF_MAX (__IFLA_VF_MAX - 1) 575 576 struct ifla_vf_mac { 577 __u32 vf; 578 __u8 mac[32]; /* MAX_ADDR_LEN */ 579 }; 580 581 struct ifla_vf_vlan { 582 __u32 vf; 583 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */ 584 __u32 qos; 585 }; 586 587 struct ifla_vf_tx_rate { 588 __u32 vf; 589 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */ 590 }; 591 592 struct ifla_vf_rate { 593 __u32 vf; 594 __u32 min_tx_rate; /* Min Bandwidth in Mbps */ 595 __u32 max_tx_rate; /* Max Bandwidth in Mbps */ 596 }; 597 598 struct ifla_vf_spoofchk { 599 __u32 vf; 600 __u32 setting; 601 }; 602 603 enum { 604 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */ 605 IFLA_VF_LINK_STATE_ENABLE, /* link always up */ 606 IFLA_VF_LINK_STATE_DISABLE, /* link always down */ 607 __IFLA_VF_LINK_STATE_MAX, 608 }; 609 610 struct ifla_vf_link_state { 611 __u32 vf; 612 __u32 link_state; 613 }; 614 615 struct ifla_vf_rss_query_en { 616 __u32 vf; 617 __u32 setting; 618 }; 619 620 enum { 621 IFLA_VF_STATS_RX_PACKETS, 622 IFLA_VF_STATS_TX_PACKETS, 623 IFLA_VF_STATS_RX_BYTES, 624 IFLA_VF_STATS_TX_BYTES, 625 IFLA_VF_STATS_BROADCAST, 626 IFLA_VF_STATS_MULTICAST, 627 __IFLA_VF_STATS_MAX, 628 }; 629 630 #define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1) 631 632 struct ifla_vf_trust { 633 __u32 vf; 634 __u32 setting; 635 }; 636 637 /* VF ports management section 638 * 639 * Nested layout of set/get msg is: 640 * 641 * [IFLA_NUM_VF] 642 * [IFLA_VF_PORTS] 643 * [IFLA_VF_PORT] 644 * [IFLA_PORT_*], ... 645 * [IFLA_VF_PORT] 646 * [IFLA_PORT_*], ... 647 * ... 648 * [IFLA_PORT_SELF] 649 * [IFLA_PORT_*], ... 650 */ 651 652 enum { 653 IFLA_VF_PORT_UNSPEC, 654 IFLA_VF_PORT, /* nest */ 655 __IFLA_VF_PORT_MAX, 656 }; 657 658 #define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1) 659 660 enum { 661 IFLA_PORT_UNSPEC, 662 IFLA_PORT_VF, /* __u32 */ 663 IFLA_PORT_PROFILE, /* string */ 664 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */ 665 IFLA_PORT_INSTANCE_UUID, /* binary UUID */ 666 IFLA_PORT_HOST_UUID, /* binary UUID */ 667 IFLA_PORT_REQUEST, /* __u8 */ 668 IFLA_PORT_RESPONSE, /* __u16, output only */ 669 __IFLA_PORT_MAX, 670 }; 671 672 #define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1) 673 674 #define PORT_PROFILE_MAX 40 675 #define PORT_UUID_MAX 16 676 #define PORT_SELF_VF -1 677 678 enum { 679 PORT_REQUEST_PREASSOCIATE = 0, 680 PORT_REQUEST_PREASSOCIATE_RR, 681 PORT_REQUEST_ASSOCIATE, 682 PORT_REQUEST_DISASSOCIATE, 683 }; 684 685 enum { 686 PORT_VDP_RESPONSE_SUCCESS = 0, 687 PORT_VDP_RESPONSE_INVALID_FORMAT, 688 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES, 689 PORT_VDP_RESPONSE_UNUSED_VTID, 690 PORT_VDP_RESPONSE_VTID_VIOLATION, 691 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION, 692 PORT_VDP_RESPONSE_OUT_OF_SYNC, 693 /* 0x08-0xFF reserved for future VDP use */ 694 PORT_PROFILE_RESPONSE_SUCCESS = 0x100, 695 PORT_PROFILE_RESPONSE_INPROGRESS, 696 PORT_PROFILE_RESPONSE_INVALID, 697 PORT_PROFILE_RESPONSE_BADSTATE, 698 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES, 699 PORT_PROFILE_RESPONSE_ERROR, 700 }; 701 702 struct ifla_port_vsi { 703 __u8 vsi_mgr_id; 704 __u8 vsi_type_id[3]; 705 __u8 vsi_type_version; 706 __u8 pad[3]; 707 }; 708 709 710 /* IPoIB section */ 711 712 enum { 713 IFLA_IPOIB_UNSPEC, 714 IFLA_IPOIB_PKEY, 715 IFLA_IPOIB_MODE, 716 IFLA_IPOIB_UMCAST, 717 __IFLA_IPOIB_MAX 718 }; 719 720 enum { 721 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */ 722 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */ 723 }; 724 725 #define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1) 726 727 728 /* HSR section */ 729 730 enum { 731 IFLA_HSR_UNSPEC, 732 IFLA_HSR_SLAVE1, 733 IFLA_HSR_SLAVE2, 734 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */ 735 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */ 736 IFLA_HSR_SEQ_NR, 737 __IFLA_HSR_MAX, 738 }; 739 740 #define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1) 741 742 #endif /* _UAPI_LINUX_IF_LINK_H */ 743