1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* A network driver using virtio. 3 * 4 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation 5 */ 6 //#define DEBUG 7 #include <linux/netdevice.h> 8 #include <linux/etherdevice.h> 9 #include <linux/ethtool.h> 10 #include <linux/module.h> 11 #include <linux/virtio.h> 12 #include <linux/virtio_net.h> 13 #include <linux/bpf.h> 14 #include <linux/bpf_trace.h> 15 #include <linux/scatterlist.h> 16 #include <linux/if_vlan.h> 17 #include <linux/slab.h> 18 #include <linux/cpu.h> 19 #include <linux/average.h> 20 #include <linux/filter.h> 21 #include <linux/kernel.h> 22 #include <linux/dim.h> 23 #include <net/route.h> 24 #include <net/xdp.h> 25 #include <net/net_failover.h> 26 #include <net/netdev_rx_queue.h> 27 #include <net/netdev_queues.h> 28 #include <net/xdp_sock_drv.h> 29 #include <net/page_pool/helpers.h> 30 31 static int napi_weight = NAPI_POLL_WEIGHT; 32 module_param(napi_weight, int, 0444); 33 34 static bool csum = true, gso = true, napi_tx = true; 35 module_param(csum, bool, 0444); 36 module_param(gso, bool, 0444); 37 module_param(napi_tx, bool, 0644); 38 39 #define VIRTIO_OFFLOAD_MAP_MIN 46 40 #define VIRTIO_OFFLOAD_MAP_MAX 47 41 #define VIRTIO_FEATURES_MAP_MIN 65 42 #define VIRTIO_O2F_DELTA (VIRTIO_FEATURES_MAP_MIN - \ 43 VIRTIO_OFFLOAD_MAP_MIN) 44 45 static bool virtio_is_mapped_offload(unsigned int obit) 46 { 47 return obit >= VIRTIO_OFFLOAD_MAP_MIN && 48 obit <= VIRTIO_OFFLOAD_MAP_MAX; 49 } 50 51 static unsigned int virtio_offload_to_feature(unsigned int obit) 52 { 53 return virtio_is_mapped_offload(obit) ? obit + VIRTIO_O2F_DELTA : obit; 54 } 55 56 /* FIXME: MTU in config. */ 57 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN) 58 #define GOOD_COPY_LEN 128 59 60 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD) 61 62 /* Separating two types of XDP xmit */ 63 #define VIRTIO_XDP_TX BIT(0) 64 #define VIRTIO_XDP_REDIR BIT(1) 65 66 /* RX packet size EWMA. The average packet size is used to determine the packet 67 * buffer size when refilling RX rings. As the entire RX ring may be refilled 68 * at once, the weight is chosen so that the EWMA will be insensitive to short- 69 * term, transient changes in packet size. 70 */ 71 DECLARE_EWMA(pkt_len, 0, 64) 72 73 #define VIRTNET_DRIVER_VERSION "1.0.0" 74 75 static const unsigned long guest_offloads[] = { 76 VIRTIO_NET_F_GUEST_TSO4, 77 VIRTIO_NET_F_GUEST_TSO6, 78 VIRTIO_NET_F_GUEST_ECN, 79 VIRTIO_NET_F_GUEST_UFO, 80 VIRTIO_NET_F_GUEST_CSUM, 81 VIRTIO_NET_F_GUEST_USO4, 82 VIRTIO_NET_F_GUEST_USO6, 83 VIRTIO_NET_F_GUEST_HDRLEN, 84 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_MAPPED, 85 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM_MAPPED, 86 }; 87 88 #define GUEST_OFFLOAD_GRO_HW_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \ 89 (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \ 90 (1ULL << VIRTIO_NET_F_GUEST_ECN) | \ 91 (1ULL << VIRTIO_NET_F_GUEST_UFO) | \ 92 (1ULL << VIRTIO_NET_F_GUEST_USO4) | \ 93 (1ULL << VIRTIO_NET_F_GUEST_USO6) | \ 94 (1ULL << VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_MAPPED) | \ 95 (1ULL << VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM_MAPPED)) 96 97 struct virtnet_stat_desc { 98 char desc[ETH_GSTRING_LEN]; 99 size_t offset; 100 size_t qstat_offset; 101 }; 102 103 struct virtnet_sq_free_stats { 104 u64 packets; 105 u64 bytes; 106 u64 napi_packets; 107 u64 napi_bytes; 108 u64 xsk; 109 }; 110 111 struct virtnet_sq_stats { 112 struct u64_stats_sync syncp; 113 u64_stats_t packets; 114 u64_stats_t bytes; 115 u64_stats_t xdp_tx; 116 u64_stats_t xdp_tx_drops; 117 u64_stats_t kicks; 118 u64_stats_t tx_timeouts; 119 u64_stats_t stop; 120 u64_stats_t wake; 121 }; 122 123 struct virtnet_rq_stats { 124 struct u64_stats_sync syncp; 125 u64_stats_t packets; 126 u64_stats_t bytes; 127 u64_stats_t drops; 128 u64_stats_t xdp_packets; 129 u64_stats_t xdp_tx; 130 u64_stats_t xdp_redirects; 131 u64_stats_t xdp_drops; 132 u64_stats_t kicks; 133 }; 134 135 #define VIRTNET_SQ_STAT(name, m) {name, offsetof(struct virtnet_sq_stats, m), -1} 136 #define VIRTNET_RQ_STAT(name, m) {name, offsetof(struct virtnet_rq_stats, m), -1} 137 138 #define VIRTNET_SQ_STAT_QSTAT(name, m) \ 139 { \ 140 name, \ 141 offsetof(struct virtnet_sq_stats, m), \ 142 offsetof(struct netdev_queue_stats_tx, m), \ 143 } 144 145 #define VIRTNET_RQ_STAT_QSTAT(name, m) \ 146 { \ 147 name, \ 148 offsetof(struct virtnet_rq_stats, m), \ 149 offsetof(struct netdev_queue_stats_rx, m), \ 150 } 151 152 static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = { 153 VIRTNET_SQ_STAT("xdp_tx", xdp_tx), 154 VIRTNET_SQ_STAT("xdp_tx_drops", xdp_tx_drops), 155 VIRTNET_SQ_STAT("kicks", kicks), 156 VIRTNET_SQ_STAT("tx_timeouts", tx_timeouts), 157 }; 158 159 static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = { 160 VIRTNET_RQ_STAT("drops", drops), 161 VIRTNET_RQ_STAT("xdp_packets", xdp_packets), 162 VIRTNET_RQ_STAT("xdp_tx", xdp_tx), 163 VIRTNET_RQ_STAT("xdp_redirects", xdp_redirects), 164 VIRTNET_RQ_STAT("xdp_drops", xdp_drops), 165 VIRTNET_RQ_STAT("kicks", kicks), 166 }; 167 168 static const struct virtnet_stat_desc virtnet_sq_stats_desc_qstat[] = { 169 VIRTNET_SQ_STAT_QSTAT("packets", packets), 170 VIRTNET_SQ_STAT_QSTAT("bytes", bytes), 171 VIRTNET_SQ_STAT_QSTAT("stop", stop), 172 VIRTNET_SQ_STAT_QSTAT("wake", wake), 173 }; 174 175 static const struct virtnet_stat_desc virtnet_rq_stats_desc_qstat[] = { 176 VIRTNET_RQ_STAT_QSTAT("packets", packets), 177 VIRTNET_RQ_STAT_QSTAT("bytes", bytes), 178 }; 179 180 #define VIRTNET_STATS_DESC_CQ(name) \ 181 {#name, offsetof(struct virtio_net_stats_cvq, name), -1} 182 183 #define VIRTNET_STATS_DESC_RX(class, name) \ 184 {#name, offsetof(struct virtio_net_stats_rx_ ## class, rx_ ## name), -1} 185 186 #define VIRTNET_STATS_DESC_TX(class, name) \ 187 {#name, offsetof(struct virtio_net_stats_tx_ ## class, tx_ ## name), -1} 188 189 190 static const struct virtnet_stat_desc virtnet_stats_cvq_desc[] = { 191 VIRTNET_STATS_DESC_CQ(command_num), 192 VIRTNET_STATS_DESC_CQ(ok_num), 193 }; 194 195 static const struct virtnet_stat_desc virtnet_stats_rx_basic_desc[] = { 196 VIRTNET_STATS_DESC_RX(basic, packets), 197 VIRTNET_STATS_DESC_RX(basic, bytes), 198 199 VIRTNET_STATS_DESC_RX(basic, notifications), 200 VIRTNET_STATS_DESC_RX(basic, interrupts), 201 }; 202 203 static const struct virtnet_stat_desc virtnet_stats_tx_basic_desc[] = { 204 VIRTNET_STATS_DESC_TX(basic, packets), 205 VIRTNET_STATS_DESC_TX(basic, bytes), 206 207 VIRTNET_STATS_DESC_TX(basic, notifications), 208 VIRTNET_STATS_DESC_TX(basic, interrupts), 209 }; 210 211 static const struct virtnet_stat_desc virtnet_stats_rx_csum_desc[] = { 212 VIRTNET_STATS_DESC_RX(csum, needs_csum), 213 }; 214 215 static const struct virtnet_stat_desc virtnet_stats_tx_gso_desc[] = { 216 VIRTNET_STATS_DESC_TX(gso, gso_packets_noseg), 217 VIRTNET_STATS_DESC_TX(gso, gso_bytes_noseg), 218 }; 219 220 static const struct virtnet_stat_desc virtnet_stats_rx_speed_desc[] = { 221 VIRTNET_STATS_DESC_RX(speed, ratelimit_bytes), 222 }; 223 224 static const struct virtnet_stat_desc virtnet_stats_tx_speed_desc[] = { 225 VIRTNET_STATS_DESC_TX(speed, ratelimit_bytes), 226 }; 227 228 #define VIRTNET_STATS_DESC_RX_QSTAT(class, name, qstat_field) \ 229 { \ 230 #name, \ 231 offsetof(struct virtio_net_stats_rx_ ## class, rx_ ## name), \ 232 offsetof(struct netdev_queue_stats_rx, qstat_field), \ 233 } 234 235 #define VIRTNET_STATS_DESC_TX_QSTAT(class, name, qstat_field) \ 236 { \ 237 #name, \ 238 offsetof(struct virtio_net_stats_tx_ ## class, tx_ ## name), \ 239 offsetof(struct netdev_queue_stats_tx, qstat_field), \ 240 } 241 242 static const struct virtnet_stat_desc virtnet_stats_rx_basic_desc_qstat[] = { 243 VIRTNET_STATS_DESC_RX_QSTAT(basic, drops, hw_drops), 244 VIRTNET_STATS_DESC_RX_QSTAT(basic, drop_overruns, hw_drop_overruns), 245 }; 246 247 static const struct virtnet_stat_desc virtnet_stats_tx_basic_desc_qstat[] = { 248 VIRTNET_STATS_DESC_TX_QSTAT(basic, drops, hw_drops), 249 VIRTNET_STATS_DESC_TX_QSTAT(basic, drop_malformed, hw_drop_errors), 250 }; 251 252 static const struct virtnet_stat_desc virtnet_stats_rx_csum_desc_qstat[] = { 253 VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_valid, csum_unnecessary), 254 VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_none, csum_none), 255 VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_bad, csum_bad), 256 }; 257 258 static const struct virtnet_stat_desc virtnet_stats_tx_csum_desc_qstat[] = { 259 VIRTNET_STATS_DESC_TX_QSTAT(csum, csum_none, csum_none), 260 VIRTNET_STATS_DESC_TX_QSTAT(csum, needs_csum, needs_csum), 261 }; 262 263 static const struct virtnet_stat_desc virtnet_stats_rx_gso_desc_qstat[] = { 264 VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_packets, hw_gro_packets), 265 VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_bytes, hw_gro_bytes), 266 VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_packets_coalesced, hw_gro_wire_packets), 267 VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_bytes_coalesced, hw_gro_wire_bytes), 268 }; 269 270 static const struct virtnet_stat_desc virtnet_stats_tx_gso_desc_qstat[] = { 271 VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_packets, hw_gso_packets), 272 VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_bytes, hw_gso_bytes), 273 VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_segments, hw_gso_wire_packets), 274 VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_segments_bytes, hw_gso_wire_bytes), 275 }; 276 277 static const struct virtnet_stat_desc virtnet_stats_rx_speed_desc_qstat[] = { 278 VIRTNET_STATS_DESC_RX_QSTAT(speed, ratelimit_packets, hw_drop_ratelimits), 279 }; 280 281 static const struct virtnet_stat_desc virtnet_stats_tx_speed_desc_qstat[] = { 282 VIRTNET_STATS_DESC_TX_QSTAT(speed, ratelimit_packets, hw_drop_ratelimits), 283 }; 284 285 #define VIRTNET_Q_TYPE_RX 0 286 #define VIRTNET_Q_TYPE_TX 1 287 #define VIRTNET_Q_TYPE_CQ 2 288 289 struct virtnet_interrupt_coalesce { 290 u32 max_packets; 291 u32 max_usecs; 292 }; 293 294 /* Internal representation of a send virtqueue */ 295 struct send_queue { 296 /* Virtqueue associated with this send _queue */ 297 struct virtqueue *vq; 298 299 /* TX: fragments + linear part + virtio header */ 300 struct scatterlist sg[MAX_SKB_FRAGS + 2]; 301 302 /* Name of the send queue: output.$index */ 303 char name[16]; 304 305 struct virtnet_sq_stats stats; 306 307 struct virtnet_interrupt_coalesce intr_coal; 308 309 struct napi_struct napi; 310 311 /* Record whether sq is in reset state. */ 312 bool reset; 313 314 struct xsk_buff_pool *xsk_pool; 315 316 dma_addr_t xsk_hdr_dma_addr; 317 }; 318 319 /* Internal representation of a receive virtqueue */ 320 struct receive_queue { 321 /* Virtqueue associated with this receive_queue */ 322 struct virtqueue *vq; 323 324 struct napi_struct napi; 325 326 struct bpf_prog __rcu *xdp_prog; 327 328 struct virtnet_rq_stats stats; 329 330 /* The number of rx notifications */ 331 u16 calls; 332 333 /* Is dynamic interrupt moderation enabled? */ 334 bool dim_enabled; 335 336 /* Used to protect dim_enabled and inter_coal */ 337 struct mutex dim_lock; 338 339 /* Dynamic Interrupt Moderation */ 340 struct dim dim; 341 342 u32 packets_in_napi; 343 344 struct virtnet_interrupt_coalesce intr_coal; 345 346 /* Chain pages by the private ptr. */ 347 struct page *pages; 348 349 /* Average packet length for mergeable receive buffers. */ 350 struct ewma_pkt_len mrg_avg_pkt_len; 351 352 struct page_pool *page_pool; 353 354 /* True if page_pool handles DMA mapping via PP_FLAG_DMA_MAP */ 355 bool use_page_pool_dma; 356 357 /* RX: fragments + linear part + virtio header */ 358 struct scatterlist sg[MAX_SKB_FRAGS + 2]; 359 360 /* Min single buffer size for mergeable buffers case. */ 361 unsigned int min_buf_len; 362 363 /* Name of this receive queue: input.$index */ 364 char name[16]; 365 366 struct xdp_rxq_info xdp_rxq; 367 368 struct xsk_buff_pool *xsk_pool; 369 370 /* xdp rxq used by xsk */ 371 struct xdp_rxq_info xsk_rxq_info; 372 373 struct xdp_buff **xsk_buffs; 374 }; 375 376 /* Control VQ buffers: protected by the rtnl lock */ 377 struct control_buf { 378 struct virtio_net_ctrl_hdr hdr; 379 virtio_net_ctrl_ack status; 380 }; 381 382 struct virtnet_info { 383 struct virtio_device *vdev; 384 struct virtqueue *cvq; 385 struct net_device *dev; 386 struct send_queue *sq; 387 struct receive_queue *rq; 388 unsigned int status; 389 390 /* Max # of queue pairs supported by the device */ 391 u16 max_queue_pairs; 392 393 /* # of queue pairs currently used by the driver */ 394 u16 curr_queue_pairs; 395 396 /* # of XDP queue pairs currently used by the driver */ 397 u16 xdp_queue_pairs; 398 399 /* xdp_queue_pairs may be 0, when xdp is already loaded. So add this. */ 400 bool xdp_enabled; 401 402 /* I like... big packets and I cannot lie! */ 403 bool big_packets; 404 405 /* number of sg entries allocated for big packets */ 406 unsigned int big_packets_num_skbfrags; 407 408 /* Host will merge rx buffers for big packets (shake it! shake it!) */ 409 bool mergeable_rx_bufs; 410 411 /* Host supports rss and/or hash report */ 412 bool has_rss; 413 bool has_rss_hash_report; 414 u8 rss_key_size; 415 u16 rss_indir_table_size; 416 u32 rss_hash_types_supported; 417 u32 rss_hash_types_saved; 418 419 /* Has control virtqueue */ 420 bool has_cvq; 421 422 /* Lock to protect the control VQ */ 423 struct mutex cvq_lock; 424 425 /* Host can handle any s/g split between our header and packet data */ 426 bool any_header_sg; 427 428 /* Packet virtio header size */ 429 u8 hdr_len; 430 431 /* UDP tunnel support */ 432 bool tx_tnl; 433 434 bool rx_tnl; 435 436 bool rx_tnl_csum; 437 438 /* Work struct for config space updates */ 439 struct work_struct config_work; 440 441 /* Work struct for setting rx mode */ 442 struct work_struct rx_mode_work; 443 444 /* OK to queue work setting RX mode? */ 445 bool rx_mode_work_enabled; 446 447 /* Does the affinity hint is set for virtqueues? */ 448 bool affinity_hint_set; 449 450 /* CPU hotplug instances for online & dead */ 451 struct hlist_node node; 452 struct hlist_node node_dead; 453 454 struct control_buf *ctrl; 455 456 /* Ethtool settings */ 457 u8 duplex; 458 u32 speed; 459 460 /* Is rx dynamic interrupt moderation enabled? */ 461 bool rx_dim_enabled; 462 463 /* Interrupt coalescing settings */ 464 struct virtnet_interrupt_coalesce intr_coal_tx; 465 struct virtnet_interrupt_coalesce intr_coal_rx; 466 467 unsigned long guest_offloads; 468 unsigned long guest_offloads_capable; 469 470 /* failover when STANDBY feature enabled */ 471 struct failover *failover; 472 473 u64 device_stats_cap; 474 475 struct virtio_net_rss_config_hdr *rss_hdr; 476 477 /* Must be last as it ends in a flexible-array member. */ 478 TRAILING_OVERLAP(struct virtio_net_rss_config_trailer, rss_trailer, hash_key_data, 479 u8 rss_hash_key_data[NETDEV_RSS_KEY_LEN]; 480 ); 481 }; 482 static_assert(offsetof(struct virtnet_info, rss_trailer.hash_key_data) == 483 offsetof(struct virtnet_info, rss_hash_key_data)); 484 485 struct padded_vnet_hdr { 486 struct virtio_net_hdr_v1_hash hdr; 487 /* 488 * hdr is in a separate sg buffer, and data sg buffer shares same page 489 * with this header sg. This padding makes next sg 16 byte aligned 490 * after the header. 491 */ 492 char padding[12]; 493 }; 494 495 struct virtio_net_common_hdr { 496 union { 497 struct virtio_net_hdr hdr; 498 struct virtio_net_hdr_mrg_rxbuf mrg_hdr; 499 struct virtio_net_hdr_v1_hash hash_v1_hdr; 500 struct virtio_net_hdr_v1_hash_tunnel tnl_hdr; 501 }; 502 }; 503 504 static struct virtio_net_common_hdr xsk_hdr; 505 506 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf); 507 static void virtnet_sq_free_unused_buf_done(struct virtqueue *vq); 508 static int virtnet_xdp_handler(struct bpf_prog *xdp_prog, struct xdp_buff *xdp, 509 struct net_device *dev, 510 unsigned int *xdp_xmit, 511 struct virtnet_rq_stats *stats); 512 static void virtnet_receive_done(struct virtnet_info *vi, struct receive_queue *rq, 513 struct sk_buff *skb, u8 flags); 514 static struct sk_buff *virtnet_skb_append_frag(struct receive_queue *rq, 515 struct sk_buff *head_skb, 516 struct sk_buff *curr_skb, 517 struct page *page, void *buf, 518 int len, int truesize); 519 static void virtnet_xsk_completed(struct send_queue *sq, int num); 520 static void free_unused_bufs(struct virtnet_info *vi); 521 static void virtnet_del_vqs(struct virtnet_info *vi); 522 523 enum virtnet_xmit_type { 524 VIRTNET_XMIT_TYPE_SKB, 525 VIRTNET_XMIT_TYPE_SKB_ORPHAN, 526 VIRTNET_XMIT_TYPE_XDP, 527 VIRTNET_XMIT_TYPE_XSK, 528 }; 529 530 static size_t virtnet_rss_hdr_size(const struct virtnet_info *vi) 531 { 532 u16 indir_table_size = vi->has_rss ? vi->rss_indir_table_size : 1; 533 534 return struct_size(vi->rss_hdr, indirection_table, indir_table_size); 535 } 536 537 static size_t virtnet_rss_trailer_size(const struct virtnet_info *vi) 538 { 539 return struct_size(&vi->rss_trailer, hash_key_data, vi->rss_key_size); 540 } 541 542 /* We use the last two bits of the pointer to distinguish the xmit type. */ 543 #define VIRTNET_XMIT_TYPE_MASK (BIT(0) | BIT(1)) 544 545 #define VIRTIO_XSK_FLAG_OFFSET 2 546 547 static enum virtnet_xmit_type virtnet_xmit_ptr_unpack(void **ptr) 548 { 549 unsigned long p = (unsigned long)*ptr; 550 551 *ptr = (void *)(p & ~VIRTNET_XMIT_TYPE_MASK); 552 553 return p & VIRTNET_XMIT_TYPE_MASK; 554 } 555 556 static void *virtnet_xmit_ptr_pack(void *ptr, enum virtnet_xmit_type type) 557 { 558 return (void *)((unsigned long)ptr | type); 559 } 560 561 static int virtnet_add_outbuf(struct send_queue *sq, int num, void *data, 562 enum virtnet_xmit_type type) 563 { 564 return virtqueue_add_outbuf(sq->vq, sq->sg, num, 565 virtnet_xmit_ptr_pack(data, type), 566 GFP_ATOMIC); 567 } 568 569 static u32 virtnet_ptr_to_xsk_buff_len(void *ptr) 570 { 571 return ((unsigned long)ptr) >> VIRTIO_XSK_FLAG_OFFSET; 572 } 573 574 static void sg_fill_dma(struct scatterlist *sg, dma_addr_t addr, u32 len) 575 { 576 sg_dma_address(sg) = addr; 577 sg_dma_len(sg) = len; 578 } 579 580 static void __free_old_xmit(struct send_queue *sq, struct netdev_queue *txq, 581 bool in_napi, struct virtnet_sq_free_stats *stats) 582 { 583 struct xdp_frame *frame; 584 struct sk_buff *skb; 585 unsigned int len; 586 void *ptr; 587 588 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) { 589 switch (virtnet_xmit_ptr_unpack(&ptr)) { 590 case VIRTNET_XMIT_TYPE_SKB: 591 skb = ptr; 592 593 pr_debug("Sent skb %p\n", skb); 594 stats->napi_packets++; 595 stats->napi_bytes += skb->len; 596 napi_consume_skb(skb, in_napi); 597 break; 598 599 case VIRTNET_XMIT_TYPE_SKB_ORPHAN: 600 skb = ptr; 601 602 stats->packets++; 603 stats->bytes += skb->len; 604 napi_consume_skb(skb, in_napi); 605 break; 606 607 case VIRTNET_XMIT_TYPE_XDP: 608 frame = ptr; 609 610 stats->packets++; 611 stats->bytes += xdp_get_frame_len(frame); 612 xdp_return_frame(frame); 613 break; 614 615 case VIRTNET_XMIT_TYPE_XSK: 616 stats->bytes += virtnet_ptr_to_xsk_buff_len(ptr); 617 stats->xsk++; 618 break; 619 } 620 } 621 netdev_tx_completed_queue(txq, stats->napi_packets, stats->napi_bytes); 622 } 623 624 static void virtnet_free_old_xmit(struct send_queue *sq, 625 struct netdev_queue *txq, 626 bool in_napi, 627 struct virtnet_sq_free_stats *stats) 628 { 629 __free_old_xmit(sq, txq, in_napi, stats); 630 631 if (stats->xsk) 632 virtnet_xsk_completed(sq, stats->xsk); 633 } 634 635 /* Converting between virtqueue no. and kernel tx/rx queue no. 636 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq 637 */ 638 static int vq2txq(struct virtqueue *vq) 639 { 640 return (vq->index - 1) / 2; 641 } 642 643 static int txq2vq(int txq) 644 { 645 return txq * 2 + 1; 646 } 647 648 static int vq2rxq(struct virtqueue *vq) 649 { 650 return vq->index / 2; 651 } 652 653 static int rxq2vq(int rxq) 654 { 655 return rxq * 2; 656 } 657 658 static int vq_type(struct virtnet_info *vi, int qid) 659 { 660 if (qid == vi->max_queue_pairs * 2) 661 return VIRTNET_Q_TYPE_CQ; 662 663 if (qid % 2) 664 return VIRTNET_Q_TYPE_TX; 665 666 return VIRTNET_Q_TYPE_RX; 667 } 668 669 static inline struct virtio_net_common_hdr * 670 skb_vnet_common_hdr(struct sk_buff *skb) 671 { 672 return (struct virtio_net_common_hdr *)skb->cb; 673 } 674 675 /* 676 * private is used to chain pages for big packets, put the whole 677 * most recent used list in the beginning for reuse 678 */ 679 static void give_pages(struct receive_queue *rq, struct page *page) 680 { 681 struct page *end; 682 683 /* Find end of list, sew whole thing into vi->rq.pages. */ 684 for (end = page; end->private; end = (struct page *)end->private); 685 end->private = (unsigned long)rq->pages; 686 rq->pages = page; 687 } 688 689 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask) 690 { 691 struct page *p = rq->pages; 692 693 if (p) { 694 rq->pages = (struct page *)p->private; 695 /* clear private here, it is used to chain pages */ 696 p->private = 0; 697 } else 698 p = alloc_page(gfp_mask); 699 return p; 700 } 701 702 static void virtnet_rq_free_buf(struct virtnet_info *vi, 703 struct receive_queue *rq, void *buf) 704 { 705 if (!rq->page_pool) 706 give_pages(rq, buf); 707 else 708 page_pool_put_page(rq->page_pool, virt_to_head_page(buf), -1, false); 709 } 710 711 static void enable_rx_mode_work(struct virtnet_info *vi) 712 { 713 rtnl_lock(); 714 vi->rx_mode_work_enabled = true; 715 rtnl_unlock(); 716 } 717 718 static void disable_rx_mode_work(struct virtnet_info *vi) 719 { 720 rtnl_lock(); 721 vi->rx_mode_work_enabled = false; 722 rtnl_unlock(); 723 } 724 725 static void virtqueue_napi_schedule(struct napi_struct *napi, 726 struct virtqueue *vq) 727 { 728 if (napi_schedule_prep(napi)) { 729 virtqueue_disable_cb(vq); 730 __napi_schedule(napi); 731 } 732 } 733 734 static bool virtqueue_napi_complete(struct napi_struct *napi, 735 struct virtqueue *vq, int processed) 736 { 737 int opaque; 738 739 opaque = virtqueue_enable_cb_prepare(vq); 740 if (napi_complete_done(napi, processed)) { 741 if (unlikely(virtqueue_poll(vq, opaque))) 742 virtqueue_napi_schedule(napi, vq); 743 else 744 return true; 745 } else { 746 virtqueue_disable_cb(vq); 747 } 748 749 return false; 750 } 751 752 static void virtnet_tx_wake_queue(struct virtnet_info *vi, 753 struct send_queue *sq) 754 { 755 unsigned int index = vq2txq(sq->vq); 756 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index); 757 758 if (netif_tx_queue_stopped(txq)) { 759 u64_stats_update_begin(&sq->stats.syncp); 760 u64_stats_inc(&sq->stats.wake); 761 u64_stats_update_end(&sq->stats.syncp); 762 netif_tx_wake_queue(txq); 763 } 764 } 765 766 static void skb_xmit_done(struct virtqueue *vq) 767 { 768 struct virtnet_info *vi = vq->vdev->priv; 769 unsigned int index = vq2txq(vq); 770 struct send_queue *sq = &vi->sq[index]; 771 struct napi_struct *napi = &sq->napi; 772 773 /* Suppress further interrupts. */ 774 virtqueue_disable_cb(vq); 775 776 if (napi->weight) 777 virtqueue_napi_schedule(napi, vq); 778 else 779 virtnet_tx_wake_queue(vi, sq); 780 } 781 782 #define MRG_CTX_HEADER_SHIFT 22 783 static void *mergeable_len_to_ctx(unsigned int truesize, 784 unsigned int headroom) 785 { 786 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize); 787 } 788 789 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx) 790 { 791 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT; 792 } 793 794 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx) 795 { 796 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1); 797 } 798 799 static int check_mergeable_len(struct net_device *dev, void *mrg_ctx, 800 unsigned int len) 801 { 802 unsigned int headroom, tailroom, room, truesize; 803 804 truesize = mergeable_ctx_to_truesize(mrg_ctx); 805 headroom = mergeable_ctx_to_headroom(mrg_ctx); 806 tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 807 room = SKB_DATA_ALIGN(headroom + tailroom); 808 809 if (len > truesize - room) { 810 pr_debug("%s: rx error: len %u exceeds truesize %lu\n", 811 dev->name, len, (unsigned long)(truesize - room)); 812 DEV_STATS_INC(dev, rx_length_errors); 813 return -1; 814 } 815 816 return 0; 817 } 818 819 static struct sk_buff *virtnet_build_skb(void *buf, unsigned int buflen, 820 unsigned int headroom, 821 unsigned int len) 822 { 823 struct sk_buff *skb; 824 825 skb = build_skb(buf, buflen); 826 if (unlikely(!skb)) 827 return NULL; 828 829 skb_reserve(skb, headroom); 830 skb_put(skb, len); 831 832 return skb; 833 } 834 835 /* Called from bottom half context */ 836 static struct sk_buff *page_to_skb(struct virtnet_info *vi, 837 struct receive_queue *rq, 838 struct page *page, unsigned int offset, 839 unsigned int len, unsigned int truesize, 840 unsigned int headroom) 841 { 842 struct sk_buff *skb; 843 struct virtio_net_common_hdr *hdr; 844 unsigned int copy, hdr_len, hdr_padded_len; 845 struct page *page_to_free = NULL; 846 int tailroom, shinfo_size; 847 char *p, *hdr_p, *buf; 848 849 p = page_address(page) + offset; 850 hdr_p = p; 851 852 hdr_len = vi->hdr_len; 853 if (vi->mergeable_rx_bufs) 854 hdr_padded_len = hdr_len; 855 else 856 hdr_padded_len = sizeof(struct padded_vnet_hdr); 857 858 buf = p - headroom; 859 len -= hdr_len; 860 offset += hdr_padded_len; 861 p += hdr_padded_len; 862 tailroom = truesize - headroom - hdr_padded_len - len; 863 864 shinfo_size = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 865 866 if (!NET_IP_ALIGN && len > GOOD_COPY_LEN && tailroom >= shinfo_size) { 867 skb = virtnet_build_skb(buf, truesize, p - buf, len); 868 if (unlikely(!skb)) 869 return NULL; 870 /* Big packets mode chains pages via page->private, which is 871 * incompatible with the way page_pool uses page->private. 872 * Currently, big packets mode doesn't use page pools. 873 */ 874 if (!rq->page_pool) { 875 page = (struct page *)page->private; 876 if (page) 877 give_pages(rq, page); 878 } 879 880 goto ok; 881 } 882 883 /* copy small packet so we can reuse these pages for small data */ 884 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN); 885 if (unlikely(!skb)) 886 return NULL; 887 888 /* Copy all frame if it fits skb->head, otherwise 889 * we let virtio_net_hdr_to_skb() and GRO pull headers as needed. 890 */ 891 if (len <= skb_tailroom(skb)) 892 copy = len; 893 else 894 copy = ETH_HLEN; 895 skb_put_data(skb, p, copy); 896 897 len -= copy; 898 offset += copy; 899 900 if (vi->mergeable_rx_bufs) { 901 if (len) 902 skb_add_rx_frag(skb, 0, page, offset, len, truesize); 903 else 904 page_to_free = page; 905 goto ok; 906 } 907 908 BUG_ON(offset >= PAGE_SIZE); 909 while (len) { 910 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len); 911 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset, 912 frag_size, truesize); 913 len -= frag_size; 914 page = (struct page *)page->private; 915 offset = 0; 916 } 917 918 if (page) 919 give_pages(rq, page); 920 921 ok: 922 hdr = skb_vnet_common_hdr(skb); 923 memcpy(hdr, hdr_p, hdr_len); 924 if (page_to_free) 925 page_pool_put_page(rq->page_pool, page_to_free, -1, true); 926 927 return skb; 928 } 929 930 static void *virtnet_rq_get_buf(struct receive_queue *rq, u32 *len, void **ctx) 931 { 932 BUG_ON(!rq->page_pool); 933 934 return virtqueue_get_buf_ctx(rq->vq, len, ctx); 935 } 936 937 static void virtnet_rq_unmap_free_buf(struct virtqueue *vq, void *buf) 938 { 939 struct virtnet_info *vi = vq->vdev->priv; 940 struct receive_queue *rq; 941 int i = vq2rxq(vq); 942 943 rq = &vi->rq[i]; 944 945 if (rq->xsk_pool) { 946 xsk_buff_free((struct xdp_buff *)buf); 947 return; 948 } 949 950 virtnet_rq_free_buf(vi, rq, buf); 951 } 952 953 static void free_old_xmit(struct send_queue *sq, struct netdev_queue *txq, 954 bool in_napi) 955 { 956 struct virtnet_sq_free_stats stats = {0}; 957 958 virtnet_free_old_xmit(sq, txq, in_napi, &stats); 959 960 /* Avoid overhead when no packets have been processed 961 * happens when called speculatively from start_xmit. 962 */ 963 if (!stats.packets && !stats.napi_packets) 964 return; 965 966 u64_stats_update_begin(&sq->stats.syncp); 967 u64_stats_add(&sq->stats.bytes, stats.bytes + stats.napi_bytes); 968 u64_stats_add(&sq->stats.packets, stats.packets + stats.napi_packets); 969 u64_stats_update_end(&sq->stats.syncp); 970 } 971 972 static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q) 973 { 974 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs)) 975 return false; 976 else if (q < vi->curr_queue_pairs) 977 return true; 978 else 979 return false; 980 } 981 982 static bool tx_may_stop(struct virtnet_info *vi, 983 struct net_device *dev, 984 struct send_queue *sq) 985 { 986 int qnum; 987 988 qnum = sq - vi->sq; 989 990 /* If running out of space, stop queue to avoid getting packets that we 991 * are then unable to transmit. 992 * An alternative would be to force queuing layer to requeue the skb by 993 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be 994 * returned in a normal path of operation: it means that driver is not 995 * maintaining the TX queue stop/start state properly, and causes 996 * the stack to do a non-trivial amount of useless work. 997 * Since most packets only take 1 or 2 ring slots, stopping the queue 998 * early means 16 slots are typically wasted. 999 */ 1000 if (sq->vq->num_free < MAX_SKB_FRAGS + 2) { 1001 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); 1002 1003 netif_tx_stop_queue(txq); 1004 u64_stats_update_begin(&sq->stats.syncp); 1005 u64_stats_inc(&sq->stats.stop); 1006 u64_stats_update_end(&sq->stats.syncp); 1007 1008 return true; 1009 } 1010 1011 return false; 1012 } 1013 1014 static void check_sq_full_and_disable(struct virtnet_info *vi, 1015 struct net_device *dev, 1016 struct send_queue *sq) 1017 { 1018 bool use_napi = sq->napi.weight; 1019 int qnum; 1020 1021 qnum = sq - vi->sq; 1022 1023 if (tx_may_stop(vi, dev, sq)) { 1024 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); 1025 1026 if (use_napi) { 1027 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) 1028 virtqueue_napi_schedule(&sq->napi, sq->vq); 1029 } else if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) { 1030 /* More just got used, free them then recheck. */ 1031 free_old_xmit(sq, txq, false); 1032 if (sq->vq->num_free >= MAX_SKB_FRAGS + 2) { 1033 netif_start_subqueue(dev, qnum); 1034 u64_stats_update_begin(&sq->stats.syncp); 1035 u64_stats_inc(&sq->stats.wake); 1036 u64_stats_update_end(&sq->stats.syncp); 1037 virtqueue_disable_cb(sq->vq); 1038 } 1039 } 1040 } 1041 } 1042 1043 /* Note that @len is the length of received data without virtio header */ 1044 static struct xdp_buff *buf_to_xdp(struct virtnet_info *vi, 1045 struct receive_queue *rq, void *buf, 1046 u32 len, bool first_buf) 1047 { 1048 struct xdp_buff *xdp; 1049 u32 bufsize; 1050 1051 xdp = (struct xdp_buff *)buf; 1052 1053 /* In virtnet_add_recvbuf_xsk, we use part of XDP_PACKET_HEADROOM for 1054 * virtio header and ask the vhost to fill data from 1055 * hard_start + XDP_PACKET_HEADROOM - vi->hdr_len 1056 * The first buffer has virtio header so the remaining region for frame 1057 * data is 1058 * xsk_pool_get_rx_frame_size() 1059 * While other buffers than the first one do not have virtio header, so 1060 * the maximum frame data's length can be 1061 * xsk_pool_get_rx_frame_size() + vi->hdr_len 1062 */ 1063 bufsize = xsk_pool_get_rx_frame_size(rq->xsk_pool); 1064 if (!first_buf) 1065 bufsize += vi->hdr_len; 1066 1067 if (unlikely(len > bufsize)) { 1068 pr_debug("%s: rx error: len %u exceeds truesize %u\n", 1069 vi->dev->name, len, bufsize); 1070 DEV_STATS_INC(vi->dev, rx_length_errors); 1071 xsk_buff_free(xdp); 1072 return NULL; 1073 } 1074 1075 if (first_buf) { 1076 xsk_buff_set_size(xdp, len); 1077 } else { 1078 xdp_prepare_buff(xdp, xdp->data_hard_start, 1079 XDP_PACKET_HEADROOM - vi->hdr_len, len, 1); 1080 xdp->flags = 0; 1081 } 1082 1083 xsk_buff_dma_sync_for_cpu(xdp); 1084 1085 return xdp; 1086 } 1087 1088 static struct sk_buff *xsk_construct_skb(struct receive_queue *rq, 1089 struct xdp_buff *xdp) 1090 { 1091 unsigned int metasize = xdp->data - xdp->data_meta; 1092 struct sk_buff *skb; 1093 unsigned int size; 1094 1095 size = xdp->data_end - xdp->data_hard_start; 1096 skb = napi_alloc_skb(&rq->napi, size); 1097 if (unlikely(!skb)) { 1098 xsk_buff_free(xdp); 1099 return NULL; 1100 } 1101 1102 skb_reserve(skb, xdp->data_meta - xdp->data_hard_start); 1103 1104 size = xdp->data_end - xdp->data_meta; 1105 memcpy(__skb_put(skb, size), xdp->data_meta, size); 1106 1107 if (metasize) { 1108 __skb_pull(skb, metasize); 1109 skb_metadata_set(skb, metasize); 1110 } 1111 1112 xsk_buff_free(xdp); 1113 1114 return skb; 1115 } 1116 1117 static struct sk_buff *virtnet_receive_xsk_small(struct net_device *dev, struct virtnet_info *vi, 1118 struct receive_queue *rq, struct xdp_buff *xdp, 1119 unsigned int *xdp_xmit, 1120 struct virtnet_rq_stats *stats) 1121 { 1122 struct bpf_prog *prog; 1123 u32 ret; 1124 1125 ret = XDP_PASS; 1126 rcu_read_lock(); 1127 prog = rcu_dereference(rq->xdp_prog); 1128 if (prog) 1129 ret = virtnet_xdp_handler(prog, xdp, dev, xdp_xmit, stats); 1130 rcu_read_unlock(); 1131 1132 switch (ret) { 1133 case XDP_PASS: 1134 return xsk_construct_skb(rq, xdp); 1135 1136 case XDP_TX: 1137 case XDP_REDIRECT: 1138 return NULL; 1139 1140 default: 1141 /* drop packet */ 1142 xsk_buff_free(xdp); 1143 u64_stats_inc(&stats->drops); 1144 return NULL; 1145 } 1146 } 1147 1148 static void xsk_drop_follow_bufs(struct net_device *dev, 1149 struct receive_queue *rq, 1150 u32 num_buf, 1151 struct virtnet_rq_stats *stats) 1152 { 1153 struct xdp_buff *xdp; 1154 u32 len; 1155 1156 while (num_buf-- > 1) { 1157 xdp = virtqueue_get_buf(rq->vq, &len); 1158 if (unlikely(!xdp)) { 1159 pr_debug("%s: rx error: %d buffers missing\n", 1160 dev->name, num_buf); 1161 DEV_STATS_INC(dev, rx_length_errors); 1162 break; 1163 } 1164 u64_stats_add(&stats->bytes, len); 1165 xsk_buff_free(xdp); 1166 } 1167 } 1168 1169 static int xsk_append_merge_buffer(struct virtnet_info *vi, 1170 struct receive_queue *rq, 1171 struct sk_buff *head_skb, 1172 u32 num_buf, 1173 struct virtio_net_hdr_mrg_rxbuf *hdr, 1174 struct virtnet_rq_stats *stats) 1175 { 1176 struct sk_buff *curr_skb; 1177 struct xdp_buff *xdp; 1178 u32 len, truesize; 1179 struct page *page; 1180 void *buf; 1181 1182 curr_skb = head_skb; 1183 1184 while (--num_buf) { 1185 buf = virtqueue_get_buf(rq->vq, &len); 1186 if (unlikely(!buf)) { 1187 pr_debug("%s: rx error: %d buffers out of %d missing\n", 1188 vi->dev->name, num_buf, 1189 virtio16_to_cpu(vi->vdev, 1190 hdr->num_buffers)); 1191 DEV_STATS_INC(vi->dev, rx_length_errors); 1192 return -EINVAL; 1193 } 1194 1195 u64_stats_add(&stats->bytes, len); 1196 1197 xdp = buf_to_xdp(vi, rq, buf, len, false); 1198 if (!xdp) 1199 goto err; 1200 1201 buf = napi_alloc_frag(len); 1202 if (!buf) { 1203 xsk_buff_free(xdp); 1204 goto err; 1205 } 1206 1207 memcpy(buf, xdp->data, len); 1208 1209 xsk_buff_free(xdp); 1210 1211 page = virt_to_page(buf); 1212 1213 truesize = len; 1214 1215 curr_skb = virtnet_skb_append_frag(rq, head_skb, curr_skb, page, 1216 buf, len, truesize); 1217 if (!curr_skb) { 1218 put_page(page); 1219 goto err; 1220 } 1221 } 1222 1223 return 0; 1224 1225 err: 1226 xsk_drop_follow_bufs(vi->dev, rq, num_buf, stats); 1227 return -EINVAL; 1228 } 1229 1230 static struct sk_buff *virtnet_receive_xsk_merge(struct net_device *dev, struct virtnet_info *vi, 1231 struct receive_queue *rq, struct xdp_buff *xdp, 1232 unsigned int *xdp_xmit, 1233 struct virtnet_rq_stats *stats) 1234 { 1235 struct virtio_net_hdr_mrg_rxbuf *hdr; 1236 struct bpf_prog *prog; 1237 struct sk_buff *skb; 1238 u32 ret, num_buf; 1239 1240 hdr = xdp->data - vi->hdr_len; 1241 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); 1242 1243 ret = XDP_PASS; 1244 rcu_read_lock(); 1245 prog = rcu_dereference(rq->xdp_prog); 1246 if (prog) { 1247 /* TODO: support multi buffer. */ 1248 if (num_buf == 1) 1249 ret = virtnet_xdp_handler(prog, xdp, dev, xdp_xmit, 1250 stats); 1251 else 1252 ret = XDP_ABORTED; 1253 } 1254 rcu_read_unlock(); 1255 1256 switch (ret) { 1257 case XDP_PASS: 1258 skb = xsk_construct_skb(rq, xdp); 1259 if (!skb) 1260 goto drop_bufs; 1261 1262 if (xsk_append_merge_buffer(vi, rq, skb, num_buf, hdr, stats)) { 1263 dev_kfree_skb(skb); 1264 goto drop; 1265 } 1266 1267 return skb; 1268 1269 case XDP_TX: 1270 case XDP_REDIRECT: 1271 return NULL; 1272 1273 default: 1274 /* drop packet */ 1275 xsk_buff_free(xdp); 1276 } 1277 1278 drop_bufs: 1279 xsk_drop_follow_bufs(dev, rq, num_buf, stats); 1280 1281 drop: 1282 u64_stats_inc(&stats->drops); 1283 return NULL; 1284 } 1285 1286 static void virtnet_receive_xsk_buf(struct virtnet_info *vi, struct receive_queue *rq, 1287 void *buf, u32 len, 1288 unsigned int *xdp_xmit, 1289 struct virtnet_rq_stats *stats) 1290 { 1291 struct net_device *dev = vi->dev; 1292 struct sk_buff *skb = NULL; 1293 struct xdp_buff *xdp; 1294 u8 flags; 1295 1296 len -= vi->hdr_len; 1297 1298 u64_stats_add(&stats->bytes, len); 1299 1300 xdp = buf_to_xdp(vi, rq, buf, len, true); 1301 if (!xdp) 1302 return; 1303 1304 if (unlikely(len < ETH_HLEN)) { 1305 pr_debug("%s: short packet %i\n", dev->name, len); 1306 DEV_STATS_INC(dev, rx_length_errors); 1307 xsk_buff_free(xdp); 1308 return; 1309 } 1310 1311 flags = ((struct virtio_net_common_hdr *)(xdp->data - vi->hdr_len))->hdr.flags; 1312 1313 if (!vi->mergeable_rx_bufs) 1314 skb = virtnet_receive_xsk_small(dev, vi, rq, xdp, xdp_xmit, stats); 1315 else 1316 skb = virtnet_receive_xsk_merge(dev, vi, rq, xdp, xdp_xmit, stats); 1317 1318 if (skb) 1319 virtnet_receive_done(vi, rq, skb, flags); 1320 } 1321 1322 static int virtnet_add_recvbuf_xsk(struct virtnet_info *vi, struct receive_queue *rq, 1323 struct xsk_buff_pool *pool, gfp_t gfp) 1324 { 1325 struct xdp_buff **xsk_buffs; 1326 dma_addr_t addr; 1327 int err = 0; 1328 u32 len, i; 1329 int num; 1330 1331 xsk_buffs = rq->xsk_buffs; 1332 1333 num = xsk_buff_alloc_batch(pool, xsk_buffs, rq->vq->num_free); 1334 if (!num) { 1335 if (xsk_uses_need_wakeup(pool)) { 1336 xsk_set_rx_need_wakeup(pool); 1337 /* Return 0 instead of -ENOMEM so that NAPI is 1338 * descheduled. 1339 */ 1340 return 0; 1341 } 1342 1343 return -ENOMEM; 1344 } else { 1345 xsk_clear_rx_need_wakeup(pool); 1346 } 1347 1348 len = xsk_pool_get_rx_frame_size(pool) + vi->hdr_len; 1349 1350 for (i = 0; i < num; ++i) { 1351 /* Use the part of XDP_PACKET_HEADROOM as the virtnet hdr space. 1352 * We assume XDP_PACKET_HEADROOM is larger than hdr->len. 1353 * (see function virtnet_xsk_pool_enable) 1354 */ 1355 addr = xsk_buff_xdp_get_dma(xsk_buffs[i]) - vi->hdr_len; 1356 1357 sg_init_table(rq->sg, 1); 1358 sg_fill_dma(rq->sg, addr, len); 1359 1360 err = virtqueue_add_inbuf_premapped(rq->vq, rq->sg, 1, 1361 xsk_buffs[i], NULL, gfp); 1362 if (err) 1363 goto err; 1364 } 1365 1366 return num; 1367 1368 err: 1369 for (; i < num; ++i) 1370 xsk_buff_free(xsk_buffs[i]); 1371 1372 return err; 1373 } 1374 1375 static void *virtnet_xsk_to_ptr(u32 len) 1376 { 1377 unsigned long p; 1378 1379 p = len << VIRTIO_XSK_FLAG_OFFSET; 1380 1381 return virtnet_xmit_ptr_pack((void *)p, VIRTNET_XMIT_TYPE_XSK); 1382 } 1383 1384 static int virtnet_xsk_xmit_one(struct send_queue *sq, 1385 struct xsk_buff_pool *pool, 1386 struct xdp_desc *desc) 1387 { 1388 struct virtnet_info *vi; 1389 dma_addr_t addr; 1390 1391 vi = sq->vq->vdev->priv; 1392 1393 addr = xsk_buff_raw_get_dma(pool, desc->addr); 1394 xsk_buff_raw_dma_sync_for_device(pool, addr, desc->len); 1395 1396 sg_init_table(sq->sg, 2); 1397 sg_fill_dma(sq->sg, sq->xsk_hdr_dma_addr, vi->hdr_len); 1398 sg_fill_dma(sq->sg + 1, addr, desc->len); 1399 1400 return virtqueue_add_outbuf_premapped(sq->vq, sq->sg, 2, 1401 virtnet_xsk_to_ptr(desc->len), 1402 GFP_ATOMIC); 1403 } 1404 1405 static int virtnet_xsk_xmit_batch(struct send_queue *sq, 1406 struct xsk_buff_pool *pool, 1407 unsigned int budget, 1408 u64 *kicks) 1409 { 1410 struct xdp_desc *descs = pool->tx_descs; 1411 bool kick = false; 1412 u32 nb_pkts, i; 1413 int err; 1414 1415 budget = min_t(u32, budget, sq->vq->num_free); 1416 1417 nb_pkts = xsk_tx_peek_release_desc_batch(pool, budget); 1418 if (!nb_pkts) 1419 return 0; 1420 1421 for (i = 0; i < nb_pkts; i++) { 1422 err = virtnet_xsk_xmit_one(sq, pool, &descs[i]); 1423 if (unlikely(err)) { 1424 xsk_tx_completed(sq->xsk_pool, nb_pkts - i); 1425 break; 1426 } 1427 1428 kick = true; 1429 } 1430 1431 if (kick && virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) 1432 (*kicks)++; 1433 1434 return i; 1435 } 1436 1437 static bool virtnet_xsk_xmit(struct send_queue *sq, struct xsk_buff_pool *pool, 1438 int budget) 1439 { 1440 struct virtnet_info *vi = sq->vq->vdev->priv; 1441 struct virtnet_sq_free_stats stats = {}; 1442 struct net_device *dev = vi->dev; 1443 u64 kicks = 0; 1444 int sent; 1445 1446 /* Avoid to wakeup napi meanless, so call __free_old_xmit instead of 1447 * free_old_xmit(). 1448 */ 1449 __free_old_xmit(sq, netdev_get_tx_queue(dev, sq - vi->sq), true, &stats); 1450 1451 if (stats.xsk) 1452 xsk_tx_completed(sq->xsk_pool, stats.xsk); 1453 1454 sent = virtnet_xsk_xmit_batch(sq, pool, budget, &kicks); 1455 1456 if (!is_xdp_raw_buffer_queue(vi, sq - vi->sq)) 1457 check_sq_full_and_disable(vi, vi->dev, sq); 1458 1459 if (sent) { 1460 struct netdev_queue *txq; 1461 1462 txq = netdev_get_tx_queue(vi->dev, sq - vi->sq); 1463 txq_trans_cond_update(txq); 1464 } 1465 1466 u64_stats_update_begin(&sq->stats.syncp); 1467 u64_stats_add(&sq->stats.packets, stats.packets); 1468 u64_stats_add(&sq->stats.bytes, stats.bytes); 1469 u64_stats_add(&sq->stats.kicks, kicks); 1470 u64_stats_add(&sq->stats.xdp_tx, sent); 1471 u64_stats_update_end(&sq->stats.syncp); 1472 1473 if (xsk_uses_need_wakeup(pool)) 1474 xsk_set_tx_need_wakeup(pool); 1475 1476 return sent; 1477 } 1478 1479 static void xsk_wakeup(struct napi_struct *napi, struct virtqueue *vq) 1480 { 1481 if (napi_if_scheduled_mark_missed(napi)) 1482 return; 1483 1484 local_bh_disable(); 1485 virtqueue_napi_schedule(napi, vq); 1486 local_bh_enable(); 1487 } 1488 1489 static int virtnet_xsk_wakeup(struct net_device *dev, u32 qid, u32 flag) 1490 { 1491 struct virtnet_info *vi = netdev_priv(dev); 1492 1493 if (!netif_running(dev)) 1494 return -ENETDOWN; 1495 1496 if (qid >= vi->curr_queue_pairs) 1497 return -EINVAL; 1498 1499 if (flag & XDP_WAKEUP_TX) { 1500 struct send_queue *sq = &vi->sq[qid]; 1501 1502 xsk_wakeup(&sq->napi, sq->vq); 1503 } 1504 1505 if (flag & XDP_WAKEUP_RX) { 1506 struct receive_queue *rq = &vi->rq[qid]; 1507 1508 xsk_wakeup(&rq->napi, rq->vq); 1509 } 1510 1511 return 0; 1512 } 1513 1514 static void virtnet_xsk_completed(struct send_queue *sq, int num) 1515 { 1516 xsk_tx_completed(sq->xsk_pool, num); 1517 1518 /* If this is called by rx poll, start_xmit and xdp xmit we should 1519 * wakeup the tx napi to consume the xsk tx queue, because the tx 1520 * interrupt may not be triggered. 1521 */ 1522 xsk_wakeup(&sq->napi, sq->vq); 1523 } 1524 1525 static int __virtnet_xdp_xmit_one(struct virtnet_info *vi, 1526 struct send_queue *sq, 1527 struct xdp_frame *xdpf) 1528 { 1529 struct virtio_net_hdr_mrg_rxbuf *hdr; 1530 struct skb_shared_info *shinfo; 1531 u8 nr_frags = 0; 1532 int err, i; 1533 1534 if (unlikely(xdpf->headroom < vi->hdr_len)) 1535 return -EOVERFLOW; 1536 1537 if (unlikely(xdp_frame_has_frags(xdpf))) { 1538 shinfo = xdp_get_shared_info_from_frame(xdpf); 1539 nr_frags = shinfo->nr_frags; 1540 } 1541 1542 /* In wrapping function virtnet_xdp_xmit(), we need to free 1543 * up the pending old buffers, where we need to calculate the 1544 * position of skb_shared_info in xdp_get_frame_len() and 1545 * xdp_return_frame(), which will involve to xdpf->data and 1546 * xdpf->headroom. Therefore, we need to update the value of 1547 * headroom synchronously here. 1548 */ 1549 xdpf->headroom -= vi->hdr_len; 1550 xdpf->data -= vi->hdr_len; 1551 /* Zero header and leave csum up to XDP layers */ 1552 hdr = xdpf->data; 1553 memset(hdr, 0, vi->hdr_len); 1554 xdpf->len += vi->hdr_len; 1555 1556 sg_init_table(sq->sg, nr_frags + 1); 1557 sg_set_buf(sq->sg, xdpf->data, xdpf->len); 1558 for (i = 0; i < nr_frags; i++) { 1559 skb_frag_t *frag = &shinfo->frags[i]; 1560 1561 sg_set_page(&sq->sg[i + 1], skb_frag_page(frag), 1562 skb_frag_size(frag), skb_frag_off(frag)); 1563 } 1564 1565 err = virtnet_add_outbuf(sq, nr_frags + 1, xdpf, VIRTNET_XMIT_TYPE_XDP); 1566 if (unlikely(err)) 1567 return -ENOSPC; /* Caller handle free/refcnt */ 1568 1569 return 0; 1570 } 1571 1572 /* when vi->curr_queue_pairs > nr_cpu_ids, the txq/sq is only used for xdp tx on 1573 * the current cpu, so it does not need to be locked. 1574 * 1575 * Here we use marco instead of inline functions because we have to deal with 1576 * three issues at the same time: 1. the choice of sq. 2. judge and execute the 1577 * lock/unlock of txq 3. make sparse happy. It is difficult for two inline 1578 * functions to perfectly solve these three problems at the same time. 1579 */ 1580 #define virtnet_xdp_get_sq(vi) ({ \ 1581 int cpu = smp_processor_id(); \ 1582 struct netdev_queue *txq; \ 1583 typeof(vi) v = (vi); \ 1584 unsigned int qp; \ 1585 \ 1586 if (v->curr_queue_pairs > nr_cpu_ids) { \ 1587 qp = v->curr_queue_pairs - v->xdp_queue_pairs; \ 1588 qp += cpu; \ 1589 txq = netdev_get_tx_queue(v->dev, qp); \ 1590 __netif_tx_acquire(txq); \ 1591 } else { \ 1592 qp = cpu % v->curr_queue_pairs; \ 1593 txq = netdev_get_tx_queue(v->dev, qp); \ 1594 __netif_tx_lock(txq, cpu); \ 1595 } \ 1596 v->sq + qp; \ 1597 }) 1598 1599 #define virtnet_xdp_put_sq(vi, q) { \ 1600 struct netdev_queue *txq; \ 1601 typeof(vi) v = (vi); \ 1602 \ 1603 txq = netdev_get_tx_queue(v->dev, (q) - v->sq); \ 1604 if (v->curr_queue_pairs > nr_cpu_ids) \ 1605 __netif_tx_release(txq); \ 1606 else \ 1607 __netif_tx_unlock(txq); \ 1608 } 1609 1610 static int virtnet_xdp_xmit(struct net_device *dev, 1611 int n, struct xdp_frame **frames, u32 flags) 1612 { 1613 struct virtnet_info *vi = netdev_priv(dev); 1614 struct virtnet_sq_free_stats stats = {0}; 1615 struct receive_queue *rq = vi->rq; 1616 struct bpf_prog *xdp_prog; 1617 struct send_queue *sq; 1618 int nxmit = 0; 1619 int kicks = 0; 1620 int ret; 1621 int i; 1622 1623 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this 1624 * indicate XDP resources have been successfully allocated. 1625 */ 1626 xdp_prog = rcu_access_pointer(rq->xdp_prog); 1627 if (!xdp_prog) 1628 return -ENXIO; 1629 1630 sq = virtnet_xdp_get_sq(vi); 1631 1632 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) { 1633 ret = -EINVAL; 1634 goto out; 1635 } 1636 1637 /* Free up any pending old buffers before queueing new ones. */ 1638 virtnet_free_old_xmit(sq, netdev_get_tx_queue(dev, sq - vi->sq), 1639 false, &stats); 1640 1641 for (i = 0; i < n; i++) { 1642 struct xdp_frame *xdpf = frames[i]; 1643 1644 if (__virtnet_xdp_xmit_one(vi, sq, xdpf)) 1645 break; 1646 nxmit++; 1647 } 1648 ret = nxmit; 1649 1650 if (!is_xdp_raw_buffer_queue(vi, sq - vi->sq)) 1651 check_sq_full_and_disable(vi, dev, sq); 1652 1653 if (flags & XDP_XMIT_FLUSH) { 1654 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) 1655 kicks = 1; 1656 } 1657 out: 1658 u64_stats_update_begin(&sq->stats.syncp); 1659 u64_stats_add(&sq->stats.bytes, stats.bytes); 1660 u64_stats_add(&sq->stats.packets, stats.packets); 1661 u64_stats_add(&sq->stats.xdp_tx, n); 1662 u64_stats_add(&sq->stats.xdp_tx_drops, n - nxmit); 1663 u64_stats_add(&sq->stats.kicks, kicks); 1664 u64_stats_update_end(&sq->stats.syncp); 1665 1666 virtnet_xdp_put_sq(vi, sq); 1667 return ret; 1668 } 1669 1670 static void put_xdp_frags(struct receive_queue *rq, struct xdp_buff *xdp) 1671 { 1672 struct skb_shared_info *shinfo; 1673 struct page *xdp_page; 1674 int i; 1675 1676 if (xdp_buff_has_frags(xdp)) { 1677 shinfo = xdp_get_shared_info_from_buff(xdp); 1678 for (i = 0; i < shinfo->nr_frags; i++) { 1679 xdp_page = skb_frag_page(&shinfo->frags[i]); 1680 page_pool_put_page(rq->page_pool, xdp_page, -1, true); 1681 } 1682 } 1683 } 1684 1685 static int virtnet_xdp_handler(struct bpf_prog *xdp_prog, struct xdp_buff *xdp, 1686 struct net_device *dev, 1687 unsigned int *xdp_xmit, 1688 struct virtnet_rq_stats *stats) 1689 { 1690 struct xdp_frame *xdpf; 1691 int err; 1692 u32 act; 1693 1694 act = bpf_prog_run_xdp(xdp_prog, xdp); 1695 u64_stats_inc(&stats->xdp_packets); 1696 1697 switch (act) { 1698 case XDP_PASS: 1699 return act; 1700 1701 case XDP_TX: 1702 u64_stats_inc(&stats->xdp_tx); 1703 xdpf = xdp_convert_buff_to_frame(xdp); 1704 if (unlikely(!xdpf)) { 1705 netdev_dbg(dev, "convert buff to frame failed for xdp\n"); 1706 return XDP_DROP; 1707 } 1708 1709 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0); 1710 if (unlikely(!err)) { 1711 xdp_return_frame_rx_napi(xdpf); 1712 } else if (unlikely(err < 0)) { 1713 trace_xdp_exception(dev, xdp_prog, act); 1714 return XDP_DROP; 1715 } 1716 *xdp_xmit |= VIRTIO_XDP_TX; 1717 return act; 1718 1719 case XDP_REDIRECT: 1720 u64_stats_inc(&stats->xdp_redirects); 1721 err = xdp_do_redirect(dev, xdp, xdp_prog); 1722 if (err) 1723 return XDP_DROP; 1724 1725 *xdp_xmit |= VIRTIO_XDP_REDIR; 1726 return act; 1727 1728 default: 1729 bpf_warn_invalid_xdp_action(dev, xdp_prog, act); 1730 fallthrough; 1731 case XDP_ABORTED: 1732 trace_xdp_exception(dev, xdp_prog, act); 1733 fallthrough; 1734 case XDP_DROP: 1735 return XDP_DROP; 1736 } 1737 } 1738 1739 static unsigned int virtnet_get_headroom(struct virtnet_info *vi) 1740 { 1741 return vi->xdp_enabled ? XDP_PACKET_HEADROOM : 0; 1742 } 1743 1744 /* We copy the packet for XDP in the following cases: 1745 * 1746 * 1) Packet is scattered across multiple rx buffers. 1747 * 2) Headroom space is insufficient. 1748 * 1749 * This is inefficient but it's a temporary condition that 1750 * we hit right after XDP is enabled and until queue is refilled 1751 * with large buffers with sufficient headroom - so it should affect 1752 * at most queue size packets. 1753 * Afterwards, the conditions to enable 1754 * XDP should preclude the underlying device from sending packets 1755 * across multiple buffers (num_buf > 1), and we make sure buffers 1756 * have enough headroom. 1757 */ 1758 static struct page *xdp_linearize_page(struct net_device *dev, 1759 struct receive_queue *rq, 1760 int *num_buf, 1761 struct page *p, 1762 int offset, 1763 int page_off, 1764 unsigned int *len) 1765 { 1766 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 1767 struct page *page; 1768 1769 if (page_off + *len + tailroom > PAGE_SIZE) 1770 return NULL; 1771 1772 page = page_pool_alloc_pages(rq->page_pool, GFP_ATOMIC); 1773 if (!page) 1774 return NULL; 1775 1776 memcpy(page_address(page) + page_off, page_address(p) + offset, *len); 1777 page_off += *len; 1778 1779 /* Only mergeable mode can go inside this while loop. In small mode, 1780 * *num_buf == 1, so it cannot go inside. 1781 */ 1782 while (--*num_buf) { 1783 unsigned int buflen; 1784 void *buf; 1785 void *ctx; 1786 int off; 1787 1788 buf = virtnet_rq_get_buf(rq, &buflen, &ctx); 1789 if (unlikely(!buf)) 1790 goto err_buf; 1791 1792 p = virt_to_head_page(buf); 1793 off = buf - page_address(p); 1794 1795 if (rq->use_page_pool_dma) 1796 page_pool_dma_sync_for_cpu(rq->page_pool, p, 1797 off, buflen); 1798 1799 if (check_mergeable_len(dev, ctx, buflen)) { 1800 page_pool_put_page(rq->page_pool, p, -1, true); 1801 goto err_buf; 1802 } 1803 1804 /* guard against a misconfigured or uncooperative backend that 1805 * is sending packet larger than the MTU. 1806 */ 1807 if ((page_off + buflen + tailroom) > PAGE_SIZE) { 1808 page_pool_put_page(rq->page_pool, p, -1, true); 1809 goto err_buf; 1810 } 1811 1812 memcpy(page_address(page) + page_off, 1813 page_address(p) + off, buflen); 1814 page_off += buflen; 1815 page_pool_put_page(rq->page_pool, p, -1, true); 1816 } 1817 1818 /* Headroom does not contribute to packet length */ 1819 *len = page_off - XDP_PACKET_HEADROOM; 1820 return page; 1821 err_buf: 1822 page_pool_put_page(rq->page_pool, page, -1, true); 1823 return NULL; 1824 } 1825 1826 static struct sk_buff *receive_small_build_skb(struct virtnet_info *vi, 1827 unsigned int xdp_headroom, 1828 void *buf, 1829 unsigned int len, 1830 unsigned int buflen) 1831 { 1832 unsigned int header_offset; 1833 unsigned int headroom; 1834 struct sk_buff *skb; 1835 1836 header_offset = VIRTNET_RX_PAD + xdp_headroom; 1837 headroom = vi->hdr_len + header_offset; 1838 1839 skb = virtnet_build_skb(buf, buflen, headroom, len); 1840 if (unlikely(!skb)) 1841 return NULL; 1842 1843 buf += header_offset; 1844 memcpy(skb_vnet_common_hdr(skb), buf, vi->hdr_len); 1845 1846 return skb; 1847 } 1848 1849 static struct sk_buff *receive_small_xdp(struct net_device *dev, 1850 struct virtnet_info *vi, 1851 struct receive_queue *rq, 1852 struct bpf_prog *xdp_prog, 1853 void *buf, 1854 unsigned int xdp_headroom, 1855 unsigned int len, 1856 unsigned int buflen, 1857 unsigned int *xdp_xmit, 1858 struct virtnet_rq_stats *stats) 1859 { 1860 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom; 1861 unsigned int headroom = vi->hdr_len + header_offset; 1862 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset; 1863 struct page *page = virt_to_head_page(buf); 1864 struct page *xdp_page; 1865 struct xdp_buff xdp; 1866 struct sk_buff *skb; 1867 unsigned int metasize = 0; 1868 u32 act; 1869 1870 if (unlikely(hdr->hdr.gso_type)) 1871 goto err_xdp; 1872 1873 /* Partially checksummed packets must be dropped. */ 1874 if (unlikely(hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)) 1875 goto err_xdp; 1876 1877 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) { 1878 int offset = buf - page_address(page) + header_offset; 1879 unsigned int tlen = len + vi->hdr_len; 1880 int num_buf = 1; 1881 1882 xdp_headroom = virtnet_get_headroom(vi); 1883 header_offset = VIRTNET_RX_PAD + xdp_headroom; 1884 headroom = vi->hdr_len + header_offset; 1885 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + 1886 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 1887 xdp_page = xdp_linearize_page(dev, rq, &num_buf, page, 1888 offset, header_offset, 1889 &tlen); 1890 if (!xdp_page) 1891 goto err_xdp; 1892 1893 buf = page_address(xdp_page); 1894 page_pool_put_page(rq->page_pool, page, -1, true); 1895 page = xdp_page; 1896 } 1897 1898 xdp_init_buff(&xdp, buflen, &rq->xdp_rxq); 1899 xdp_prepare_buff(&xdp, buf + VIRTNET_RX_PAD + vi->hdr_len, 1900 xdp_headroom, len, true); 1901 1902 act = virtnet_xdp_handler(xdp_prog, &xdp, dev, xdp_xmit, stats); 1903 1904 switch (act) { 1905 case XDP_PASS: 1906 /* Recalculate length in case bpf program changed it */ 1907 len = xdp.data_end - xdp.data; 1908 metasize = xdp.data - xdp.data_meta; 1909 break; 1910 1911 case XDP_TX: 1912 case XDP_REDIRECT: 1913 goto xdp_xmit; 1914 1915 default: 1916 goto err_xdp; 1917 } 1918 1919 skb = virtnet_build_skb(buf, buflen, xdp.data - buf, len); 1920 if (unlikely(!skb)) 1921 goto err; 1922 1923 if (metasize) 1924 skb_metadata_set(skb, metasize); 1925 1926 skb_mark_for_recycle(skb); 1927 1928 return skb; 1929 1930 err_xdp: 1931 u64_stats_inc(&stats->xdp_drops); 1932 err: 1933 u64_stats_inc(&stats->drops); 1934 page_pool_put_page(rq->page_pool, page, -1, true); 1935 xdp_xmit: 1936 return NULL; 1937 } 1938 1939 static struct sk_buff *receive_small(struct net_device *dev, 1940 struct virtnet_info *vi, 1941 struct receive_queue *rq, 1942 void *buf, void *ctx, 1943 unsigned int len, 1944 unsigned int *xdp_xmit, 1945 struct virtnet_rq_stats *stats) 1946 { 1947 unsigned int xdp_headroom = mergeable_ctx_to_headroom(ctx); 1948 unsigned int buflen = mergeable_ctx_to_truesize(ctx); 1949 struct page *page = virt_to_head_page(buf); 1950 struct sk_buff *skb; 1951 1952 /* We passed the address of virtnet header to virtio-core, 1953 * so truncate the padding. 1954 */ 1955 buf -= VIRTNET_RX_PAD + xdp_headroom; 1956 1957 len -= vi->hdr_len; 1958 u64_stats_add(&stats->bytes, len); 1959 1960 if (unlikely(len > GOOD_PACKET_LEN)) { 1961 pr_debug("%s: rx error: len %u exceeds max size %d\n", 1962 dev->name, len, GOOD_PACKET_LEN); 1963 DEV_STATS_INC(dev, rx_length_errors); 1964 goto err; 1965 } 1966 1967 if (unlikely(vi->xdp_enabled)) { 1968 struct bpf_prog *xdp_prog; 1969 1970 rcu_read_lock(); 1971 xdp_prog = rcu_dereference(rq->xdp_prog); 1972 if (xdp_prog) { 1973 skb = receive_small_xdp(dev, vi, rq, xdp_prog, buf, 1974 xdp_headroom, len, buflen, 1975 xdp_xmit, stats); 1976 rcu_read_unlock(); 1977 return skb; 1978 } 1979 rcu_read_unlock(); 1980 } 1981 1982 skb = receive_small_build_skb(vi, xdp_headroom, buf, len, buflen); 1983 if (likely(skb)) { 1984 skb_mark_for_recycle(skb); 1985 return skb; 1986 } 1987 1988 err: 1989 u64_stats_inc(&stats->drops); 1990 page_pool_put_page(rq->page_pool, page, -1, true); 1991 return NULL; 1992 } 1993 1994 static struct sk_buff *receive_big(struct net_device *dev, 1995 struct virtnet_info *vi, 1996 struct receive_queue *rq, 1997 void *buf, 1998 unsigned int len, 1999 struct virtnet_rq_stats *stats) 2000 { 2001 struct page *page = buf; 2002 unsigned long max_len; 2003 struct sk_buff *skb; 2004 2005 max_len = (vi->big_packets_num_skbfrags + 1) * PAGE_SIZE - 2006 sizeof(struct padded_vnet_hdr) + vi->hdr_len; 2007 2008 /* Make sure that len does not exceed the size allocated in 2009 * add_recvbuf_big. 2010 */ 2011 if (unlikely(len > max_len)) { 2012 pr_debug("%s: rx error: len %u exceeds allocated size %lu\n", 2013 dev->name, len, max_len); 2014 goto err; 2015 } 2016 2017 skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, 0); 2018 u64_stats_add(&stats->bytes, len - vi->hdr_len); 2019 if (unlikely(!skb)) 2020 goto err; 2021 2022 return skb; 2023 2024 err: 2025 u64_stats_inc(&stats->drops); 2026 give_pages(rq, page); 2027 return NULL; 2028 } 2029 2030 static void mergeable_buf_free(struct receive_queue *rq, int num_buf, 2031 struct net_device *dev, 2032 struct virtnet_rq_stats *stats) 2033 { 2034 struct page *page; 2035 void *buf; 2036 int len; 2037 2038 while (num_buf-- > 1) { 2039 buf = virtnet_rq_get_buf(rq, &len, NULL); 2040 if (unlikely(!buf)) { 2041 pr_debug("%s: rx error: %d buffers missing\n", 2042 dev->name, num_buf); 2043 DEV_STATS_INC(dev, rx_length_errors); 2044 break; 2045 } 2046 u64_stats_add(&stats->bytes, len); 2047 page = virt_to_head_page(buf); 2048 page_pool_put_page(rq->page_pool, page, -1, true); 2049 } 2050 } 2051 2052 /* Why not use xdp_build_skb_from_frame() ? 2053 * XDP core assumes that xdp frags are PAGE_SIZE in length, while in 2054 * virtio-net there are 2 points that do not match its requirements: 2055 * 1. The size of the prefilled buffer is not fixed before xdp is set. 2056 * 2. xdp_build_skb_from_frame() does more checks that we don't need, 2057 * like eth_type_trans() (which virtio-net does in receive_buf()). 2058 */ 2059 static struct sk_buff *build_skb_from_xdp_buff(struct net_device *dev, 2060 struct virtnet_info *vi, 2061 struct xdp_buff *xdp, 2062 unsigned int xdp_frags_truesz) 2063 { 2064 struct skb_shared_info *sinfo = xdp_get_shared_info_from_buff(xdp); 2065 unsigned int headroom, data_len; 2066 struct sk_buff *skb; 2067 int metasize; 2068 u8 nr_frags; 2069 2070 if (unlikely(xdp->data_end > xdp_data_hard_end(xdp))) { 2071 pr_debug("Error building skb as missing reserved tailroom for xdp"); 2072 return NULL; 2073 } 2074 2075 if (unlikely(xdp_buff_has_frags(xdp))) 2076 nr_frags = sinfo->nr_frags; 2077 2078 skb = build_skb(xdp->data_hard_start, xdp->frame_sz); 2079 if (unlikely(!skb)) 2080 return NULL; 2081 2082 headroom = xdp->data - xdp->data_hard_start; 2083 data_len = xdp->data_end - xdp->data; 2084 skb_reserve(skb, headroom); 2085 __skb_put(skb, data_len); 2086 2087 metasize = xdp->data - xdp->data_meta; 2088 metasize = metasize > 0 ? metasize : 0; 2089 if (metasize) 2090 skb_metadata_set(skb, metasize); 2091 2092 if (unlikely(xdp_buff_has_frags(xdp))) 2093 xdp_update_skb_frags_info(skb, nr_frags, sinfo->xdp_frags_size, 2094 xdp_frags_truesz, 2095 xdp_buff_get_skb_flags(xdp)); 2096 2097 return skb; 2098 } 2099 2100 /* TODO: build xdp in big mode */ 2101 static int virtnet_build_xdp_buff_mrg(struct net_device *dev, 2102 struct virtnet_info *vi, 2103 struct receive_queue *rq, 2104 struct xdp_buff *xdp, 2105 void *buf, 2106 unsigned int len, 2107 unsigned int frame_sz, 2108 int *num_buf, 2109 unsigned int *xdp_frags_truesize, 2110 struct virtnet_rq_stats *stats) 2111 { 2112 struct virtio_net_hdr_mrg_rxbuf *hdr = buf; 2113 struct skb_shared_info *shinfo; 2114 unsigned int xdp_frags_truesz = 0; 2115 unsigned int truesize; 2116 struct page *page; 2117 skb_frag_t *frag; 2118 int offset; 2119 void *ctx; 2120 2121 xdp_init_buff(xdp, frame_sz, &rq->xdp_rxq); 2122 xdp_prepare_buff(xdp, buf - XDP_PACKET_HEADROOM, 2123 XDP_PACKET_HEADROOM + vi->hdr_len, len - vi->hdr_len, true); 2124 2125 if (!*num_buf) 2126 return 0; 2127 2128 if (*num_buf > 1) { 2129 /* If we want to build multi-buffer xdp, we need 2130 * to specify that the flags of xdp_buff have the 2131 * XDP_FLAGS_HAS_FRAG bit. 2132 */ 2133 if (!xdp_buff_has_frags(xdp)) 2134 xdp_buff_set_frags_flag(xdp); 2135 2136 shinfo = xdp_get_shared_info_from_buff(xdp); 2137 shinfo->nr_frags = 0; 2138 shinfo->xdp_frags_size = 0; 2139 } 2140 2141 if (*num_buf > MAX_SKB_FRAGS + 1) 2142 return -EINVAL; 2143 2144 while (--*num_buf > 0) { 2145 buf = virtnet_rq_get_buf(rq, &len, &ctx); 2146 if (unlikely(!buf)) { 2147 pr_debug("%s: rx error: %d buffers out of %d missing\n", 2148 dev->name, *num_buf, 2149 virtio16_to_cpu(vi->vdev, hdr->num_buffers)); 2150 DEV_STATS_INC(dev, rx_length_errors); 2151 goto err; 2152 } 2153 2154 u64_stats_add(&stats->bytes, len); 2155 page = virt_to_head_page(buf); 2156 offset = buf - page_address(page); 2157 2158 if (rq->use_page_pool_dma) 2159 page_pool_dma_sync_for_cpu(rq->page_pool, page, 2160 offset, len); 2161 2162 if (check_mergeable_len(dev, ctx, len)) { 2163 page_pool_put_page(rq->page_pool, page, -1, true); 2164 goto err; 2165 } 2166 2167 truesize = mergeable_ctx_to_truesize(ctx); 2168 xdp_frags_truesz += truesize; 2169 2170 frag = &shinfo->frags[shinfo->nr_frags++]; 2171 skb_frag_fill_page_desc(frag, page, offset, len); 2172 if (page_is_pfmemalloc(page)) 2173 xdp_buff_set_frag_pfmemalloc(xdp); 2174 2175 shinfo->xdp_frags_size += len; 2176 } 2177 2178 *xdp_frags_truesize = xdp_frags_truesz; 2179 return 0; 2180 2181 err: 2182 put_xdp_frags(rq, xdp); 2183 return -EINVAL; 2184 } 2185 2186 static void *mergeable_xdp_get_buf(struct virtnet_info *vi, 2187 struct receive_queue *rq, 2188 struct bpf_prog *xdp_prog, 2189 void *ctx, 2190 unsigned int *frame_sz, 2191 int *num_buf, 2192 struct page **page, 2193 int offset, 2194 unsigned int *len, 2195 struct virtio_net_hdr_mrg_rxbuf *hdr) 2196 { 2197 unsigned int truesize = mergeable_ctx_to_truesize(ctx); 2198 unsigned int headroom = mergeable_ctx_to_headroom(ctx); 2199 struct page *xdp_page; 2200 unsigned int xdp_room; 2201 2202 /* Transient failure which in theory could occur if 2203 * in-flight packets from before XDP was enabled reach 2204 * the receive path after XDP is loaded. 2205 */ 2206 if (unlikely(hdr->hdr.gso_type)) 2207 return NULL; 2208 2209 /* Partially checksummed packets must be dropped. */ 2210 if (unlikely(hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)) 2211 return NULL; 2212 2213 /* Now XDP core assumes frag size is PAGE_SIZE, but buffers 2214 * with headroom may add hole in truesize, which 2215 * make their length exceed PAGE_SIZE. So we disabled the 2216 * hole mechanism for xdp. See add_recvbuf_mergeable(). 2217 */ 2218 *frame_sz = truesize; 2219 2220 if (likely(headroom >= virtnet_get_headroom(vi) && 2221 (*num_buf == 1 || xdp_prog->aux->xdp_has_frags))) { 2222 return page_address(*page) + offset; 2223 } 2224 2225 /* This happens when headroom is not enough because 2226 * of the buffer was prefilled before XDP is set. 2227 * This should only happen for the first several packets. 2228 * In fact, vq reset can be used here to help us clean up 2229 * the prefilled buffers, but many existing devices do not 2230 * support it, and we don't want to bother users who are 2231 * using xdp normally. 2232 */ 2233 if (!xdp_prog->aux->xdp_has_frags) { 2234 /* linearize data for XDP */ 2235 xdp_page = xdp_linearize_page(vi->dev, rq, num_buf, 2236 *page, offset, 2237 XDP_PACKET_HEADROOM, 2238 len); 2239 if (!xdp_page) 2240 return NULL; 2241 } else { 2242 xdp_room = SKB_DATA_ALIGN(XDP_PACKET_HEADROOM + 2243 sizeof(struct skb_shared_info)); 2244 if (*len + xdp_room > PAGE_SIZE) 2245 return NULL; 2246 2247 xdp_page = page_pool_alloc_pages(rq->page_pool, GFP_ATOMIC); 2248 if (!xdp_page) 2249 return NULL; 2250 2251 memcpy(page_address(xdp_page) + XDP_PACKET_HEADROOM, 2252 page_address(*page) + offset, *len); 2253 } 2254 2255 *frame_sz = PAGE_SIZE; 2256 2257 page_pool_put_page(rq->page_pool, *page, -1, true); 2258 2259 *page = xdp_page; 2260 2261 return page_address(*page) + XDP_PACKET_HEADROOM; 2262 } 2263 2264 static struct sk_buff *receive_mergeable_xdp(struct net_device *dev, 2265 struct virtnet_info *vi, 2266 struct receive_queue *rq, 2267 struct bpf_prog *xdp_prog, 2268 void *buf, 2269 void *ctx, 2270 unsigned int len, 2271 unsigned int *xdp_xmit, 2272 struct virtnet_rq_stats *stats) 2273 { 2274 struct virtio_net_hdr_mrg_rxbuf *hdr = buf; 2275 int num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); 2276 struct page *page = virt_to_head_page(buf); 2277 int offset = buf - page_address(page); 2278 unsigned int xdp_frags_truesz = 0; 2279 struct sk_buff *head_skb; 2280 unsigned int frame_sz; 2281 struct xdp_buff xdp; 2282 void *data; 2283 u32 act; 2284 int err; 2285 2286 data = mergeable_xdp_get_buf(vi, rq, xdp_prog, ctx, &frame_sz, &num_buf, &page, 2287 offset, &len, hdr); 2288 if (unlikely(!data)) 2289 goto err_xdp; 2290 2291 err = virtnet_build_xdp_buff_mrg(dev, vi, rq, &xdp, data, len, frame_sz, 2292 &num_buf, &xdp_frags_truesz, stats); 2293 if (unlikely(err)) 2294 goto err_xdp; 2295 2296 act = virtnet_xdp_handler(xdp_prog, &xdp, dev, xdp_xmit, stats); 2297 2298 switch (act) { 2299 case XDP_PASS: 2300 head_skb = build_skb_from_xdp_buff(dev, vi, &xdp, xdp_frags_truesz); 2301 if (unlikely(!head_skb)) 2302 break; 2303 2304 skb_mark_for_recycle(head_skb); 2305 return head_skb; 2306 2307 case XDP_TX: 2308 case XDP_REDIRECT: 2309 return NULL; 2310 2311 default: 2312 break; 2313 } 2314 2315 put_xdp_frags(rq, &xdp); 2316 2317 err_xdp: 2318 page_pool_put_page(rq->page_pool, page, -1, true); 2319 mergeable_buf_free(rq, num_buf, dev, stats); 2320 2321 u64_stats_inc(&stats->xdp_drops); 2322 u64_stats_inc(&stats->drops); 2323 return NULL; 2324 } 2325 2326 static struct sk_buff *virtnet_skb_append_frag(struct receive_queue *rq, 2327 struct sk_buff *head_skb, 2328 struct sk_buff *curr_skb, 2329 struct page *page, void *buf, 2330 int len, int truesize) 2331 { 2332 int num_skb_frags; 2333 int offset; 2334 2335 num_skb_frags = skb_shinfo(curr_skb)->nr_frags; 2336 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) { 2337 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC); 2338 2339 if (unlikely(!nskb)) 2340 return NULL; 2341 2342 if (head_skb->pp_recycle) 2343 skb_mark_for_recycle(nskb); 2344 2345 if (curr_skb == head_skb) 2346 skb_shinfo(curr_skb)->frag_list = nskb; 2347 else 2348 curr_skb->next = nskb; 2349 curr_skb = nskb; 2350 head_skb->truesize += nskb->truesize; 2351 num_skb_frags = 0; 2352 } 2353 2354 if (curr_skb != head_skb) { 2355 head_skb->data_len += len; 2356 head_skb->len += len; 2357 head_skb->truesize += truesize; 2358 } 2359 2360 offset = buf - page_address(page); 2361 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) { 2362 if (head_skb->pp_recycle) 2363 page_pool_put_page(rq->page_pool, page, -1, true); 2364 else 2365 put_page(page); 2366 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1, 2367 len, truesize); 2368 } else { 2369 skb_add_rx_frag(curr_skb, num_skb_frags, page, 2370 offset, len, truesize); 2371 } 2372 2373 return curr_skb; 2374 } 2375 2376 static struct sk_buff *receive_mergeable(struct net_device *dev, 2377 struct virtnet_info *vi, 2378 struct receive_queue *rq, 2379 void *buf, 2380 void *ctx, 2381 unsigned int len, 2382 unsigned int *xdp_xmit, 2383 struct virtnet_rq_stats *stats) 2384 { 2385 struct virtio_net_hdr_mrg_rxbuf *hdr = buf; 2386 int num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); 2387 struct page *page = virt_to_head_page(buf); 2388 int offset = buf - page_address(page); 2389 struct sk_buff *head_skb, *curr_skb; 2390 unsigned int truesize = mergeable_ctx_to_truesize(ctx); 2391 unsigned int headroom = mergeable_ctx_to_headroom(ctx); 2392 2393 head_skb = NULL; 2394 2395 u64_stats_add(&stats->bytes, len - vi->hdr_len); 2396 2397 if (check_mergeable_len(dev, ctx, len)) 2398 goto err_skb; 2399 2400 if (unlikely(vi->xdp_enabled)) { 2401 struct bpf_prog *xdp_prog; 2402 2403 rcu_read_lock(); 2404 xdp_prog = rcu_dereference(rq->xdp_prog); 2405 if (xdp_prog) { 2406 head_skb = receive_mergeable_xdp(dev, vi, rq, xdp_prog, buf, ctx, 2407 len, xdp_xmit, stats); 2408 rcu_read_unlock(); 2409 return head_skb; 2410 } 2411 rcu_read_unlock(); 2412 } 2413 2414 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, headroom); 2415 curr_skb = head_skb; 2416 2417 if (unlikely(!curr_skb)) 2418 goto err_skb; 2419 2420 skb_mark_for_recycle(head_skb); 2421 while (--num_buf) { 2422 buf = virtnet_rq_get_buf(rq, &len, &ctx); 2423 if (unlikely(!buf)) { 2424 pr_debug("%s: rx error: %d buffers out of %d missing\n", 2425 dev->name, num_buf, 2426 virtio16_to_cpu(vi->vdev, 2427 hdr->num_buffers)); 2428 DEV_STATS_INC(dev, rx_length_errors); 2429 goto err_buf; 2430 } 2431 2432 u64_stats_add(&stats->bytes, len); 2433 page = virt_to_head_page(buf); 2434 2435 if (rq->use_page_pool_dma) { 2436 offset = buf - page_address(page); 2437 page_pool_dma_sync_for_cpu(rq->page_pool, page, 2438 offset, len); 2439 } 2440 2441 if (check_mergeable_len(dev, ctx, len)) 2442 goto err_skb; 2443 2444 truesize = mergeable_ctx_to_truesize(ctx); 2445 curr_skb = virtnet_skb_append_frag(rq, head_skb, curr_skb, page, 2446 buf, len, truesize); 2447 if (!curr_skb) 2448 goto err_skb; 2449 } 2450 2451 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len); 2452 return head_skb; 2453 2454 err_skb: 2455 page_pool_put_page(rq->page_pool, page, -1, true); 2456 mergeable_buf_free(rq, num_buf, dev, stats); 2457 2458 err_buf: 2459 u64_stats_inc(&stats->drops); 2460 dev_kfree_skb(head_skb); 2461 return NULL; 2462 } 2463 2464 static inline u32 2465 virtio_net_hash_value(const struct virtio_net_hdr_v1_hash *hdr_hash) 2466 { 2467 return __le16_to_cpu(hdr_hash->hash_value_lo) | 2468 (__le16_to_cpu(hdr_hash->hash_value_hi) << 16); 2469 } 2470 2471 static void virtio_skb_set_hash(const struct virtio_net_hdr_v1_hash *hdr_hash, 2472 struct sk_buff *skb) 2473 { 2474 enum pkt_hash_types rss_hash_type; 2475 2476 if (!hdr_hash || !skb) 2477 return; 2478 2479 switch (__le16_to_cpu(hdr_hash->hash_report)) { 2480 case VIRTIO_NET_HASH_REPORT_TCPv4: 2481 case VIRTIO_NET_HASH_REPORT_UDPv4: 2482 case VIRTIO_NET_HASH_REPORT_TCPv6: 2483 case VIRTIO_NET_HASH_REPORT_UDPv6: 2484 case VIRTIO_NET_HASH_REPORT_TCPv6_EX: 2485 case VIRTIO_NET_HASH_REPORT_UDPv6_EX: 2486 rss_hash_type = PKT_HASH_TYPE_L4; 2487 break; 2488 case VIRTIO_NET_HASH_REPORT_IPv4: 2489 case VIRTIO_NET_HASH_REPORT_IPv6: 2490 case VIRTIO_NET_HASH_REPORT_IPv6_EX: 2491 rss_hash_type = PKT_HASH_TYPE_L3; 2492 break; 2493 case VIRTIO_NET_HASH_REPORT_NONE: 2494 default: 2495 rss_hash_type = PKT_HASH_TYPE_NONE; 2496 } 2497 skb_set_hash(skb, virtio_net_hash_value(hdr_hash), rss_hash_type); 2498 } 2499 2500 static void virtnet_receive_done(struct virtnet_info *vi, struct receive_queue *rq, 2501 struct sk_buff *skb, u8 flags) 2502 { 2503 struct virtio_net_common_hdr *hdr; 2504 struct net_device *dev = vi->dev; 2505 2506 hdr = skb_vnet_common_hdr(skb); 2507 if (dev->features & NETIF_F_RXHASH && vi->has_rss_hash_report) 2508 virtio_skb_set_hash(&hdr->hash_v1_hdr, skb); 2509 2510 hdr->hdr.flags = flags; 2511 if (virtio_net_handle_csum_offload(skb, &hdr->hdr, vi->rx_tnl_csum)) { 2512 net_warn_ratelimited("%s: bad csum: flags: %x, gso_type: %x rx_tnl_csum %d\n", 2513 dev->name, hdr->hdr.flags, 2514 hdr->hdr.gso_type, vi->rx_tnl_csum); 2515 goto frame_err; 2516 } 2517 2518 if (virtio_net_hdr_tnl_to_skb(skb, &hdr->tnl_hdr, vi->rx_tnl, 2519 vi->rx_tnl_csum, 2520 virtio_is_little_endian(vi->vdev))) { 2521 net_warn_ratelimited("%s: bad gso: type: %x, size: %u, flags %x tunnel %d tnl csum %d\n", 2522 dev->name, hdr->hdr.gso_type, 2523 hdr->hdr.gso_size, hdr->hdr.flags, 2524 vi->rx_tnl, vi->rx_tnl_csum); 2525 goto frame_err; 2526 } 2527 2528 skb_record_rx_queue(skb, vq2rxq(rq->vq)); 2529 skb->protocol = eth_type_trans(skb, dev); 2530 pr_debug("Receiving skb proto 0x%04x len %i type %i\n", 2531 ntohs(skb->protocol), skb->len, skb->pkt_type); 2532 2533 napi_gro_receive(&rq->napi, skb); 2534 return; 2535 2536 frame_err: 2537 DEV_STATS_INC(dev, rx_frame_errors); 2538 dev_kfree_skb(skb); 2539 } 2540 2541 static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq, 2542 void *buf, unsigned int len, void **ctx, 2543 unsigned int *xdp_xmit, 2544 struct virtnet_rq_stats *stats) 2545 { 2546 struct net_device *dev = vi->dev; 2547 struct sk_buff *skb; 2548 u8 flags; 2549 2550 if (unlikely(len < vi->hdr_len + ETH_HLEN)) { 2551 pr_debug("%s: short packet %i\n", dev->name, len); 2552 DEV_STATS_INC(dev, rx_length_errors); 2553 virtnet_rq_free_buf(vi, rq, buf); 2554 return; 2555 } 2556 2557 /* Sync the memory before touching anything through buf, 2558 * unless virtio core did it already. 2559 */ 2560 if (rq->use_page_pool_dma) { 2561 struct page *page = virt_to_head_page(buf); 2562 int offset = buf - page_address(page); 2563 2564 page_pool_dma_sync_for_cpu(rq->page_pool, page, offset, len); 2565 } 2566 2567 /* About the flags below: 2568 * 1. Save the flags early, as the XDP program might overwrite them. 2569 * These flags ensure packets marked as VIRTIO_NET_HDR_F_DATA_VALID 2570 * stay valid after XDP processing. 2571 * 2. XDP doesn't work with partially checksummed packets (refer to 2572 * virtnet_xdp_set()), so packets marked as 2573 * VIRTIO_NET_HDR_F_NEEDS_CSUM get dropped during XDP processing. 2574 */ 2575 2576 if (vi->mergeable_rx_bufs) { 2577 flags = ((struct virtio_net_common_hdr *)buf)->hdr.flags; 2578 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit, 2579 stats); 2580 } else if (vi->big_packets) { 2581 void *p = page_address((struct page *)buf); 2582 2583 flags = ((struct virtio_net_common_hdr *)p)->hdr.flags; 2584 skb = receive_big(dev, vi, rq, buf, len, stats); 2585 } else { 2586 flags = ((struct virtio_net_common_hdr *)buf)->hdr.flags; 2587 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats); 2588 } 2589 2590 if (unlikely(!skb)) 2591 return; 2592 2593 virtnet_receive_done(vi, rq, skb, flags); 2594 } 2595 2596 static int virtnet_rq_submit(struct receive_queue *rq, char *buf, 2597 int len, void *ctx, gfp_t gfp) 2598 { 2599 if (rq->use_page_pool_dma) { 2600 struct page *page = virt_to_head_page(buf); 2601 dma_addr_t addr = page_pool_get_dma_addr(page) + 2602 (buf - (char *)page_address(page)); 2603 2604 sg_init_table(rq->sg, 1); 2605 sg_fill_dma(rq->sg, addr, len); 2606 return virtqueue_add_inbuf_premapped(rq->vq, rq->sg, 1, 2607 buf, ctx, gfp); 2608 } 2609 2610 sg_init_one(rq->sg, buf, len); 2611 return virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); 2612 } 2613 2614 /* With page_pool, the actual allocation may exceed the requested size 2615 * when the remaining page fragment can't fit another buffer. Encode 2616 * the actual allocation size in ctx so build_skb() gets the correct 2617 * buflen for truesize accounting. 2618 */ 2619 static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq, 2620 gfp_t gfp) 2621 { 2622 unsigned int xdp_headroom = virtnet_get_headroom(vi); 2623 unsigned int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom; 2624 unsigned int alloc_len; 2625 char *buf; 2626 void *ctx; 2627 int err; 2628 2629 len = SKB_DATA_ALIGN(len) + 2630 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 2631 2632 alloc_len = len; 2633 buf = page_pool_alloc_va(rq->page_pool, &alloc_len, gfp); 2634 if (unlikely(!buf)) 2635 return -ENOMEM; 2636 2637 buf += VIRTNET_RX_PAD + xdp_headroom; 2638 2639 ctx = mergeable_len_to_ctx(alloc_len, xdp_headroom); 2640 err = virtnet_rq_submit(rq, buf, vi->hdr_len + GOOD_PACKET_LEN, ctx, gfp); 2641 2642 if (err < 0) 2643 page_pool_put_page(rq->page_pool, virt_to_head_page(buf), -1, false); 2644 return err; 2645 } 2646 2647 static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq, 2648 gfp_t gfp) 2649 { 2650 struct page *first, *list = NULL; 2651 char *p; 2652 int i, err, offset; 2653 2654 sg_init_table(rq->sg, vi->big_packets_num_skbfrags + 2); 2655 2656 /* page in rq->sg[vi->big_packets_num_skbfrags + 1] is list tail */ 2657 for (i = vi->big_packets_num_skbfrags + 1; i > 1; --i) { 2658 first = get_a_page(rq, gfp); 2659 if (!first) { 2660 if (list) 2661 give_pages(rq, list); 2662 return -ENOMEM; 2663 } 2664 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE); 2665 2666 /* chain new page in list head to match sg */ 2667 first->private = (unsigned long)list; 2668 list = first; 2669 } 2670 2671 first = get_a_page(rq, gfp); 2672 if (!first) { 2673 give_pages(rq, list); 2674 return -ENOMEM; 2675 } 2676 p = page_address(first); 2677 2678 /* rq->sg[0], rq->sg[1] share the same page */ 2679 /* a separated rq->sg[0] for header - required in case !any_header_sg */ 2680 sg_set_buf(&rq->sg[0], p, vi->hdr_len); 2681 2682 /* rq->sg[1] for data packet, from offset */ 2683 offset = sizeof(struct padded_vnet_hdr); 2684 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset); 2685 2686 /* chain first in list head */ 2687 first->private = (unsigned long)list; 2688 err = virtqueue_add_inbuf(rq->vq, rq->sg, vi->big_packets_num_skbfrags + 2, 2689 first, gfp); 2690 if (err < 0) 2691 give_pages(rq, first); 2692 2693 return err; 2694 } 2695 2696 static unsigned int get_mergeable_buf_len(struct receive_queue *rq, 2697 struct ewma_pkt_len *avg_pkt_len, 2698 unsigned int room) 2699 { 2700 struct virtnet_info *vi = rq->vq->vdev->priv; 2701 const size_t hdr_len = vi->hdr_len; 2702 unsigned int len; 2703 2704 if (room) 2705 return PAGE_SIZE - room; 2706 2707 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len), 2708 rq->min_buf_len, PAGE_SIZE - hdr_len); 2709 2710 return ALIGN(len, L1_CACHE_BYTES); 2711 } 2712 2713 static int add_recvbuf_mergeable(struct virtnet_info *vi, 2714 struct receive_queue *rq, gfp_t gfp) 2715 { 2716 unsigned int headroom = virtnet_get_headroom(vi); 2717 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 2718 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom); 2719 unsigned int len, alloc_len; 2720 char *buf; 2721 void *ctx; 2722 int err; 2723 2724 /* Extra tailroom is needed to satisfy XDP's assumption. This 2725 * means rx frags coalescing won't work, but consider we've 2726 * disabled GSO for XDP, it won't be a big issue. 2727 */ 2728 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room); 2729 2730 alloc_len = len + room; 2731 buf = page_pool_alloc_va(rq->page_pool, &alloc_len, gfp); 2732 if (unlikely(!buf)) 2733 return -ENOMEM; 2734 2735 buf += headroom; /* advance address leaving hole at front of pkt */ 2736 2737 if (!headroom) 2738 len = alloc_len - room; 2739 2740 ctx = mergeable_len_to_ctx(len + room, headroom); 2741 2742 err = virtnet_rq_submit(rq, buf, len, ctx, gfp); 2743 2744 if (err < 0) 2745 page_pool_put_page(rq->page_pool, virt_to_head_page(buf), -1, false); 2746 return err; 2747 } 2748 2749 /* 2750 * Returns false if we couldn't fill entirely (OOM) and need to retry. 2751 * In XSK mode, it's when the receive buffer is not allocated and 2752 * xsk_use_need_wakeup is not set. 2753 * 2754 * Normally run in the receive path, but can also be run from ndo_open 2755 * before we're receiving packets, or from refill_work which is 2756 * careful to disable receiving (using napi_disable). 2757 */ 2758 static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq, 2759 gfp_t gfp) 2760 { 2761 int err; 2762 2763 if (rq->xsk_pool) { 2764 err = virtnet_add_recvbuf_xsk(vi, rq, rq->xsk_pool, gfp); 2765 goto kick; 2766 } 2767 2768 do { 2769 if (vi->mergeable_rx_bufs) 2770 err = add_recvbuf_mergeable(vi, rq, gfp); 2771 else if (vi->big_packets) 2772 err = add_recvbuf_big(vi, rq, gfp); 2773 else 2774 err = add_recvbuf_small(vi, rq, gfp); 2775 2776 if (err) 2777 break; 2778 } while (rq->vq->num_free); 2779 2780 kick: 2781 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) { 2782 unsigned long flags; 2783 2784 flags = u64_stats_update_begin_irqsave(&rq->stats.syncp); 2785 u64_stats_inc(&rq->stats.kicks); 2786 u64_stats_update_end_irqrestore(&rq->stats.syncp, flags); 2787 } 2788 2789 return err != -ENOMEM; 2790 } 2791 2792 static void skb_recv_done(struct virtqueue *rvq) 2793 { 2794 struct virtnet_info *vi = rvq->vdev->priv; 2795 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)]; 2796 2797 rq->calls++; 2798 virtqueue_napi_schedule(&rq->napi, rvq); 2799 } 2800 2801 static void virtnet_napi_do_enable(struct virtqueue *vq, 2802 struct napi_struct *napi) 2803 { 2804 napi_enable(napi); 2805 2806 /* If all buffers were filled by other side before we napi_enabled, we 2807 * won't get another interrupt, so process any outstanding packets now. 2808 * Call local_bh_enable after to trigger softIRQ processing. 2809 */ 2810 local_bh_disable(); 2811 virtqueue_napi_schedule(napi, vq); 2812 local_bh_enable(); 2813 } 2814 2815 static void virtnet_napi_enable(struct receive_queue *rq) 2816 { 2817 struct virtnet_info *vi = rq->vq->vdev->priv; 2818 int qidx = vq2rxq(rq->vq); 2819 2820 virtnet_napi_do_enable(rq->vq, &rq->napi); 2821 netif_queue_set_napi(vi->dev, qidx, NETDEV_QUEUE_TYPE_RX, &rq->napi); 2822 } 2823 2824 static void virtnet_napi_tx_enable(struct send_queue *sq) 2825 { 2826 struct virtnet_info *vi = sq->vq->vdev->priv; 2827 struct napi_struct *napi = &sq->napi; 2828 int qidx = vq2txq(sq->vq); 2829 2830 if (!napi->weight) 2831 return; 2832 2833 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only 2834 * enable the feature if this is likely affine with the transmit path. 2835 */ 2836 if (!vi->affinity_hint_set) { 2837 napi->weight = 0; 2838 return; 2839 } 2840 2841 virtnet_napi_do_enable(sq->vq, napi); 2842 netif_queue_set_napi(vi->dev, qidx, NETDEV_QUEUE_TYPE_TX, napi); 2843 } 2844 2845 static void virtnet_napi_tx_disable(struct send_queue *sq) 2846 { 2847 struct virtnet_info *vi = sq->vq->vdev->priv; 2848 struct napi_struct *napi = &sq->napi; 2849 int qidx = vq2txq(sq->vq); 2850 2851 if (napi->weight) { 2852 netif_queue_set_napi(vi->dev, qidx, NETDEV_QUEUE_TYPE_TX, NULL); 2853 napi_disable(napi); 2854 } 2855 } 2856 2857 static void virtnet_napi_disable(struct receive_queue *rq) 2858 { 2859 struct virtnet_info *vi = rq->vq->vdev->priv; 2860 struct napi_struct *napi = &rq->napi; 2861 int qidx = vq2rxq(rq->vq); 2862 2863 netif_queue_set_napi(vi->dev, qidx, NETDEV_QUEUE_TYPE_RX, NULL); 2864 napi_disable(napi); 2865 } 2866 2867 static int virtnet_receive_xsk_bufs(struct virtnet_info *vi, 2868 struct receive_queue *rq, 2869 int budget, 2870 unsigned int *xdp_xmit, 2871 struct virtnet_rq_stats *stats) 2872 { 2873 unsigned int len; 2874 int packets = 0; 2875 void *buf; 2876 2877 while (packets < budget) { 2878 buf = virtqueue_get_buf(rq->vq, &len); 2879 if (!buf) 2880 break; 2881 2882 virtnet_receive_xsk_buf(vi, rq, buf, len, xdp_xmit, stats); 2883 packets++; 2884 } 2885 2886 return packets; 2887 } 2888 2889 static int virtnet_receive_packets(struct virtnet_info *vi, 2890 struct receive_queue *rq, 2891 int budget, 2892 unsigned int *xdp_xmit, 2893 struct virtnet_rq_stats *stats) 2894 { 2895 unsigned int len; 2896 int packets = 0; 2897 void *buf; 2898 2899 if (rq->page_pool) { 2900 void *ctx; 2901 while (packets < budget && 2902 (buf = virtnet_rq_get_buf(rq, &len, &ctx))) { 2903 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, stats); 2904 packets++; 2905 } 2906 } else { 2907 while (packets < budget && 2908 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) { 2909 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, stats); 2910 packets++; 2911 } 2912 } 2913 2914 return packets; 2915 } 2916 2917 static int virtnet_receive(struct receive_queue *rq, int budget, 2918 unsigned int *xdp_xmit) 2919 { 2920 struct virtnet_info *vi = rq->vq->vdev->priv; 2921 struct virtnet_rq_stats stats = {}; 2922 int i, packets; 2923 2924 if (rq->xsk_pool) 2925 packets = virtnet_receive_xsk_bufs(vi, rq, budget, xdp_xmit, &stats); 2926 else 2927 packets = virtnet_receive_packets(vi, rq, budget, xdp_xmit, &stats); 2928 2929 u64_stats_set(&stats.packets, packets); 2930 if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) { 2931 if (!try_fill_recv(vi, rq, GFP_ATOMIC)) 2932 /* We need to retry refilling in the next NAPI poll so 2933 * we must return budget to make sure the NAPI is 2934 * repolled. 2935 */ 2936 packets = budget; 2937 } 2938 2939 u64_stats_update_begin(&rq->stats.syncp); 2940 for (i = 0; i < ARRAY_SIZE(virtnet_rq_stats_desc); i++) { 2941 size_t offset = virtnet_rq_stats_desc[i].offset; 2942 u64_stats_t *item, *src; 2943 2944 item = (u64_stats_t *)((u8 *)&rq->stats + offset); 2945 src = (u64_stats_t *)((u8 *)&stats + offset); 2946 u64_stats_add(item, u64_stats_read(src)); 2947 } 2948 2949 u64_stats_add(&rq->stats.packets, u64_stats_read(&stats.packets)); 2950 u64_stats_add(&rq->stats.bytes, u64_stats_read(&stats.bytes)); 2951 2952 u64_stats_update_end(&rq->stats.syncp); 2953 2954 return packets; 2955 } 2956 2957 static void virtnet_poll_cleantx(struct receive_queue *rq, int budget) 2958 { 2959 struct virtnet_info *vi = rq->vq->vdev->priv; 2960 unsigned int index = vq2rxq(rq->vq); 2961 struct send_queue *sq = &vi->sq[index]; 2962 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index); 2963 2964 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index)) 2965 return; 2966 2967 if (__netif_tx_trylock(txq)) { 2968 if (sq->reset) { 2969 __netif_tx_unlock(txq); 2970 return; 2971 } 2972 2973 do { 2974 virtqueue_disable_cb(sq->vq); 2975 free_old_xmit(sq, txq, !!budget); 2976 } while (unlikely(!virtqueue_enable_cb_delayed(sq->vq))); 2977 2978 if (sq->vq->num_free >= MAX_SKB_FRAGS + 2) 2979 virtnet_tx_wake_queue(vi, sq); 2980 2981 __netif_tx_unlock(txq); 2982 } 2983 } 2984 2985 static void virtnet_rx_dim_update(struct virtnet_info *vi, struct receive_queue *rq) 2986 { 2987 struct dim_sample cur_sample = {}; 2988 2989 if (!rq->packets_in_napi) 2990 return; 2991 2992 /* Don't need protection when fetching stats, since fetcher and 2993 * updater of the stats are in same context 2994 */ 2995 dim_update_sample(rq->calls, 2996 u64_stats_read(&rq->stats.packets), 2997 u64_stats_read(&rq->stats.bytes), 2998 &cur_sample); 2999 3000 net_dim(&rq->dim, &cur_sample); 3001 rq->packets_in_napi = 0; 3002 } 3003 3004 static int virtnet_poll(struct napi_struct *napi, int budget) 3005 { 3006 struct receive_queue *rq = 3007 container_of(napi, struct receive_queue, napi); 3008 struct virtnet_info *vi = rq->vq->vdev->priv; 3009 struct send_queue *sq; 3010 unsigned int received; 3011 unsigned int xdp_xmit = 0; 3012 bool napi_complete; 3013 3014 if (budget) 3015 virtqueue_disable_cb(rq->vq); 3016 3017 virtnet_poll_cleantx(rq, budget); 3018 3019 received = virtnet_receive(rq, budget, &xdp_xmit); 3020 rq->packets_in_napi += received; 3021 3022 if (xdp_xmit & VIRTIO_XDP_REDIR) 3023 xdp_do_flush(); 3024 3025 /* Out of packets? */ 3026 if (received < budget) { 3027 napi_complete = virtqueue_napi_complete(napi, rq->vq, received); 3028 /* Intentionally not taking dim_lock here. This may result in a 3029 * spurious net_dim call. But if that happens virtnet_rx_dim_work 3030 * will not act on the scheduled work. 3031 */ 3032 if (napi_complete && rq->dim_enabled) 3033 virtnet_rx_dim_update(vi, rq); 3034 } 3035 3036 if (xdp_xmit & VIRTIO_XDP_TX) { 3037 sq = virtnet_xdp_get_sq(vi); 3038 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) { 3039 u64_stats_update_begin(&sq->stats.syncp); 3040 u64_stats_inc(&sq->stats.kicks); 3041 u64_stats_update_end(&sq->stats.syncp); 3042 } 3043 virtnet_xdp_put_sq(vi, sq); 3044 } 3045 3046 return received; 3047 } 3048 3049 static void virtnet_disable_queue_pair(struct virtnet_info *vi, int qp_index) 3050 { 3051 virtnet_napi_tx_disable(&vi->sq[qp_index]); 3052 virtnet_napi_disable(&vi->rq[qp_index]); 3053 xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq); 3054 } 3055 3056 static int virtnet_enable_queue_pair(struct virtnet_info *vi, int qp_index) 3057 { 3058 struct net_device *dev = vi->dev; 3059 int err; 3060 3061 err = xdp_rxq_info_reg(&vi->rq[qp_index].xdp_rxq, dev, qp_index, 3062 vi->rq[qp_index].napi.napi_id); 3063 if (err < 0) 3064 return err; 3065 3066 err = xdp_rxq_info_reg_mem_model(&vi->rq[qp_index].xdp_rxq, 3067 vi->rq[qp_index].page_pool ? 3068 MEM_TYPE_PAGE_POOL : 3069 MEM_TYPE_PAGE_SHARED, 3070 vi->rq[qp_index].page_pool); 3071 if (err < 0) 3072 goto err_xdp_reg_mem_model; 3073 3074 virtnet_napi_enable(&vi->rq[qp_index]); 3075 virtnet_napi_tx_enable(&vi->sq[qp_index]); 3076 3077 return 0; 3078 3079 err_xdp_reg_mem_model: 3080 xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq); 3081 return err; 3082 } 3083 3084 static void virtnet_cancel_dim(struct virtnet_info *vi, struct dim *dim) 3085 { 3086 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 3087 return; 3088 net_dim_work_cancel(dim); 3089 } 3090 3091 static void virtnet_update_settings(struct virtnet_info *vi) 3092 { 3093 u32 speed; 3094 u8 duplex; 3095 3096 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX)) 3097 return; 3098 3099 virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed); 3100 3101 if (ethtool_validate_speed(speed)) 3102 vi->speed = speed; 3103 3104 virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex); 3105 3106 if (ethtool_validate_duplex(duplex)) 3107 vi->duplex = duplex; 3108 } 3109 3110 static int virtnet_create_page_pools(struct virtnet_info *vi) 3111 { 3112 int i, err; 3113 3114 if (vi->big_packets && !vi->mergeable_rx_bufs) 3115 return 0; 3116 3117 for (i = 0; i < vi->max_queue_pairs; i++) { 3118 struct receive_queue *rq = &vi->rq[i]; 3119 struct page_pool_params pp_params = { 0 }; 3120 struct device *dma_dev; 3121 3122 if (rq->page_pool) 3123 continue; 3124 3125 if (rq->xsk_pool) 3126 continue; 3127 3128 pp_params.order = 0; 3129 pp_params.pool_size = virtqueue_get_vring_size(rq->vq); 3130 pp_params.nid = dev_to_node(vi->vdev->dev.parent); 3131 pp_params.netdev = vi->dev; 3132 pp_params.napi = &rq->napi; 3133 3134 /* Use page_pool DMA mapping if backend supports DMA API. 3135 * DMA_SYNC_DEV is needed for non-coherent archs on recycle. 3136 */ 3137 dma_dev = virtqueue_dma_dev(rq->vq); 3138 if (dma_dev) { 3139 pp_params.dev = dma_dev; 3140 pp_params.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV; 3141 pp_params.dma_dir = DMA_FROM_DEVICE; 3142 pp_params.max_len = PAGE_SIZE; 3143 pp_params.offset = 0; 3144 rq->use_page_pool_dma = true; 3145 } else { 3146 /* No DMA API (e.g., VDUSE): page_pool for allocation only. */ 3147 pp_params.flags = 0; 3148 rq->use_page_pool_dma = false; 3149 } 3150 3151 rq->page_pool = page_pool_create(&pp_params); 3152 if (IS_ERR(rq->page_pool)) { 3153 err = PTR_ERR(rq->page_pool); 3154 rq->page_pool = NULL; 3155 goto err_cleanup; 3156 } 3157 } 3158 return 0; 3159 3160 err_cleanup: 3161 while (--i >= 0) { 3162 struct receive_queue *rq = &vi->rq[i]; 3163 3164 if (rq->page_pool) { 3165 page_pool_destroy(rq->page_pool); 3166 rq->page_pool = NULL; 3167 } 3168 } 3169 return err; 3170 } 3171 3172 static void virtnet_destroy_page_pools(struct virtnet_info *vi) 3173 { 3174 int i; 3175 3176 for (i = 0; i < vi->max_queue_pairs; i++) { 3177 struct receive_queue *rq = &vi->rq[i]; 3178 3179 if (rq->page_pool) { 3180 page_pool_destroy(rq->page_pool); 3181 rq->page_pool = NULL; 3182 } 3183 } 3184 } 3185 3186 static int virtnet_open(struct net_device *dev) 3187 { 3188 struct virtnet_info *vi = netdev_priv(dev); 3189 int i, err; 3190 3191 for (i = 0; i < vi->max_queue_pairs; i++) { 3192 if (i < vi->curr_queue_pairs) 3193 /* Pre-fill rq agressively, to make sure we are ready to 3194 * get packets immediately. 3195 */ 3196 try_fill_recv(vi, &vi->rq[i], GFP_KERNEL); 3197 3198 err = virtnet_enable_queue_pair(vi, i); 3199 if (err < 0) 3200 goto err_enable_qp; 3201 } 3202 3203 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { 3204 if (vi->status & VIRTIO_NET_S_LINK_UP) 3205 netif_carrier_on(vi->dev); 3206 virtio_config_driver_enable(vi->vdev); 3207 } else { 3208 vi->status = VIRTIO_NET_S_LINK_UP; 3209 netif_carrier_on(dev); 3210 } 3211 3212 return 0; 3213 3214 err_enable_qp: 3215 for (i--; i >= 0; i--) { 3216 virtnet_disable_queue_pair(vi, i); 3217 virtnet_cancel_dim(vi, &vi->rq[i].dim); 3218 } 3219 3220 return err; 3221 } 3222 3223 static int virtnet_poll_tx(struct napi_struct *napi, int budget) 3224 { 3225 struct send_queue *sq = container_of(napi, struct send_queue, napi); 3226 struct virtnet_info *vi = sq->vq->vdev->priv; 3227 unsigned int index = vq2txq(sq->vq); 3228 struct netdev_queue *txq; 3229 int opaque, xsk_done = 0; 3230 bool done; 3231 3232 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) { 3233 /* We don't need to enable cb for XDP */ 3234 napi_complete_done(napi, 0); 3235 return 0; 3236 } 3237 3238 txq = netdev_get_tx_queue(vi->dev, index); 3239 __netif_tx_lock(txq, raw_smp_processor_id()); 3240 virtqueue_disable_cb(sq->vq); 3241 3242 if (sq->xsk_pool) 3243 xsk_done = virtnet_xsk_xmit(sq, sq->xsk_pool, budget); 3244 else 3245 free_old_xmit(sq, txq, !!budget); 3246 3247 if (sq->vq->num_free >= MAX_SKB_FRAGS + 2) 3248 virtnet_tx_wake_queue(vi, sq); 3249 3250 if (xsk_done >= budget) { 3251 __netif_tx_unlock(txq); 3252 return budget; 3253 } 3254 3255 opaque = virtqueue_enable_cb_prepare(sq->vq); 3256 3257 done = napi_complete_done(napi, 0); 3258 3259 if (!done) 3260 virtqueue_disable_cb(sq->vq); 3261 3262 __netif_tx_unlock(txq); 3263 3264 if (done) { 3265 if (unlikely(virtqueue_poll(sq->vq, opaque))) { 3266 if (napi_schedule_prep(napi)) { 3267 __netif_tx_lock(txq, raw_smp_processor_id()); 3268 virtqueue_disable_cb(sq->vq); 3269 __netif_tx_unlock(txq); 3270 __napi_schedule(napi); 3271 } 3272 } 3273 } 3274 3275 return 0; 3276 } 3277 3278 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb, bool orphan) 3279 { 3280 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; 3281 struct virtnet_info *vi = sq->vq->vdev->priv; 3282 struct virtio_net_hdr_v1_hash_tunnel *hdr; 3283 int num_sg; 3284 unsigned hdr_len = vi->hdr_len; 3285 bool feature_hdrlen; 3286 bool can_push; 3287 3288 feature_hdrlen = virtio_has_feature(vi->vdev, 3289 VIRTIO_NET_F_GUEST_HDRLEN); 3290 3291 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest); 3292 3293 /* Make sure it's safe to cast between formats */ 3294 BUILD_BUG_ON(__alignof__(*hdr) != __alignof__(hdr->hash_hdr)); 3295 BUILD_BUG_ON(__alignof__(*hdr) != __alignof__(hdr->hash_hdr.hdr)); 3296 3297 can_push = vi->any_header_sg && 3298 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) && 3299 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len; 3300 /* Even if we can, don't push here yet as this would skew 3301 * csum_start offset below. */ 3302 if (can_push) 3303 hdr = (struct virtio_net_hdr_v1_hash_tunnel *)(skb->data - 3304 hdr_len); 3305 else 3306 hdr = &skb_vnet_common_hdr(skb)->tnl_hdr; 3307 3308 if (virtio_net_hdr_tnl_from_skb(skb, hdr, vi->tx_tnl, 3309 virtio_is_little_endian(vi->vdev), 0, 3310 false, feature_hdrlen)) 3311 return -EPROTO; 3312 3313 if (vi->mergeable_rx_bufs) 3314 hdr->hash_hdr.hdr.num_buffers = 0; 3315 3316 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2)); 3317 if (can_push) { 3318 __skb_push(skb, hdr_len); 3319 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len); 3320 if (unlikely(num_sg < 0)) 3321 return num_sg; 3322 /* Pull header back to avoid skew in tx bytes calculations. */ 3323 __skb_pull(skb, hdr_len); 3324 } else { 3325 sg_set_buf(sq->sg, hdr, hdr_len); 3326 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len); 3327 if (unlikely(num_sg < 0)) 3328 return num_sg; 3329 num_sg++; 3330 } 3331 3332 return virtnet_add_outbuf(sq, num_sg, skb, 3333 orphan ? VIRTNET_XMIT_TYPE_SKB_ORPHAN : VIRTNET_XMIT_TYPE_SKB); 3334 } 3335 3336 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) 3337 { 3338 struct virtnet_info *vi = netdev_priv(dev); 3339 int qnum = skb_get_queue_mapping(skb); 3340 struct send_queue *sq = &vi->sq[qnum]; 3341 int err; 3342 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); 3343 bool xmit_more = netdev_xmit_more(); 3344 bool use_napi = sq->napi.weight; 3345 bool kick; 3346 3347 if (!use_napi) 3348 free_old_xmit(sq, txq, false); 3349 else 3350 virtqueue_disable_cb(sq->vq); 3351 3352 /* timestamp packet in software */ 3353 skb_tx_timestamp(skb); 3354 3355 /* Try to transmit */ 3356 err = xmit_skb(sq, skb, !use_napi); 3357 3358 /* This should not happen! */ 3359 if (unlikely(err)) { 3360 DEV_STATS_INC(dev, tx_fifo_errors); 3361 if (net_ratelimit()) 3362 dev_warn(&dev->dev, 3363 "Unexpected TXQ (%d) queue failure: %d\n", 3364 qnum, err); 3365 DEV_STATS_INC(dev, tx_dropped); 3366 dev_kfree_skb_any(skb); 3367 return NETDEV_TX_OK; 3368 } 3369 3370 /* Don't wait up for transmitted skbs to be freed. */ 3371 if (!use_napi) { 3372 skb_orphan(skb); 3373 skb_dst_drop(skb); 3374 nf_reset_ct(skb); 3375 } 3376 3377 if (use_napi) 3378 tx_may_stop(vi, dev, sq); 3379 else 3380 check_sq_full_and_disable(vi, dev,sq); 3381 3382 kick = use_napi ? __netdev_tx_sent_queue(txq, skb->len, xmit_more) : 3383 !xmit_more || netif_xmit_stopped(txq); 3384 if (kick) { 3385 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) { 3386 u64_stats_update_begin(&sq->stats.syncp); 3387 u64_stats_inc(&sq->stats.kicks); 3388 u64_stats_update_end(&sq->stats.syncp); 3389 } 3390 } 3391 3392 if (use_napi && kick && unlikely(!virtqueue_enable_cb_delayed(sq->vq))) 3393 virtqueue_napi_schedule(&sq->napi, sq->vq); 3394 3395 return NETDEV_TX_OK; 3396 } 3397 3398 static void virtnet_rx_pause(struct virtnet_info *vi, 3399 struct receive_queue *rq) 3400 { 3401 bool running = netif_running(vi->dev); 3402 3403 if (running) { 3404 virtnet_napi_disable(rq); 3405 virtnet_cancel_dim(vi, &rq->dim); 3406 } 3407 } 3408 3409 static void virtnet_rx_pause_all(struct virtnet_info *vi) 3410 { 3411 int i; 3412 3413 for (i = 0; i < vi->max_queue_pairs; i++) 3414 virtnet_rx_pause(vi, &vi->rq[i]); 3415 } 3416 3417 static void virtnet_rx_resume(struct virtnet_info *vi, 3418 struct receive_queue *rq, 3419 bool refill) 3420 { 3421 if (netif_running(vi->dev)) { 3422 /* Pre-fill rq agressively, to make sure we are ready to get 3423 * packets immediately. 3424 */ 3425 if (refill) 3426 try_fill_recv(vi, rq, GFP_KERNEL); 3427 3428 virtnet_napi_enable(rq); 3429 } 3430 } 3431 3432 static void virtnet_rx_resume_all(struct virtnet_info *vi) 3433 { 3434 int i; 3435 3436 for (i = 0; i < vi->max_queue_pairs; i++) { 3437 if (i < vi->curr_queue_pairs) 3438 virtnet_rx_resume(vi, &vi->rq[i], true); 3439 else 3440 virtnet_rx_resume(vi, &vi->rq[i], false); 3441 } 3442 } 3443 3444 static int virtnet_rx_resize(struct virtnet_info *vi, 3445 struct receive_queue *rq, u32 ring_num) 3446 { 3447 int err, qindex; 3448 3449 qindex = rq - vi->rq; 3450 3451 virtnet_rx_pause(vi, rq); 3452 3453 err = virtqueue_resize(rq->vq, ring_num, virtnet_rq_unmap_free_buf, NULL); 3454 if (err) 3455 netdev_err(vi->dev, "resize rx fail: rx queue index: %d err: %d\n", qindex, err); 3456 3457 virtnet_rx_resume(vi, rq, true); 3458 return err; 3459 } 3460 3461 static void virtnet_tx_pause(struct virtnet_info *vi, struct send_queue *sq) 3462 { 3463 bool running = netif_running(vi->dev); 3464 struct netdev_queue *txq; 3465 int qindex; 3466 3467 qindex = sq - vi->sq; 3468 3469 if (running) 3470 virtnet_napi_tx_disable(sq); 3471 3472 txq = netdev_get_tx_queue(vi->dev, qindex); 3473 3474 /* 1. wait all ximt complete 3475 * 2. fix the race of netif_stop_subqueue() vs netif_start_subqueue() 3476 */ 3477 __netif_tx_lock_bh(txq); 3478 3479 /* Prevent rx poll from accessing sq. */ 3480 sq->reset = true; 3481 3482 /* Prevent the upper layer from trying to send packets. */ 3483 netif_stop_subqueue(vi->dev, qindex); 3484 u64_stats_update_begin(&sq->stats.syncp); 3485 u64_stats_inc(&sq->stats.stop); 3486 u64_stats_update_end(&sq->stats.syncp); 3487 3488 __netif_tx_unlock_bh(txq); 3489 } 3490 3491 static void virtnet_tx_resume(struct virtnet_info *vi, struct send_queue *sq) 3492 { 3493 bool running = netif_running(vi->dev); 3494 struct netdev_queue *txq; 3495 int qindex; 3496 3497 qindex = sq - vi->sq; 3498 3499 txq = netdev_get_tx_queue(vi->dev, qindex); 3500 3501 __netif_tx_lock_bh(txq); 3502 sq->reset = false; 3503 virtnet_tx_wake_queue(vi, sq); 3504 __netif_tx_unlock_bh(txq); 3505 3506 if (running) 3507 virtnet_napi_tx_enable(sq); 3508 } 3509 3510 static int virtnet_tx_resize(struct virtnet_info *vi, struct send_queue *sq, 3511 u32 ring_num) 3512 { 3513 int qindex, err; 3514 3515 if (ring_num <= MAX_SKB_FRAGS + 2) { 3516 netdev_err(vi->dev, "tx size (%d) cannot be smaller than %d\n", 3517 ring_num, MAX_SKB_FRAGS + 2); 3518 return -EINVAL; 3519 } 3520 3521 qindex = sq - vi->sq; 3522 3523 virtnet_tx_pause(vi, sq); 3524 3525 err = virtqueue_resize(sq->vq, ring_num, virtnet_sq_free_unused_buf, 3526 virtnet_sq_free_unused_buf_done); 3527 if (err) 3528 netdev_err(vi->dev, "resize tx fail: tx queue index: %d err: %d\n", qindex, err); 3529 3530 virtnet_tx_resume(vi, sq); 3531 3532 return err; 3533 } 3534 3535 /* 3536 * Send command via the control virtqueue and check status. Commands 3537 * supported by the hypervisor, as indicated by feature bits, should 3538 * never fail unless improperly formatted. 3539 */ 3540 static bool virtnet_send_command_reply(struct virtnet_info *vi, u8 class, u8 cmd, 3541 struct scatterlist *out, 3542 struct scatterlist *in) 3543 { 3544 struct scatterlist *sgs[5], hdr, stat; 3545 u32 out_num = 0, tmp, in_num = 0; 3546 bool ok; 3547 int ret; 3548 3549 /* Caller should know better */ 3550 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)); 3551 3552 mutex_lock(&vi->cvq_lock); 3553 vi->ctrl->status = ~0; 3554 vi->ctrl->hdr.class = class; 3555 vi->ctrl->hdr.cmd = cmd; 3556 /* Add header */ 3557 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr)); 3558 sgs[out_num++] = &hdr; 3559 3560 if (out) 3561 sgs[out_num++] = out; 3562 3563 /* Add return status. */ 3564 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status)); 3565 sgs[out_num + in_num++] = &stat; 3566 3567 if (in) 3568 sgs[out_num + in_num++] = in; 3569 3570 BUG_ON(out_num + in_num > ARRAY_SIZE(sgs)); 3571 ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, in_num, vi, GFP_ATOMIC); 3572 if (ret < 0) { 3573 dev_warn(&vi->vdev->dev, 3574 "Failed to add sgs for command vq: %d\n.", ret); 3575 mutex_unlock(&vi->cvq_lock); 3576 return false; 3577 } 3578 3579 if (unlikely(!virtqueue_kick(vi->cvq))) 3580 goto unlock; 3581 3582 /* Spin for a response, the kick causes an ioport write, trapping 3583 * into the hypervisor, so the request should be handled immediately. 3584 */ 3585 while (!virtqueue_get_buf(vi->cvq, &tmp) && 3586 !virtqueue_is_broken(vi->cvq)) { 3587 cond_resched(); 3588 cpu_relax(); 3589 } 3590 3591 unlock: 3592 ok = vi->ctrl->status == VIRTIO_NET_OK; 3593 mutex_unlock(&vi->cvq_lock); 3594 return ok; 3595 } 3596 3597 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, 3598 struct scatterlist *out) 3599 { 3600 return virtnet_send_command_reply(vi, class, cmd, out, NULL); 3601 } 3602 3603 static int virtnet_set_mac_address(struct net_device *dev, void *p) 3604 { 3605 struct virtnet_info *vi = netdev_priv(dev); 3606 struct virtio_device *vdev = vi->vdev; 3607 int ret; 3608 struct sockaddr *addr; 3609 struct scatterlist sg; 3610 3611 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 3612 return -EOPNOTSUPP; 3613 3614 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL); 3615 if (!addr) 3616 return -ENOMEM; 3617 3618 ret = eth_prepare_mac_addr_change(dev, addr); 3619 if (ret) 3620 goto out; 3621 3622 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { 3623 sg_init_one(&sg, addr->sa_data, dev->addr_len); 3624 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 3625 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { 3626 dev_warn(&vdev->dev, 3627 "Failed to set mac address by vq command.\n"); 3628 ret = -EINVAL; 3629 goto out; 3630 } 3631 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && 3632 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) { 3633 unsigned int i; 3634 3635 /* Naturally, this has an atomicity problem. */ 3636 for (i = 0; i < dev->addr_len; i++) 3637 virtio_cwrite8(vdev, 3638 offsetof(struct virtio_net_config, mac) + 3639 i, addr->sa_data[i]); 3640 } 3641 3642 eth_commit_mac_addr_change(dev, p); 3643 ret = 0; 3644 3645 out: 3646 kfree(addr); 3647 return ret; 3648 } 3649 3650 static void virtnet_stats(struct net_device *dev, 3651 struct rtnl_link_stats64 *tot) 3652 { 3653 struct virtnet_info *vi = netdev_priv(dev); 3654 unsigned int start; 3655 int i; 3656 3657 for (i = 0; i < vi->max_queue_pairs; i++) { 3658 u64 tpackets, tbytes, terrors, rpackets, rbytes, rdrops; 3659 struct receive_queue *rq = &vi->rq[i]; 3660 struct send_queue *sq = &vi->sq[i]; 3661 3662 do { 3663 start = u64_stats_fetch_begin(&sq->stats.syncp); 3664 tpackets = u64_stats_read(&sq->stats.packets); 3665 tbytes = u64_stats_read(&sq->stats.bytes); 3666 terrors = u64_stats_read(&sq->stats.tx_timeouts); 3667 } while (u64_stats_fetch_retry(&sq->stats.syncp, start)); 3668 3669 do { 3670 start = u64_stats_fetch_begin(&rq->stats.syncp); 3671 rpackets = u64_stats_read(&rq->stats.packets); 3672 rbytes = u64_stats_read(&rq->stats.bytes); 3673 rdrops = u64_stats_read(&rq->stats.drops); 3674 } while (u64_stats_fetch_retry(&rq->stats.syncp, start)); 3675 3676 tot->rx_packets += rpackets; 3677 tot->tx_packets += tpackets; 3678 tot->rx_bytes += rbytes; 3679 tot->tx_bytes += tbytes; 3680 tot->rx_dropped += rdrops; 3681 tot->tx_errors += terrors; 3682 } 3683 3684 tot->tx_dropped = DEV_STATS_READ(dev, tx_dropped); 3685 tot->tx_fifo_errors = DEV_STATS_READ(dev, tx_fifo_errors); 3686 tot->rx_length_errors = DEV_STATS_READ(dev, rx_length_errors); 3687 tot->rx_frame_errors = DEV_STATS_READ(dev, rx_frame_errors); 3688 } 3689 3690 static void virtnet_ack_link_announce(struct virtnet_info *vi) 3691 { 3692 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, 3693 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL)) 3694 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); 3695 } 3696 3697 static bool virtnet_commit_rss_command(struct virtnet_info *vi); 3698 3699 static void virtnet_rss_update_by_qpairs(struct virtnet_info *vi, u16 queue_pairs) 3700 { 3701 u32 indir_val = 0; 3702 int i = 0; 3703 3704 for (; i < vi->rss_indir_table_size; ++i) { 3705 indir_val = ethtool_rxfh_indir_default(i, queue_pairs); 3706 vi->rss_hdr->indirection_table[i] = cpu_to_le16(indir_val); 3707 } 3708 vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs); 3709 } 3710 3711 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) 3712 { 3713 struct virtio_net_ctrl_mq *mq __free(kfree) = NULL; 3714 struct virtio_net_rss_config_hdr *old_rss_hdr; 3715 struct virtio_net_rss_config_trailer old_rss_trailer; 3716 struct net_device *dev = vi->dev; 3717 struct scatterlist sg; 3718 3719 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) 3720 return 0; 3721 3722 /* Firstly check if we need update rss. Do updating if both (1) rss enabled and 3723 * (2) no user configuration. 3724 * 3725 * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is, 3726 * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs 3727 * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly. 3728 */ 3729 if (vi->has_rss && !netif_is_rxfh_configured(dev)) { 3730 old_rss_hdr = vi->rss_hdr; 3731 old_rss_trailer = vi->rss_trailer; 3732 vi->rss_hdr = devm_kzalloc(&vi->vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL); 3733 if (!vi->rss_hdr) { 3734 vi->rss_hdr = old_rss_hdr; 3735 return -ENOMEM; 3736 } 3737 3738 *vi->rss_hdr = *old_rss_hdr; 3739 virtnet_rss_update_by_qpairs(vi, queue_pairs); 3740 3741 if (!virtnet_commit_rss_command(vi)) { 3742 /* restore ctrl_rss if commit_rss_command failed */ 3743 devm_kfree(&vi->vdev->dev, vi->rss_hdr); 3744 vi->rss_hdr = old_rss_hdr; 3745 vi->rss_trailer = old_rss_trailer; 3746 3747 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d, because committing RSS failed\n", 3748 queue_pairs); 3749 return -EINVAL; 3750 } 3751 devm_kfree(&vi->vdev->dev, old_rss_hdr); 3752 goto succ; 3753 } 3754 3755 mq = kzalloc_obj(*mq); 3756 if (!mq) 3757 return -ENOMEM; 3758 3759 mq->virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs); 3760 sg_init_one(&sg, mq, sizeof(*mq)); 3761 3762 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 3763 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) { 3764 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", 3765 queue_pairs); 3766 return -EINVAL; 3767 } 3768 3769 /* Keep max_tx_vq in sync so that a later RSS command does not 3770 * revert queue_pairs to a stale value. 3771 */ 3772 if (vi->has_rss) 3773 vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs); 3774 succ: 3775 vi->curr_queue_pairs = queue_pairs; 3776 if (dev->flags & IFF_UP) { 3777 local_bh_disable(); 3778 for (int i = 0; i < vi->curr_queue_pairs; ++i) 3779 virtqueue_napi_schedule(&vi->rq[i].napi, vi->rq[i].vq); 3780 local_bh_enable(); 3781 } 3782 3783 return 0; 3784 } 3785 3786 static int virtnet_close(struct net_device *dev) 3787 { 3788 struct virtnet_info *vi = netdev_priv(dev); 3789 int i; 3790 3791 /* Prevent the config change callback from changing carrier 3792 * after close 3793 */ 3794 virtio_config_driver_disable(vi->vdev); 3795 /* Stop getting status/speed updates: we don't care until next 3796 * open 3797 */ 3798 cancel_work_sync(&vi->config_work); 3799 3800 for (i = 0; i < vi->max_queue_pairs; i++) { 3801 virtnet_disable_queue_pair(vi, i); 3802 virtnet_cancel_dim(vi, &vi->rq[i].dim); 3803 } 3804 3805 netif_carrier_off(dev); 3806 3807 return 0; 3808 } 3809 3810 static void virtnet_rx_mode_work(struct work_struct *work) 3811 { 3812 struct virtnet_info *vi = 3813 container_of(work, struct virtnet_info, rx_mode_work); 3814 u8 *promisc_allmulti __free(kfree) = NULL; 3815 struct net_device *dev = vi->dev; 3816 struct scatterlist sg[2]; 3817 struct virtio_net_ctrl_mac *mac_data; 3818 struct netdev_hw_addr *ha; 3819 int uc_count; 3820 int mc_count; 3821 void *buf; 3822 int i; 3823 3824 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */ 3825 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) 3826 return; 3827 3828 promisc_allmulti = kzalloc_obj(*promisc_allmulti); 3829 if (!promisc_allmulti) { 3830 dev_warn(&dev->dev, "Failed to set RX mode, no memory.\n"); 3831 return; 3832 } 3833 3834 rtnl_lock(); 3835 3836 *promisc_allmulti = !!(dev->flags & IFF_PROMISC); 3837 sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti)); 3838 3839 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 3840 VIRTIO_NET_CTRL_RX_PROMISC, sg)) 3841 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", 3842 *promisc_allmulti ? "en" : "dis"); 3843 3844 *promisc_allmulti = !!(dev->flags & IFF_ALLMULTI); 3845 sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti)); 3846 3847 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 3848 VIRTIO_NET_CTRL_RX_ALLMULTI, sg)) 3849 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", 3850 *promisc_allmulti ? "en" : "dis"); 3851 3852 netif_addr_lock_bh(dev); 3853 3854 uc_count = netdev_uc_count(dev); 3855 mc_count = netdev_mc_count(dev); 3856 /* MAC filter - use one buffer for both lists */ 3857 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + 3858 (2 * sizeof(mac_data->entries)), GFP_ATOMIC); 3859 mac_data = buf; 3860 if (!buf) { 3861 netif_addr_unlock_bh(dev); 3862 rtnl_unlock(); 3863 return; 3864 } 3865 3866 sg_init_table(sg, 2); 3867 3868 /* Store the unicast list and count in the front of the buffer */ 3869 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count); 3870 i = 0; 3871 netdev_for_each_uc_addr(ha, dev) 3872 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 3873 3874 sg_set_buf(&sg[0], mac_data, 3875 sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); 3876 3877 /* multicast list and count fill the end */ 3878 mac_data = (void *)&mac_data->macs[uc_count][0]; 3879 3880 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count); 3881 i = 0; 3882 netdev_for_each_mc_addr(ha, dev) 3883 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 3884 3885 netif_addr_unlock_bh(dev); 3886 3887 sg_set_buf(&sg[1], mac_data, 3888 sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); 3889 3890 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 3891 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg)) 3892 dev_warn(&dev->dev, "Failed to set MAC filter table.\n"); 3893 3894 rtnl_unlock(); 3895 3896 kfree(buf); 3897 } 3898 3899 static void virtnet_set_rx_mode(struct net_device *dev) 3900 { 3901 struct virtnet_info *vi = netdev_priv(dev); 3902 3903 if (vi->rx_mode_work_enabled) 3904 schedule_work(&vi->rx_mode_work); 3905 } 3906 3907 static int virtnet_vlan_rx_add_vid(struct net_device *dev, 3908 __be16 proto, u16 vid) 3909 { 3910 struct virtnet_info *vi = netdev_priv(dev); 3911 __virtio16 *_vid __free(kfree) = NULL; 3912 struct scatterlist sg; 3913 3914 _vid = kzalloc_obj(*_vid); 3915 if (!_vid) 3916 return -ENOMEM; 3917 3918 *_vid = cpu_to_virtio16(vi->vdev, vid); 3919 sg_init_one(&sg, _vid, sizeof(*_vid)); 3920 3921 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 3922 VIRTIO_NET_CTRL_VLAN_ADD, &sg)) 3923 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); 3924 return 0; 3925 } 3926 3927 static int virtnet_vlan_rx_kill_vid(struct net_device *dev, 3928 __be16 proto, u16 vid) 3929 { 3930 struct virtnet_info *vi = netdev_priv(dev); 3931 __virtio16 *_vid __free(kfree) = NULL; 3932 struct scatterlist sg; 3933 3934 _vid = kzalloc_obj(*_vid); 3935 if (!_vid) 3936 return -ENOMEM; 3937 3938 *_vid = cpu_to_virtio16(vi->vdev, vid); 3939 sg_init_one(&sg, _vid, sizeof(*_vid)); 3940 3941 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 3942 VIRTIO_NET_CTRL_VLAN_DEL, &sg)) 3943 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); 3944 return 0; 3945 } 3946 3947 static void virtnet_clean_affinity(struct virtnet_info *vi) 3948 { 3949 int i; 3950 3951 if (vi->affinity_hint_set) { 3952 for (i = 0; i < vi->max_queue_pairs; i++) { 3953 virtqueue_set_affinity(vi->rq[i].vq, NULL); 3954 virtqueue_set_affinity(vi->sq[i].vq, NULL); 3955 } 3956 3957 vi->affinity_hint_set = false; 3958 } 3959 } 3960 3961 static void virtnet_set_affinity(struct virtnet_info *vi) 3962 { 3963 cpumask_var_t mask; 3964 int stragglers; 3965 int group_size; 3966 int i, start = 0, cpu; 3967 int num_cpu; 3968 int stride; 3969 3970 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) { 3971 virtnet_clean_affinity(vi); 3972 return; 3973 } 3974 3975 num_cpu = num_online_cpus(); 3976 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1); 3977 stragglers = num_cpu >= vi->curr_queue_pairs ? 3978 num_cpu % vi->curr_queue_pairs : 3979 0; 3980 3981 for (i = 0; i < vi->curr_queue_pairs; i++) { 3982 group_size = stride + (i < stragglers ? 1 : 0); 3983 3984 for_each_online_cpu_wrap(cpu, start) { 3985 if (!group_size--) { 3986 start = cpu; 3987 break; 3988 } 3989 cpumask_set_cpu(cpu, mask); 3990 } 3991 3992 virtqueue_set_affinity(vi->rq[i].vq, mask); 3993 virtqueue_set_affinity(vi->sq[i].vq, mask); 3994 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS); 3995 cpumask_clear(mask); 3996 } 3997 3998 vi->affinity_hint_set = true; 3999 free_cpumask_var(mask); 4000 } 4001 4002 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node) 4003 { 4004 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4005 node); 4006 virtnet_set_affinity(vi); 4007 return 0; 4008 } 4009 4010 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node) 4011 { 4012 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4013 node_dead); 4014 virtnet_set_affinity(vi); 4015 return 0; 4016 } 4017 4018 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node) 4019 { 4020 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4021 node); 4022 4023 virtnet_clean_affinity(vi); 4024 return 0; 4025 } 4026 4027 static enum cpuhp_state virtionet_online; 4028 4029 static int virtnet_cpu_notif_add(struct virtnet_info *vi) 4030 { 4031 int ret; 4032 4033 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node); 4034 if (ret) 4035 return ret; 4036 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD, 4037 &vi->node_dead); 4038 if (!ret) 4039 return ret; 4040 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 4041 return ret; 4042 } 4043 4044 static void virtnet_cpu_notif_remove(struct virtnet_info *vi) 4045 { 4046 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 4047 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD, 4048 &vi->node_dead); 4049 } 4050 4051 static int virtnet_send_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4052 u16 vqn, u32 max_usecs, u32 max_packets) 4053 { 4054 struct virtio_net_ctrl_coal_vq *coal_vq __free(kfree) = NULL; 4055 struct scatterlist sgs; 4056 4057 coal_vq = kzalloc_obj(*coal_vq); 4058 if (!coal_vq) 4059 return -ENOMEM; 4060 4061 coal_vq->vqn = cpu_to_le16(vqn); 4062 coal_vq->coal.max_usecs = cpu_to_le32(max_usecs); 4063 coal_vq->coal.max_packets = cpu_to_le32(max_packets); 4064 sg_init_one(&sgs, coal_vq, sizeof(*coal_vq)); 4065 4066 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 4067 VIRTIO_NET_CTRL_NOTF_COAL_VQ_SET, 4068 &sgs)) 4069 return -EINVAL; 4070 4071 return 0; 4072 } 4073 4074 static int virtnet_send_rx_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4075 u16 queue, u32 max_usecs, 4076 u32 max_packets) 4077 { 4078 int err; 4079 4080 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 4081 return -EOPNOTSUPP; 4082 4083 err = virtnet_send_ctrl_coal_vq_cmd(vi, rxq2vq(queue), 4084 max_usecs, max_packets); 4085 if (err) 4086 return err; 4087 4088 vi->rq[queue].intr_coal.max_usecs = max_usecs; 4089 vi->rq[queue].intr_coal.max_packets = max_packets; 4090 4091 return 0; 4092 } 4093 4094 static int virtnet_send_tx_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4095 u16 queue, u32 max_usecs, 4096 u32 max_packets) 4097 { 4098 int err; 4099 4100 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 4101 return -EOPNOTSUPP; 4102 4103 err = virtnet_send_ctrl_coal_vq_cmd(vi, txq2vq(queue), 4104 max_usecs, max_packets); 4105 if (err) 4106 return err; 4107 4108 vi->sq[queue].intr_coal.max_usecs = max_usecs; 4109 vi->sq[queue].intr_coal.max_packets = max_packets; 4110 4111 return 0; 4112 } 4113 4114 static void virtnet_get_ringparam(struct net_device *dev, 4115 struct ethtool_ringparam *ring, 4116 struct kernel_ethtool_ringparam *kernel_ring, 4117 struct netlink_ext_ack *extack) 4118 { 4119 struct virtnet_info *vi = netdev_priv(dev); 4120 4121 ring->rx_max_pending = vi->rq[0].vq->num_max; 4122 ring->tx_max_pending = vi->sq[0].vq->num_max; 4123 ring->rx_pending = virtqueue_get_vring_size(vi->rq[0].vq); 4124 ring->tx_pending = virtqueue_get_vring_size(vi->sq[0].vq); 4125 } 4126 4127 static int virtnet_set_ringparam(struct net_device *dev, 4128 struct ethtool_ringparam *ring, 4129 struct kernel_ethtool_ringparam *kernel_ring, 4130 struct netlink_ext_ack *extack) 4131 { 4132 struct virtnet_info *vi = netdev_priv(dev); 4133 u32 rx_pending, tx_pending; 4134 struct receive_queue *rq; 4135 struct send_queue *sq; 4136 int i, err; 4137 4138 if (ring->rx_mini_pending || ring->rx_jumbo_pending) 4139 return -EINVAL; 4140 4141 rx_pending = virtqueue_get_vring_size(vi->rq[0].vq); 4142 tx_pending = virtqueue_get_vring_size(vi->sq[0].vq); 4143 4144 if (ring->rx_pending == rx_pending && 4145 ring->tx_pending == tx_pending) 4146 return 0; 4147 4148 if (ring->rx_pending > vi->rq[0].vq->num_max) 4149 return -EINVAL; 4150 4151 if (ring->tx_pending > vi->sq[0].vq->num_max) 4152 return -EINVAL; 4153 4154 for (i = 0; i < vi->max_queue_pairs; i++) { 4155 rq = vi->rq + i; 4156 sq = vi->sq + i; 4157 4158 if (ring->tx_pending != tx_pending) { 4159 err = virtnet_tx_resize(vi, sq, ring->tx_pending); 4160 if (err) 4161 return err; 4162 4163 /* Upon disabling and re-enabling a transmit virtqueue, the device must 4164 * set the coalescing parameters of the virtqueue to those configured 4165 * through the VIRTIO_NET_CTRL_NOTF_COAL_TX_SET command, or, if the driver 4166 * did not set any TX coalescing parameters, to 0. 4167 */ 4168 err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, i, 4169 vi->intr_coal_tx.max_usecs, 4170 vi->intr_coal_tx.max_packets); 4171 4172 /* Don't break the tx resize action if the vq coalescing is not 4173 * supported. The same is true for rx resize below. 4174 */ 4175 if (err && err != -EOPNOTSUPP) 4176 return err; 4177 } 4178 4179 if (ring->rx_pending != rx_pending) { 4180 err = virtnet_rx_resize(vi, rq, ring->rx_pending); 4181 if (err) 4182 return err; 4183 4184 /* The reason is same as the transmit virtqueue reset */ 4185 mutex_lock(&vi->rq[i].dim_lock); 4186 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, i, 4187 vi->intr_coal_rx.max_usecs, 4188 vi->intr_coal_rx.max_packets); 4189 mutex_unlock(&vi->rq[i].dim_lock); 4190 if (err && err != -EOPNOTSUPP) 4191 return err; 4192 } 4193 } 4194 4195 return 0; 4196 } 4197 4198 static bool virtnet_commit_rss_command(struct virtnet_info *vi) 4199 { 4200 struct net_device *dev = vi->dev; 4201 struct scatterlist sgs[2]; 4202 4203 /* prepare sgs */ 4204 sg_init_table(sgs, 2); 4205 sg_set_buf(&sgs[0], vi->rss_hdr, virtnet_rss_hdr_size(vi)); 4206 sg_set_buf(&sgs[1], &vi->rss_trailer, virtnet_rss_trailer_size(vi)); 4207 4208 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 4209 vi->has_rss ? VIRTIO_NET_CTRL_MQ_RSS_CONFIG 4210 : VIRTIO_NET_CTRL_MQ_HASH_CONFIG, sgs)) 4211 goto err; 4212 4213 return true; 4214 4215 err: 4216 dev_warn(&dev->dev, "VIRTIONET issue with committing RSS sgs\n"); 4217 return false; 4218 4219 } 4220 4221 static void virtnet_init_default_rss(struct virtnet_info *vi) 4222 { 4223 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_supported); 4224 vi->rss_hash_types_saved = vi->rss_hash_types_supported; 4225 vi->rss_hdr->indirection_table_mask = vi->rss_indir_table_size 4226 ? cpu_to_le16(vi->rss_indir_table_size - 1) : 0; 4227 vi->rss_hdr->unclassified_queue = 0; 4228 4229 virtnet_rss_update_by_qpairs(vi, vi->curr_queue_pairs); 4230 4231 vi->rss_trailer.hash_key_length = vi->rss_key_size; 4232 4233 netdev_rss_key_fill(vi->rss_hash_key_data, vi->rss_key_size); 4234 } 4235 4236 static int virtnet_get_hashflow(struct net_device *dev, 4237 struct ethtool_rxfh_fields *info) 4238 { 4239 struct virtnet_info *vi = netdev_priv(dev); 4240 4241 info->data = 0; 4242 switch (info->flow_type) { 4243 case TCP_V4_FLOW: 4244 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) { 4245 info->data = RXH_IP_SRC | RXH_IP_DST | 4246 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4247 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) { 4248 info->data = RXH_IP_SRC | RXH_IP_DST; 4249 } 4250 break; 4251 case TCP_V6_FLOW: 4252 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) { 4253 info->data = RXH_IP_SRC | RXH_IP_DST | 4254 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4255 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) { 4256 info->data = RXH_IP_SRC | RXH_IP_DST; 4257 } 4258 break; 4259 case UDP_V4_FLOW: 4260 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) { 4261 info->data = RXH_IP_SRC | RXH_IP_DST | 4262 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4263 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) { 4264 info->data = RXH_IP_SRC | RXH_IP_DST; 4265 } 4266 break; 4267 case UDP_V6_FLOW: 4268 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) { 4269 info->data = RXH_IP_SRC | RXH_IP_DST | 4270 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4271 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) { 4272 info->data = RXH_IP_SRC | RXH_IP_DST; 4273 } 4274 break; 4275 case IPV4_FLOW: 4276 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) 4277 info->data = RXH_IP_SRC | RXH_IP_DST; 4278 4279 break; 4280 case IPV6_FLOW: 4281 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) 4282 info->data = RXH_IP_SRC | RXH_IP_DST; 4283 4284 break; 4285 default: 4286 info->data = 0; 4287 break; 4288 } 4289 4290 return 0; 4291 } 4292 4293 static int virtnet_set_hashflow(struct net_device *dev, 4294 const struct ethtool_rxfh_fields *info, 4295 struct netlink_ext_ack *extack) 4296 { 4297 struct virtnet_info *vi = netdev_priv(dev); 4298 u32 new_hashtypes = vi->rss_hash_types_saved; 4299 bool is_disable = info->data & RXH_DISCARD; 4300 bool is_l4 = info->data == (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3); 4301 4302 /* supports only 'sd', 'sdfn' and 'r' */ 4303 if (!((info->data == (RXH_IP_SRC | RXH_IP_DST)) | is_l4 | is_disable)) 4304 return -EINVAL; 4305 4306 switch (info->flow_type) { 4307 case TCP_V4_FLOW: 4308 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_TCPv4); 4309 if (!is_disable) 4310 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4 4311 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv4 : 0); 4312 break; 4313 case UDP_V4_FLOW: 4314 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_UDPv4); 4315 if (!is_disable) 4316 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4 4317 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv4 : 0); 4318 break; 4319 case IPV4_FLOW: 4320 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv4; 4321 if (!is_disable) 4322 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv4; 4323 break; 4324 case TCP_V6_FLOW: 4325 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_TCPv6); 4326 if (!is_disable) 4327 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6 4328 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv6 : 0); 4329 break; 4330 case UDP_V6_FLOW: 4331 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_UDPv6); 4332 if (!is_disable) 4333 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6 4334 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv6 : 0); 4335 break; 4336 case IPV6_FLOW: 4337 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv6; 4338 if (!is_disable) 4339 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv6; 4340 break; 4341 default: 4342 /* unsupported flow */ 4343 return -EINVAL; 4344 } 4345 4346 /* if unsupported hashtype was set */ 4347 if (new_hashtypes != (new_hashtypes & vi->rss_hash_types_supported)) 4348 return -EINVAL; 4349 4350 if (new_hashtypes != vi->rss_hash_types_saved) { 4351 vi->rss_hash_types_saved = new_hashtypes; 4352 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved); 4353 if (vi->dev->features & NETIF_F_RXHASH) 4354 if (!virtnet_commit_rss_command(vi)) 4355 return -EINVAL; 4356 } 4357 4358 return 0; 4359 } 4360 4361 static void virtnet_get_drvinfo(struct net_device *dev, 4362 struct ethtool_drvinfo *info) 4363 { 4364 struct virtnet_info *vi = netdev_priv(dev); 4365 struct virtio_device *vdev = vi->vdev; 4366 4367 strscpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); 4368 strscpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); 4369 strscpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); 4370 4371 } 4372 4373 /* TODO: Eliminate OOO packets during switching */ 4374 static int virtnet_set_channels(struct net_device *dev, 4375 struct ethtool_channels *channels) 4376 { 4377 struct virtnet_info *vi = netdev_priv(dev); 4378 u16 queue_pairs = channels->combined_count; 4379 int err; 4380 4381 /* We don't support separate rx/tx channels. 4382 * We don't allow setting 'other' channels. 4383 */ 4384 if (channels->rx_count || channels->tx_count || channels->other_count) 4385 return -EINVAL; 4386 4387 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0) 4388 return -EINVAL; 4389 4390 /* For now we don't support modifying channels while XDP is loaded 4391 * also when XDP is loaded all RX queues have XDP programs so we only 4392 * need to check a single RX queue. 4393 */ 4394 if (vi->rq[0].xdp_prog) 4395 return -EINVAL; 4396 4397 cpus_read_lock(); 4398 err = virtnet_set_queues(vi, queue_pairs); 4399 if (err) { 4400 cpus_read_unlock(); 4401 goto err; 4402 } 4403 virtnet_set_affinity(vi); 4404 cpus_read_unlock(); 4405 4406 netif_set_real_num_tx_queues(dev, queue_pairs); 4407 netif_set_real_num_rx_queues(dev, queue_pairs); 4408 err: 4409 return err; 4410 } 4411 4412 static void virtnet_stats_sprintf(u8 **p, const char *fmt, const char *noq_fmt, 4413 int num, int qid, const struct virtnet_stat_desc *desc) 4414 { 4415 int i; 4416 4417 if (qid < 0) { 4418 for (i = 0; i < num; ++i) 4419 ethtool_sprintf(p, noq_fmt, desc[i].desc); 4420 } else { 4421 for (i = 0; i < num; ++i) 4422 ethtool_sprintf(p, fmt, qid, desc[i].desc); 4423 } 4424 } 4425 4426 /* qid == -1: for rx/tx queue total field */ 4427 static void virtnet_get_stats_string(struct virtnet_info *vi, int type, int qid, u8 **data) 4428 { 4429 const struct virtnet_stat_desc *desc; 4430 const char *fmt, *noq_fmt; 4431 u8 *p = *data; 4432 u32 num; 4433 4434 if (type == VIRTNET_Q_TYPE_CQ && qid >= 0) { 4435 noq_fmt = "cq_hw_%s"; 4436 4437 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) { 4438 desc = &virtnet_stats_cvq_desc[0]; 4439 num = ARRAY_SIZE(virtnet_stats_cvq_desc); 4440 4441 virtnet_stats_sprintf(&p, NULL, noq_fmt, num, -1, desc); 4442 } 4443 } 4444 4445 if (type == VIRTNET_Q_TYPE_RX) { 4446 fmt = "rx%u_%s"; 4447 noq_fmt = "rx_%s"; 4448 4449 desc = &virtnet_rq_stats_desc[0]; 4450 num = ARRAY_SIZE(virtnet_rq_stats_desc); 4451 4452 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4453 4454 fmt = "rx%u_hw_%s"; 4455 noq_fmt = "rx_hw_%s"; 4456 4457 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4458 desc = &virtnet_stats_rx_basic_desc[0]; 4459 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4460 4461 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4462 } 4463 4464 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4465 desc = &virtnet_stats_rx_csum_desc[0]; 4466 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4467 4468 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4469 } 4470 4471 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4472 desc = &virtnet_stats_rx_speed_desc[0]; 4473 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4474 4475 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4476 } 4477 } 4478 4479 if (type == VIRTNET_Q_TYPE_TX) { 4480 fmt = "tx%u_%s"; 4481 noq_fmt = "tx_%s"; 4482 4483 desc = &virtnet_sq_stats_desc[0]; 4484 num = ARRAY_SIZE(virtnet_sq_stats_desc); 4485 4486 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4487 4488 fmt = "tx%u_hw_%s"; 4489 noq_fmt = "tx_hw_%s"; 4490 4491 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4492 desc = &virtnet_stats_tx_basic_desc[0]; 4493 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4494 4495 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4496 } 4497 4498 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4499 desc = &virtnet_stats_tx_gso_desc[0]; 4500 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4501 4502 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4503 } 4504 4505 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4506 desc = &virtnet_stats_tx_speed_desc[0]; 4507 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4508 4509 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4510 } 4511 } 4512 4513 *data = p; 4514 } 4515 4516 struct virtnet_stats_ctx { 4517 /* The stats are write to qstats or ethtool -S */ 4518 bool to_qstat; 4519 4520 /* Used to calculate the offset inside the output buffer. */ 4521 u32 desc_num[3]; 4522 4523 /* The actual supported stat types. */ 4524 u64 bitmap[3]; 4525 4526 /* Used to calculate the reply buffer size. */ 4527 u32 size[3]; 4528 4529 /* Record the output buffer. */ 4530 u64 *data; 4531 }; 4532 4533 static void virtnet_stats_ctx_init(struct virtnet_info *vi, 4534 struct virtnet_stats_ctx *ctx, 4535 u64 *data, bool to_qstat) 4536 { 4537 u32 queue_type; 4538 4539 ctx->data = data; 4540 ctx->to_qstat = to_qstat; 4541 4542 if (to_qstat) { 4543 ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc_qstat); 4544 ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc_qstat); 4545 4546 queue_type = VIRTNET_Q_TYPE_RX; 4547 4548 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4549 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_BASIC; 4550 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat); 4551 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_basic); 4552 } 4553 4554 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4555 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_CSUM; 4556 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat); 4557 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_csum); 4558 } 4559 4560 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 4561 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_GSO; 4562 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat); 4563 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_gso); 4564 } 4565 4566 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4567 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_SPEED; 4568 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat); 4569 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_speed); 4570 } 4571 4572 queue_type = VIRTNET_Q_TYPE_TX; 4573 4574 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4575 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_BASIC; 4576 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat); 4577 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_basic); 4578 } 4579 4580 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 4581 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_CSUM; 4582 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat); 4583 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_csum); 4584 } 4585 4586 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4587 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_GSO; 4588 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat); 4589 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_gso); 4590 } 4591 4592 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4593 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_SPEED; 4594 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat); 4595 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_speed); 4596 } 4597 4598 return; 4599 } 4600 4601 ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc); 4602 ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc); 4603 4604 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) { 4605 queue_type = VIRTNET_Q_TYPE_CQ; 4606 4607 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_CVQ; 4608 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_cvq_desc); 4609 ctx->size[queue_type] += sizeof(struct virtio_net_stats_cvq); 4610 } 4611 4612 queue_type = VIRTNET_Q_TYPE_RX; 4613 4614 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4615 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_BASIC; 4616 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4617 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_basic); 4618 } 4619 4620 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4621 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_CSUM; 4622 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4623 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_csum); 4624 } 4625 4626 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4627 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_SPEED; 4628 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4629 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_speed); 4630 } 4631 4632 queue_type = VIRTNET_Q_TYPE_TX; 4633 4634 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4635 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_BASIC; 4636 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4637 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_basic); 4638 } 4639 4640 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4641 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_GSO; 4642 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4643 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_gso); 4644 } 4645 4646 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4647 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_SPEED; 4648 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4649 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_speed); 4650 } 4651 } 4652 4653 /* stats_sum_queue - Calculate the sum of the same fields in sq or rq. 4654 * @sum: the position to store the sum values 4655 * @num: field num 4656 * @q_value: the first queue fields 4657 * @q_num: number of the queues 4658 */ 4659 static void stats_sum_queue(u64 *sum, u32 num, u64 *q_value, u32 q_num) 4660 { 4661 u32 step = num; 4662 int i, j; 4663 u64 *p; 4664 4665 for (i = 0; i < num; ++i) { 4666 p = sum + i; 4667 *p = 0; 4668 4669 for (j = 0; j < q_num; ++j) 4670 *p += *(q_value + i + j * step); 4671 } 4672 } 4673 4674 static void virtnet_fill_total_fields(struct virtnet_info *vi, 4675 struct virtnet_stats_ctx *ctx) 4676 { 4677 u64 *data, *first_rx_q, *first_tx_q; 4678 u32 num_cq, num_rx, num_tx; 4679 4680 num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ]; 4681 num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX]; 4682 num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX]; 4683 4684 first_rx_q = ctx->data + num_rx + num_tx + num_cq; 4685 first_tx_q = first_rx_q + vi->curr_queue_pairs * num_rx; 4686 4687 data = ctx->data; 4688 4689 stats_sum_queue(data, num_rx, first_rx_q, vi->curr_queue_pairs); 4690 4691 data = ctx->data + num_rx; 4692 4693 stats_sum_queue(data, num_tx, first_tx_q, vi->curr_queue_pairs); 4694 } 4695 4696 static void virtnet_fill_stats_qstat(struct virtnet_info *vi, u32 qid, 4697 struct virtnet_stats_ctx *ctx, 4698 const u8 *base, bool drv_stats, u8 reply_type) 4699 { 4700 const struct virtnet_stat_desc *desc; 4701 const u64_stats_t *v_stat; 4702 u64 offset, bitmap; 4703 const __le64 *v; 4704 u32 queue_type; 4705 int i, num; 4706 4707 queue_type = vq_type(vi, qid); 4708 bitmap = ctx->bitmap[queue_type]; 4709 4710 if (drv_stats) { 4711 if (queue_type == VIRTNET_Q_TYPE_RX) { 4712 desc = &virtnet_rq_stats_desc_qstat[0]; 4713 num = ARRAY_SIZE(virtnet_rq_stats_desc_qstat); 4714 } else { 4715 desc = &virtnet_sq_stats_desc_qstat[0]; 4716 num = ARRAY_SIZE(virtnet_sq_stats_desc_qstat); 4717 } 4718 4719 for (i = 0; i < num; ++i) { 4720 offset = desc[i].qstat_offset / sizeof(*ctx->data); 4721 v_stat = (const u64_stats_t *)(base + desc[i].offset); 4722 ctx->data[offset] = u64_stats_read(v_stat); 4723 } 4724 return; 4725 } 4726 4727 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4728 desc = &virtnet_stats_rx_basic_desc_qstat[0]; 4729 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat); 4730 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC) 4731 goto found; 4732 } 4733 4734 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4735 desc = &virtnet_stats_rx_csum_desc_qstat[0]; 4736 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat); 4737 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM) 4738 goto found; 4739 } 4740 4741 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 4742 desc = &virtnet_stats_rx_gso_desc_qstat[0]; 4743 num = ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat); 4744 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_GSO) 4745 goto found; 4746 } 4747 4748 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4749 desc = &virtnet_stats_rx_speed_desc_qstat[0]; 4750 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat); 4751 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED) 4752 goto found; 4753 } 4754 4755 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4756 desc = &virtnet_stats_tx_basic_desc_qstat[0]; 4757 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat); 4758 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC) 4759 goto found; 4760 } 4761 4762 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 4763 desc = &virtnet_stats_tx_csum_desc_qstat[0]; 4764 num = ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat); 4765 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_CSUM) 4766 goto found; 4767 } 4768 4769 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4770 desc = &virtnet_stats_tx_gso_desc_qstat[0]; 4771 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat); 4772 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO) 4773 goto found; 4774 } 4775 4776 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4777 desc = &virtnet_stats_tx_speed_desc_qstat[0]; 4778 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat); 4779 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED) 4780 goto found; 4781 } 4782 4783 return; 4784 4785 found: 4786 for (i = 0; i < num; ++i) { 4787 offset = desc[i].qstat_offset / sizeof(*ctx->data); 4788 v = (const __le64 *)(base + desc[i].offset); 4789 ctx->data[offset] = le64_to_cpu(*v); 4790 } 4791 } 4792 4793 /* virtnet_fill_stats - copy the stats to qstats or ethtool -S 4794 * The stats source is the device or the driver. 4795 * 4796 * @vi: virtio net info 4797 * @qid: the vq id 4798 * @ctx: stats ctx (initiated by virtnet_stats_ctx_init()) 4799 * @base: pointer to the device reply or the driver stats structure. 4800 * @drv_stats: designate the base type (device reply, driver stats) 4801 * @type: the type of the device reply (if drv_stats is true, this must be zero) 4802 */ 4803 static void virtnet_fill_stats(struct virtnet_info *vi, u32 qid, 4804 struct virtnet_stats_ctx *ctx, 4805 const u8 *base, bool drv_stats, u8 reply_type) 4806 { 4807 u32 queue_type, num_rx, num_tx, num_cq; 4808 const struct virtnet_stat_desc *desc; 4809 const u64_stats_t *v_stat; 4810 u64 offset, bitmap; 4811 const __le64 *v; 4812 int i, num; 4813 4814 if (ctx->to_qstat) 4815 return virtnet_fill_stats_qstat(vi, qid, ctx, base, drv_stats, reply_type); 4816 4817 num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ]; 4818 num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX]; 4819 num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX]; 4820 4821 queue_type = vq_type(vi, qid); 4822 bitmap = ctx->bitmap[queue_type]; 4823 4824 /* skip the total fields of pairs */ 4825 offset = num_rx + num_tx; 4826 4827 if (queue_type == VIRTNET_Q_TYPE_TX) { 4828 offset += num_cq + num_rx * vi->curr_queue_pairs + num_tx * (qid / 2); 4829 4830 num = ARRAY_SIZE(virtnet_sq_stats_desc); 4831 if (drv_stats) { 4832 desc = &virtnet_sq_stats_desc[0]; 4833 goto drv_stats; 4834 } 4835 4836 offset += num; 4837 4838 } else if (queue_type == VIRTNET_Q_TYPE_RX) { 4839 offset += num_cq + num_rx * (qid / 2); 4840 4841 num = ARRAY_SIZE(virtnet_rq_stats_desc); 4842 if (drv_stats) { 4843 desc = &virtnet_rq_stats_desc[0]; 4844 goto drv_stats; 4845 } 4846 4847 offset += num; 4848 } 4849 4850 if (bitmap & VIRTIO_NET_STATS_TYPE_CVQ) { 4851 desc = &virtnet_stats_cvq_desc[0]; 4852 num = ARRAY_SIZE(virtnet_stats_cvq_desc); 4853 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_CVQ) 4854 goto found; 4855 4856 offset += num; 4857 } 4858 4859 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4860 desc = &virtnet_stats_rx_basic_desc[0]; 4861 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4862 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC) 4863 goto found; 4864 4865 offset += num; 4866 } 4867 4868 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4869 desc = &virtnet_stats_rx_csum_desc[0]; 4870 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4871 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM) 4872 goto found; 4873 4874 offset += num; 4875 } 4876 4877 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4878 desc = &virtnet_stats_rx_speed_desc[0]; 4879 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4880 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED) 4881 goto found; 4882 4883 offset += num; 4884 } 4885 4886 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4887 desc = &virtnet_stats_tx_basic_desc[0]; 4888 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4889 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC) 4890 goto found; 4891 4892 offset += num; 4893 } 4894 4895 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4896 desc = &virtnet_stats_tx_gso_desc[0]; 4897 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4898 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO) 4899 goto found; 4900 4901 offset += num; 4902 } 4903 4904 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4905 desc = &virtnet_stats_tx_speed_desc[0]; 4906 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4907 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED) 4908 goto found; 4909 4910 offset += num; 4911 } 4912 4913 return; 4914 4915 found: 4916 for (i = 0; i < num; ++i) { 4917 v = (const __le64 *)(base + desc[i].offset); 4918 ctx->data[offset + i] = le64_to_cpu(*v); 4919 } 4920 4921 return; 4922 4923 drv_stats: 4924 for (i = 0; i < num; ++i) { 4925 v_stat = (const u64_stats_t *)(base + desc[i].offset); 4926 ctx->data[offset + i] = u64_stats_read(v_stat); 4927 } 4928 } 4929 4930 static int __virtnet_get_hw_stats(struct virtnet_info *vi, 4931 struct virtnet_stats_ctx *ctx, 4932 struct virtio_net_ctrl_queue_stats *req, 4933 int req_size, void *reply, int res_size) 4934 { 4935 struct virtio_net_stats_reply_hdr *hdr; 4936 struct scatterlist sgs_in, sgs_out; 4937 void *p; 4938 u32 qid; 4939 int ok; 4940 4941 sg_init_one(&sgs_out, req, req_size); 4942 sg_init_one(&sgs_in, reply, res_size); 4943 4944 ok = virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS, 4945 VIRTIO_NET_CTRL_STATS_GET, 4946 &sgs_out, &sgs_in); 4947 4948 if (!ok) 4949 return ok; 4950 4951 for (p = reply; p - reply < res_size; p += le16_to_cpu(hdr->size)) { 4952 hdr = p; 4953 qid = le16_to_cpu(hdr->vq_index); 4954 virtnet_fill_stats(vi, qid, ctx, p, false, hdr->type); 4955 } 4956 4957 return 0; 4958 } 4959 4960 static void virtnet_make_stat_req(struct virtnet_info *vi, 4961 struct virtnet_stats_ctx *ctx, 4962 struct virtio_net_ctrl_queue_stats *req, 4963 int qid, int *idx) 4964 { 4965 int qtype = vq_type(vi, qid); 4966 u64 bitmap = ctx->bitmap[qtype]; 4967 4968 if (!bitmap) 4969 return; 4970 4971 req->stats[*idx].vq_index = cpu_to_le16(qid); 4972 req->stats[*idx].types_bitmap[0] = cpu_to_le64(bitmap); 4973 *idx += 1; 4974 } 4975 4976 /* qid: -1: get stats of all vq. 4977 * > 0: get the stats for the special vq. This must not be cvq. 4978 */ 4979 static int virtnet_get_hw_stats(struct virtnet_info *vi, 4980 struct virtnet_stats_ctx *ctx, int qid) 4981 { 4982 int qnum, i, j, res_size, qtype, last_vq, first_vq; 4983 struct virtio_net_ctrl_queue_stats *req; 4984 bool enable_cvq; 4985 void *reply; 4986 int ok; 4987 4988 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) 4989 return 0; 4990 4991 if (qid == -1) { 4992 last_vq = vi->curr_queue_pairs * 2 - 1; 4993 first_vq = 0; 4994 enable_cvq = true; 4995 } else { 4996 last_vq = qid; 4997 first_vq = qid; 4998 enable_cvq = false; 4999 } 5000 5001 qnum = 0; 5002 res_size = 0; 5003 for (i = first_vq; i <= last_vq ; ++i) { 5004 qtype = vq_type(vi, i); 5005 if (ctx->bitmap[qtype]) { 5006 ++qnum; 5007 res_size += ctx->size[qtype]; 5008 } 5009 } 5010 5011 if (enable_cvq && ctx->bitmap[VIRTNET_Q_TYPE_CQ]) { 5012 res_size += ctx->size[VIRTNET_Q_TYPE_CQ]; 5013 qnum += 1; 5014 } 5015 5016 req = kzalloc_objs(*req, qnum); 5017 if (!req) 5018 return -ENOMEM; 5019 5020 reply = kmalloc(res_size, GFP_KERNEL); 5021 if (!reply) { 5022 kfree(req); 5023 return -ENOMEM; 5024 } 5025 5026 j = 0; 5027 for (i = first_vq; i <= last_vq ; ++i) 5028 virtnet_make_stat_req(vi, ctx, req, i, &j); 5029 5030 if (enable_cvq) 5031 virtnet_make_stat_req(vi, ctx, req, vi->max_queue_pairs * 2, &j); 5032 5033 ok = __virtnet_get_hw_stats(vi, ctx, req, sizeof(*req) * j, reply, res_size); 5034 5035 kfree(req); 5036 kfree(reply); 5037 5038 return ok; 5039 } 5040 5041 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data) 5042 { 5043 struct virtnet_info *vi = netdev_priv(dev); 5044 unsigned int i; 5045 u8 *p = data; 5046 5047 switch (stringset) { 5048 case ETH_SS_STATS: 5049 /* Generate the total field names. */ 5050 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, -1, &p); 5051 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, -1, &p); 5052 5053 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_CQ, 0, &p); 5054 5055 for (i = 0; i < vi->curr_queue_pairs; ++i) 5056 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, i, &p); 5057 5058 for (i = 0; i < vi->curr_queue_pairs; ++i) 5059 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, i, &p); 5060 break; 5061 } 5062 } 5063 5064 static int virtnet_get_sset_count(struct net_device *dev, int sset) 5065 { 5066 struct virtnet_info *vi = netdev_priv(dev); 5067 struct virtnet_stats_ctx ctx = {0}; 5068 u32 pair_count; 5069 5070 switch (sset) { 5071 case ETH_SS_STATS: 5072 virtnet_stats_ctx_init(vi, &ctx, NULL, false); 5073 5074 pair_count = ctx.desc_num[VIRTNET_Q_TYPE_RX] + ctx.desc_num[VIRTNET_Q_TYPE_TX]; 5075 5076 return pair_count + ctx.desc_num[VIRTNET_Q_TYPE_CQ] + 5077 vi->curr_queue_pairs * pair_count; 5078 default: 5079 return -EOPNOTSUPP; 5080 } 5081 } 5082 5083 static void virtnet_get_ethtool_stats(struct net_device *dev, 5084 struct ethtool_stats *stats, u64 *data) 5085 { 5086 struct virtnet_info *vi = netdev_priv(dev); 5087 struct virtnet_stats_ctx ctx = {0}; 5088 unsigned int start, i; 5089 const u8 *stats_base; 5090 5091 virtnet_stats_ctx_init(vi, &ctx, data, false); 5092 if (virtnet_get_hw_stats(vi, &ctx, -1)) 5093 dev_warn(&vi->dev->dev, "Failed to get hw stats.\n"); 5094 5095 for (i = 0; i < vi->curr_queue_pairs; i++) { 5096 struct receive_queue *rq = &vi->rq[i]; 5097 struct send_queue *sq = &vi->sq[i]; 5098 5099 stats_base = (const u8 *)&rq->stats; 5100 do { 5101 start = u64_stats_fetch_begin(&rq->stats.syncp); 5102 virtnet_fill_stats(vi, i * 2, &ctx, stats_base, true, 0); 5103 } while (u64_stats_fetch_retry(&rq->stats.syncp, start)); 5104 5105 stats_base = (const u8 *)&sq->stats; 5106 do { 5107 start = u64_stats_fetch_begin(&sq->stats.syncp); 5108 virtnet_fill_stats(vi, i * 2 + 1, &ctx, stats_base, true, 0); 5109 } while (u64_stats_fetch_retry(&sq->stats.syncp, start)); 5110 } 5111 5112 virtnet_fill_total_fields(vi, &ctx); 5113 } 5114 5115 static void virtnet_get_channels(struct net_device *dev, 5116 struct ethtool_channels *channels) 5117 { 5118 struct virtnet_info *vi = netdev_priv(dev); 5119 5120 channels->combined_count = vi->curr_queue_pairs; 5121 channels->max_combined = vi->max_queue_pairs; 5122 channels->max_other = 0; 5123 channels->rx_count = 0; 5124 channels->tx_count = 0; 5125 channels->other_count = 0; 5126 } 5127 5128 static int virtnet_set_link_ksettings(struct net_device *dev, 5129 const struct ethtool_link_ksettings *cmd) 5130 { 5131 struct virtnet_info *vi = netdev_priv(dev); 5132 5133 return ethtool_virtdev_set_link_ksettings(dev, cmd, 5134 &vi->speed, &vi->duplex); 5135 } 5136 5137 static int virtnet_get_link_ksettings(struct net_device *dev, 5138 struct ethtool_link_ksettings *cmd) 5139 { 5140 struct virtnet_info *vi = netdev_priv(dev); 5141 5142 cmd->base.speed = vi->speed; 5143 cmd->base.duplex = vi->duplex; 5144 cmd->base.port = PORT_OTHER; 5145 5146 return 0; 5147 } 5148 5149 static int virtnet_send_tx_notf_coal_cmds(struct virtnet_info *vi, 5150 struct ethtool_coalesce *ec) 5151 { 5152 struct virtio_net_ctrl_coal_tx *coal_tx __free(kfree) = NULL; 5153 struct scatterlist sgs_tx; 5154 int i; 5155 5156 coal_tx = kzalloc_obj(*coal_tx); 5157 if (!coal_tx) 5158 return -ENOMEM; 5159 5160 coal_tx->tx_usecs = cpu_to_le32(ec->tx_coalesce_usecs); 5161 coal_tx->tx_max_packets = cpu_to_le32(ec->tx_max_coalesced_frames); 5162 sg_init_one(&sgs_tx, coal_tx, sizeof(*coal_tx)); 5163 5164 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 5165 VIRTIO_NET_CTRL_NOTF_COAL_TX_SET, 5166 &sgs_tx)) 5167 return -EINVAL; 5168 5169 vi->intr_coal_tx.max_usecs = ec->tx_coalesce_usecs; 5170 vi->intr_coal_tx.max_packets = ec->tx_max_coalesced_frames; 5171 for (i = 0; i < vi->max_queue_pairs; i++) { 5172 vi->sq[i].intr_coal.max_usecs = ec->tx_coalesce_usecs; 5173 vi->sq[i].intr_coal.max_packets = ec->tx_max_coalesced_frames; 5174 } 5175 5176 return 0; 5177 } 5178 5179 static int virtnet_send_rx_notf_coal_cmds(struct virtnet_info *vi, 5180 struct ethtool_coalesce *ec) 5181 { 5182 struct virtio_net_ctrl_coal_rx *coal_rx __free(kfree) = NULL; 5183 bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce; 5184 struct scatterlist sgs_rx; 5185 int i; 5186 5187 if (rx_ctrl_dim_on && !virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 5188 return -EOPNOTSUPP; 5189 5190 if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != vi->intr_coal_rx.max_usecs || 5191 ec->rx_max_coalesced_frames != vi->intr_coal_rx.max_packets)) 5192 return -EINVAL; 5193 5194 if (rx_ctrl_dim_on && !vi->rx_dim_enabled) { 5195 vi->rx_dim_enabled = true; 5196 for (i = 0; i < vi->max_queue_pairs; i++) { 5197 mutex_lock(&vi->rq[i].dim_lock); 5198 vi->rq[i].dim_enabled = true; 5199 mutex_unlock(&vi->rq[i].dim_lock); 5200 } 5201 return 0; 5202 } 5203 5204 coal_rx = kzalloc_obj(*coal_rx); 5205 if (!coal_rx) 5206 return -ENOMEM; 5207 5208 if (!rx_ctrl_dim_on && vi->rx_dim_enabled) { 5209 vi->rx_dim_enabled = false; 5210 for (i = 0; i < vi->max_queue_pairs; i++) { 5211 mutex_lock(&vi->rq[i].dim_lock); 5212 vi->rq[i].dim_enabled = false; 5213 mutex_unlock(&vi->rq[i].dim_lock); 5214 } 5215 } 5216 5217 /* Since the per-queue coalescing params can be set, 5218 * we need apply the global new params even if they 5219 * are not updated. 5220 */ 5221 coal_rx->rx_usecs = cpu_to_le32(ec->rx_coalesce_usecs); 5222 coal_rx->rx_max_packets = cpu_to_le32(ec->rx_max_coalesced_frames); 5223 sg_init_one(&sgs_rx, coal_rx, sizeof(*coal_rx)); 5224 5225 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 5226 VIRTIO_NET_CTRL_NOTF_COAL_RX_SET, 5227 &sgs_rx)) 5228 return -EINVAL; 5229 5230 vi->intr_coal_rx.max_usecs = ec->rx_coalesce_usecs; 5231 vi->intr_coal_rx.max_packets = ec->rx_max_coalesced_frames; 5232 for (i = 0; i < vi->max_queue_pairs; i++) { 5233 mutex_lock(&vi->rq[i].dim_lock); 5234 vi->rq[i].intr_coal.max_usecs = ec->rx_coalesce_usecs; 5235 vi->rq[i].intr_coal.max_packets = ec->rx_max_coalesced_frames; 5236 mutex_unlock(&vi->rq[i].dim_lock); 5237 } 5238 5239 return 0; 5240 } 5241 5242 static int virtnet_send_notf_coal_cmds(struct virtnet_info *vi, 5243 struct ethtool_coalesce *ec) 5244 { 5245 int err; 5246 5247 err = virtnet_send_tx_notf_coal_cmds(vi, ec); 5248 if (err) 5249 return err; 5250 5251 err = virtnet_send_rx_notf_coal_cmds(vi, ec); 5252 if (err) 5253 return err; 5254 5255 return 0; 5256 } 5257 5258 static int virtnet_send_rx_notf_coal_vq_cmds(struct virtnet_info *vi, 5259 struct ethtool_coalesce *ec, 5260 u16 queue) 5261 { 5262 bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce; 5263 u32 max_usecs, max_packets; 5264 bool cur_rx_dim; 5265 int err; 5266 5267 mutex_lock(&vi->rq[queue].dim_lock); 5268 cur_rx_dim = vi->rq[queue].dim_enabled; 5269 max_usecs = vi->rq[queue].intr_coal.max_usecs; 5270 max_packets = vi->rq[queue].intr_coal.max_packets; 5271 5272 if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != max_usecs || 5273 ec->rx_max_coalesced_frames != max_packets)) { 5274 mutex_unlock(&vi->rq[queue].dim_lock); 5275 return -EINVAL; 5276 } 5277 5278 if (rx_ctrl_dim_on && !cur_rx_dim) { 5279 vi->rq[queue].dim_enabled = true; 5280 mutex_unlock(&vi->rq[queue].dim_lock); 5281 return 0; 5282 } 5283 5284 if (!rx_ctrl_dim_on && cur_rx_dim) 5285 vi->rq[queue].dim_enabled = false; 5286 5287 /* If no params are updated, userspace ethtool will 5288 * reject the modification. 5289 */ 5290 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, queue, 5291 ec->rx_coalesce_usecs, 5292 ec->rx_max_coalesced_frames); 5293 mutex_unlock(&vi->rq[queue].dim_lock); 5294 return err; 5295 } 5296 5297 static int virtnet_send_notf_coal_vq_cmds(struct virtnet_info *vi, 5298 struct ethtool_coalesce *ec, 5299 u16 queue) 5300 { 5301 int err; 5302 5303 err = virtnet_send_rx_notf_coal_vq_cmds(vi, ec, queue); 5304 if (err) 5305 return err; 5306 5307 err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, queue, 5308 ec->tx_coalesce_usecs, 5309 ec->tx_max_coalesced_frames); 5310 if (err) 5311 return err; 5312 5313 return 0; 5314 } 5315 5316 static void virtnet_rx_dim_work(struct work_struct *work) 5317 { 5318 struct dim *dim = container_of(work, struct dim, work); 5319 struct receive_queue *rq = container_of(dim, 5320 struct receive_queue, dim); 5321 struct virtnet_info *vi = rq->vq->vdev->priv; 5322 struct net_device *dev = vi->dev; 5323 struct dim_cq_moder update_moder; 5324 int qnum, err; 5325 5326 qnum = rq - vi->rq; 5327 5328 mutex_lock(&rq->dim_lock); 5329 if (!rq->dim_enabled) 5330 goto out; 5331 5332 update_moder = net_dim_get_rx_irq_moder(dev, dim); 5333 if (update_moder.usec != rq->intr_coal.max_usecs || 5334 update_moder.pkts != rq->intr_coal.max_packets) { 5335 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, qnum, 5336 update_moder.usec, 5337 update_moder.pkts); 5338 if (err) 5339 pr_debug("%s: Failed to send dim parameters on rxq%d\n", 5340 dev->name, qnum); 5341 } 5342 out: 5343 dim->state = DIM_START_MEASURE; 5344 mutex_unlock(&rq->dim_lock); 5345 } 5346 5347 static int virtnet_coal_params_supported(struct ethtool_coalesce *ec) 5348 { 5349 /* usecs coalescing is supported only if VIRTIO_NET_F_NOTF_COAL 5350 * or VIRTIO_NET_F_VQ_NOTF_COAL feature is negotiated. 5351 */ 5352 if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs) 5353 return -EOPNOTSUPP; 5354 5355 if (ec->tx_max_coalesced_frames > 1 || 5356 ec->rx_max_coalesced_frames != 1) 5357 return -EINVAL; 5358 5359 return 0; 5360 } 5361 5362 static int virtnet_should_update_vq_weight(int dev_flags, int weight, 5363 int vq_weight, bool *should_update) 5364 { 5365 if (weight ^ vq_weight) { 5366 if (dev_flags & IFF_UP) 5367 return -EBUSY; 5368 *should_update = true; 5369 } 5370 5371 return 0; 5372 } 5373 5374 static int virtnet_set_coalesce(struct net_device *dev, 5375 struct ethtool_coalesce *ec, 5376 struct kernel_ethtool_coalesce *kernel_coal, 5377 struct netlink_ext_ack *extack) 5378 { 5379 struct virtnet_info *vi = netdev_priv(dev); 5380 int ret, queue_number, napi_weight, i; 5381 bool update_napi = false; 5382 5383 /* Can't change NAPI weight if the link is up */ 5384 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0; 5385 for (queue_number = 0; queue_number < vi->max_queue_pairs; queue_number++) { 5386 ret = virtnet_should_update_vq_weight(dev->flags, napi_weight, 5387 vi->sq[queue_number].napi.weight, 5388 &update_napi); 5389 if (ret) 5390 return ret; 5391 5392 if (update_napi) { 5393 /* All queues that belong to [queue_number, vi->max_queue_pairs] will be 5394 * updated for the sake of simplicity, which might not be necessary 5395 */ 5396 break; 5397 } 5398 } 5399 5400 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) 5401 ret = virtnet_send_notf_coal_cmds(vi, ec); 5402 else 5403 ret = virtnet_coal_params_supported(ec); 5404 5405 if (ret) 5406 return ret; 5407 5408 if (update_napi) { 5409 /* xsk xmit depends on the tx napi. So if xsk is active, 5410 * prevent modifications to tx napi. 5411 */ 5412 for (i = queue_number; i < vi->max_queue_pairs; i++) { 5413 if (vi->sq[i].xsk_pool) 5414 return -EBUSY; 5415 } 5416 5417 for (; queue_number < vi->max_queue_pairs; queue_number++) 5418 vi->sq[queue_number].napi.weight = napi_weight; 5419 } 5420 5421 return ret; 5422 } 5423 5424 static int virtnet_get_coalesce(struct net_device *dev, 5425 struct ethtool_coalesce *ec, 5426 struct kernel_ethtool_coalesce *kernel_coal, 5427 struct netlink_ext_ack *extack) 5428 { 5429 struct virtnet_info *vi = netdev_priv(dev); 5430 5431 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) { 5432 ec->rx_coalesce_usecs = vi->intr_coal_rx.max_usecs; 5433 ec->tx_coalesce_usecs = vi->intr_coal_tx.max_usecs; 5434 ec->tx_max_coalesced_frames = vi->intr_coal_tx.max_packets; 5435 ec->rx_max_coalesced_frames = vi->intr_coal_rx.max_packets; 5436 ec->use_adaptive_rx_coalesce = vi->rx_dim_enabled; 5437 } else { 5438 ec->rx_max_coalesced_frames = 1; 5439 5440 if (vi->sq[0].napi.weight) 5441 ec->tx_max_coalesced_frames = 1; 5442 } 5443 5444 return 0; 5445 } 5446 5447 static int virtnet_set_per_queue_coalesce(struct net_device *dev, 5448 u32 queue, 5449 struct ethtool_coalesce *ec) 5450 { 5451 struct virtnet_info *vi = netdev_priv(dev); 5452 int ret, napi_weight; 5453 bool update_napi = false; 5454 5455 if (queue >= vi->max_queue_pairs) 5456 return -EINVAL; 5457 5458 /* Can't change NAPI weight if the link is up */ 5459 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0; 5460 ret = virtnet_should_update_vq_weight(dev->flags, napi_weight, 5461 vi->sq[queue].napi.weight, 5462 &update_napi); 5463 if (ret) 5464 return ret; 5465 5466 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 5467 ret = virtnet_send_notf_coal_vq_cmds(vi, ec, queue); 5468 else 5469 ret = virtnet_coal_params_supported(ec); 5470 5471 if (ret) 5472 return ret; 5473 5474 if (update_napi) 5475 vi->sq[queue].napi.weight = napi_weight; 5476 5477 return 0; 5478 } 5479 5480 static int virtnet_get_per_queue_coalesce(struct net_device *dev, 5481 u32 queue, 5482 struct ethtool_coalesce *ec) 5483 { 5484 struct virtnet_info *vi = netdev_priv(dev); 5485 5486 if (queue >= vi->max_queue_pairs) 5487 return -EINVAL; 5488 5489 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) { 5490 mutex_lock(&vi->rq[queue].dim_lock); 5491 ec->rx_coalesce_usecs = vi->rq[queue].intr_coal.max_usecs; 5492 ec->tx_coalesce_usecs = vi->sq[queue].intr_coal.max_usecs; 5493 ec->tx_max_coalesced_frames = vi->sq[queue].intr_coal.max_packets; 5494 ec->rx_max_coalesced_frames = vi->rq[queue].intr_coal.max_packets; 5495 ec->use_adaptive_rx_coalesce = vi->rq[queue].dim_enabled; 5496 mutex_unlock(&vi->rq[queue].dim_lock); 5497 } else { 5498 ec->rx_max_coalesced_frames = 1; 5499 5500 if (vi->sq[queue].napi.weight) 5501 ec->tx_max_coalesced_frames = 1; 5502 } 5503 5504 return 0; 5505 } 5506 5507 static void virtnet_init_settings(struct net_device *dev) 5508 { 5509 struct virtnet_info *vi = netdev_priv(dev); 5510 5511 vi->speed = SPEED_UNKNOWN; 5512 vi->duplex = DUPLEX_UNKNOWN; 5513 } 5514 5515 static u32 virtnet_get_rxfh_key_size(struct net_device *dev) 5516 { 5517 return ((struct virtnet_info *)netdev_priv(dev))->rss_key_size; 5518 } 5519 5520 static u32 virtnet_get_rxfh_indir_size(struct net_device *dev) 5521 { 5522 return ((struct virtnet_info *)netdev_priv(dev))->rss_indir_table_size; 5523 } 5524 5525 static int virtnet_get_rxfh(struct net_device *dev, 5526 struct ethtool_rxfh_param *rxfh) 5527 { 5528 struct virtnet_info *vi = netdev_priv(dev); 5529 int i; 5530 5531 if (rxfh->indir) { 5532 for (i = 0; i < vi->rss_indir_table_size; ++i) 5533 rxfh->indir[i] = le16_to_cpu(vi->rss_hdr->indirection_table[i]); 5534 } 5535 5536 if (rxfh->key) 5537 memcpy(rxfh->key, vi->rss_hash_key_data, vi->rss_key_size); 5538 5539 rxfh->hfunc = ETH_RSS_HASH_TOP; 5540 5541 return 0; 5542 } 5543 5544 static int virtnet_set_rxfh(struct net_device *dev, 5545 struct ethtool_rxfh_param *rxfh, 5546 struct netlink_ext_ack *extack) 5547 { 5548 struct virtnet_info *vi = netdev_priv(dev); 5549 bool update = false; 5550 int i; 5551 5552 if (rxfh->hfunc != ETH_RSS_HASH_NO_CHANGE && 5553 rxfh->hfunc != ETH_RSS_HASH_TOP) 5554 return -EOPNOTSUPP; 5555 5556 if (rxfh->indir) { 5557 if (!vi->has_rss) 5558 return -EOPNOTSUPP; 5559 5560 for (i = 0; i < vi->rss_indir_table_size; ++i) 5561 vi->rss_hdr->indirection_table[i] = cpu_to_le16(rxfh->indir[i]); 5562 update = true; 5563 } 5564 5565 if (rxfh->key) { 5566 /* If either _F_HASH_REPORT or _F_RSS are negotiated, the 5567 * device provides hash calculation capabilities, that is, 5568 * hash_key is configured. 5569 */ 5570 if (!vi->has_rss && !vi->has_rss_hash_report) 5571 return -EOPNOTSUPP; 5572 5573 memcpy(vi->rss_hash_key_data, rxfh->key, vi->rss_key_size); 5574 update = true; 5575 } 5576 5577 if (update) 5578 virtnet_commit_rss_command(vi); 5579 5580 return 0; 5581 } 5582 5583 static u32 virtnet_get_rx_ring_count(struct net_device *dev) 5584 { 5585 struct virtnet_info *vi = netdev_priv(dev); 5586 5587 return vi->curr_queue_pairs; 5588 } 5589 5590 static const struct ethtool_ops virtnet_ethtool_ops = { 5591 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES | 5592 ETHTOOL_COALESCE_USECS | ETHTOOL_COALESCE_USE_ADAPTIVE_RX, 5593 .get_drvinfo = virtnet_get_drvinfo, 5594 .get_link = ethtool_op_get_link, 5595 .get_ringparam = virtnet_get_ringparam, 5596 .set_ringparam = virtnet_set_ringparam, 5597 .get_strings = virtnet_get_strings, 5598 .get_sset_count = virtnet_get_sset_count, 5599 .get_ethtool_stats = virtnet_get_ethtool_stats, 5600 .set_channels = virtnet_set_channels, 5601 .get_channels = virtnet_get_channels, 5602 .get_ts_info = ethtool_op_get_ts_info, 5603 .get_link_ksettings = virtnet_get_link_ksettings, 5604 .set_link_ksettings = virtnet_set_link_ksettings, 5605 .set_coalesce = virtnet_set_coalesce, 5606 .get_coalesce = virtnet_get_coalesce, 5607 .set_per_queue_coalesce = virtnet_set_per_queue_coalesce, 5608 .get_per_queue_coalesce = virtnet_get_per_queue_coalesce, 5609 .get_rxfh_key_size = virtnet_get_rxfh_key_size, 5610 .get_rxfh_indir_size = virtnet_get_rxfh_indir_size, 5611 .get_rxfh = virtnet_get_rxfh, 5612 .set_rxfh = virtnet_set_rxfh, 5613 .get_rxfh_fields = virtnet_get_hashflow, 5614 .set_rxfh_fields = virtnet_set_hashflow, 5615 .get_rx_ring_count = virtnet_get_rx_ring_count, 5616 }; 5617 5618 static void virtnet_get_queue_stats_rx(struct net_device *dev, int i, 5619 struct netdev_queue_stats_rx *stats) 5620 { 5621 struct virtnet_info *vi = netdev_priv(dev); 5622 struct receive_queue *rq = &vi->rq[i]; 5623 struct virtnet_stats_ctx ctx = {0}; 5624 5625 virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true); 5626 5627 virtnet_get_hw_stats(vi, &ctx, i * 2); 5628 virtnet_fill_stats(vi, i * 2, &ctx, (void *)&rq->stats, true, 0); 5629 } 5630 5631 static void virtnet_get_queue_stats_tx(struct net_device *dev, int i, 5632 struct netdev_queue_stats_tx *stats) 5633 { 5634 struct virtnet_info *vi = netdev_priv(dev); 5635 struct send_queue *sq = &vi->sq[i]; 5636 struct virtnet_stats_ctx ctx = {0}; 5637 5638 virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true); 5639 5640 virtnet_get_hw_stats(vi, &ctx, i * 2 + 1); 5641 virtnet_fill_stats(vi, i * 2 + 1, &ctx, (void *)&sq->stats, true, 0); 5642 } 5643 5644 static void virtnet_get_base_stats(struct net_device *dev, 5645 struct netdev_queue_stats_rx *rx, 5646 struct netdev_queue_stats_tx *tx) 5647 { 5648 struct virtnet_info *vi = netdev_priv(dev); 5649 5650 /* The queue stats of the virtio-net will not be reset. So here we 5651 * return 0. 5652 */ 5653 rx->bytes = 0; 5654 rx->packets = 0; 5655 5656 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 5657 rx->hw_drops = 0; 5658 rx->hw_drop_overruns = 0; 5659 } 5660 5661 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 5662 rx->csum_unnecessary = 0; 5663 rx->csum_none = 0; 5664 rx->csum_bad = 0; 5665 } 5666 5667 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 5668 rx->hw_gro_packets = 0; 5669 rx->hw_gro_bytes = 0; 5670 rx->hw_gro_wire_packets = 0; 5671 rx->hw_gro_wire_bytes = 0; 5672 } 5673 5674 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) 5675 rx->hw_drop_ratelimits = 0; 5676 5677 tx->bytes = 0; 5678 tx->packets = 0; 5679 tx->stop = 0; 5680 tx->wake = 0; 5681 5682 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 5683 tx->hw_drops = 0; 5684 tx->hw_drop_errors = 0; 5685 } 5686 5687 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 5688 tx->csum_none = 0; 5689 tx->needs_csum = 0; 5690 } 5691 5692 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 5693 tx->hw_gso_packets = 0; 5694 tx->hw_gso_bytes = 0; 5695 tx->hw_gso_wire_packets = 0; 5696 tx->hw_gso_wire_bytes = 0; 5697 } 5698 5699 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) 5700 tx->hw_drop_ratelimits = 0; 5701 5702 netdev_stat_queue_sum(dev, 5703 dev->real_num_rx_queues, vi->max_queue_pairs, rx, 5704 dev->real_num_tx_queues, vi->max_queue_pairs, tx); 5705 } 5706 5707 static const struct netdev_stat_ops virtnet_stat_ops = { 5708 .get_queue_stats_rx = virtnet_get_queue_stats_rx, 5709 .get_queue_stats_tx = virtnet_get_queue_stats_tx, 5710 .get_base_stats = virtnet_get_base_stats, 5711 }; 5712 5713 static void virtnet_freeze_down(struct virtio_device *vdev) 5714 { 5715 struct virtnet_info *vi = vdev->priv; 5716 5717 /* Make sure no work handler is accessing the device */ 5718 flush_work(&vi->config_work); 5719 disable_rx_mode_work(vi); 5720 flush_work(&vi->rx_mode_work); 5721 5722 if (netif_running(vi->dev)) { 5723 rtnl_lock(); 5724 virtnet_close(vi->dev); 5725 rtnl_unlock(); 5726 } 5727 5728 netif_tx_lock_bh(vi->dev); 5729 netif_device_detach(vi->dev); 5730 netif_tx_unlock_bh(vi->dev); 5731 } 5732 5733 static int init_vqs(struct virtnet_info *vi); 5734 5735 static int virtnet_restore_up(struct virtio_device *vdev) 5736 { 5737 struct virtnet_info *vi = vdev->priv; 5738 int err; 5739 5740 err = init_vqs(vi); 5741 if (err) 5742 return err; 5743 5744 err = virtnet_create_page_pools(vi); 5745 if (err) 5746 goto err_del_vqs; 5747 5748 virtio_device_ready(vdev); 5749 5750 enable_rx_mode_work(vi); 5751 5752 if (netif_running(vi->dev)) { 5753 rtnl_lock(); 5754 err = virtnet_open(vi->dev); 5755 rtnl_unlock(); 5756 if (err) 5757 goto err_destroy_pools; 5758 } 5759 5760 netif_tx_lock_bh(vi->dev); 5761 netif_device_attach(vi->dev); 5762 netif_tx_unlock_bh(vi->dev); 5763 return 0; 5764 5765 err_destroy_pools: 5766 virtio_reset_device(vdev); 5767 free_unused_bufs(vi); 5768 virtnet_destroy_page_pools(vi); 5769 virtnet_del_vqs(vi); 5770 return err; 5771 5772 err_del_vqs: 5773 virtio_reset_device(vdev); 5774 virtnet_del_vqs(vi); 5775 return err; 5776 } 5777 5778 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads) 5779 { 5780 __virtio64 *_offloads __free(kfree) = NULL; 5781 struct scatterlist sg; 5782 5783 _offloads = kzalloc_obj(*_offloads); 5784 if (!_offloads) 5785 return -ENOMEM; 5786 5787 *_offloads = cpu_to_virtio64(vi->vdev, offloads); 5788 5789 sg_init_one(&sg, _offloads, sizeof(*_offloads)); 5790 5791 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS, 5792 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) { 5793 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n"); 5794 return -EINVAL; 5795 } 5796 5797 return 0; 5798 } 5799 5800 static int virtnet_clear_guest_offloads(struct virtnet_info *vi) 5801 { 5802 u64 offloads = 0; 5803 5804 if (!vi->guest_offloads) 5805 return 0; 5806 5807 return virtnet_set_guest_offloads(vi, offloads); 5808 } 5809 5810 static int virtnet_restore_guest_offloads(struct virtnet_info *vi) 5811 { 5812 u64 offloads = vi->guest_offloads; 5813 5814 if (!vi->guest_offloads) 5815 return 0; 5816 5817 return virtnet_set_guest_offloads(vi, offloads); 5818 } 5819 5820 static int virtnet_rq_bind_xsk_pool(struct virtnet_info *vi, struct receive_queue *rq, 5821 struct xsk_buff_pool *pool) 5822 { 5823 int err, qindex; 5824 5825 qindex = rq - vi->rq; 5826 5827 if (pool) { 5828 err = xdp_rxq_info_reg(&rq->xsk_rxq_info, vi->dev, qindex, rq->napi.napi_id); 5829 if (err < 0) 5830 return err; 5831 5832 err = xdp_rxq_info_reg_mem_model(&rq->xsk_rxq_info, 5833 MEM_TYPE_XSK_BUFF_POOL, NULL); 5834 if (err < 0) 5835 goto unreg; 5836 5837 xsk_pool_set_rxq_info(pool, &rq->xsk_rxq_info); 5838 } 5839 5840 virtnet_rx_pause(vi, rq); 5841 5842 err = virtqueue_reset(rq->vq, virtnet_rq_unmap_free_buf, NULL); 5843 if (err) { 5844 netdev_err(vi->dev, "reset rx fail: rx queue index: %d err: %d\n", qindex, err); 5845 5846 pool = NULL; 5847 } 5848 5849 rq->xsk_pool = pool; 5850 5851 virtnet_rx_resume(vi, rq, true); 5852 5853 if (pool) 5854 return 0; 5855 5856 unreg: 5857 xdp_rxq_info_unreg(&rq->xsk_rxq_info); 5858 return err; 5859 } 5860 5861 static int virtnet_sq_bind_xsk_pool(struct virtnet_info *vi, 5862 struct send_queue *sq, 5863 struct xsk_buff_pool *pool) 5864 { 5865 int err, qindex; 5866 5867 qindex = sq - vi->sq; 5868 5869 virtnet_tx_pause(vi, sq); 5870 5871 err = virtqueue_reset(sq->vq, virtnet_sq_free_unused_buf, 5872 virtnet_sq_free_unused_buf_done); 5873 if (err) { 5874 netdev_err(vi->dev, "reset tx fail: tx queue index: %d err: %d\n", qindex, err); 5875 pool = NULL; 5876 } 5877 5878 sq->xsk_pool = pool; 5879 5880 virtnet_tx_resume(vi, sq); 5881 5882 return err; 5883 } 5884 5885 static int virtnet_xsk_pool_enable(struct net_device *dev, 5886 struct xsk_buff_pool *pool, 5887 u16 qid) 5888 { 5889 struct virtnet_info *vi = netdev_priv(dev); 5890 struct receive_queue *rq; 5891 struct device *dma_dev; 5892 struct send_queue *sq; 5893 dma_addr_t hdr_dma; 5894 int err, size; 5895 5896 if (vi->hdr_len > xsk_pool_get_headroom(pool)) 5897 return -EINVAL; 5898 5899 /* In big_packets mode, xdp cannot work, so there is no need to 5900 * initialize xsk of rq. 5901 */ 5902 if (!vi->rq[qid].page_pool) 5903 return -ENOENT; 5904 5905 if (qid >= vi->curr_queue_pairs) 5906 return -EINVAL; 5907 5908 sq = &vi->sq[qid]; 5909 rq = &vi->rq[qid]; 5910 5911 /* xsk assumes that tx and rx must have the same dma device. The af-xdp 5912 * may use one buffer to receive from the rx and reuse this buffer to 5913 * send by the tx. So the dma dev of sq and rq must be the same one. 5914 * 5915 * But vq->dma_dev allows every vq has the respective dma dev. So I 5916 * check the dma dev of vq and sq is the same dev. 5917 */ 5918 if (virtqueue_dma_dev(rq->vq) != virtqueue_dma_dev(sq->vq)) 5919 return -EINVAL; 5920 5921 dma_dev = virtqueue_dma_dev(rq->vq); 5922 if (!dma_dev) 5923 return -EINVAL; 5924 5925 size = virtqueue_get_vring_size(rq->vq); 5926 5927 rq->xsk_buffs = kvzalloc_objs(*rq->xsk_buffs, size); 5928 if (!rq->xsk_buffs) 5929 return -ENOMEM; 5930 5931 hdr_dma = virtqueue_map_single_attrs(sq->vq, &xsk_hdr, vi->hdr_len, 5932 DMA_TO_DEVICE, 0); 5933 if (virtqueue_map_mapping_error(sq->vq, hdr_dma)) { 5934 err = -ENOMEM; 5935 goto err_free_buffs; 5936 } 5937 5938 err = xsk_pool_dma_map(pool, dma_dev, 0); 5939 if (err) 5940 goto err_xsk_map; 5941 5942 err = virtnet_rq_bind_xsk_pool(vi, rq, pool); 5943 if (err) 5944 goto err_rq; 5945 5946 err = virtnet_sq_bind_xsk_pool(vi, sq, pool); 5947 if (err) 5948 goto err_sq; 5949 5950 /* Now, we do not support tx offload(such as tx csum), so all the tx 5951 * virtnet hdr is zero. So all the tx packets can share a single hdr. 5952 */ 5953 sq->xsk_hdr_dma_addr = hdr_dma; 5954 5955 return 0; 5956 5957 err_sq: 5958 virtnet_rq_bind_xsk_pool(vi, rq, NULL); 5959 err_rq: 5960 xsk_pool_dma_unmap(pool, 0); 5961 err_xsk_map: 5962 virtqueue_unmap_single_attrs(rq->vq, hdr_dma, vi->hdr_len, 5963 DMA_TO_DEVICE, 0); 5964 err_free_buffs: 5965 kvfree(rq->xsk_buffs); 5966 return err; 5967 } 5968 5969 static int virtnet_xsk_pool_disable(struct net_device *dev, u16 qid) 5970 { 5971 struct virtnet_info *vi = netdev_priv(dev); 5972 struct xsk_buff_pool *pool; 5973 struct receive_queue *rq; 5974 struct send_queue *sq; 5975 int err; 5976 5977 if (qid >= vi->curr_queue_pairs) 5978 return -EINVAL; 5979 5980 sq = &vi->sq[qid]; 5981 rq = &vi->rq[qid]; 5982 5983 pool = rq->xsk_pool; 5984 5985 err = virtnet_rq_bind_xsk_pool(vi, rq, NULL); 5986 err |= virtnet_sq_bind_xsk_pool(vi, sq, NULL); 5987 5988 xsk_pool_dma_unmap(pool, 0); 5989 5990 virtqueue_unmap_single_attrs(sq->vq, sq->xsk_hdr_dma_addr, 5991 vi->hdr_len, DMA_TO_DEVICE, 0); 5992 kvfree(rq->xsk_buffs); 5993 5994 return err; 5995 } 5996 5997 static int virtnet_xsk_pool_setup(struct net_device *dev, struct netdev_bpf *xdp) 5998 { 5999 if (xdp->xsk.pool) 6000 return virtnet_xsk_pool_enable(dev, xdp->xsk.pool, 6001 xdp->xsk.queue_id); 6002 else 6003 return virtnet_xsk_pool_disable(dev, xdp->xsk.queue_id); 6004 } 6005 6006 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog, 6007 struct netlink_ext_ack *extack) 6008 { 6009 unsigned int room = SKB_DATA_ALIGN(XDP_PACKET_HEADROOM + 6010 sizeof(struct skb_shared_info)); 6011 unsigned int max_sz = PAGE_SIZE - room - ETH_HLEN; 6012 struct virtnet_info *vi = netdev_priv(dev); 6013 struct bpf_prog *old_prog; 6014 u16 xdp_qp = 0, curr_qp; 6015 int i, err; 6016 6017 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) 6018 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || 6019 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || 6020 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || 6021 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || 6022 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM) || 6023 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) || 6024 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6))) { 6025 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first"); 6026 return -EOPNOTSUPP; 6027 } 6028 6029 if (vi->mergeable_rx_bufs && !vi->any_header_sg) { 6030 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required"); 6031 return -EINVAL; 6032 } 6033 6034 if (prog && !prog->aux->xdp_has_frags && dev->mtu > max_sz) { 6035 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP without frags"); 6036 netdev_warn(dev, "single-buffer XDP requires MTU less than %u\n", max_sz); 6037 return -EINVAL; 6038 } 6039 6040 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs; 6041 if (prog) 6042 xdp_qp = nr_cpu_ids; 6043 6044 /* XDP requires extra queues for XDP_TX */ 6045 if (curr_qp + xdp_qp > vi->max_queue_pairs) { 6046 netdev_warn_once(dev, "XDP request %i queues but max is %i. XDP_TX and XDP_REDIRECT will operate in a slower locked tx mode.\n", 6047 curr_qp + xdp_qp, vi->max_queue_pairs); 6048 xdp_qp = 0; 6049 } 6050 6051 old_prog = rtnl_dereference(vi->rq[0].xdp_prog); 6052 if (!prog && !old_prog) 6053 return 0; 6054 6055 if (prog) 6056 bpf_prog_add(prog, vi->max_queue_pairs - 1); 6057 6058 virtnet_rx_pause_all(vi); 6059 6060 /* Make sure NAPI is not using any XDP TX queues for RX. */ 6061 if (netif_running(dev)) { 6062 for (i = 0; i < vi->max_queue_pairs; i++) 6063 virtnet_napi_tx_disable(&vi->sq[i]); 6064 } 6065 6066 if (!prog) { 6067 for (i = 0; i < vi->max_queue_pairs; i++) { 6068 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 6069 if (i == 0) 6070 virtnet_restore_guest_offloads(vi); 6071 } 6072 synchronize_net(); 6073 } 6074 6075 err = virtnet_set_queues(vi, curr_qp + xdp_qp); 6076 if (err) 6077 goto err; 6078 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp); 6079 vi->xdp_queue_pairs = xdp_qp; 6080 6081 if (prog) { 6082 vi->xdp_enabled = true; 6083 for (i = 0; i < vi->max_queue_pairs; i++) { 6084 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 6085 if (i == 0 && !old_prog) 6086 virtnet_clear_guest_offloads(vi); 6087 } 6088 if (!old_prog) 6089 xdp_features_set_redirect_target(dev, true); 6090 } else { 6091 xdp_features_clear_redirect_target(dev); 6092 vi->xdp_enabled = false; 6093 } 6094 6095 virtnet_rx_resume_all(vi); 6096 for (i = 0; i < vi->max_queue_pairs; i++) { 6097 if (old_prog) 6098 bpf_prog_put(old_prog); 6099 if (netif_running(dev)) 6100 virtnet_napi_tx_enable(&vi->sq[i]); 6101 } 6102 6103 return 0; 6104 6105 err: 6106 if (!prog) { 6107 virtnet_clear_guest_offloads(vi); 6108 for (i = 0; i < vi->max_queue_pairs; i++) 6109 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog); 6110 } 6111 6112 virtnet_rx_resume_all(vi); 6113 if (netif_running(dev)) { 6114 for (i = 0; i < vi->max_queue_pairs; i++) 6115 virtnet_napi_tx_enable(&vi->sq[i]); 6116 } 6117 if (prog) 6118 bpf_prog_sub(prog, vi->max_queue_pairs - 1); 6119 return err; 6120 } 6121 6122 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp) 6123 { 6124 switch (xdp->command) { 6125 case XDP_SETUP_PROG: 6126 return virtnet_xdp_set(dev, xdp->prog, xdp->extack); 6127 case XDP_SETUP_XSK_POOL: 6128 return virtnet_xsk_pool_setup(dev, xdp); 6129 default: 6130 return -EINVAL; 6131 } 6132 } 6133 6134 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf, 6135 size_t len) 6136 { 6137 struct virtnet_info *vi = netdev_priv(dev); 6138 int ret; 6139 6140 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 6141 return -EOPNOTSUPP; 6142 6143 ret = snprintf(buf, len, "sby"); 6144 if (ret >= len) 6145 return -EOPNOTSUPP; 6146 6147 return 0; 6148 } 6149 6150 static int virtnet_set_features(struct net_device *dev, 6151 netdev_features_t features) 6152 { 6153 struct virtnet_info *vi = netdev_priv(dev); 6154 u64 offloads; 6155 int err; 6156 6157 if ((dev->features ^ features) & NETIF_F_GRO_HW) { 6158 if (vi->xdp_enabled) 6159 return -EBUSY; 6160 6161 if (features & NETIF_F_GRO_HW) 6162 offloads = vi->guest_offloads_capable; 6163 else 6164 offloads = vi->guest_offloads_capable & 6165 ~GUEST_OFFLOAD_GRO_HW_MASK; 6166 6167 err = virtnet_set_guest_offloads(vi, offloads); 6168 if (err) 6169 return err; 6170 vi->guest_offloads = offloads; 6171 } 6172 6173 if ((dev->features ^ features) & NETIF_F_RXHASH) { 6174 if (features & NETIF_F_RXHASH) 6175 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved); 6176 else 6177 vi->rss_hdr->hash_types = cpu_to_le32(VIRTIO_NET_HASH_REPORT_NONE); 6178 6179 if (!virtnet_commit_rss_command(vi)) 6180 return -EINVAL; 6181 } 6182 6183 return 0; 6184 } 6185 6186 static void virtnet_tx_timeout(struct net_device *dev, unsigned int txqueue) 6187 { 6188 struct virtnet_info *priv = netdev_priv(dev); 6189 struct send_queue *sq = &priv->sq[txqueue]; 6190 struct netdev_queue *txq = netdev_get_tx_queue(dev, txqueue); 6191 6192 u64_stats_update_begin(&sq->stats.syncp); 6193 u64_stats_inc(&sq->stats.tx_timeouts); 6194 u64_stats_update_end(&sq->stats.syncp); 6195 6196 netdev_err(dev, "TX timeout on queue: %u, sq: %s, vq: 0x%x, name: %s, %u usecs ago\n", 6197 txqueue, sq->name, sq->vq->index, sq->vq->name, 6198 jiffies_to_usecs(jiffies - READ_ONCE(txq->trans_start))); 6199 } 6200 6201 static int virtnet_init_irq_moder(struct virtnet_info *vi) 6202 { 6203 u8 profile_flags = 0, coal_flags = 0; 6204 int ret, i; 6205 6206 profile_flags |= DIM_PROFILE_RX; 6207 coal_flags |= DIM_COALESCE_USEC | DIM_COALESCE_PKTS; 6208 ret = net_dim_init_irq_moder(vi->dev, profile_flags, coal_flags, 6209 DIM_CQ_PERIOD_MODE_START_FROM_EQE, 6210 0, virtnet_rx_dim_work, NULL); 6211 6212 if (ret) 6213 return ret; 6214 6215 for (i = 0; i < vi->max_queue_pairs; i++) 6216 net_dim_setting(vi->dev, &vi->rq[i].dim, false); 6217 6218 return 0; 6219 } 6220 6221 static void virtnet_free_irq_moder(struct virtnet_info *vi) 6222 { 6223 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 6224 return; 6225 6226 rtnl_lock(); 6227 net_dim_free_irq_moder(vi->dev); 6228 rtnl_unlock(); 6229 } 6230 6231 static netdev_features_t virtnet_features_check(struct sk_buff *skb, 6232 struct net_device *dev, 6233 netdev_features_t features) 6234 { 6235 /* Inner csum offload is only available for GSO packets. */ 6236 if (skb->encapsulation && 6237 (!skb_is_gso(skb) || netif_needs_gso(skb, features))) 6238 return features & ~NETIF_F_CSUM_MASK; 6239 6240 /* Passthru. */ 6241 return features; 6242 } 6243 6244 static const struct net_device_ops virtnet_netdev = { 6245 .ndo_open = virtnet_open, 6246 .ndo_stop = virtnet_close, 6247 .ndo_start_xmit = start_xmit, 6248 .ndo_validate_addr = eth_validate_addr, 6249 .ndo_set_mac_address = virtnet_set_mac_address, 6250 .ndo_set_rx_mode = virtnet_set_rx_mode, 6251 .ndo_get_stats64 = virtnet_stats, 6252 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, 6253 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, 6254 .ndo_bpf = virtnet_xdp, 6255 .ndo_xdp_xmit = virtnet_xdp_xmit, 6256 .ndo_xsk_wakeup = virtnet_xsk_wakeup, 6257 .ndo_features_check = virtnet_features_check, 6258 .ndo_get_phys_port_name = virtnet_get_phys_port_name, 6259 .ndo_set_features = virtnet_set_features, 6260 .ndo_tx_timeout = virtnet_tx_timeout, 6261 }; 6262 6263 static void virtnet_config_changed_work(struct work_struct *work) 6264 { 6265 struct virtnet_info *vi = 6266 container_of(work, struct virtnet_info, config_work); 6267 u16 v; 6268 6269 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS, 6270 struct virtio_net_config, status, &v) < 0) 6271 return; 6272 6273 if (v & VIRTIO_NET_S_ANNOUNCE) { 6274 netdev_notify_peers(vi->dev); 6275 virtnet_ack_link_announce(vi); 6276 } 6277 6278 /* Ignore unknown (future) status bits */ 6279 v &= VIRTIO_NET_S_LINK_UP; 6280 6281 if (vi->status == v) 6282 return; 6283 6284 vi->status = v; 6285 6286 if (vi->status & VIRTIO_NET_S_LINK_UP) { 6287 virtnet_update_settings(vi); 6288 netif_carrier_on(vi->dev); 6289 netif_tx_wake_all_queues(vi->dev); 6290 } else { 6291 netif_carrier_off(vi->dev); 6292 netif_tx_stop_all_queues(vi->dev); 6293 } 6294 } 6295 6296 static void virtnet_config_changed(struct virtio_device *vdev) 6297 { 6298 struct virtnet_info *vi = vdev->priv; 6299 6300 schedule_work(&vi->config_work); 6301 } 6302 6303 static void virtnet_free_queues(struct virtnet_info *vi) 6304 { 6305 int i; 6306 6307 for (i = 0; i < vi->max_queue_pairs; i++) { 6308 __netif_napi_del(&vi->rq[i].napi); 6309 __netif_napi_del(&vi->sq[i].napi); 6310 } 6311 6312 /* We called __netif_napi_del(), 6313 * we need to respect an RCU grace period before freeing vi->rq 6314 */ 6315 synchronize_net(); 6316 6317 kfree(vi->rq); 6318 kfree(vi->sq); 6319 kfree(vi->ctrl); 6320 } 6321 6322 static void _free_receive_bufs(struct virtnet_info *vi) 6323 { 6324 struct bpf_prog *old_prog; 6325 int i; 6326 6327 for (i = 0; i < vi->max_queue_pairs; i++) { 6328 while (vi->rq[i].pages) 6329 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); 6330 6331 old_prog = rtnl_dereference(vi->rq[i].xdp_prog); 6332 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL); 6333 if (old_prog) 6334 bpf_prog_put(old_prog); 6335 } 6336 } 6337 6338 static void free_receive_bufs(struct virtnet_info *vi) 6339 { 6340 rtnl_lock(); 6341 _free_receive_bufs(vi); 6342 rtnl_unlock(); 6343 } 6344 6345 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf) 6346 { 6347 struct virtnet_info *vi = vq->vdev->priv; 6348 struct send_queue *sq; 6349 int i = vq2txq(vq); 6350 6351 sq = &vi->sq[i]; 6352 6353 switch (virtnet_xmit_ptr_unpack(&buf)) { 6354 case VIRTNET_XMIT_TYPE_SKB: 6355 case VIRTNET_XMIT_TYPE_SKB_ORPHAN: 6356 dev_kfree_skb(buf); 6357 break; 6358 6359 case VIRTNET_XMIT_TYPE_XDP: 6360 xdp_return_frame(buf); 6361 break; 6362 6363 case VIRTNET_XMIT_TYPE_XSK: 6364 xsk_tx_completed(sq->xsk_pool, 1); 6365 break; 6366 } 6367 } 6368 6369 static void virtnet_sq_free_unused_buf_done(struct virtqueue *vq) 6370 { 6371 struct virtnet_info *vi = vq->vdev->priv; 6372 int i = vq2txq(vq); 6373 6374 netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i)); 6375 } 6376 6377 static void free_unused_bufs(struct virtnet_info *vi) 6378 { 6379 void *buf; 6380 int i; 6381 6382 for (i = 0; i < vi->max_queue_pairs; i++) { 6383 struct virtqueue *vq = vi->sq[i].vq; 6384 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) 6385 virtnet_sq_free_unused_buf(vq, buf); 6386 cond_resched(); 6387 } 6388 6389 for (i = 0; i < vi->max_queue_pairs; i++) { 6390 struct virtqueue *vq = vi->rq[i].vq; 6391 6392 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) 6393 virtnet_rq_unmap_free_buf(vq, buf); 6394 cond_resched(); 6395 } 6396 } 6397 6398 static void virtnet_del_vqs(struct virtnet_info *vi) 6399 { 6400 struct virtio_device *vdev = vi->vdev; 6401 6402 virtnet_clean_affinity(vi); 6403 6404 vdev->config->del_vqs(vdev); 6405 6406 virtnet_free_queues(vi); 6407 } 6408 6409 /* How large should a single buffer be so a queue full of these can fit at 6410 * least one full packet? 6411 * Logic below assumes the mergeable buffer header is used. 6412 */ 6413 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq) 6414 { 6415 const unsigned int hdr_len = vi->hdr_len; 6416 unsigned int rq_size = virtqueue_get_vring_size(vq); 6417 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu; 6418 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len; 6419 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size); 6420 6421 return max(max(min_buf_len, hdr_len) - hdr_len, 6422 (unsigned int)GOOD_PACKET_LEN); 6423 } 6424 6425 static int virtnet_find_vqs(struct virtnet_info *vi) 6426 { 6427 struct virtqueue_info *vqs_info; 6428 struct virtqueue **vqs; 6429 int ret = -ENOMEM; 6430 int total_vqs; 6431 bool *ctx; 6432 u16 i; 6433 6434 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by 6435 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by 6436 * possible control vq. 6437 */ 6438 total_vqs = vi->max_queue_pairs * 2 + 6439 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); 6440 6441 /* Allocate space for find_vqs parameters */ 6442 vqs = kzalloc_objs(*vqs, total_vqs); 6443 if (!vqs) 6444 goto err_vq; 6445 vqs_info = kzalloc_objs(*vqs_info, total_vqs); 6446 if (!vqs_info) 6447 goto err_vqs_info; 6448 if (vi->mergeable_rx_bufs || !vi->big_packets) { 6449 ctx = kzalloc_objs(*ctx, total_vqs); 6450 if (!ctx) 6451 goto err_ctx; 6452 } else { 6453 ctx = NULL; 6454 } 6455 6456 /* Parameters for control virtqueue, if any */ 6457 if (vi->has_cvq) { 6458 vqs_info[total_vqs - 1].name = "control"; 6459 } 6460 6461 /* Allocate/initialize parameters for send/receive virtqueues */ 6462 for (i = 0; i < vi->max_queue_pairs; i++) { 6463 vqs_info[rxq2vq(i)].callback = skb_recv_done; 6464 vqs_info[txq2vq(i)].callback = skb_xmit_done; 6465 sprintf(vi->rq[i].name, "input.%u", i); 6466 sprintf(vi->sq[i].name, "output.%u", i); 6467 vqs_info[rxq2vq(i)].name = vi->rq[i].name; 6468 vqs_info[txq2vq(i)].name = vi->sq[i].name; 6469 if (ctx) 6470 vqs_info[rxq2vq(i)].ctx = true; 6471 } 6472 6473 ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, vqs_info, NULL); 6474 if (ret) 6475 goto err_find; 6476 6477 if (vi->has_cvq) { 6478 vi->cvq = vqs[total_vqs - 1]; 6479 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) 6480 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; 6481 } 6482 6483 for (i = 0; i < vi->max_queue_pairs; i++) { 6484 vi->rq[i].vq = vqs[rxq2vq(i)]; 6485 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq); 6486 vi->sq[i].vq = vqs[txq2vq(i)]; 6487 } 6488 /* run here: ret == 0. */ 6489 6490 err_find: 6491 kfree(ctx); 6492 err_ctx: 6493 kfree(vqs_info); 6494 err_vqs_info: 6495 kfree(vqs); 6496 err_vq: 6497 return ret; 6498 } 6499 6500 static int virtnet_alloc_queues(struct virtnet_info *vi) 6501 { 6502 int i; 6503 6504 if (vi->has_cvq) { 6505 vi->ctrl = kzalloc_obj(*vi->ctrl); 6506 if (!vi->ctrl) 6507 goto err_ctrl; 6508 } else { 6509 vi->ctrl = NULL; 6510 } 6511 vi->sq = kzalloc_objs(*vi->sq, vi->max_queue_pairs); 6512 if (!vi->sq) 6513 goto err_sq; 6514 vi->rq = kzalloc_objs(*vi->rq, vi->max_queue_pairs); 6515 if (!vi->rq) 6516 goto err_rq; 6517 6518 for (i = 0; i < vi->max_queue_pairs; i++) { 6519 vi->rq[i].pages = NULL; 6520 netif_napi_add_config(vi->dev, &vi->rq[i].napi, virtnet_poll, 6521 i); 6522 vi->rq[i].napi.weight = napi_weight; 6523 netif_napi_add_tx_weight(vi->dev, &vi->sq[i].napi, 6524 virtnet_poll_tx, 6525 napi_tx ? napi_weight : 0); 6526 6527 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); 6528 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len); 6529 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); 6530 6531 u64_stats_init(&vi->rq[i].stats.syncp); 6532 u64_stats_init(&vi->sq[i].stats.syncp); 6533 mutex_init(&vi->rq[i].dim_lock); 6534 } 6535 6536 return 0; 6537 6538 err_rq: 6539 kfree(vi->sq); 6540 err_sq: 6541 kfree(vi->ctrl); 6542 err_ctrl: 6543 return -ENOMEM; 6544 } 6545 6546 static int init_vqs(struct virtnet_info *vi) 6547 { 6548 int ret; 6549 6550 /* Allocate send & receive queues */ 6551 ret = virtnet_alloc_queues(vi); 6552 if (ret) 6553 goto err; 6554 6555 ret = virtnet_find_vqs(vi); 6556 if (ret) 6557 goto err_free; 6558 6559 cpus_read_lock(); 6560 virtnet_set_affinity(vi); 6561 cpus_read_unlock(); 6562 6563 return 0; 6564 6565 err_free: 6566 virtnet_free_queues(vi); 6567 err: 6568 return ret; 6569 } 6570 6571 #ifdef CONFIG_SYSFS 6572 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue, 6573 char *buf) 6574 { 6575 struct virtnet_info *vi = netdev_priv(queue->dev); 6576 unsigned int queue_index = get_netdev_rx_queue_index(queue); 6577 unsigned int headroom = virtnet_get_headroom(vi); 6578 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 6579 struct ewma_pkt_len *avg; 6580 6581 BUG_ON(queue_index >= vi->max_queue_pairs); 6582 avg = &vi->rq[queue_index].mrg_avg_pkt_len; 6583 return sprintf(buf, "%u\n", 6584 get_mergeable_buf_len(&vi->rq[queue_index], avg, 6585 SKB_DATA_ALIGN(headroom + tailroom))); 6586 } 6587 6588 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute = 6589 __ATTR_RO(mergeable_rx_buffer_size); 6590 6591 static struct attribute *virtio_net_mrg_rx_attrs[] = { 6592 &mergeable_rx_buffer_size_attribute.attr, 6593 NULL 6594 }; 6595 6596 static const struct attribute_group virtio_net_mrg_rx_group = { 6597 .name = "virtio_net", 6598 .attrs = virtio_net_mrg_rx_attrs 6599 }; 6600 #endif 6601 6602 static bool virtnet_fail_on_feature(struct virtio_device *vdev, 6603 unsigned int fbit, 6604 const char *fname, const char *dname) 6605 { 6606 if (!virtio_has_feature(vdev, fbit)) 6607 return false; 6608 6609 dev_err(&vdev->dev, "device advertises feature %s but not %s", 6610 fname, dname); 6611 6612 return true; 6613 } 6614 6615 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ 6616 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit) 6617 6618 static bool virtnet_validate_features(struct virtio_device *vdev) 6619 { 6620 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) && 6621 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX, 6622 "VIRTIO_NET_F_CTRL_VQ") || 6623 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN, 6624 "VIRTIO_NET_F_CTRL_VQ") || 6625 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE, 6626 "VIRTIO_NET_F_CTRL_VQ") || 6627 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") || 6628 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR, 6629 "VIRTIO_NET_F_CTRL_VQ") || 6630 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_RSS, 6631 "VIRTIO_NET_F_CTRL_VQ") || 6632 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_HASH_REPORT, 6633 "VIRTIO_NET_F_CTRL_VQ") || 6634 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_NOTF_COAL, 6635 "VIRTIO_NET_F_CTRL_VQ") || 6636 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_VQ_NOTF_COAL, 6637 "VIRTIO_NET_F_CTRL_VQ"))) { 6638 return false; 6639 } 6640 6641 return true; 6642 } 6643 6644 #define MIN_MTU ETH_MIN_MTU 6645 #define MAX_MTU ETH_MAX_MTU 6646 6647 static int virtnet_validate(struct virtio_device *vdev) 6648 { 6649 if (!vdev->config->get) { 6650 dev_err(&vdev->dev, "%s failure: config access disabled\n", 6651 __func__); 6652 return -EINVAL; 6653 } 6654 6655 if (!virtnet_validate_features(vdev)) 6656 return -EINVAL; 6657 6658 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 6659 int mtu = virtio_cread16(vdev, 6660 offsetof(struct virtio_net_config, 6661 mtu)); 6662 if (mtu < MIN_MTU) 6663 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU); 6664 } 6665 6666 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY) && 6667 !virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) { 6668 dev_warn(&vdev->dev, "device advertises feature VIRTIO_NET_F_STANDBY but not VIRTIO_NET_F_MAC, disabling standby"); 6669 __virtio_clear_bit(vdev, VIRTIO_NET_F_STANDBY); 6670 } 6671 6672 return 0; 6673 } 6674 6675 static bool virtnet_check_guest_gso(const struct virtnet_info *vi) 6676 { 6677 return virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || 6678 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || 6679 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || 6680 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || 6681 (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) && 6682 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6)); 6683 } 6684 6685 static void virtnet_set_big_packets(struct virtnet_info *vi, const int mtu) 6686 { 6687 bool guest_gso = virtnet_check_guest_gso(vi); 6688 6689 /* If device can receive ANY guest GSO packets, regardless of mtu, 6690 * allocate packets of maximum size, otherwise limit it to only 6691 * mtu size worth only. 6692 */ 6693 if (mtu > ETH_DATA_LEN || guest_gso) { 6694 vi->big_packets = true; 6695 vi->big_packets_num_skbfrags = guest_gso ? MAX_SKB_FRAGS : DIV_ROUND_UP(mtu, PAGE_SIZE); 6696 } 6697 } 6698 6699 #define VIRTIO_NET_HASH_REPORT_MAX_TABLE 10 6700 static enum xdp_rss_hash_type 6701 virtnet_xdp_rss_type[VIRTIO_NET_HASH_REPORT_MAX_TABLE] = { 6702 [VIRTIO_NET_HASH_REPORT_NONE] = XDP_RSS_TYPE_NONE, 6703 [VIRTIO_NET_HASH_REPORT_IPv4] = XDP_RSS_TYPE_L3_IPV4, 6704 [VIRTIO_NET_HASH_REPORT_TCPv4] = XDP_RSS_TYPE_L4_IPV4_TCP, 6705 [VIRTIO_NET_HASH_REPORT_UDPv4] = XDP_RSS_TYPE_L4_IPV4_UDP, 6706 [VIRTIO_NET_HASH_REPORT_IPv6] = XDP_RSS_TYPE_L3_IPV6, 6707 [VIRTIO_NET_HASH_REPORT_TCPv6] = XDP_RSS_TYPE_L4_IPV6_TCP, 6708 [VIRTIO_NET_HASH_REPORT_UDPv6] = XDP_RSS_TYPE_L4_IPV6_UDP, 6709 [VIRTIO_NET_HASH_REPORT_IPv6_EX] = XDP_RSS_TYPE_L3_IPV6_EX, 6710 [VIRTIO_NET_HASH_REPORT_TCPv6_EX] = XDP_RSS_TYPE_L4_IPV6_TCP_EX, 6711 [VIRTIO_NET_HASH_REPORT_UDPv6_EX] = XDP_RSS_TYPE_L4_IPV6_UDP_EX 6712 }; 6713 6714 static int virtnet_xdp_rx_hash(const struct xdp_md *_ctx, u32 *hash, 6715 enum xdp_rss_hash_type *rss_type) 6716 { 6717 const struct xdp_buff *xdp = (void *)_ctx; 6718 struct virtio_net_hdr_v1_hash *hdr_hash; 6719 struct virtnet_info *vi; 6720 u16 hash_report; 6721 6722 if (!(xdp->rxq->dev->features & NETIF_F_RXHASH)) 6723 return -ENODATA; 6724 6725 vi = netdev_priv(xdp->rxq->dev); 6726 hdr_hash = (struct virtio_net_hdr_v1_hash *)(xdp->data - vi->hdr_len); 6727 hash_report = __le16_to_cpu(hdr_hash->hash_report); 6728 6729 if (hash_report >= VIRTIO_NET_HASH_REPORT_MAX_TABLE) 6730 hash_report = VIRTIO_NET_HASH_REPORT_NONE; 6731 6732 *rss_type = virtnet_xdp_rss_type[hash_report]; 6733 *hash = virtio_net_hash_value(hdr_hash); 6734 return 0; 6735 } 6736 6737 static const struct xdp_metadata_ops virtnet_xdp_metadata_ops = { 6738 .xmo_rx_hash = virtnet_xdp_rx_hash, 6739 }; 6740 6741 static int virtnet_probe(struct virtio_device *vdev) 6742 { 6743 int i, err = -ENOMEM; 6744 struct net_device *dev; 6745 struct virtnet_info *vi; 6746 u16 max_queue_pairs; 6747 int mtu = 0; 6748 u16 key_sz; 6749 6750 /* Find if host supports multiqueue/rss virtio_net device */ 6751 max_queue_pairs = 1; 6752 if (virtio_has_feature(vdev, VIRTIO_NET_F_MQ) || virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) 6753 max_queue_pairs = 6754 virtio_cread16(vdev, offsetof(struct virtio_net_config, max_virtqueue_pairs)); 6755 6756 /* We need at least 2 queue's */ 6757 if (max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || 6758 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || 6759 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 6760 max_queue_pairs = 1; 6761 6762 /* Allocate ourselves a network device with room for our info */ 6763 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); 6764 if (!dev) 6765 return -ENOMEM; 6766 6767 /* Set up network device as normal. */ 6768 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE | 6769 IFF_TX_SKB_NO_LINEAR; 6770 dev->netdev_ops = &virtnet_netdev; 6771 dev->stat_ops = &virtnet_stat_ops; 6772 dev->features = NETIF_F_HIGHDMA; 6773 6774 dev->ethtool_ops = &virtnet_ethtool_ops; 6775 SET_NETDEV_DEV(dev, &vdev->dev); 6776 6777 /* Do we support "hardware" checksums? */ 6778 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { 6779 /* This opens up the world of extra features. */ 6780 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG; 6781 if (csum) 6782 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG; 6783 6784 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { 6785 dev->hw_features |= NETIF_F_TSO 6786 | NETIF_F_TSO_ECN | NETIF_F_TSO6; 6787 } 6788 /* Individual feature bits: what can host handle? */ 6789 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) 6790 dev->hw_features |= NETIF_F_TSO; 6791 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) 6792 dev->hw_features |= NETIF_F_TSO6; 6793 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) 6794 dev->hw_features |= NETIF_F_TSO_ECN; 6795 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_USO)) 6796 dev->hw_features |= NETIF_F_GSO_UDP_L4; 6797 6798 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) { 6799 dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL; 6800 dev->hw_enc_features = dev->hw_features; 6801 } 6802 if (dev->hw_features & NETIF_F_GSO_UDP_TUNNEL && 6803 virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM)) { 6804 dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM; 6805 dev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM; 6806 } 6807 6808 dev->features |= NETIF_F_GSO_ROBUST; 6809 6810 if (gso) 6811 dev->features |= dev->hw_features; 6812 /* (!csum && gso) case will be fixed by register_netdev() */ 6813 } 6814 6815 /* 1. With VIRTIO_NET_F_GUEST_CSUM negotiation, the driver doesn't 6816 * need to calculate checksums for partially checksummed packets, 6817 * as they're considered valid by the upper layer. 6818 * 2. Without VIRTIO_NET_F_GUEST_CSUM negotiation, the driver only 6819 * receives fully checksummed packets. The device may assist in 6820 * validating these packets' checksums, so the driver won't have to. 6821 */ 6822 dev->features |= NETIF_F_RXCSUM; 6823 6824 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || 6825 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6)) 6826 dev->features |= NETIF_F_GRO_HW; 6827 6828 dev->vlan_features = dev->features; 6829 dev->xdp_features = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT | 6830 NETDEV_XDP_ACT_XSK_ZEROCOPY; 6831 6832 /* MTU range: 68 - 65535 */ 6833 dev->min_mtu = MIN_MTU; 6834 dev->max_mtu = MAX_MTU; 6835 6836 /* Configuration may specify what MAC to use. Otherwise random. */ 6837 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) { 6838 u8 addr[ETH_ALEN]; 6839 6840 virtio_cread_bytes(vdev, 6841 offsetof(struct virtio_net_config, mac), 6842 addr, ETH_ALEN); 6843 eth_hw_addr_set(dev, addr); 6844 } else { 6845 eth_hw_addr_random(dev); 6846 dev_info(&vdev->dev, "Assigned random MAC address %pM\n", 6847 dev->dev_addr); 6848 } 6849 6850 /* Set up our device-specific information */ 6851 vi = netdev_priv(dev); 6852 vi->dev = dev; 6853 vi->vdev = vdev; 6854 vdev->priv = vi; 6855 6856 INIT_WORK(&vi->config_work, virtnet_config_changed_work); 6857 INIT_WORK(&vi->rx_mode_work, virtnet_rx_mode_work); 6858 6859 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) { 6860 vi->mergeable_rx_bufs = true; 6861 dev->xdp_features |= NETDEV_XDP_ACT_RX_SG; 6862 } 6863 6864 if (virtio_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT)) 6865 vi->has_rss_hash_report = true; 6866 6867 if (virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) { 6868 vi->has_rss = true; 6869 6870 vi->rss_indir_table_size = 6871 virtio_cread16(vdev, offsetof(struct virtio_net_config, 6872 rss_max_indirection_table_length)); 6873 } 6874 vi->rss_hdr = devm_kzalloc(&vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL); 6875 if (!vi->rss_hdr) { 6876 err = -ENOMEM; 6877 goto free; 6878 } 6879 6880 if (vi->has_rss || vi->has_rss_hash_report) { 6881 key_sz = virtio_cread8(vdev, offsetof(struct virtio_net_config, rss_max_key_size)); 6882 6883 vi->rss_key_size = min_t(u16, key_sz, NETDEV_RSS_KEY_LEN); 6884 if (key_sz > vi->rss_key_size) 6885 dev_warn(&vdev->dev, 6886 "rss_max_key_size=%u exceeds driver limit %u, clamping\n", 6887 key_sz, vi->rss_key_size); 6888 6889 vi->rss_hash_types_supported = 6890 virtio_cread32(vdev, offsetof(struct virtio_net_config, supported_hash_types)); 6891 vi->rss_hash_types_supported &= 6892 ~(VIRTIO_NET_RSS_HASH_TYPE_IP_EX | 6893 VIRTIO_NET_RSS_HASH_TYPE_TCP_EX | 6894 VIRTIO_NET_RSS_HASH_TYPE_UDP_EX); 6895 6896 dev->hw_features |= NETIF_F_RXHASH; 6897 dev->xdp_metadata_ops = &virtnet_xdp_metadata_ops; 6898 } 6899 6900 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO) || 6901 virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) 6902 vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash_tunnel); 6903 else if (vi->has_rss_hash_report) 6904 vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash); 6905 else if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) || 6906 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 6907 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); 6908 else 6909 vi->hdr_len = sizeof(struct virtio_net_hdr); 6910 6911 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM)) 6912 vi->rx_tnl_csum = true; 6913 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO)) 6914 vi->rx_tnl = true; 6915 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) 6916 vi->tx_tnl = true; 6917 6918 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) || 6919 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 6920 vi->any_header_sg = true; 6921 6922 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 6923 vi->has_cvq = true; 6924 6925 mutex_init(&vi->cvq_lock); 6926 6927 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 6928 mtu = virtio_cread16(vdev, 6929 offsetof(struct virtio_net_config, 6930 mtu)); 6931 if (mtu < dev->min_mtu) { 6932 /* Should never trigger: MTU was previously validated 6933 * in virtnet_validate. 6934 */ 6935 dev_err(&vdev->dev, 6936 "device MTU appears to have changed it is now %d < %d", 6937 mtu, dev->min_mtu); 6938 err = -EINVAL; 6939 goto free; 6940 } 6941 6942 dev->mtu = mtu; 6943 dev->max_mtu = mtu; 6944 } 6945 6946 virtnet_set_big_packets(vi, mtu); 6947 6948 if (vi->any_header_sg) 6949 dev->needed_headroom = vi->hdr_len; 6950 6951 /* Enable multiqueue by default */ 6952 if (num_online_cpus() >= max_queue_pairs) 6953 vi->curr_queue_pairs = max_queue_pairs; 6954 else 6955 vi->curr_queue_pairs = num_online_cpus(); 6956 vi->max_queue_pairs = max_queue_pairs; 6957 6958 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ 6959 err = init_vqs(vi); 6960 if (err) 6961 goto free; 6962 6963 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) { 6964 vi->intr_coal_rx.max_usecs = 0; 6965 vi->intr_coal_tx.max_usecs = 0; 6966 vi->intr_coal_rx.max_packets = 0; 6967 6968 /* Keep the default values of the coalescing parameters 6969 * aligned with the default napi_tx state. 6970 */ 6971 if (vi->sq[0].napi.weight) 6972 vi->intr_coal_tx.max_packets = 1; 6973 else 6974 vi->intr_coal_tx.max_packets = 0; 6975 } 6976 6977 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) { 6978 /* The reason is the same as VIRTIO_NET_F_NOTF_COAL. */ 6979 for (i = 0; i < vi->max_queue_pairs; i++) 6980 if (vi->sq[i].napi.weight) 6981 vi->sq[i].intr_coal.max_packets = 1; 6982 6983 err = virtnet_init_irq_moder(vi); 6984 if (err) 6985 goto free; 6986 } 6987 6988 /* Create page pools for receive queues. 6989 * Page pools are created at probe time so they can be used 6990 * with premapped DMA addresses throughout the device lifetime. 6991 */ 6992 err = virtnet_create_page_pools(vi); 6993 if (err) 6994 goto free_irq_moder; 6995 6996 #ifdef CONFIG_SYSFS 6997 if (vi->mergeable_rx_bufs) 6998 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group; 6999 #endif 7000 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs); 7001 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs); 7002 7003 virtnet_init_settings(dev); 7004 7005 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) { 7006 vi->failover = net_failover_create(vi->dev); 7007 if (IS_ERR(vi->failover)) { 7008 err = PTR_ERR(vi->failover); 7009 goto free_page_pools; 7010 } 7011 } 7012 7013 if (vi->has_rss || vi->has_rss_hash_report) 7014 virtnet_init_default_rss(vi); 7015 7016 enable_rx_mode_work(vi); 7017 7018 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++) { 7019 unsigned int fbit; 7020 7021 fbit = virtio_offload_to_feature(guest_offloads[i]); 7022 if (virtio_has_feature(vi->vdev, fbit)) 7023 set_bit(guest_offloads[i], &vi->guest_offloads); 7024 } 7025 vi->guest_offloads_capable = vi->guest_offloads; 7026 7027 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) && 7028 (vi->guest_offloads_capable & GUEST_OFFLOAD_GRO_HW_MASK)) 7029 dev->hw_features |= NETIF_F_GRO_HW; 7030 7031 /* serialize netdev register + virtio_device_ready() with ndo_open() */ 7032 rtnl_lock(); 7033 7034 err = register_netdevice(dev); 7035 if (err) { 7036 pr_debug("virtio_net: registering device failed\n"); 7037 rtnl_unlock(); 7038 goto free_failover; 7039 } 7040 7041 /* Disable config change notification until ndo_open. */ 7042 virtio_config_driver_disable(vi->vdev); 7043 7044 virtio_device_ready(vdev); 7045 7046 if (vi->has_rss || vi->has_rss_hash_report) { 7047 if (!virtnet_commit_rss_command(vi)) { 7048 dev_warn(&vdev->dev, "RSS disabled because committing failed.\n"); 7049 dev->hw_features &= ~NETIF_F_RXHASH; 7050 vi->has_rss_hash_report = false; 7051 vi->has_rss = false; 7052 } 7053 } 7054 7055 virtnet_set_queues(vi, vi->curr_queue_pairs); 7056 7057 /* a random MAC address has been assigned, notify the device. 7058 * We don't fail probe if VIRTIO_NET_F_CTRL_MAC_ADDR is not there 7059 * because many devices work fine without getting MAC explicitly 7060 */ 7061 if (!virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && 7062 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { 7063 struct scatterlist sg; 7064 7065 sg_init_one(&sg, dev->dev_addr, dev->addr_len); 7066 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 7067 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { 7068 pr_debug("virtio_net: setting MAC address failed\n"); 7069 rtnl_unlock(); 7070 err = -EINVAL; 7071 goto free_unregister_netdev; 7072 } 7073 } 7074 7075 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) { 7076 struct virtio_net_stats_capabilities *stats_cap __free(kfree) = NULL; 7077 struct scatterlist sg; 7078 __le64 v; 7079 7080 stats_cap = kzalloc_obj(*stats_cap); 7081 if (!stats_cap) { 7082 rtnl_unlock(); 7083 err = -ENOMEM; 7084 goto free_unregister_netdev; 7085 } 7086 7087 sg_init_one(&sg, stats_cap, sizeof(*stats_cap)); 7088 7089 if (!virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS, 7090 VIRTIO_NET_CTRL_STATS_QUERY, 7091 NULL, &sg)) { 7092 pr_debug("virtio_net: fail to get stats capability\n"); 7093 rtnl_unlock(); 7094 err = -EINVAL; 7095 goto free_unregister_netdev; 7096 } 7097 7098 v = stats_cap->supported_stats_types[0]; 7099 vi->device_stats_cap = le64_to_cpu(v); 7100 } 7101 7102 /* Assume link up if device can't report link status, 7103 otherwise get link status from config. */ 7104 netif_carrier_off(dev); 7105 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { 7106 virtio_config_changed(vi->vdev); 7107 } else { 7108 vi->status = VIRTIO_NET_S_LINK_UP; 7109 virtnet_update_settings(vi); 7110 netif_carrier_on(dev); 7111 } 7112 7113 rtnl_unlock(); 7114 7115 err = virtnet_cpu_notif_add(vi); 7116 if (err) { 7117 pr_debug("virtio_net: registering cpu notifier failed\n"); 7118 goto free_unregister_netdev; 7119 } 7120 7121 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", 7122 dev->name, max_queue_pairs); 7123 7124 return 0; 7125 7126 free_unregister_netdev: 7127 unregister_netdev(dev); 7128 free_failover: 7129 net_failover_destroy(vi->failover); 7130 free_page_pools: 7131 virtnet_destroy_page_pools(vi); 7132 free_irq_moder: 7133 virtnet_free_irq_moder(vi); 7134 virtio_reset_device(vdev); 7135 virtnet_del_vqs(vi); 7136 free: 7137 free_netdev(dev); 7138 return err; 7139 } 7140 7141 static void remove_vq_common(struct virtnet_info *vi) 7142 { 7143 int i; 7144 7145 virtio_reset_device(vi->vdev); 7146 7147 /* Free unused buffers in both send and recv, if any. */ 7148 free_unused_bufs(vi); 7149 7150 /* 7151 * Rule of thumb is netdev_tx_reset_queue() should follow any 7152 * skb freeing not followed by netdev_tx_completed_queue() 7153 */ 7154 for (i = 0; i < vi->max_queue_pairs; i++) 7155 netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i)); 7156 7157 free_receive_bufs(vi); 7158 7159 virtnet_destroy_page_pools(vi); 7160 7161 virtnet_del_vqs(vi); 7162 } 7163 7164 static void virtnet_remove(struct virtio_device *vdev) 7165 { 7166 struct virtnet_info *vi = vdev->priv; 7167 7168 virtnet_cpu_notif_remove(vi); 7169 7170 /* Make sure no work handler is accessing the device. */ 7171 flush_work(&vi->config_work); 7172 disable_rx_mode_work(vi); 7173 flush_work(&vi->rx_mode_work); 7174 7175 virtnet_free_irq_moder(vi); 7176 7177 unregister_netdev(vi->dev); 7178 7179 net_failover_destroy(vi->failover); 7180 7181 remove_vq_common(vi); 7182 7183 free_netdev(vi->dev); 7184 } 7185 7186 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev) 7187 { 7188 struct virtnet_info *vi = vdev->priv; 7189 7190 virtnet_cpu_notif_remove(vi); 7191 virtnet_freeze_down(vdev); 7192 remove_vq_common(vi); 7193 7194 return 0; 7195 } 7196 7197 static __maybe_unused int virtnet_restore(struct virtio_device *vdev) 7198 { 7199 struct virtnet_info *vi = vdev->priv; 7200 int err; 7201 7202 err = virtnet_restore_up(vdev); 7203 if (err) 7204 return err; 7205 virtnet_set_queues(vi, vi->curr_queue_pairs); 7206 7207 err = virtnet_cpu_notif_add(vi); 7208 if (err) { 7209 virtnet_freeze_down(vdev); 7210 remove_vq_common(vi); 7211 return err; 7212 } 7213 7214 return 0; 7215 } 7216 7217 static struct virtio_device_id id_table[] = { 7218 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, 7219 { 0 }, 7220 }; 7221 7222 #define VIRTNET_FEATURES \ 7223 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ 7224 VIRTIO_NET_F_MAC, \ 7225 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ 7226 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ 7227 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ 7228 VIRTIO_NET_F_HOST_USO, VIRTIO_NET_F_GUEST_USO4, VIRTIO_NET_F_GUEST_USO6, \ 7229 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ 7230 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ 7231 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ 7232 VIRTIO_NET_F_CTRL_MAC_ADDR, \ 7233 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ 7234 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY, \ 7235 VIRTIO_NET_F_RSS, VIRTIO_NET_F_HASH_REPORT, VIRTIO_NET_F_NOTF_COAL, \ 7236 VIRTIO_NET_F_VQ_NOTF_COAL, \ 7237 VIRTIO_NET_F_GUEST_HDRLEN, VIRTIO_NET_F_DEVICE_STATS 7238 7239 static unsigned int features[] = { 7240 VIRTNET_FEATURES, 7241 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO, 7242 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM, 7243 VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO, 7244 VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM, 7245 }; 7246 7247 static unsigned int features_legacy[] = { 7248 VIRTNET_FEATURES, 7249 VIRTIO_NET_F_GSO, 7250 VIRTIO_F_ANY_LAYOUT, 7251 }; 7252 7253 static struct virtio_driver virtio_net_driver = { 7254 .feature_table = features, 7255 .feature_table_size = ARRAY_SIZE(features), 7256 .feature_table_legacy = features_legacy, 7257 .feature_table_size_legacy = ARRAY_SIZE(features_legacy), 7258 .driver.name = KBUILD_MODNAME, 7259 .id_table = id_table, 7260 .validate = virtnet_validate, 7261 .probe = virtnet_probe, 7262 .remove = virtnet_remove, 7263 .config_changed = virtnet_config_changed, 7264 #ifdef CONFIG_PM_SLEEP 7265 .freeze = virtnet_freeze, 7266 .restore = virtnet_restore, 7267 #endif 7268 }; 7269 7270 static __init int virtio_net_driver_init(void) 7271 { 7272 int ret; 7273 7274 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online", 7275 virtnet_cpu_online, 7276 virtnet_cpu_down_prep); 7277 if (ret < 0) 7278 goto out; 7279 virtionet_online = ret; 7280 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead", 7281 NULL, virtnet_cpu_dead); 7282 if (ret) 7283 goto err_dead; 7284 ret = register_virtio_driver(&virtio_net_driver); 7285 if (ret) 7286 goto err_virtio; 7287 return 0; 7288 err_virtio: 7289 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 7290 err_dead: 7291 cpuhp_remove_multi_state(virtionet_online); 7292 out: 7293 return ret; 7294 } 7295 module_init(virtio_net_driver_init); 7296 7297 static __exit void virtio_net_driver_exit(void) 7298 { 7299 unregister_virtio_driver(&virtio_net_driver); 7300 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 7301 cpuhp_remove_multi_state(virtionet_online); 7302 } 7303 module_exit(virtio_net_driver_exit); 7304 7305 MODULE_DEVICE_TABLE(virtio, id_table); 7306 MODULE_DESCRIPTION("Virtio network driver"); 7307 MODULE_LICENSE("GPL"); 7308