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 unsigned int old_ring_num = virtqueue_get_vring_size(rq->vq); 3448 struct xdp_buff **tmp_xsk_buffs = NULL; 3449 int err, qindex; 3450 3451 qindex = rq - vi->rq; 3452 3453 if (rq->xsk_pool && ring_num > old_ring_num) { 3454 tmp_xsk_buffs = kvzalloc_objs(*tmp_xsk_buffs, ring_num); 3455 if (!tmp_xsk_buffs) 3456 return -ENOMEM; 3457 } 3458 3459 virtnet_rx_pause(vi, rq); 3460 3461 err = virtqueue_resize(rq->vq, ring_num, virtnet_rq_unmap_free_buf, NULL); 3462 3463 /* virtqueue_resize may have changed the size even if err != 0 */ 3464 if (tmp_xsk_buffs && virtqueue_get_vring_size(rq->vq) > old_ring_num) 3465 swap(rq->xsk_buffs, tmp_xsk_buffs); 3466 3467 if (err) 3468 netdev_err(vi->dev, "resize rx fail: rx queue index: %d err: %d\n", qindex, err); 3469 3470 virtnet_rx_resume(vi, rq, true); 3471 kvfree(tmp_xsk_buffs); 3472 return err; 3473 } 3474 3475 static void virtnet_tx_pause(struct virtnet_info *vi, struct send_queue *sq) 3476 { 3477 bool running = netif_running(vi->dev); 3478 struct netdev_queue *txq; 3479 int qindex; 3480 3481 qindex = sq - vi->sq; 3482 3483 if (running) 3484 virtnet_napi_tx_disable(sq); 3485 3486 txq = netdev_get_tx_queue(vi->dev, qindex); 3487 3488 /* 1. wait all ximt complete 3489 * 2. fix the race of netif_stop_subqueue() vs netif_start_subqueue() 3490 */ 3491 __netif_tx_lock_bh(txq); 3492 3493 /* Prevent rx poll from accessing sq. */ 3494 sq->reset = true; 3495 3496 /* Prevent the upper layer from trying to send packets. */ 3497 netif_stop_subqueue(vi->dev, qindex); 3498 u64_stats_update_begin(&sq->stats.syncp); 3499 u64_stats_inc(&sq->stats.stop); 3500 u64_stats_update_end(&sq->stats.syncp); 3501 3502 __netif_tx_unlock_bh(txq); 3503 } 3504 3505 static void virtnet_tx_resume(struct virtnet_info *vi, struct send_queue *sq) 3506 { 3507 bool running = netif_running(vi->dev); 3508 struct netdev_queue *txq; 3509 int qindex; 3510 3511 qindex = sq - vi->sq; 3512 3513 txq = netdev_get_tx_queue(vi->dev, qindex); 3514 3515 __netif_tx_lock_bh(txq); 3516 sq->reset = false; 3517 virtnet_tx_wake_queue(vi, sq); 3518 __netif_tx_unlock_bh(txq); 3519 3520 if (running) 3521 virtnet_napi_tx_enable(sq); 3522 } 3523 3524 static int virtnet_tx_resize(struct virtnet_info *vi, struct send_queue *sq, 3525 u32 ring_num) 3526 { 3527 int qindex, err; 3528 3529 if (ring_num <= MAX_SKB_FRAGS + 2) { 3530 netdev_err(vi->dev, "tx size (%d) cannot be smaller than %d\n", 3531 ring_num, MAX_SKB_FRAGS + 2); 3532 return -EINVAL; 3533 } 3534 3535 qindex = sq - vi->sq; 3536 3537 virtnet_tx_pause(vi, sq); 3538 3539 err = virtqueue_resize(sq->vq, ring_num, virtnet_sq_free_unused_buf, 3540 virtnet_sq_free_unused_buf_done); 3541 if (err) 3542 netdev_err(vi->dev, "resize tx fail: tx queue index: %d err: %d\n", qindex, err); 3543 3544 virtnet_tx_resume(vi, sq); 3545 3546 return err; 3547 } 3548 3549 /* 3550 * Send command via the control virtqueue and check status. Commands 3551 * supported by the hypervisor, as indicated by feature bits, should 3552 * never fail unless improperly formatted. 3553 */ 3554 static bool virtnet_send_command_reply(struct virtnet_info *vi, u8 class, u8 cmd, 3555 struct scatterlist *out, 3556 struct scatterlist *in) 3557 { 3558 struct scatterlist *sgs[5], hdr, stat; 3559 u32 out_num = 0, tmp, in_num = 0; 3560 bool ok; 3561 int ret; 3562 3563 /* Caller should know better */ 3564 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)); 3565 3566 mutex_lock(&vi->cvq_lock); 3567 vi->ctrl->status = ~0; 3568 vi->ctrl->hdr.class = class; 3569 vi->ctrl->hdr.cmd = cmd; 3570 /* Add header */ 3571 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr)); 3572 sgs[out_num++] = &hdr; 3573 3574 if (out) 3575 sgs[out_num++] = out; 3576 3577 /* Add return status. */ 3578 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status)); 3579 sgs[out_num + in_num++] = &stat; 3580 3581 if (in) 3582 sgs[out_num + in_num++] = in; 3583 3584 BUG_ON(out_num + in_num > ARRAY_SIZE(sgs)); 3585 ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, in_num, vi, GFP_ATOMIC); 3586 if (ret < 0) { 3587 dev_warn(&vi->vdev->dev, 3588 "Failed to add sgs for command vq: %d\n.", ret); 3589 mutex_unlock(&vi->cvq_lock); 3590 return false; 3591 } 3592 3593 if (unlikely(!virtqueue_kick(vi->cvq))) 3594 goto unlock; 3595 3596 /* Spin for a response, the kick causes an ioport write, trapping 3597 * into the hypervisor, so the request should be handled immediately. 3598 */ 3599 while (!virtqueue_get_buf(vi->cvq, &tmp) && 3600 !virtqueue_is_broken(vi->cvq)) { 3601 cond_resched(); 3602 cpu_relax(); 3603 } 3604 3605 unlock: 3606 ok = vi->ctrl->status == VIRTIO_NET_OK; 3607 mutex_unlock(&vi->cvq_lock); 3608 return ok; 3609 } 3610 3611 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, 3612 struct scatterlist *out) 3613 { 3614 return virtnet_send_command_reply(vi, class, cmd, out, NULL); 3615 } 3616 3617 static int virtnet_set_mac_address(struct net_device *dev, void *p) 3618 { 3619 struct virtnet_info *vi = netdev_priv(dev); 3620 struct virtio_device *vdev = vi->vdev; 3621 int ret; 3622 struct sockaddr *addr; 3623 struct scatterlist sg; 3624 3625 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 3626 return -EOPNOTSUPP; 3627 3628 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL); 3629 if (!addr) 3630 return -ENOMEM; 3631 3632 ret = eth_prepare_mac_addr_change(dev, addr); 3633 if (ret) 3634 goto out; 3635 3636 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { 3637 sg_init_one(&sg, addr->sa_data, dev->addr_len); 3638 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 3639 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { 3640 dev_warn(&vdev->dev, 3641 "Failed to set mac address by vq command.\n"); 3642 ret = -EINVAL; 3643 goto out; 3644 } 3645 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && 3646 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) { 3647 unsigned int i; 3648 3649 /* Naturally, this has an atomicity problem. */ 3650 for (i = 0; i < dev->addr_len; i++) 3651 virtio_cwrite8(vdev, 3652 offsetof(struct virtio_net_config, mac) + 3653 i, addr->sa_data[i]); 3654 } 3655 3656 eth_commit_mac_addr_change(dev, p); 3657 ret = 0; 3658 3659 out: 3660 kfree(addr); 3661 return ret; 3662 } 3663 3664 static void virtnet_stats(struct net_device *dev, 3665 struct rtnl_link_stats64 *tot) 3666 { 3667 struct virtnet_info *vi = netdev_priv(dev); 3668 unsigned int start; 3669 int i; 3670 3671 for (i = 0; i < vi->max_queue_pairs; i++) { 3672 u64 tpackets, tbytes, terrors, rpackets, rbytes, rdrops; 3673 struct receive_queue *rq = &vi->rq[i]; 3674 struct send_queue *sq = &vi->sq[i]; 3675 3676 do { 3677 start = u64_stats_fetch_begin(&sq->stats.syncp); 3678 tpackets = u64_stats_read(&sq->stats.packets); 3679 tbytes = u64_stats_read(&sq->stats.bytes); 3680 terrors = u64_stats_read(&sq->stats.tx_timeouts); 3681 } while (u64_stats_fetch_retry(&sq->stats.syncp, start)); 3682 3683 do { 3684 start = u64_stats_fetch_begin(&rq->stats.syncp); 3685 rpackets = u64_stats_read(&rq->stats.packets); 3686 rbytes = u64_stats_read(&rq->stats.bytes); 3687 rdrops = u64_stats_read(&rq->stats.drops); 3688 } while (u64_stats_fetch_retry(&rq->stats.syncp, start)); 3689 3690 tot->rx_packets += rpackets; 3691 tot->tx_packets += tpackets; 3692 tot->rx_bytes += rbytes; 3693 tot->tx_bytes += tbytes; 3694 tot->rx_dropped += rdrops; 3695 tot->tx_errors += terrors; 3696 } 3697 3698 tot->tx_dropped = DEV_STATS_READ(dev, tx_dropped); 3699 tot->tx_fifo_errors = DEV_STATS_READ(dev, tx_fifo_errors); 3700 tot->rx_length_errors = DEV_STATS_READ(dev, rx_length_errors); 3701 tot->rx_frame_errors = DEV_STATS_READ(dev, rx_frame_errors); 3702 } 3703 3704 static void virtnet_ack_link_announce(struct virtnet_info *vi) 3705 { 3706 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, 3707 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL)) 3708 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); 3709 } 3710 3711 static bool virtnet_commit_rss_command(struct virtnet_info *vi); 3712 3713 static void virtnet_rss_update_by_qpairs(struct virtnet_info *vi, u16 queue_pairs) 3714 { 3715 u32 indir_val = 0; 3716 int i = 0; 3717 3718 for (; i < vi->rss_indir_table_size; ++i) { 3719 indir_val = ethtool_rxfh_indir_default(i, queue_pairs); 3720 vi->rss_hdr->indirection_table[i] = cpu_to_le16(indir_val); 3721 } 3722 vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs); 3723 } 3724 3725 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) 3726 { 3727 struct virtio_net_ctrl_mq *mq __free(kfree) = NULL; 3728 struct virtio_net_rss_config_hdr *old_rss_hdr; 3729 struct virtio_net_rss_config_trailer old_rss_trailer; 3730 struct net_device *dev = vi->dev; 3731 struct scatterlist sg; 3732 3733 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) 3734 return 0; 3735 3736 /* Firstly check if we need update rss. Do updating if both (1) rss enabled and 3737 * (2) no user configuration. 3738 * 3739 * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is, 3740 * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs 3741 * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly. 3742 */ 3743 if (vi->has_rss && !netif_is_rxfh_configured(dev)) { 3744 old_rss_hdr = vi->rss_hdr; 3745 old_rss_trailer = vi->rss_trailer; 3746 vi->rss_hdr = devm_kzalloc(&vi->vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL); 3747 if (!vi->rss_hdr) { 3748 vi->rss_hdr = old_rss_hdr; 3749 return -ENOMEM; 3750 } 3751 3752 *vi->rss_hdr = *old_rss_hdr; 3753 virtnet_rss_update_by_qpairs(vi, queue_pairs); 3754 3755 if (!virtnet_commit_rss_command(vi)) { 3756 /* restore ctrl_rss if commit_rss_command failed */ 3757 devm_kfree(&vi->vdev->dev, vi->rss_hdr); 3758 vi->rss_hdr = old_rss_hdr; 3759 vi->rss_trailer = old_rss_trailer; 3760 3761 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d, because committing RSS failed\n", 3762 queue_pairs); 3763 return -EINVAL; 3764 } 3765 devm_kfree(&vi->vdev->dev, old_rss_hdr); 3766 goto succ; 3767 } 3768 3769 mq = kzalloc_obj(*mq); 3770 if (!mq) 3771 return -ENOMEM; 3772 3773 mq->virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs); 3774 sg_init_one(&sg, mq, sizeof(*mq)); 3775 3776 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 3777 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) { 3778 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", 3779 queue_pairs); 3780 return -EINVAL; 3781 } 3782 3783 /* Keep max_tx_vq in sync so that a later RSS command does not 3784 * revert queue_pairs to a stale value. 3785 */ 3786 if (vi->has_rss) 3787 vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs); 3788 succ: 3789 vi->curr_queue_pairs = queue_pairs; 3790 if (dev->flags & IFF_UP) { 3791 local_bh_disable(); 3792 for (int i = 0; i < vi->curr_queue_pairs; ++i) 3793 virtqueue_napi_schedule(&vi->rq[i].napi, vi->rq[i].vq); 3794 local_bh_enable(); 3795 } 3796 3797 return 0; 3798 } 3799 3800 static int virtnet_close(struct net_device *dev) 3801 { 3802 struct virtnet_info *vi = netdev_priv(dev); 3803 int i; 3804 3805 /* Prevent the config change callback from changing carrier 3806 * after close 3807 */ 3808 virtio_config_driver_disable(vi->vdev); 3809 /* Stop getting status/speed updates: we don't care until next 3810 * open 3811 */ 3812 cancel_work_sync(&vi->config_work); 3813 3814 for (i = 0; i < vi->max_queue_pairs; i++) { 3815 virtnet_disable_queue_pair(vi, i); 3816 virtnet_cancel_dim(vi, &vi->rq[i].dim); 3817 } 3818 3819 netif_carrier_off(dev); 3820 3821 return 0; 3822 } 3823 3824 static void virtnet_rx_mode_work(struct work_struct *work) 3825 { 3826 struct virtnet_info *vi = 3827 container_of(work, struct virtnet_info, rx_mode_work); 3828 u8 *promisc_allmulti __free(kfree) = NULL; 3829 struct net_device *dev = vi->dev; 3830 struct scatterlist sg[2]; 3831 struct virtio_net_ctrl_mac *mac_data; 3832 struct netdev_hw_addr *ha; 3833 int uc_count; 3834 int mc_count; 3835 void *buf; 3836 int i; 3837 3838 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */ 3839 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) 3840 return; 3841 3842 promisc_allmulti = kzalloc_obj(*promisc_allmulti); 3843 if (!promisc_allmulti) { 3844 dev_warn(&dev->dev, "Failed to set RX mode, no memory.\n"); 3845 return; 3846 } 3847 3848 rtnl_lock(); 3849 3850 *promisc_allmulti = !!(dev->flags & IFF_PROMISC); 3851 sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti)); 3852 3853 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 3854 VIRTIO_NET_CTRL_RX_PROMISC, sg)) 3855 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", 3856 *promisc_allmulti ? "en" : "dis"); 3857 3858 *promisc_allmulti = !!(dev->flags & IFF_ALLMULTI); 3859 sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti)); 3860 3861 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 3862 VIRTIO_NET_CTRL_RX_ALLMULTI, sg)) 3863 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", 3864 *promisc_allmulti ? "en" : "dis"); 3865 3866 netif_addr_lock_bh(dev); 3867 3868 uc_count = netdev_uc_count(dev); 3869 mc_count = netdev_mc_count(dev); 3870 /* MAC filter - use one buffer for both lists */ 3871 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + 3872 (2 * sizeof(mac_data->entries)), GFP_ATOMIC); 3873 mac_data = buf; 3874 if (!buf) { 3875 netif_addr_unlock_bh(dev); 3876 rtnl_unlock(); 3877 return; 3878 } 3879 3880 sg_init_table(sg, 2); 3881 3882 /* Store the unicast list and count in the front of the buffer */ 3883 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count); 3884 i = 0; 3885 netdev_for_each_uc_addr(ha, dev) 3886 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 3887 3888 sg_set_buf(&sg[0], mac_data, 3889 sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); 3890 3891 /* multicast list and count fill the end */ 3892 mac_data = (void *)&mac_data->macs[uc_count][0]; 3893 3894 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count); 3895 i = 0; 3896 netdev_for_each_mc_addr(ha, dev) 3897 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 3898 3899 netif_addr_unlock_bh(dev); 3900 3901 sg_set_buf(&sg[1], mac_data, 3902 sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); 3903 3904 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 3905 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg)) 3906 dev_warn(&dev->dev, "Failed to set MAC filter table.\n"); 3907 3908 rtnl_unlock(); 3909 3910 kfree(buf); 3911 } 3912 3913 static void virtnet_set_rx_mode(struct net_device *dev) 3914 { 3915 struct virtnet_info *vi = netdev_priv(dev); 3916 3917 if (vi->rx_mode_work_enabled) 3918 schedule_work(&vi->rx_mode_work); 3919 } 3920 3921 static int virtnet_vlan_rx_add_vid(struct net_device *dev, 3922 __be16 proto, u16 vid) 3923 { 3924 struct virtnet_info *vi = netdev_priv(dev); 3925 __virtio16 *_vid __free(kfree) = NULL; 3926 struct scatterlist sg; 3927 3928 _vid = kzalloc_obj(*_vid); 3929 if (!_vid) 3930 return -ENOMEM; 3931 3932 *_vid = cpu_to_virtio16(vi->vdev, vid); 3933 sg_init_one(&sg, _vid, sizeof(*_vid)); 3934 3935 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 3936 VIRTIO_NET_CTRL_VLAN_ADD, &sg)) 3937 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); 3938 return 0; 3939 } 3940 3941 static int virtnet_vlan_rx_kill_vid(struct net_device *dev, 3942 __be16 proto, u16 vid) 3943 { 3944 struct virtnet_info *vi = netdev_priv(dev); 3945 __virtio16 *_vid __free(kfree) = NULL; 3946 struct scatterlist sg; 3947 3948 _vid = kzalloc_obj(*_vid); 3949 if (!_vid) 3950 return -ENOMEM; 3951 3952 *_vid = cpu_to_virtio16(vi->vdev, vid); 3953 sg_init_one(&sg, _vid, sizeof(*_vid)); 3954 3955 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 3956 VIRTIO_NET_CTRL_VLAN_DEL, &sg)) 3957 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); 3958 return 0; 3959 } 3960 3961 static void virtnet_clean_affinity(struct virtnet_info *vi) 3962 { 3963 int i; 3964 3965 if (vi->affinity_hint_set) { 3966 for (i = 0; i < vi->max_queue_pairs; i++) { 3967 virtqueue_set_affinity(vi->rq[i].vq, NULL); 3968 virtqueue_set_affinity(vi->sq[i].vq, NULL); 3969 } 3970 3971 vi->affinity_hint_set = false; 3972 } 3973 } 3974 3975 static void virtnet_set_affinity(struct virtnet_info *vi) 3976 { 3977 cpumask_var_t mask; 3978 int stragglers; 3979 int group_size; 3980 int i, start = 0, cpu; 3981 int num_cpu; 3982 int stride; 3983 3984 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) { 3985 virtnet_clean_affinity(vi); 3986 return; 3987 } 3988 3989 num_cpu = num_online_cpus(); 3990 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1); 3991 stragglers = num_cpu >= vi->curr_queue_pairs ? 3992 num_cpu % vi->curr_queue_pairs : 3993 0; 3994 3995 for (i = 0; i < vi->curr_queue_pairs; i++) { 3996 group_size = stride + (i < stragglers ? 1 : 0); 3997 3998 for_each_online_cpu_wrap(cpu, start) { 3999 if (!group_size--) { 4000 start = cpu; 4001 break; 4002 } 4003 cpumask_set_cpu(cpu, mask); 4004 } 4005 4006 virtqueue_set_affinity(vi->rq[i].vq, mask); 4007 virtqueue_set_affinity(vi->sq[i].vq, mask); 4008 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS); 4009 cpumask_clear(mask); 4010 } 4011 4012 vi->affinity_hint_set = true; 4013 free_cpumask_var(mask); 4014 } 4015 4016 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node) 4017 { 4018 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4019 node); 4020 virtnet_set_affinity(vi); 4021 return 0; 4022 } 4023 4024 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node) 4025 { 4026 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4027 node_dead); 4028 virtnet_set_affinity(vi); 4029 return 0; 4030 } 4031 4032 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node) 4033 { 4034 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 4035 node); 4036 4037 virtnet_clean_affinity(vi); 4038 return 0; 4039 } 4040 4041 static enum cpuhp_state virtionet_online; 4042 4043 static int virtnet_cpu_notif_add(struct virtnet_info *vi) 4044 { 4045 int ret; 4046 4047 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node); 4048 if (ret) 4049 return ret; 4050 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD, 4051 &vi->node_dead); 4052 if (!ret) 4053 return ret; 4054 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 4055 return ret; 4056 } 4057 4058 static void virtnet_cpu_notif_remove(struct virtnet_info *vi) 4059 { 4060 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 4061 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD, 4062 &vi->node_dead); 4063 } 4064 4065 static int virtnet_send_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4066 u16 vqn, u32 max_usecs, u32 max_packets) 4067 { 4068 struct virtio_net_ctrl_coal_vq *coal_vq __free(kfree) = NULL; 4069 struct scatterlist sgs; 4070 4071 coal_vq = kzalloc_obj(*coal_vq); 4072 if (!coal_vq) 4073 return -ENOMEM; 4074 4075 coal_vq->vqn = cpu_to_le16(vqn); 4076 coal_vq->coal.max_usecs = cpu_to_le32(max_usecs); 4077 coal_vq->coal.max_packets = cpu_to_le32(max_packets); 4078 sg_init_one(&sgs, coal_vq, sizeof(*coal_vq)); 4079 4080 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 4081 VIRTIO_NET_CTRL_NOTF_COAL_VQ_SET, 4082 &sgs)) 4083 return -EINVAL; 4084 4085 return 0; 4086 } 4087 4088 static int virtnet_send_rx_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4089 u16 queue, u32 max_usecs, 4090 u32 max_packets) 4091 { 4092 int err; 4093 4094 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 4095 return -EOPNOTSUPP; 4096 4097 err = virtnet_send_ctrl_coal_vq_cmd(vi, rxq2vq(queue), 4098 max_usecs, max_packets); 4099 if (err) 4100 return err; 4101 4102 vi->rq[queue].intr_coal.max_usecs = max_usecs; 4103 vi->rq[queue].intr_coal.max_packets = max_packets; 4104 4105 return 0; 4106 } 4107 4108 static int virtnet_send_tx_ctrl_coal_vq_cmd(struct virtnet_info *vi, 4109 u16 queue, u32 max_usecs, 4110 u32 max_packets) 4111 { 4112 int err; 4113 4114 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 4115 return -EOPNOTSUPP; 4116 4117 err = virtnet_send_ctrl_coal_vq_cmd(vi, txq2vq(queue), 4118 max_usecs, max_packets); 4119 if (err) 4120 return err; 4121 4122 vi->sq[queue].intr_coal.max_usecs = max_usecs; 4123 vi->sq[queue].intr_coal.max_packets = max_packets; 4124 4125 return 0; 4126 } 4127 4128 static void virtnet_get_ringparam(struct net_device *dev, 4129 struct ethtool_ringparam *ring, 4130 struct kernel_ethtool_ringparam *kernel_ring, 4131 struct netlink_ext_ack *extack) 4132 { 4133 struct virtnet_info *vi = netdev_priv(dev); 4134 4135 ring->rx_max_pending = vi->rq[0].vq->num_max; 4136 ring->tx_max_pending = vi->sq[0].vq->num_max; 4137 ring->rx_pending = virtqueue_get_vring_size(vi->rq[0].vq); 4138 ring->tx_pending = virtqueue_get_vring_size(vi->sq[0].vq); 4139 } 4140 4141 static int virtnet_set_ringparam(struct net_device *dev, 4142 struct ethtool_ringparam *ring, 4143 struct kernel_ethtool_ringparam *kernel_ring, 4144 struct netlink_ext_ack *extack) 4145 { 4146 struct virtnet_info *vi = netdev_priv(dev); 4147 u32 rx_pending, tx_pending; 4148 struct receive_queue *rq; 4149 struct send_queue *sq; 4150 int i, err; 4151 4152 if (ring->rx_mini_pending || ring->rx_jumbo_pending) 4153 return -EINVAL; 4154 4155 rx_pending = virtqueue_get_vring_size(vi->rq[0].vq); 4156 tx_pending = virtqueue_get_vring_size(vi->sq[0].vq); 4157 4158 if (ring->rx_pending == rx_pending && 4159 ring->tx_pending == tx_pending) 4160 return 0; 4161 4162 if (ring->rx_pending > vi->rq[0].vq->num_max) 4163 return -EINVAL; 4164 4165 if (ring->tx_pending > vi->sq[0].vq->num_max) 4166 return -EINVAL; 4167 4168 for (i = 0; i < vi->max_queue_pairs; i++) { 4169 rq = vi->rq + i; 4170 sq = vi->sq + i; 4171 4172 if (ring->tx_pending != tx_pending) { 4173 err = virtnet_tx_resize(vi, sq, ring->tx_pending); 4174 if (err) 4175 return err; 4176 4177 /* Upon disabling and re-enabling a transmit virtqueue, the device must 4178 * set the coalescing parameters of the virtqueue to those configured 4179 * through the VIRTIO_NET_CTRL_NOTF_COAL_TX_SET command, or, if the driver 4180 * did not set any TX coalescing parameters, to 0. 4181 */ 4182 err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, i, 4183 vi->intr_coal_tx.max_usecs, 4184 vi->intr_coal_tx.max_packets); 4185 4186 /* Don't break the tx resize action if the vq coalescing is not 4187 * supported. The same is true for rx resize below. 4188 */ 4189 if (err && err != -EOPNOTSUPP) 4190 return err; 4191 } 4192 4193 if (ring->rx_pending != rx_pending) { 4194 err = virtnet_rx_resize(vi, rq, ring->rx_pending); 4195 if (err) 4196 return err; 4197 4198 /* The reason is same as the transmit virtqueue reset */ 4199 mutex_lock(&vi->rq[i].dim_lock); 4200 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, i, 4201 vi->intr_coal_rx.max_usecs, 4202 vi->intr_coal_rx.max_packets); 4203 mutex_unlock(&vi->rq[i].dim_lock); 4204 if (err && err != -EOPNOTSUPP) 4205 return err; 4206 } 4207 } 4208 4209 return 0; 4210 } 4211 4212 static bool virtnet_commit_rss_command(struct virtnet_info *vi) 4213 { 4214 struct net_device *dev = vi->dev; 4215 struct scatterlist sgs[2]; 4216 4217 /* prepare sgs */ 4218 sg_init_table(sgs, 2); 4219 sg_set_buf(&sgs[0], vi->rss_hdr, virtnet_rss_hdr_size(vi)); 4220 sg_set_buf(&sgs[1], &vi->rss_trailer, virtnet_rss_trailer_size(vi)); 4221 4222 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 4223 vi->has_rss ? VIRTIO_NET_CTRL_MQ_RSS_CONFIG 4224 : VIRTIO_NET_CTRL_MQ_HASH_CONFIG, sgs)) 4225 goto err; 4226 4227 return true; 4228 4229 err: 4230 dev_warn(&dev->dev, "VIRTIONET issue with committing RSS sgs\n"); 4231 return false; 4232 4233 } 4234 4235 static void virtnet_init_default_rss(struct virtnet_info *vi) 4236 { 4237 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_supported); 4238 vi->rss_hash_types_saved = vi->rss_hash_types_supported; 4239 vi->rss_hdr->indirection_table_mask = vi->rss_indir_table_size 4240 ? cpu_to_le16(vi->rss_indir_table_size - 1) : 0; 4241 vi->rss_hdr->unclassified_queue = 0; 4242 4243 virtnet_rss_update_by_qpairs(vi, vi->curr_queue_pairs); 4244 4245 vi->rss_trailer.hash_key_length = vi->rss_key_size; 4246 4247 netdev_rss_key_fill(vi->rss_hash_key_data, vi->rss_key_size); 4248 } 4249 4250 static int virtnet_get_hashflow(struct net_device *dev, 4251 struct ethtool_rxfh_fields *info) 4252 { 4253 struct virtnet_info *vi = netdev_priv(dev); 4254 4255 info->data = 0; 4256 switch (info->flow_type) { 4257 case TCP_V4_FLOW: 4258 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) { 4259 info->data = RXH_IP_SRC | RXH_IP_DST | 4260 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4261 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) { 4262 info->data = RXH_IP_SRC | RXH_IP_DST; 4263 } 4264 break; 4265 case TCP_V6_FLOW: 4266 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) { 4267 info->data = RXH_IP_SRC | RXH_IP_DST | 4268 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4269 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) { 4270 info->data = RXH_IP_SRC | RXH_IP_DST; 4271 } 4272 break; 4273 case UDP_V4_FLOW: 4274 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) { 4275 info->data = RXH_IP_SRC | RXH_IP_DST | 4276 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4277 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) { 4278 info->data = RXH_IP_SRC | RXH_IP_DST; 4279 } 4280 break; 4281 case UDP_V6_FLOW: 4282 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) { 4283 info->data = RXH_IP_SRC | RXH_IP_DST | 4284 RXH_L4_B_0_1 | RXH_L4_B_2_3; 4285 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) { 4286 info->data = RXH_IP_SRC | RXH_IP_DST; 4287 } 4288 break; 4289 case IPV4_FLOW: 4290 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) 4291 info->data = RXH_IP_SRC | RXH_IP_DST; 4292 4293 break; 4294 case IPV6_FLOW: 4295 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) 4296 info->data = RXH_IP_SRC | RXH_IP_DST; 4297 4298 break; 4299 default: 4300 info->data = 0; 4301 break; 4302 } 4303 4304 return 0; 4305 } 4306 4307 static int virtnet_set_hashflow(struct net_device *dev, 4308 const struct ethtool_rxfh_fields *info, 4309 struct netlink_ext_ack *extack) 4310 { 4311 struct virtnet_info *vi = netdev_priv(dev); 4312 u32 new_hashtypes = vi->rss_hash_types_saved; 4313 bool is_disable = info->data & RXH_DISCARD; 4314 bool is_l4 = info->data == (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3); 4315 4316 /* supports only 'sd', 'sdfn' and 'r' */ 4317 if (!((info->data == (RXH_IP_SRC | RXH_IP_DST)) | is_l4 | is_disable)) 4318 return -EINVAL; 4319 4320 switch (info->flow_type) { 4321 case TCP_V4_FLOW: 4322 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_TCPv4); 4323 if (!is_disable) 4324 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4 4325 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv4 : 0); 4326 break; 4327 case UDP_V4_FLOW: 4328 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_UDPv4); 4329 if (!is_disable) 4330 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4 4331 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv4 : 0); 4332 break; 4333 case IPV4_FLOW: 4334 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv4; 4335 if (!is_disable) 4336 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv4; 4337 break; 4338 case TCP_V6_FLOW: 4339 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_TCPv6); 4340 if (!is_disable) 4341 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6 4342 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv6 : 0); 4343 break; 4344 case UDP_V6_FLOW: 4345 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_UDPv6); 4346 if (!is_disable) 4347 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6 4348 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv6 : 0); 4349 break; 4350 case IPV6_FLOW: 4351 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv6; 4352 if (!is_disable) 4353 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv6; 4354 break; 4355 default: 4356 /* unsupported flow */ 4357 return -EINVAL; 4358 } 4359 4360 /* if unsupported hashtype was set */ 4361 if (new_hashtypes != (new_hashtypes & vi->rss_hash_types_supported)) 4362 return -EINVAL; 4363 4364 if (new_hashtypes != vi->rss_hash_types_saved) { 4365 vi->rss_hash_types_saved = new_hashtypes; 4366 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved); 4367 if (vi->dev->features & NETIF_F_RXHASH) 4368 if (!virtnet_commit_rss_command(vi)) 4369 return -EINVAL; 4370 } 4371 4372 return 0; 4373 } 4374 4375 static void virtnet_get_drvinfo(struct net_device *dev, 4376 struct ethtool_drvinfo *info) 4377 { 4378 struct virtnet_info *vi = netdev_priv(dev); 4379 struct virtio_device *vdev = vi->vdev; 4380 4381 strscpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); 4382 strscpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); 4383 strscpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); 4384 4385 } 4386 4387 /* TODO: Eliminate OOO packets during switching */ 4388 static int virtnet_set_channels(struct net_device *dev, 4389 struct ethtool_channels *channels) 4390 { 4391 struct virtnet_info *vi = netdev_priv(dev); 4392 u16 queue_pairs = channels->combined_count; 4393 int err; 4394 4395 /* We don't support separate rx/tx channels. 4396 * We don't allow setting 'other' channels. 4397 */ 4398 if (channels->rx_count || channels->tx_count || channels->other_count) 4399 return -EINVAL; 4400 4401 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0) 4402 return -EINVAL; 4403 4404 /* For now we don't support modifying channels while XDP is loaded 4405 * also when XDP is loaded all RX queues have XDP programs so we only 4406 * need to check a single RX queue. 4407 */ 4408 if (vi->rq[0].xdp_prog) 4409 return -EINVAL; 4410 4411 cpus_read_lock(); 4412 err = virtnet_set_queues(vi, queue_pairs); 4413 if (err) { 4414 cpus_read_unlock(); 4415 goto err; 4416 } 4417 virtnet_set_affinity(vi); 4418 cpus_read_unlock(); 4419 4420 netif_set_real_num_tx_queues(dev, queue_pairs); 4421 netif_set_real_num_rx_queues(dev, queue_pairs); 4422 err: 4423 return err; 4424 } 4425 4426 static void virtnet_stats_sprintf(u8 **p, const char *fmt, const char *noq_fmt, 4427 int num, int qid, const struct virtnet_stat_desc *desc) 4428 { 4429 int i; 4430 4431 if (qid < 0) { 4432 for (i = 0; i < num; ++i) 4433 ethtool_sprintf(p, noq_fmt, desc[i].desc); 4434 } else { 4435 for (i = 0; i < num; ++i) 4436 ethtool_sprintf(p, fmt, qid, desc[i].desc); 4437 } 4438 } 4439 4440 /* qid == -1: for rx/tx queue total field */ 4441 static void virtnet_get_stats_string(struct virtnet_info *vi, int type, int qid, u8 **data) 4442 { 4443 const struct virtnet_stat_desc *desc; 4444 const char *fmt, *noq_fmt; 4445 u8 *p = *data; 4446 u32 num; 4447 4448 if (type == VIRTNET_Q_TYPE_CQ && qid >= 0) { 4449 noq_fmt = "cq_hw_%s"; 4450 4451 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) { 4452 desc = &virtnet_stats_cvq_desc[0]; 4453 num = ARRAY_SIZE(virtnet_stats_cvq_desc); 4454 4455 virtnet_stats_sprintf(&p, NULL, noq_fmt, num, -1, desc); 4456 } 4457 } 4458 4459 if (type == VIRTNET_Q_TYPE_RX) { 4460 fmt = "rx%u_%s"; 4461 noq_fmt = "rx_%s"; 4462 4463 desc = &virtnet_rq_stats_desc[0]; 4464 num = ARRAY_SIZE(virtnet_rq_stats_desc); 4465 4466 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4467 4468 fmt = "rx%u_hw_%s"; 4469 noq_fmt = "rx_hw_%s"; 4470 4471 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4472 desc = &virtnet_stats_rx_basic_desc[0]; 4473 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4474 4475 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4476 } 4477 4478 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4479 desc = &virtnet_stats_rx_csum_desc[0]; 4480 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4481 4482 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4483 } 4484 4485 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4486 desc = &virtnet_stats_rx_speed_desc[0]; 4487 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4488 4489 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4490 } 4491 } 4492 4493 if (type == VIRTNET_Q_TYPE_TX) { 4494 fmt = "tx%u_%s"; 4495 noq_fmt = "tx_%s"; 4496 4497 desc = &virtnet_sq_stats_desc[0]; 4498 num = ARRAY_SIZE(virtnet_sq_stats_desc); 4499 4500 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4501 4502 fmt = "tx%u_hw_%s"; 4503 noq_fmt = "tx_hw_%s"; 4504 4505 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4506 desc = &virtnet_stats_tx_basic_desc[0]; 4507 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4508 4509 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4510 } 4511 4512 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4513 desc = &virtnet_stats_tx_gso_desc[0]; 4514 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4515 4516 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4517 } 4518 4519 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4520 desc = &virtnet_stats_tx_speed_desc[0]; 4521 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4522 4523 virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc); 4524 } 4525 } 4526 4527 *data = p; 4528 } 4529 4530 struct virtnet_stats_ctx { 4531 /* The stats are write to qstats or ethtool -S */ 4532 bool to_qstat; 4533 4534 /* Used to calculate the offset inside the output buffer. */ 4535 u32 desc_num[3]; 4536 4537 /* The actual supported stat types. */ 4538 u64 bitmap[3]; 4539 4540 /* Used to calculate the reply buffer size. */ 4541 u32 size[3]; 4542 4543 /* Record the output buffer. */ 4544 u64 *data; 4545 }; 4546 4547 static void virtnet_stats_ctx_init(struct virtnet_info *vi, 4548 struct virtnet_stats_ctx *ctx, 4549 u64 *data, bool to_qstat) 4550 { 4551 u32 queue_type; 4552 4553 ctx->data = data; 4554 ctx->to_qstat = to_qstat; 4555 4556 if (to_qstat) { 4557 ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc_qstat); 4558 ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc_qstat); 4559 4560 queue_type = VIRTNET_Q_TYPE_RX; 4561 4562 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4563 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_BASIC; 4564 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat); 4565 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_basic); 4566 } 4567 4568 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4569 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_CSUM; 4570 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat); 4571 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_csum); 4572 } 4573 4574 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 4575 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_GSO; 4576 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat); 4577 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_gso); 4578 } 4579 4580 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4581 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_SPEED; 4582 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat); 4583 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_speed); 4584 } 4585 4586 queue_type = VIRTNET_Q_TYPE_TX; 4587 4588 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4589 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_BASIC; 4590 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat); 4591 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_basic); 4592 } 4593 4594 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 4595 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_CSUM; 4596 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat); 4597 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_csum); 4598 } 4599 4600 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4601 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_GSO; 4602 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat); 4603 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_gso); 4604 } 4605 4606 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4607 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_SPEED; 4608 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat); 4609 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_speed); 4610 } 4611 4612 return; 4613 } 4614 4615 ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc); 4616 ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc); 4617 4618 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) { 4619 queue_type = VIRTNET_Q_TYPE_CQ; 4620 4621 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_CVQ; 4622 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_cvq_desc); 4623 ctx->size[queue_type] += sizeof(struct virtio_net_stats_cvq); 4624 } 4625 4626 queue_type = VIRTNET_Q_TYPE_RX; 4627 4628 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4629 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_BASIC; 4630 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4631 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_basic); 4632 } 4633 4634 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4635 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_CSUM; 4636 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4637 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_csum); 4638 } 4639 4640 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4641 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_RX_SPEED; 4642 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4643 ctx->size[queue_type] += sizeof(struct virtio_net_stats_rx_speed); 4644 } 4645 4646 queue_type = VIRTNET_Q_TYPE_TX; 4647 4648 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4649 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_BASIC; 4650 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4651 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_basic); 4652 } 4653 4654 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4655 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_GSO; 4656 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4657 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_gso); 4658 } 4659 4660 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4661 ctx->bitmap[queue_type] |= VIRTIO_NET_STATS_TYPE_TX_SPEED; 4662 ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4663 ctx->size[queue_type] += sizeof(struct virtio_net_stats_tx_speed); 4664 } 4665 } 4666 4667 /* stats_sum_queue - Calculate the sum of the same fields in sq or rq. 4668 * @sum: the position to store the sum values 4669 * @num: field num 4670 * @q_value: the first queue fields 4671 * @q_num: number of the queues 4672 */ 4673 static void stats_sum_queue(u64 *sum, u32 num, u64 *q_value, u32 q_num) 4674 { 4675 u32 step = num; 4676 int i, j; 4677 u64 *p; 4678 4679 for (i = 0; i < num; ++i) { 4680 p = sum + i; 4681 *p = 0; 4682 4683 for (j = 0; j < q_num; ++j) 4684 *p += *(q_value + i + j * step); 4685 } 4686 } 4687 4688 static void virtnet_fill_total_fields(struct virtnet_info *vi, 4689 struct virtnet_stats_ctx *ctx) 4690 { 4691 u64 *data, *first_rx_q, *first_tx_q; 4692 u32 num_cq, num_rx, num_tx; 4693 4694 num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ]; 4695 num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX]; 4696 num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX]; 4697 4698 first_rx_q = ctx->data + num_rx + num_tx + num_cq; 4699 first_tx_q = first_rx_q + vi->curr_queue_pairs * num_rx; 4700 4701 data = ctx->data; 4702 4703 stats_sum_queue(data, num_rx, first_rx_q, vi->curr_queue_pairs); 4704 4705 data = ctx->data + num_rx; 4706 4707 stats_sum_queue(data, num_tx, first_tx_q, vi->curr_queue_pairs); 4708 } 4709 4710 static void virtnet_fill_stats_qstat(struct virtnet_info *vi, u32 qid, 4711 struct virtnet_stats_ctx *ctx, 4712 const u8 *base, bool drv_stats, u8 reply_type) 4713 { 4714 const struct virtnet_stat_desc *desc; 4715 const u64_stats_t *v_stat; 4716 u64 offset, bitmap; 4717 const __le64 *v; 4718 u32 queue_type; 4719 int i, num; 4720 4721 queue_type = vq_type(vi, qid); 4722 bitmap = ctx->bitmap[queue_type]; 4723 4724 if (drv_stats) { 4725 if (queue_type == VIRTNET_Q_TYPE_RX) { 4726 desc = &virtnet_rq_stats_desc_qstat[0]; 4727 num = ARRAY_SIZE(virtnet_rq_stats_desc_qstat); 4728 } else { 4729 desc = &virtnet_sq_stats_desc_qstat[0]; 4730 num = ARRAY_SIZE(virtnet_sq_stats_desc_qstat); 4731 } 4732 4733 for (i = 0; i < num; ++i) { 4734 offset = desc[i].qstat_offset / sizeof(*ctx->data); 4735 v_stat = (const u64_stats_t *)(base + desc[i].offset); 4736 ctx->data[offset] = u64_stats_read(v_stat); 4737 } 4738 return; 4739 } 4740 4741 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4742 desc = &virtnet_stats_rx_basic_desc_qstat[0]; 4743 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat); 4744 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC) 4745 goto found; 4746 } 4747 4748 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4749 desc = &virtnet_stats_rx_csum_desc_qstat[0]; 4750 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat); 4751 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM) 4752 goto found; 4753 } 4754 4755 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 4756 desc = &virtnet_stats_rx_gso_desc_qstat[0]; 4757 num = ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat); 4758 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_GSO) 4759 goto found; 4760 } 4761 4762 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4763 desc = &virtnet_stats_rx_speed_desc_qstat[0]; 4764 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat); 4765 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED) 4766 goto found; 4767 } 4768 4769 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4770 desc = &virtnet_stats_tx_basic_desc_qstat[0]; 4771 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat); 4772 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC) 4773 goto found; 4774 } 4775 4776 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 4777 desc = &virtnet_stats_tx_csum_desc_qstat[0]; 4778 num = ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat); 4779 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_CSUM) 4780 goto found; 4781 } 4782 4783 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4784 desc = &virtnet_stats_tx_gso_desc_qstat[0]; 4785 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat); 4786 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO) 4787 goto found; 4788 } 4789 4790 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4791 desc = &virtnet_stats_tx_speed_desc_qstat[0]; 4792 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat); 4793 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED) 4794 goto found; 4795 } 4796 4797 return; 4798 4799 found: 4800 for (i = 0; i < num; ++i) { 4801 offset = desc[i].qstat_offset / sizeof(*ctx->data); 4802 v = (const __le64 *)(base + desc[i].offset); 4803 ctx->data[offset] = le64_to_cpu(*v); 4804 } 4805 } 4806 4807 /* virtnet_fill_stats - copy the stats to qstats or ethtool -S 4808 * The stats source is the device or the driver. 4809 * 4810 * @vi: virtio net info 4811 * @qid: the vq id 4812 * @ctx: stats ctx (initiated by virtnet_stats_ctx_init()) 4813 * @base: pointer to the device reply or the driver stats structure. 4814 * @drv_stats: designate the base type (device reply, driver stats) 4815 * @type: the type of the device reply (if drv_stats is true, this must be zero) 4816 */ 4817 static void virtnet_fill_stats(struct virtnet_info *vi, u32 qid, 4818 struct virtnet_stats_ctx *ctx, 4819 const u8 *base, bool drv_stats, u8 reply_type) 4820 { 4821 u32 queue_type, num_rx, num_tx, num_cq; 4822 const struct virtnet_stat_desc *desc; 4823 const u64_stats_t *v_stat; 4824 u64 offset, bitmap; 4825 const __le64 *v; 4826 int i, num; 4827 4828 if (ctx->to_qstat) 4829 return virtnet_fill_stats_qstat(vi, qid, ctx, base, drv_stats, reply_type); 4830 4831 num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ]; 4832 num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX]; 4833 num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX]; 4834 4835 queue_type = vq_type(vi, qid); 4836 bitmap = ctx->bitmap[queue_type]; 4837 4838 /* skip the total fields of pairs */ 4839 offset = num_rx + num_tx; 4840 4841 if (queue_type == VIRTNET_Q_TYPE_TX) { 4842 offset += num_cq + num_rx * vi->curr_queue_pairs + num_tx * (qid / 2); 4843 4844 num = ARRAY_SIZE(virtnet_sq_stats_desc); 4845 if (drv_stats) { 4846 desc = &virtnet_sq_stats_desc[0]; 4847 goto drv_stats; 4848 } 4849 4850 offset += num; 4851 4852 } else if (queue_type == VIRTNET_Q_TYPE_RX) { 4853 offset += num_cq + num_rx * (qid / 2); 4854 4855 num = ARRAY_SIZE(virtnet_rq_stats_desc); 4856 if (drv_stats) { 4857 desc = &virtnet_rq_stats_desc[0]; 4858 goto drv_stats; 4859 } 4860 4861 offset += num; 4862 } 4863 4864 if (bitmap & VIRTIO_NET_STATS_TYPE_CVQ) { 4865 desc = &virtnet_stats_cvq_desc[0]; 4866 num = ARRAY_SIZE(virtnet_stats_cvq_desc); 4867 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_CVQ) 4868 goto found; 4869 4870 offset += num; 4871 } 4872 4873 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 4874 desc = &virtnet_stats_rx_basic_desc[0]; 4875 num = ARRAY_SIZE(virtnet_stats_rx_basic_desc); 4876 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC) 4877 goto found; 4878 4879 offset += num; 4880 } 4881 4882 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 4883 desc = &virtnet_stats_rx_csum_desc[0]; 4884 num = ARRAY_SIZE(virtnet_stats_rx_csum_desc); 4885 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM) 4886 goto found; 4887 4888 offset += num; 4889 } 4890 4891 if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) { 4892 desc = &virtnet_stats_rx_speed_desc[0]; 4893 num = ARRAY_SIZE(virtnet_stats_rx_speed_desc); 4894 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED) 4895 goto found; 4896 4897 offset += num; 4898 } 4899 4900 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 4901 desc = &virtnet_stats_tx_basic_desc[0]; 4902 num = ARRAY_SIZE(virtnet_stats_tx_basic_desc); 4903 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC) 4904 goto found; 4905 4906 offset += num; 4907 } 4908 4909 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 4910 desc = &virtnet_stats_tx_gso_desc[0]; 4911 num = ARRAY_SIZE(virtnet_stats_tx_gso_desc); 4912 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO) 4913 goto found; 4914 4915 offset += num; 4916 } 4917 4918 if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) { 4919 desc = &virtnet_stats_tx_speed_desc[0]; 4920 num = ARRAY_SIZE(virtnet_stats_tx_speed_desc); 4921 if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED) 4922 goto found; 4923 4924 offset += num; 4925 } 4926 4927 return; 4928 4929 found: 4930 for (i = 0; i < num; ++i) { 4931 v = (const __le64 *)(base + desc[i].offset); 4932 ctx->data[offset + i] = le64_to_cpu(*v); 4933 } 4934 4935 return; 4936 4937 drv_stats: 4938 for (i = 0; i < num; ++i) { 4939 v_stat = (const u64_stats_t *)(base + desc[i].offset); 4940 ctx->data[offset + i] = u64_stats_read(v_stat); 4941 } 4942 } 4943 4944 static int __virtnet_get_hw_stats(struct virtnet_info *vi, 4945 struct virtnet_stats_ctx *ctx, 4946 struct virtio_net_ctrl_queue_stats *req, 4947 int req_size, void *reply, int res_size) 4948 { 4949 struct virtio_net_stats_reply_hdr *hdr; 4950 struct scatterlist sgs_in, sgs_out; 4951 void *p; 4952 u32 qid; 4953 int ok; 4954 4955 sg_init_one(&sgs_out, req, req_size); 4956 sg_init_one(&sgs_in, reply, res_size); 4957 4958 ok = virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS, 4959 VIRTIO_NET_CTRL_STATS_GET, 4960 &sgs_out, &sgs_in); 4961 4962 if (!ok) 4963 return ok; 4964 4965 for (p = reply; p - reply < res_size; p += le16_to_cpu(hdr->size)) { 4966 hdr = p; 4967 qid = le16_to_cpu(hdr->vq_index); 4968 virtnet_fill_stats(vi, qid, ctx, p, false, hdr->type); 4969 } 4970 4971 return 0; 4972 } 4973 4974 static void virtnet_make_stat_req(struct virtnet_info *vi, 4975 struct virtnet_stats_ctx *ctx, 4976 struct virtio_net_ctrl_queue_stats *req, 4977 int qid, int *idx) 4978 { 4979 int qtype = vq_type(vi, qid); 4980 u64 bitmap = ctx->bitmap[qtype]; 4981 4982 if (!bitmap) 4983 return; 4984 4985 req->stats[*idx].vq_index = cpu_to_le16(qid); 4986 req->stats[*idx].types_bitmap[0] = cpu_to_le64(bitmap); 4987 *idx += 1; 4988 } 4989 4990 /* qid: -1: get stats of all vq. 4991 * > 0: get the stats for the special vq. This must not be cvq. 4992 */ 4993 static int virtnet_get_hw_stats(struct virtnet_info *vi, 4994 struct virtnet_stats_ctx *ctx, int qid) 4995 { 4996 int qnum, i, j, res_size, qtype, last_vq, first_vq; 4997 struct virtio_net_ctrl_queue_stats *req; 4998 bool enable_cvq; 4999 void *reply; 5000 int ok; 5001 5002 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) 5003 return 0; 5004 5005 if (qid == -1) { 5006 last_vq = vi->curr_queue_pairs * 2 - 1; 5007 first_vq = 0; 5008 enable_cvq = true; 5009 } else { 5010 last_vq = qid; 5011 first_vq = qid; 5012 enable_cvq = false; 5013 } 5014 5015 qnum = 0; 5016 res_size = 0; 5017 for (i = first_vq; i <= last_vq ; ++i) { 5018 qtype = vq_type(vi, i); 5019 if (ctx->bitmap[qtype]) { 5020 ++qnum; 5021 res_size += ctx->size[qtype]; 5022 } 5023 } 5024 5025 if (enable_cvq && ctx->bitmap[VIRTNET_Q_TYPE_CQ]) { 5026 res_size += ctx->size[VIRTNET_Q_TYPE_CQ]; 5027 qnum += 1; 5028 } 5029 5030 req = kzalloc_objs(*req, qnum); 5031 if (!req) 5032 return -ENOMEM; 5033 5034 reply = kmalloc(res_size, GFP_KERNEL); 5035 if (!reply) { 5036 kfree(req); 5037 return -ENOMEM; 5038 } 5039 5040 j = 0; 5041 for (i = first_vq; i <= last_vq ; ++i) 5042 virtnet_make_stat_req(vi, ctx, req, i, &j); 5043 5044 if (enable_cvq) 5045 virtnet_make_stat_req(vi, ctx, req, vi->max_queue_pairs * 2, &j); 5046 5047 ok = __virtnet_get_hw_stats(vi, ctx, req, sizeof(*req) * j, reply, res_size); 5048 5049 kfree(req); 5050 kfree(reply); 5051 5052 return ok; 5053 } 5054 5055 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data) 5056 { 5057 struct virtnet_info *vi = netdev_priv(dev); 5058 unsigned int i; 5059 u8 *p = data; 5060 5061 switch (stringset) { 5062 case ETH_SS_STATS: 5063 /* Generate the total field names. */ 5064 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, -1, &p); 5065 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, -1, &p); 5066 5067 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_CQ, 0, &p); 5068 5069 for (i = 0; i < vi->curr_queue_pairs; ++i) 5070 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, i, &p); 5071 5072 for (i = 0; i < vi->curr_queue_pairs; ++i) 5073 virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, i, &p); 5074 break; 5075 } 5076 } 5077 5078 static int virtnet_get_sset_count(struct net_device *dev, int sset) 5079 { 5080 struct virtnet_info *vi = netdev_priv(dev); 5081 struct virtnet_stats_ctx ctx = {0}; 5082 u32 pair_count; 5083 5084 switch (sset) { 5085 case ETH_SS_STATS: 5086 virtnet_stats_ctx_init(vi, &ctx, NULL, false); 5087 5088 pair_count = ctx.desc_num[VIRTNET_Q_TYPE_RX] + ctx.desc_num[VIRTNET_Q_TYPE_TX]; 5089 5090 return pair_count + ctx.desc_num[VIRTNET_Q_TYPE_CQ] + 5091 vi->curr_queue_pairs * pair_count; 5092 default: 5093 return -EOPNOTSUPP; 5094 } 5095 } 5096 5097 static void virtnet_get_ethtool_stats(struct net_device *dev, 5098 struct ethtool_stats *stats, u64 *data) 5099 { 5100 struct virtnet_info *vi = netdev_priv(dev); 5101 struct virtnet_stats_ctx ctx = {0}; 5102 unsigned int start, i; 5103 const u8 *stats_base; 5104 5105 virtnet_stats_ctx_init(vi, &ctx, data, false); 5106 if (virtnet_get_hw_stats(vi, &ctx, -1)) 5107 dev_warn(&vi->dev->dev, "Failed to get hw stats.\n"); 5108 5109 for (i = 0; i < vi->curr_queue_pairs; i++) { 5110 struct receive_queue *rq = &vi->rq[i]; 5111 struct send_queue *sq = &vi->sq[i]; 5112 5113 stats_base = (const u8 *)&rq->stats; 5114 do { 5115 start = u64_stats_fetch_begin(&rq->stats.syncp); 5116 virtnet_fill_stats(vi, i * 2, &ctx, stats_base, true, 0); 5117 } while (u64_stats_fetch_retry(&rq->stats.syncp, start)); 5118 5119 stats_base = (const u8 *)&sq->stats; 5120 do { 5121 start = u64_stats_fetch_begin(&sq->stats.syncp); 5122 virtnet_fill_stats(vi, i * 2 + 1, &ctx, stats_base, true, 0); 5123 } while (u64_stats_fetch_retry(&sq->stats.syncp, start)); 5124 } 5125 5126 virtnet_fill_total_fields(vi, &ctx); 5127 } 5128 5129 static void virtnet_get_channels(struct net_device *dev, 5130 struct ethtool_channels *channels) 5131 { 5132 struct virtnet_info *vi = netdev_priv(dev); 5133 5134 channels->combined_count = vi->curr_queue_pairs; 5135 channels->max_combined = vi->max_queue_pairs; 5136 channels->max_other = 0; 5137 channels->rx_count = 0; 5138 channels->tx_count = 0; 5139 channels->other_count = 0; 5140 } 5141 5142 static int virtnet_set_link_ksettings(struct net_device *dev, 5143 const struct ethtool_link_ksettings *cmd) 5144 { 5145 struct virtnet_info *vi = netdev_priv(dev); 5146 5147 return ethtool_virtdev_set_link_ksettings(dev, cmd, 5148 &vi->speed, &vi->duplex); 5149 } 5150 5151 static int virtnet_get_link_ksettings(struct net_device *dev, 5152 struct ethtool_link_ksettings *cmd) 5153 { 5154 struct virtnet_info *vi = netdev_priv(dev); 5155 5156 cmd->base.speed = vi->speed; 5157 cmd->base.duplex = vi->duplex; 5158 cmd->base.port = PORT_OTHER; 5159 5160 return 0; 5161 } 5162 5163 static int virtnet_send_tx_notf_coal_cmds(struct virtnet_info *vi, 5164 struct ethtool_coalesce *ec) 5165 { 5166 struct virtio_net_ctrl_coal_tx *coal_tx __free(kfree) = NULL; 5167 struct scatterlist sgs_tx; 5168 int i; 5169 5170 coal_tx = kzalloc_obj(*coal_tx); 5171 if (!coal_tx) 5172 return -ENOMEM; 5173 5174 coal_tx->tx_usecs = cpu_to_le32(ec->tx_coalesce_usecs); 5175 coal_tx->tx_max_packets = cpu_to_le32(ec->tx_max_coalesced_frames); 5176 sg_init_one(&sgs_tx, coal_tx, sizeof(*coal_tx)); 5177 5178 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 5179 VIRTIO_NET_CTRL_NOTF_COAL_TX_SET, 5180 &sgs_tx)) 5181 return -EINVAL; 5182 5183 vi->intr_coal_tx.max_usecs = ec->tx_coalesce_usecs; 5184 vi->intr_coal_tx.max_packets = ec->tx_max_coalesced_frames; 5185 for (i = 0; i < vi->max_queue_pairs; i++) { 5186 vi->sq[i].intr_coal.max_usecs = ec->tx_coalesce_usecs; 5187 vi->sq[i].intr_coal.max_packets = ec->tx_max_coalesced_frames; 5188 } 5189 5190 return 0; 5191 } 5192 5193 static int virtnet_send_rx_notf_coal_cmds(struct virtnet_info *vi, 5194 struct ethtool_coalesce *ec) 5195 { 5196 struct virtio_net_ctrl_coal_rx *coal_rx __free(kfree) = NULL; 5197 bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce; 5198 struct scatterlist sgs_rx; 5199 int i; 5200 5201 if (rx_ctrl_dim_on && !virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 5202 return -EOPNOTSUPP; 5203 5204 if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != vi->intr_coal_rx.max_usecs || 5205 ec->rx_max_coalesced_frames != vi->intr_coal_rx.max_packets)) 5206 return -EINVAL; 5207 5208 if (rx_ctrl_dim_on && !vi->rx_dim_enabled) { 5209 vi->rx_dim_enabled = true; 5210 for (i = 0; i < vi->max_queue_pairs; i++) { 5211 mutex_lock(&vi->rq[i].dim_lock); 5212 vi->rq[i].dim_enabled = true; 5213 mutex_unlock(&vi->rq[i].dim_lock); 5214 } 5215 return 0; 5216 } 5217 5218 coal_rx = kzalloc_obj(*coal_rx); 5219 if (!coal_rx) 5220 return -ENOMEM; 5221 5222 if (!rx_ctrl_dim_on && vi->rx_dim_enabled) { 5223 vi->rx_dim_enabled = false; 5224 for (i = 0; i < vi->max_queue_pairs; i++) { 5225 mutex_lock(&vi->rq[i].dim_lock); 5226 vi->rq[i].dim_enabled = false; 5227 mutex_unlock(&vi->rq[i].dim_lock); 5228 } 5229 } 5230 5231 /* Since the per-queue coalescing params can be set, 5232 * we need apply the global new params even if they 5233 * are not updated. 5234 */ 5235 coal_rx->rx_usecs = cpu_to_le32(ec->rx_coalesce_usecs); 5236 coal_rx->rx_max_packets = cpu_to_le32(ec->rx_max_coalesced_frames); 5237 sg_init_one(&sgs_rx, coal_rx, sizeof(*coal_rx)); 5238 5239 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL, 5240 VIRTIO_NET_CTRL_NOTF_COAL_RX_SET, 5241 &sgs_rx)) 5242 return -EINVAL; 5243 5244 vi->intr_coal_rx.max_usecs = ec->rx_coalesce_usecs; 5245 vi->intr_coal_rx.max_packets = ec->rx_max_coalesced_frames; 5246 for (i = 0; i < vi->max_queue_pairs; i++) { 5247 mutex_lock(&vi->rq[i].dim_lock); 5248 vi->rq[i].intr_coal.max_usecs = ec->rx_coalesce_usecs; 5249 vi->rq[i].intr_coal.max_packets = ec->rx_max_coalesced_frames; 5250 mutex_unlock(&vi->rq[i].dim_lock); 5251 } 5252 5253 return 0; 5254 } 5255 5256 static int virtnet_send_notf_coal_cmds(struct virtnet_info *vi, 5257 struct ethtool_coalesce *ec) 5258 { 5259 int err; 5260 5261 err = virtnet_send_tx_notf_coal_cmds(vi, ec); 5262 if (err) 5263 return err; 5264 5265 err = virtnet_send_rx_notf_coal_cmds(vi, ec); 5266 if (err) 5267 return err; 5268 5269 return 0; 5270 } 5271 5272 static int virtnet_send_rx_notf_coal_vq_cmds(struct virtnet_info *vi, 5273 struct ethtool_coalesce *ec, 5274 u16 queue) 5275 { 5276 bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce; 5277 u32 max_usecs, max_packets; 5278 bool cur_rx_dim; 5279 int err; 5280 5281 mutex_lock(&vi->rq[queue].dim_lock); 5282 cur_rx_dim = vi->rq[queue].dim_enabled; 5283 max_usecs = vi->rq[queue].intr_coal.max_usecs; 5284 max_packets = vi->rq[queue].intr_coal.max_packets; 5285 5286 if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != max_usecs || 5287 ec->rx_max_coalesced_frames != max_packets)) { 5288 mutex_unlock(&vi->rq[queue].dim_lock); 5289 return -EINVAL; 5290 } 5291 5292 if (rx_ctrl_dim_on && !cur_rx_dim) { 5293 vi->rq[queue].dim_enabled = true; 5294 mutex_unlock(&vi->rq[queue].dim_lock); 5295 return 0; 5296 } 5297 5298 if (!rx_ctrl_dim_on && cur_rx_dim) 5299 vi->rq[queue].dim_enabled = false; 5300 5301 /* If no params are updated, userspace ethtool will 5302 * reject the modification. 5303 */ 5304 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, queue, 5305 ec->rx_coalesce_usecs, 5306 ec->rx_max_coalesced_frames); 5307 mutex_unlock(&vi->rq[queue].dim_lock); 5308 return err; 5309 } 5310 5311 static int virtnet_send_notf_coal_vq_cmds(struct virtnet_info *vi, 5312 struct ethtool_coalesce *ec, 5313 u16 queue) 5314 { 5315 int err; 5316 5317 err = virtnet_send_rx_notf_coal_vq_cmds(vi, ec, queue); 5318 if (err) 5319 return err; 5320 5321 err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, queue, 5322 ec->tx_coalesce_usecs, 5323 ec->tx_max_coalesced_frames); 5324 if (err) 5325 return err; 5326 5327 return 0; 5328 } 5329 5330 static void virtnet_rx_dim_work(struct work_struct *work) 5331 { 5332 struct dim *dim = container_of(work, struct dim, work); 5333 struct receive_queue *rq = container_of(dim, 5334 struct receive_queue, dim); 5335 struct virtnet_info *vi = rq->vq->vdev->priv; 5336 struct net_device *dev = vi->dev; 5337 struct dim_cq_moder update_moder; 5338 int qnum, err; 5339 5340 qnum = rq - vi->rq; 5341 5342 mutex_lock(&rq->dim_lock); 5343 if (!rq->dim_enabled) 5344 goto out; 5345 5346 update_moder = net_dim_get_rx_irq_moder(dev, dim); 5347 if (update_moder.usec != rq->intr_coal.max_usecs || 5348 update_moder.pkts != rq->intr_coal.max_packets) { 5349 err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, qnum, 5350 update_moder.usec, 5351 update_moder.pkts); 5352 if (err) 5353 pr_debug("%s: Failed to send dim parameters on rxq%d\n", 5354 dev->name, qnum); 5355 } 5356 out: 5357 dim->state = DIM_START_MEASURE; 5358 mutex_unlock(&rq->dim_lock); 5359 } 5360 5361 static int virtnet_coal_params_supported(struct ethtool_coalesce *ec) 5362 { 5363 /* usecs coalescing is supported only if VIRTIO_NET_F_NOTF_COAL 5364 * or VIRTIO_NET_F_VQ_NOTF_COAL feature is negotiated. 5365 */ 5366 if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs) 5367 return -EOPNOTSUPP; 5368 5369 if (ec->tx_max_coalesced_frames > 1 || 5370 ec->rx_max_coalesced_frames != 1) 5371 return -EINVAL; 5372 5373 return 0; 5374 } 5375 5376 static int virtnet_should_update_vq_weight(int dev_flags, int weight, 5377 int vq_weight, bool *should_update) 5378 { 5379 if (weight ^ vq_weight) { 5380 if (dev_flags & IFF_UP) 5381 return -EBUSY; 5382 *should_update = true; 5383 } 5384 5385 return 0; 5386 } 5387 5388 static int virtnet_set_coalesce(struct net_device *dev, 5389 struct ethtool_coalesce *ec, 5390 struct kernel_ethtool_coalesce *kernel_coal, 5391 struct netlink_ext_ack *extack) 5392 { 5393 struct virtnet_info *vi = netdev_priv(dev); 5394 int ret, queue_number, napi_weight, i; 5395 bool update_napi = false; 5396 5397 /* Can't change NAPI weight if the link is up */ 5398 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0; 5399 for (queue_number = 0; queue_number < vi->max_queue_pairs; queue_number++) { 5400 ret = virtnet_should_update_vq_weight(dev->flags, napi_weight, 5401 vi->sq[queue_number].napi.weight, 5402 &update_napi); 5403 if (ret) 5404 return ret; 5405 5406 if (update_napi) { 5407 /* All queues that belong to [queue_number, vi->max_queue_pairs] will be 5408 * updated for the sake of simplicity, which might not be necessary 5409 */ 5410 break; 5411 } 5412 } 5413 5414 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) 5415 ret = virtnet_send_notf_coal_cmds(vi, ec); 5416 else 5417 ret = virtnet_coal_params_supported(ec); 5418 5419 if (ret) 5420 return ret; 5421 5422 if (update_napi) { 5423 /* xsk xmit depends on the tx napi. So if xsk is active, 5424 * prevent modifications to tx napi. 5425 */ 5426 for (i = queue_number; i < vi->max_queue_pairs; i++) { 5427 if (vi->sq[i].xsk_pool) 5428 return -EBUSY; 5429 } 5430 5431 for (; queue_number < vi->max_queue_pairs; queue_number++) 5432 vi->sq[queue_number].napi.weight = napi_weight; 5433 } 5434 5435 return ret; 5436 } 5437 5438 static int virtnet_get_coalesce(struct net_device *dev, 5439 struct ethtool_coalesce *ec, 5440 struct kernel_ethtool_coalesce *kernel_coal, 5441 struct netlink_ext_ack *extack) 5442 { 5443 struct virtnet_info *vi = netdev_priv(dev); 5444 5445 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) { 5446 ec->rx_coalesce_usecs = vi->intr_coal_rx.max_usecs; 5447 ec->tx_coalesce_usecs = vi->intr_coal_tx.max_usecs; 5448 ec->tx_max_coalesced_frames = vi->intr_coal_tx.max_packets; 5449 ec->rx_max_coalesced_frames = vi->intr_coal_rx.max_packets; 5450 ec->use_adaptive_rx_coalesce = vi->rx_dim_enabled; 5451 } else { 5452 ec->rx_max_coalesced_frames = 1; 5453 5454 if (vi->sq[0].napi.weight) 5455 ec->tx_max_coalesced_frames = 1; 5456 } 5457 5458 return 0; 5459 } 5460 5461 static int virtnet_set_per_queue_coalesce(struct net_device *dev, 5462 u32 queue, 5463 struct ethtool_coalesce *ec) 5464 { 5465 struct virtnet_info *vi = netdev_priv(dev); 5466 int ret, napi_weight; 5467 bool update_napi = false; 5468 5469 if (queue >= vi->max_queue_pairs) 5470 return -EINVAL; 5471 5472 /* Can't change NAPI weight if the link is up */ 5473 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0; 5474 ret = virtnet_should_update_vq_weight(dev->flags, napi_weight, 5475 vi->sq[queue].napi.weight, 5476 &update_napi); 5477 if (ret) 5478 return ret; 5479 5480 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 5481 ret = virtnet_send_notf_coal_vq_cmds(vi, ec, queue); 5482 else 5483 ret = virtnet_coal_params_supported(ec); 5484 5485 if (ret) 5486 return ret; 5487 5488 if (update_napi) 5489 vi->sq[queue].napi.weight = napi_weight; 5490 5491 return 0; 5492 } 5493 5494 static int virtnet_get_per_queue_coalesce(struct net_device *dev, 5495 u32 queue, 5496 struct ethtool_coalesce *ec) 5497 { 5498 struct virtnet_info *vi = netdev_priv(dev); 5499 5500 if (queue >= vi->max_queue_pairs) 5501 return -EINVAL; 5502 5503 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) { 5504 mutex_lock(&vi->rq[queue].dim_lock); 5505 ec->rx_coalesce_usecs = vi->rq[queue].intr_coal.max_usecs; 5506 ec->tx_coalesce_usecs = vi->sq[queue].intr_coal.max_usecs; 5507 ec->tx_max_coalesced_frames = vi->sq[queue].intr_coal.max_packets; 5508 ec->rx_max_coalesced_frames = vi->rq[queue].intr_coal.max_packets; 5509 ec->use_adaptive_rx_coalesce = vi->rq[queue].dim_enabled; 5510 mutex_unlock(&vi->rq[queue].dim_lock); 5511 } else { 5512 ec->rx_max_coalesced_frames = 1; 5513 5514 if (vi->sq[queue].napi.weight) 5515 ec->tx_max_coalesced_frames = 1; 5516 } 5517 5518 return 0; 5519 } 5520 5521 static void virtnet_init_settings(struct net_device *dev) 5522 { 5523 struct virtnet_info *vi = netdev_priv(dev); 5524 5525 vi->speed = SPEED_UNKNOWN; 5526 vi->duplex = DUPLEX_UNKNOWN; 5527 } 5528 5529 static u32 virtnet_get_rxfh_key_size(struct net_device *dev) 5530 { 5531 return ((struct virtnet_info *)netdev_priv(dev))->rss_key_size; 5532 } 5533 5534 static u32 virtnet_get_rxfh_indir_size(struct net_device *dev) 5535 { 5536 return ((struct virtnet_info *)netdev_priv(dev))->rss_indir_table_size; 5537 } 5538 5539 static int virtnet_get_rxfh(struct net_device *dev, 5540 struct ethtool_rxfh_param *rxfh) 5541 { 5542 struct virtnet_info *vi = netdev_priv(dev); 5543 int i; 5544 5545 if (rxfh->indir) { 5546 for (i = 0; i < vi->rss_indir_table_size; ++i) 5547 rxfh->indir[i] = le16_to_cpu(vi->rss_hdr->indirection_table[i]); 5548 } 5549 5550 if (rxfh->key) 5551 memcpy(rxfh->key, vi->rss_hash_key_data, vi->rss_key_size); 5552 5553 rxfh->hfunc = ETH_RSS_HASH_TOP; 5554 5555 return 0; 5556 } 5557 5558 static int virtnet_set_rxfh(struct net_device *dev, 5559 struct ethtool_rxfh_param *rxfh, 5560 struct netlink_ext_ack *extack) 5561 { 5562 struct virtnet_info *vi = netdev_priv(dev); 5563 bool update = false; 5564 int i; 5565 5566 if (rxfh->hfunc != ETH_RSS_HASH_NO_CHANGE && 5567 rxfh->hfunc != ETH_RSS_HASH_TOP) 5568 return -EOPNOTSUPP; 5569 5570 if (rxfh->indir) { 5571 if (!vi->has_rss) 5572 return -EOPNOTSUPP; 5573 5574 for (i = 0; i < vi->rss_indir_table_size; ++i) 5575 vi->rss_hdr->indirection_table[i] = cpu_to_le16(rxfh->indir[i]); 5576 update = true; 5577 } 5578 5579 if (rxfh->key) { 5580 /* If either _F_HASH_REPORT or _F_RSS are negotiated, the 5581 * device provides hash calculation capabilities, that is, 5582 * hash_key is configured. 5583 */ 5584 if (!vi->has_rss && !vi->has_rss_hash_report) 5585 return -EOPNOTSUPP; 5586 5587 memcpy(vi->rss_hash_key_data, rxfh->key, vi->rss_key_size); 5588 update = true; 5589 } 5590 5591 if (update) 5592 virtnet_commit_rss_command(vi); 5593 5594 return 0; 5595 } 5596 5597 static u32 virtnet_get_rx_ring_count(struct net_device *dev) 5598 { 5599 struct virtnet_info *vi = netdev_priv(dev); 5600 5601 return vi->curr_queue_pairs; 5602 } 5603 5604 static const struct ethtool_ops virtnet_ethtool_ops = { 5605 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES | 5606 ETHTOOL_COALESCE_USECS | ETHTOOL_COALESCE_USE_ADAPTIVE_RX, 5607 .get_drvinfo = virtnet_get_drvinfo, 5608 .get_link = ethtool_op_get_link, 5609 .get_ringparam = virtnet_get_ringparam, 5610 .set_ringparam = virtnet_set_ringparam, 5611 .get_strings = virtnet_get_strings, 5612 .get_sset_count = virtnet_get_sset_count, 5613 .get_ethtool_stats = virtnet_get_ethtool_stats, 5614 .set_channels = virtnet_set_channels, 5615 .get_channels = virtnet_get_channels, 5616 .get_ts_info = ethtool_op_get_ts_info, 5617 .get_link_ksettings = virtnet_get_link_ksettings, 5618 .set_link_ksettings = virtnet_set_link_ksettings, 5619 .set_coalesce = virtnet_set_coalesce, 5620 .get_coalesce = virtnet_get_coalesce, 5621 .set_per_queue_coalesce = virtnet_set_per_queue_coalesce, 5622 .get_per_queue_coalesce = virtnet_get_per_queue_coalesce, 5623 .get_rxfh_key_size = virtnet_get_rxfh_key_size, 5624 .get_rxfh_indir_size = virtnet_get_rxfh_indir_size, 5625 .get_rxfh = virtnet_get_rxfh, 5626 .set_rxfh = virtnet_set_rxfh, 5627 .get_rxfh_fields = virtnet_get_hashflow, 5628 .set_rxfh_fields = virtnet_set_hashflow, 5629 .get_rx_ring_count = virtnet_get_rx_ring_count, 5630 }; 5631 5632 static void virtnet_get_queue_stats_rx(struct net_device *dev, int i, 5633 struct netdev_queue_stats_rx *stats) 5634 { 5635 struct virtnet_info *vi = netdev_priv(dev); 5636 struct receive_queue *rq = &vi->rq[i]; 5637 struct virtnet_stats_ctx ctx = {0}; 5638 5639 virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true); 5640 5641 virtnet_get_hw_stats(vi, &ctx, i * 2); 5642 virtnet_fill_stats(vi, i * 2, &ctx, (void *)&rq->stats, true, 0); 5643 } 5644 5645 static void virtnet_get_queue_stats_tx(struct net_device *dev, int i, 5646 struct netdev_queue_stats_tx *stats) 5647 { 5648 struct virtnet_info *vi = netdev_priv(dev); 5649 struct send_queue *sq = &vi->sq[i]; 5650 struct virtnet_stats_ctx ctx = {0}; 5651 5652 virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true); 5653 5654 virtnet_get_hw_stats(vi, &ctx, i * 2 + 1); 5655 virtnet_fill_stats(vi, i * 2 + 1, &ctx, (void *)&sq->stats, true, 0); 5656 } 5657 5658 static void virtnet_get_base_stats(struct net_device *dev, 5659 struct netdev_queue_stats_rx *rx, 5660 struct netdev_queue_stats_tx *tx) 5661 { 5662 struct virtnet_info *vi = netdev_priv(dev); 5663 5664 /* The queue stats of the virtio-net will not be reset. So here we 5665 * return 0. 5666 */ 5667 rx->bytes = 0; 5668 rx->packets = 0; 5669 5670 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) { 5671 rx->hw_drops = 0; 5672 rx->hw_drop_overruns = 0; 5673 } 5674 5675 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) { 5676 rx->csum_unnecessary = 0; 5677 rx->csum_none = 0; 5678 rx->csum_bad = 0; 5679 } 5680 5681 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) { 5682 rx->hw_gro_packets = 0; 5683 rx->hw_gro_bytes = 0; 5684 rx->hw_gro_wire_packets = 0; 5685 rx->hw_gro_wire_bytes = 0; 5686 } 5687 5688 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) 5689 rx->hw_drop_ratelimits = 0; 5690 5691 tx->bytes = 0; 5692 tx->packets = 0; 5693 tx->stop = 0; 5694 tx->wake = 0; 5695 5696 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) { 5697 tx->hw_drops = 0; 5698 tx->hw_drop_errors = 0; 5699 } 5700 5701 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) { 5702 tx->csum_none = 0; 5703 tx->needs_csum = 0; 5704 } 5705 5706 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) { 5707 tx->hw_gso_packets = 0; 5708 tx->hw_gso_bytes = 0; 5709 tx->hw_gso_wire_packets = 0; 5710 tx->hw_gso_wire_bytes = 0; 5711 } 5712 5713 if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) 5714 tx->hw_drop_ratelimits = 0; 5715 5716 netdev_stat_queue_sum(dev, 5717 dev->real_num_rx_queues, vi->max_queue_pairs, rx, 5718 dev->real_num_tx_queues, vi->max_queue_pairs, tx); 5719 } 5720 5721 static const struct netdev_stat_ops virtnet_stat_ops = { 5722 .get_queue_stats_rx = virtnet_get_queue_stats_rx, 5723 .get_queue_stats_tx = virtnet_get_queue_stats_tx, 5724 .get_base_stats = virtnet_get_base_stats, 5725 }; 5726 5727 static void virtnet_freeze_down(struct virtio_device *vdev) 5728 { 5729 struct virtnet_info *vi = vdev->priv; 5730 5731 /* Make sure no work handler is accessing the device */ 5732 flush_work(&vi->config_work); 5733 disable_rx_mode_work(vi); 5734 flush_work(&vi->rx_mode_work); 5735 5736 if (netif_running(vi->dev)) { 5737 rtnl_lock(); 5738 virtnet_close(vi->dev); 5739 rtnl_unlock(); 5740 } 5741 5742 netif_tx_lock_bh(vi->dev); 5743 netif_device_detach(vi->dev); 5744 netif_tx_unlock_bh(vi->dev); 5745 } 5746 5747 static int init_vqs(struct virtnet_info *vi); 5748 5749 static int virtnet_restore_up(struct virtio_device *vdev) 5750 { 5751 struct virtnet_info *vi = vdev->priv; 5752 int err; 5753 5754 err = init_vqs(vi); 5755 if (err) 5756 return err; 5757 5758 err = virtnet_create_page_pools(vi); 5759 if (err) 5760 goto err_del_vqs; 5761 5762 virtio_device_ready(vdev); 5763 5764 enable_rx_mode_work(vi); 5765 5766 if (netif_running(vi->dev)) { 5767 rtnl_lock(); 5768 err = virtnet_open(vi->dev); 5769 rtnl_unlock(); 5770 if (err) 5771 goto err_destroy_pools; 5772 } 5773 5774 netif_tx_lock_bh(vi->dev); 5775 netif_device_attach(vi->dev); 5776 netif_tx_unlock_bh(vi->dev); 5777 return 0; 5778 5779 err_destroy_pools: 5780 virtio_reset_device(vdev); 5781 free_unused_bufs(vi); 5782 virtnet_destroy_page_pools(vi); 5783 virtnet_del_vqs(vi); 5784 return err; 5785 5786 err_del_vqs: 5787 virtio_reset_device(vdev); 5788 virtnet_del_vqs(vi); 5789 return err; 5790 } 5791 5792 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads) 5793 { 5794 __virtio64 *_offloads __free(kfree) = NULL; 5795 struct scatterlist sg; 5796 5797 _offloads = kzalloc_obj(*_offloads); 5798 if (!_offloads) 5799 return -ENOMEM; 5800 5801 *_offloads = cpu_to_virtio64(vi->vdev, offloads); 5802 5803 sg_init_one(&sg, _offloads, sizeof(*_offloads)); 5804 5805 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS, 5806 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) { 5807 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n"); 5808 return -EINVAL; 5809 } 5810 5811 return 0; 5812 } 5813 5814 static int virtnet_clear_guest_offloads(struct virtnet_info *vi) 5815 { 5816 u64 offloads = 0; 5817 5818 if (!vi->guest_offloads) 5819 return 0; 5820 5821 return virtnet_set_guest_offloads(vi, offloads); 5822 } 5823 5824 static int virtnet_restore_guest_offloads(struct virtnet_info *vi) 5825 { 5826 u64 offloads = vi->guest_offloads; 5827 5828 if (!vi->guest_offloads) 5829 return 0; 5830 5831 return virtnet_set_guest_offloads(vi, offloads); 5832 } 5833 5834 static int virtnet_rq_bind_xsk_pool(struct virtnet_info *vi, struct receive_queue *rq, 5835 struct xsk_buff_pool *pool) 5836 { 5837 int err, qindex; 5838 5839 qindex = rq - vi->rq; 5840 5841 if (pool) { 5842 err = xdp_rxq_info_reg(&rq->xsk_rxq_info, vi->dev, qindex, rq->napi.napi_id); 5843 if (err < 0) 5844 return err; 5845 5846 err = xdp_rxq_info_reg_mem_model(&rq->xsk_rxq_info, 5847 MEM_TYPE_XSK_BUFF_POOL, NULL); 5848 if (err < 0) 5849 goto unreg; 5850 5851 xsk_pool_set_rxq_info(pool, &rq->xsk_rxq_info); 5852 } 5853 5854 virtnet_rx_pause(vi, rq); 5855 5856 err = virtqueue_reset(rq->vq, virtnet_rq_unmap_free_buf, NULL); 5857 if (err) { 5858 netdev_err(vi->dev, "reset rx fail: rx queue index: %d err: %d\n", qindex, err); 5859 5860 pool = NULL; 5861 } 5862 5863 rq->xsk_pool = pool; 5864 5865 virtnet_rx_resume(vi, rq, true); 5866 5867 if (pool) 5868 return 0; 5869 5870 unreg: 5871 xdp_rxq_info_unreg(&rq->xsk_rxq_info); 5872 return err; 5873 } 5874 5875 static int virtnet_sq_bind_xsk_pool(struct virtnet_info *vi, 5876 struct send_queue *sq, 5877 struct xsk_buff_pool *pool) 5878 { 5879 int err, qindex; 5880 5881 qindex = sq - vi->sq; 5882 5883 virtnet_tx_pause(vi, sq); 5884 5885 err = virtqueue_reset(sq->vq, virtnet_sq_free_unused_buf, 5886 virtnet_sq_free_unused_buf_done); 5887 if (err) { 5888 netdev_err(vi->dev, "reset tx fail: tx queue index: %d err: %d\n", qindex, err); 5889 pool = NULL; 5890 } 5891 5892 sq->xsk_pool = pool; 5893 5894 virtnet_tx_resume(vi, sq); 5895 5896 return err; 5897 } 5898 5899 static int virtnet_xsk_pool_enable(struct net_device *dev, 5900 struct xsk_buff_pool *pool, 5901 u16 qid) 5902 { 5903 struct virtnet_info *vi = netdev_priv(dev); 5904 struct receive_queue *rq; 5905 struct device *dma_dev; 5906 struct send_queue *sq; 5907 dma_addr_t hdr_dma; 5908 int err, size; 5909 5910 if (vi->hdr_len > xsk_pool_get_headroom(pool)) 5911 return -EINVAL; 5912 5913 /* In big_packets mode, xdp cannot work, so there is no need to 5914 * initialize xsk of rq. 5915 */ 5916 if (!vi->rq[qid].page_pool) 5917 return -ENOENT; 5918 5919 if (qid >= vi->curr_queue_pairs) 5920 return -EINVAL; 5921 5922 sq = &vi->sq[qid]; 5923 rq = &vi->rq[qid]; 5924 5925 /* xsk assumes that tx and rx must have the same dma device. The af-xdp 5926 * may use one buffer to receive from the rx and reuse this buffer to 5927 * send by the tx. So the dma dev of sq and rq must be the same one. 5928 * 5929 * But vq->dma_dev allows every vq has the respective dma dev. So I 5930 * check the dma dev of vq and sq is the same dev. 5931 */ 5932 if (virtqueue_dma_dev(rq->vq) != virtqueue_dma_dev(sq->vq)) 5933 return -EINVAL; 5934 5935 dma_dev = virtqueue_dma_dev(rq->vq); 5936 if (!dma_dev) 5937 return -EINVAL; 5938 5939 size = virtqueue_get_vring_size(rq->vq); 5940 5941 rq->xsk_buffs = kvzalloc_objs(*rq->xsk_buffs, size); 5942 if (!rq->xsk_buffs) 5943 return -ENOMEM; 5944 5945 hdr_dma = virtqueue_map_single_attrs(sq->vq, &xsk_hdr, vi->hdr_len, 5946 DMA_TO_DEVICE, 0); 5947 if (virtqueue_map_mapping_error(sq->vq, hdr_dma)) { 5948 err = -ENOMEM; 5949 goto err_free_buffs; 5950 } 5951 5952 err = xsk_pool_dma_map(pool, dma_dev, 0); 5953 if (err) 5954 goto err_xsk_map; 5955 5956 err = virtnet_rq_bind_xsk_pool(vi, rq, pool); 5957 if (err) 5958 goto err_rq; 5959 5960 err = virtnet_sq_bind_xsk_pool(vi, sq, pool); 5961 if (err) 5962 goto err_sq; 5963 5964 /* Now, we do not support tx offload(such as tx csum), so all the tx 5965 * virtnet hdr is zero. So all the tx packets can share a single hdr. 5966 */ 5967 sq->xsk_hdr_dma_addr = hdr_dma; 5968 5969 return 0; 5970 5971 err_sq: 5972 virtnet_rq_bind_xsk_pool(vi, rq, NULL); 5973 err_rq: 5974 xsk_pool_dma_unmap(pool, 0); 5975 err_xsk_map: 5976 virtqueue_unmap_single_attrs(rq->vq, hdr_dma, vi->hdr_len, 5977 DMA_TO_DEVICE, 0); 5978 err_free_buffs: 5979 kvfree(rq->xsk_buffs); 5980 return err; 5981 } 5982 5983 static int virtnet_xsk_pool_disable(struct net_device *dev, u16 qid) 5984 { 5985 struct virtnet_info *vi = netdev_priv(dev); 5986 struct xsk_buff_pool *pool; 5987 struct receive_queue *rq; 5988 struct send_queue *sq; 5989 int err; 5990 5991 if (qid >= vi->curr_queue_pairs) 5992 return -EINVAL; 5993 5994 sq = &vi->sq[qid]; 5995 rq = &vi->rq[qid]; 5996 5997 pool = rq->xsk_pool; 5998 5999 err = virtnet_rq_bind_xsk_pool(vi, rq, NULL); 6000 err |= virtnet_sq_bind_xsk_pool(vi, sq, NULL); 6001 6002 xsk_pool_dma_unmap(pool, 0); 6003 6004 virtqueue_unmap_single_attrs(sq->vq, sq->xsk_hdr_dma_addr, 6005 vi->hdr_len, DMA_TO_DEVICE, 0); 6006 kvfree(rq->xsk_buffs); 6007 6008 return err; 6009 } 6010 6011 static int virtnet_xsk_pool_setup(struct net_device *dev, struct netdev_bpf *xdp) 6012 { 6013 if (xdp->xsk.pool) 6014 return virtnet_xsk_pool_enable(dev, xdp->xsk.pool, 6015 xdp->xsk.queue_id); 6016 else 6017 return virtnet_xsk_pool_disable(dev, xdp->xsk.queue_id); 6018 } 6019 6020 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog, 6021 struct netlink_ext_ack *extack) 6022 { 6023 unsigned int room = SKB_DATA_ALIGN(XDP_PACKET_HEADROOM + 6024 sizeof(struct skb_shared_info)); 6025 unsigned int max_sz = PAGE_SIZE - room - ETH_HLEN; 6026 struct virtnet_info *vi = netdev_priv(dev); 6027 struct bpf_prog *old_prog; 6028 u16 xdp_qp = 0, curr_qp; 6029 int i, err; 6030 6031 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) 6032 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || 6033 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || 6034 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || 6035 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || 6036 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM) || 6037 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) || 6038 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6))) { 6039 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first"); 6040 return -EOPNOTSUPP; 6041 } 6042 6043 if (vi->mergeable_rx_bufs && !vi->any_header_sg) { 6044 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required"); 6045 return -EINVAL; 6046 } 6047 6048 if (prog && !prog->aux->xdp_has_frags && dev->mtu > max_sz) { 6049 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP without frags"); 6050 netdev_warn(dev, "single-buffer XDP requires MTU less than %u\n", max_sz); 6051 return -EINVAL; 6052 } 6053 6054 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs; 6055 if (prog) 6056 xdp_qp = nr_cpu_ids; 6057 6058 /* XDP requires extra queues for XDP_TX */ 6059 if (curr_qp + xdp_qp > vi->max_queue_pairs) { 6060 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", 6061 curr_qp + xdp_qp, vi->max_queue_pairs); 6062 xdp_qp = 0; 6063 } 6064 6065 old_prog = rtnl_dereference(vi->rq[0].xdp_prog); 6066 if (!prog && !old_prog) 6067 return 0; 6068 6069 if (prog) 6070 bpf_prog_add(prog, vi->max_queue_pairs - 1); 6071 6072 virtnet_rx_pause_all(vi); 6073 6074 /* Make sure NAPI is not using any XDP TX queues for RX. */ 6075 if (netif_running(dev)) { 6076 for (i = 0; i < vi->max_queue_pairs; i++) 6077 virtnet_napi_tx_disable(&vi->sq[i]); 6078 } 6079 6080 if (!prog) { 6081 for (i = 0; i < vi->max_queue_pairs; i++) { 6082 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 6083 if (i == 0) 6084 virtnet_restore_guest_offloads(vi); 6085 } 6086 synchronize_net(); 6087 } 6088 6089 err = virtnet_set_queues(vi, curr_qp + xdp_qp); 6090 if (err) 6091 goto err; 6092 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp); 6093 vi->xdp_queue_pairs = xdp_qp; 6094 6095 if (prog) { 6096 vi->xdp_enabled = true; 6097 for (i = 0; i < vi->max_queue_pairs; i++) { 6098 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 6099 if (i == 0 && !old_prog) 6100 virtnet_clear_guest_offloads(vi); 6101 } 6102 if (!old_prog) 6103 xdp_features_set_redirect_target(dev, true); 6104 } else { 6105 xdp_features_clear_redirect_target(dev); 6106 vi->xdp_enabled = false; 6107 } 6108 6109 virtnet_rx_resume_all(vi); 6110 for (i = 0; i < vi->max_queue_pairs; i++) { 6111 if (old_prog) 6112 bpf_prog_put(old_prog); 6113 if (netif_running(dev)) 6114 virtnet_napi_tx_enable(&vi->sq[i]); 6115 } 6116 6117 return 0; 6118 6119 err: 6120 if (!prog) { 6121 virtnet_clear_guest_offloads(vi); 6122 for (i = 0; i < vi->max_queue_pairs; i++) 6123 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog); 6124 } 6125 6126 virtnet_rx_resume_all(vi); 6127 if (netif_running(dev)) { 6128 for (i = 0; i < vi->max_queue_pairs; i++) 6129 virtnet_napi_tx_enable(&vi->sq[i]); 6130 } 6131 if (prog) 6132 bpf_prog_sub(prog, vi->max_queue_pairs - 1); 6133 return err; 6134 } 6135 6136 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp) 6137 { 6138 switch (xdp->command) { 6139 case XDP_SETUP_PROG: 6140 return virtnet_xdp_set(dev, xdp->prog, xdp->extack); 6141 case XDP_SETUP_XSK_POOL: 6142 return virtnet_xsk_pool_setup(dev, xdp); 6143 default: 6144 return -EINVAL; 6145 } 6146 } 6147 6148 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf, 6149 size_t len) 6150 { 6151 struct virtnet_info *vi = netdev_priv(dev); 6152 int ret; 6153 6154 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 6155 return -EOPNOTSUPP; 6156 6157 ret = snprintf(buf, len, "sby"); 6158 if (ret >= len) 6159 return -EOPNOTSUPP; 6160 6161 return 0; 6162 } 6163 6164 static int virtnet_set_features(struct net_device *dev, 6165 netdev_features_t features) 6166 { 6167 struct virtnet_info *vi = netdev_priv(dev); 6168 u64 offloads; 6169 int err; 6170 6171 if ((dev->features ^ features) & NETIF_F_GRO_HW) { 6172 if (vi->xdp_enabled) 6173 return -EBUSY; 6174 6175 if (features & NETIF_F_GRO_HW) 6176 offloads = vi->guest_offloads_capable; 6177 else 6178 offloads = vi->guest_offloads_capable & 6179 ~GUEST_OFFLOAD_GRO_HW_MASK; 6180 6181 err = virtnet_set_guest_offloads(vi, offloads); 6182 if (err) 6183 return err; 6184 vi->guest_offloads = offloads; 6185 } 6186 6187 if ((dev->features ^ features) & NETIF_F_RXHASH) { 6188 if (features & NETIF_F_RXHASH) 6189 vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved); 6190 else 6191 vi->rss_hdr->hash_types = cpu_to_le32(VIRTIO_NET_HASH_REPORT_NONE); 6192 6193 if (!virtnet_commit_rss_command(vi)) 6194 return -EINVAL; 6195 } 6196 6197 return 0; 6198 } 6199 6200 static void virtnet_tx_timeout(struct net_device *dev, unsigned int txqueue) 6201 { 6202 struct virtnet_info *priv = netdev_priv(dev); 6203 struct send_queue *sq = &priv->sq[txqueue]; 6204 struct netdev_queue *txq = netdev_get_tx_queue(dev, txqueue); 6205 6206 u64_stats_update_begin(&sq->stats.syncp); 6207 u64_stats_inc(&sq->stats.tx_timeouts); 6208 u64_stats_update_end(&sq->stats.syncp); 6209 6210 netdev_err(dev, "TX timeout on queue: %u, sq: %s, vq: 0x%x, name: %s, %u usecs ago\n", 6211 txqueue, sq->name, sq->vq->index, sq->vq->name, 6212 jiffies_to_usecs(jiffies - READ_ONCE(txq->trans_start))); 6213 } 6214 6215 static int virtnet_init_irq_moder(struct virtnet_info *vi) 6216 { 6217 u8 profile_flags = 0, coal_flags = 0; 6218 int ret, i; 6219 6220 profile_flags |= DIM_PROFILE_RX; 6221 coal_flags |= DIM_COALESCE_USEC | DIM_COALESCE_PKTS; 6222 ret = net_dim_init_irq_moder(vi->dev, profile_flags, coal_flags, 6223 DIM_CQ_PERIOD_MODE_START_FROM_EQE, 6224 0, virtnet_rx_dim_work, NULL); 6225 6226 if (ret) 6227 return ret; 6228 6229 for (i = 0; i < vi->max_queue_pairs; i++) 6230 net_dim_setting(vi->dev, &vi->rq[i].dim, false); 6231 6232 return 0; 6233 } 6234 6235 static void virtnet_free_irq_moder(struct virtnet_info *vi) 6236 { 6237 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) 6238 return; 6239 6240 rtnl_lock(); 6241 net_dim_free_irq_moder(vi->dev); 6242 rtnl_unlock(); 6243 } 6244 6245 static netdev_features_t virtnet_features_check(struct sk_buff *skb, 6246 struct net_device *dev, 6247 netdev_features_t features) 6248 { 6249 /* Inner csum offload is only available for GSO packets. */ 6250 if (skb->encapsulation && 6251 (!skb_is_gso(skb) || netif_needs_gso(skb, features))) 6252 return features & ~NETIF_F_CSUM_MASK; 6253 6254 /* Passthru. */ 6255 return features; 6256 } 6257 6258 static const struct net_device_ops virtnet_netdev = { 6259 .ndo_open = virtnet_open, 6260 .ndo_stop = virtnet_close, 6261 .ndo_start_xmit = start_xmit, 6262 .ndo_validate_addr = eth_validate_addr, 6263 .ndo_set_mac_address = virtnet_set_mac_address, 6264 .ndo_set_rx_mode = virtnet_set_rx_mode, 6265 .ndo_get_stats64 = virtnet_stats, 6266 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, 6267 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, 6268 .ndo_bpf = virtnet_xdp, 6269 .ndo_xdp_xmit = virtnet_xdp_xmit, 6270 .ndo_xsk_wakeup = virtnet_xsk_wakeup, 6271 .ndo_features_check = virtnet_features_check, 6272 .ndo_get_phys_port_name = virtnet_get_phys_port_name, 6273 .ndo_set_features = virtnet_set_features, 6274 .ndo_tx_timeout = virtnet_tx_timeout, 6275 }; 6276 6277 static void virtnet_config_changed_work(struct work_struct *work) 6278 { 6279 struct virtnet_info *vi = 6280 container_of(work, struct virtnet_info, config_work); 6281 u16 v; 6282 6283 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS, 6284 struct virtio_net_config, status, &v) < 0) 6285 return; 6286 6287 if (v & VIRTIO_NET_S_ANNOUNCE) { 6288 netdev_notify_peers(vi->dev); 6289 virtnet_ack_link_announce(vi); 6290 } 6291 6292 /* Ignore unknown (future) status bits */ 6293 v &= VIRTIO_NET_S_LINK_UP; 6294 6295 if (vi->status == v) 6296 return; 6297 6298 vi->status = v; 6299 6300 if (vi->status & VIRTIO_NET_S_LINK_UP) { 6301 virtnet_update_settings(vi); 6302 netif_carrier_on(vi->dev); 6303 netif_tx_wake_all_queues(vi->dev); 6304 } else { 6305 netif_carrier_off(vi->dev); 6306 netif_tx_stop_all_queues(vi->dev); 6307 } 6308 } 6309 6310 static void virtnet_config_changed(struct virtio_device *vdev) 6311 { 6312 struct virtnet_info *vi = vdev->priv; 6313 6314 schedule_work(&vi->config_work); 6315 } 6316 6317 static void virtnet_free_queues(struct virtnet_info *vi) 6318 { 6319 int i; 6320 6321 for (i = 0; i < vi->max_queue_pairs; i++) { 6322 __netif_napi_del(&vi->rq[i].napi); 6323 __netif_napi_del(&vi->sq[i].napi); 6324 } 6325 6326 /* We called __netif_napi_del(), 6327 * we need to respect an RCU grace period before freeing vi->rq 6328 */ 6329 synchronize_net(); 6330 6331 kfree(vi->rq); 6332 kfree(vi->sq); 6333 kfree(vi->ctrl); 6334 } 6335 6336 static void _free_receive_bufs(struct virtnet_info *vi) 6337 { 6338 struct bpf_prog *old_prog; 6339 int i; 6340 6341 for (i = 0; i < vi->max_queue_pairs; i++) { 6342 while (vi->rq[i].pages) 6343 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); 6344 6345 old_prog = rtnl_dereference(vi->rq[i].xdp_prog); 6346 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL); 6347 if (old_prog) 6348 bpf_prog_put(old_prog); 6349 } 6350 } 6351 6352 static void free_receive_bufs(struct virtnet_info *vi) 6353 { 6354 rtnl_lock(); 6355 _free_receive_bufs(vi); 6356 rtnl_unlock(); 6357 } 6358 6359 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf) 6360 { 6361 struct virtnet_info *vi = vq->vdev->priv; 6362 struct send_queue *sq; 6363 int i = vq2txq(vq); 6364 6365 sq = &vi->sq[i]; 6366 6367 switch (virtnet_xmit_ptr_unpack(&buf)) { 6368 case VIRTNET_XMIT_TYPE_SKB: 6369 case VIRTNET_XMIT_TYPE_SKB_ORPHAN: 6370 dev_kfree_skb(buf); 6371 break; 6372 6373 case VIRTNET_XMIT_TYPE_XDP: 6374 xdp_return_frame(buf); 6375 break; 6376 6377 case VIRTNET_XMIT_TYPE_XSK: 6378 xsk_tx_completed(sq->xsk_pool, 1); 6379 break; 6380 } 6381 } 6382 6383 static void virtnet_sq_free_unused_buf_done(struct virtqueue *vq) 6384 { 6385 struct virtnet_info *vi = vq->vdev->priv; 6386 int i = vq2txq(vq); 6387 6388 netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i)); 6389 } 6390 6391 static void free_unused_bufs(struct virtnet_info *vi) 6392 { 6393 void *buf; 6394 int i; 6395 6396 for (i = 0; i < vi->max_queue_pairs; i++) { 6397 struct virtqueue *vq = vi->sq[i].vq; 6398 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) 6399 virtnet_sq_free_unused_buf(vq, buf); 6400 cond_resched(); 6401 } 6402 6403 for (i = 0; i < vi->max_queue_pairs; i++) { 6404 struct virtqueue *vq = vi->rq[i].vq; 6405 6406 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) 6407 virtnet_rq_unmap_free_buf(vq, buf); 6408 cond_resched(); 6409 } 6410 } 6411 6412 static void virtnet_del_vqs(struct virtnet_info *vi) 6413 { 6414 struct virtio_device *vdev = vi->vdev; 6415 6416 virtnet_clean_affinity(vi); 6417 6418 vdev->config->del_vqs(vdev); 6419 6420 virtnet_free_queues(vi); 6421 } 6422 6423 /* How large should a single buffer be so a queue full of these can fit at 6424 * least one full packet? 6425 * Logic below assumes the mergeable buffer header is used. 6426 */ 6427 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq) 6428 { 6429 const unsigned int hdr_len = vi->hdr_len; 6430 unsigned int rq_size = virtqueue_get_vring_size(vq); 6431 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu; 6432 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len; 6433 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size); 6434 6435 return max(max(min_buf_len, hdr_len) - hdr_len, 6436 (unsigned int)GOOD_PACKET_LEN); 6437 } 6438 6439 static int virtnet_find_vqs(struct virtnet_info *vi) 6440 { 6441 struct virtqueue_info *vqs_info; 6442 struct virtqueue **vqs; 6443 int ret = -ENOMEM; 6444 int total_vqs; 6445 bool *ctx; 6446 u16 i; 6447 6448 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by 6449 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by 6450 * possible control vq. 6451 */ 6452 total_vqs = vi->max_queue_pairs * 2 + 6453 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); 6454 6455 /* Allocate space for find_vqs parameters */ 6456 vqs = kzalloc_objs(*vqs, total_vqs); 6457 if (!vqs) 6458 goto err_vq; 6459 vqs_info = kzalloc_objs(*vqs_info, total_vqs); 6460 if (!vqs_info) 6461 goto err_vqs_info; 6462 if (vi->mergeable_rx_bufs || !vi->big_packets) { 6463 ctx = kzalloc_objs(*ctx, total_vqs); 6464 if (!ctx) 6465 goto err_ctx; 6466 } else { 6467 ctx = NULL; 6468 } 6469 6470 /* Parameters for control virtqueue, if any */ 6471 if (vi->has_cvq) { 6472 vqs_info[total_vqs - 1].name = "control"; 6473 } 6474 6475 /* Allocate/initialize parameters for send/receive virtqueues */ 6476 for (i = 0; i < vi->max_queue_pairs; i++) { 6477 vqs_info[rxq2vq(i)].callback = skb_recv_done; 6478 vqs_info[txq2vq(i)].callback = skb_xmit_done; 6479 sprintf(vi->rq[i].name, "input.%u", i); 6480 sprintf(vi->sq[i].name, "output.%u", i); 6481 vqs_info[rxq2vq(i)].name = vi->rq[i].name; 6482 vqs_info[txq2vq(i)].name = vi->sq[i].name; 6483 if (ctx) 6484 vqs_info[rxq2vq(i)].ctx = true; 6485 } 6486 6487 ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, vqs_info, NULL); 6488 if (ret) 6489 goto err_find; 6490 6491 if (vi->has_cvq) { 6492 vi->cvq = vqs[total_vqs - 1]; 6493 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) 6494 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; 6495 } 6496 6497 for (i = 0; i < vi->max_queue_pairs; i++) { 6498 vi->rq[i].vq = vqs[rxq2vq(i)]; 6499 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq); 6500 vi->sq[i].vq = vqs[txq2vq(i)]; 6501 } 6502 /* run here: ret == 0. */ 6503 6504 err_find: 6505 kfree(ctx); 6506 err_ctx: 6507 kfree(vqs_info); 6508 err_vqs_info: 6509 kfree(vqs); 6510 err_vq: 6511 return ret; 6512 } 6513 6514 static int virtnet_alloc_queues(struct virtnet_info *vi) 6515 { 6516 int i; 6517 6518 if (vi->has_cvq) { 6519 vi->ctrl = kzalloc_obj(*vi->ctrl); 6520 if (!vi->ctrl) 6521 goto err_ctrl; 6522 } else { 6523 vi->ctrl = NULL; 6524 } 6525 vi->sq = kzalloc_objs(*vi->sq, vi->max_queue_pairs); 6526 if (!vi->sq) 6527 goto err_sq; 6528 vi->rq = kzalloc_objs(*vi->rq, vi->max_queue_pairs); 6529 if (!vi->rq) 6530 goto err_rq; 6531 6532 for (i = 0; i < vi->max_queue_pairs; i++) { 6533 vi->rq[i].pages = NULL; 6534 netif_napi_add_config(vi->dev, &vi->rq[i].napi, virtnet_poll, 6535 i); 6536 vi->rq[i].napi.weight = napi_weight; 6537 netif_napi_add_tx_weight(vi->dev, &vi->sq[i].napi, 6538 virtnet_poll_tx, 6539 napi_tx ? napi_weight : 0); 6540 6541 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); 6542 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len); 6543 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); 6544 6545 u64_stats_init(&vi->rq[i].stats.syncp); 6546 u64_stats_init(&vi->sq[i].stats.syncp); 6547 mutex_init(&vi->rq[i].dim_lock); 6548 } 6549 6550 return 0; 6551 6552 err_rq: 6553 kfree(vi->sq); 6554 err_sq: 6555 kfree(vi->ctrl); 6556 err_ctrl: 6557 return -ENOMEM; 6558 } 6559 6560 static int init_vqs(struct virtnet_info *vi) 6561 { 6562 int ret; 6563 6564 /* Allocate send & receive queues */ 6565 ret = virtnet_alloc_queues(vi); 6566 if (ret) 6567 goto err; 6568 6569 ret = virtnet_find_vqs(vi); 6570 if (ret) 6571 goto err_free; 6572 6573 cpus_read_lock(); 6574 virtnet_set_affinity(vi); 6575 cpus_read_unlock(); 6576 6577 return 0; 6578 6579 err_free: 6580 virtnet_free_queues(vi); 6581 err: 6582 return ret; 6583 } 6584 6585 #ifdef CONFIG_SYSFS 6586 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue, 6587 char *buf) 6588 { 6589 struct virtnet_info *vi = netdev_priv(queue->dev); 6590 unsigned int queue_index = get_netdev_rx_queue_index(queue); 6591 unsigned int headroom = virtnet_get_headroom(vi); 6592 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 6593 struct ewma_pkt_len *avg; 6594 6595 BUG_ON(queue_index >= vi->max_queue_pairs); 6596 avg = &vi->rq[queue_index].mrg_avg_pkt_len; 6597 return sprintf(buf, "%u\n", 6598 get_mergeable_buf_len(&vi->rq[queue_index], avg, 6599 SKB_DATA_ALIGN(headroom + tailroom))); 6600 } 6601 6602 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute = 6603 __ATTR_RO(mergeable_rx_buffer_size); 6604 6605 static struct attribute *virtio_net_mrg_rx_attrs[] = { 6606 &mergeable_rx_buffer_size_attribute.attr, 6607 NULL 6608 }; 6609 6610 static const struct attribute_group virtio_net_mrg_rx_group = { 6611 .name = "virtio_net", 6612 .attrs = virtio_net_mrg_rx_attrs 6613 }; 6614 #endif 6615 6616 static bool virtnet_fail_on_feature(struct virtio_device *vdev, 6617 unsigned int fbit, 6618 const char *fname, const char *dname) 6619 { 6620 if (!virtio_has_feature(vdev, fbit)) 6621 return false; 6622 6623 dev_err(&vdev->dev, "device advertises feature %s but not %s", 6624 fname, dname); 6625 6626 return true; 6627 } 6628 6629 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ 6630 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit) 6631 6632 static bool virtnet_validate_features(struct virtio_device *vdev) 6633 { 6634 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) && 6635 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX, 6636 "VIRTIO_NET_F_CTRL_VQ") || 6637 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN, 6638 "VIRTIO_NET_F_CTRL_VQ") || 6639 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE, 6640 "VIRTIO_NET_F_CTRL_VQ") || 6641 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") || 6642 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR, 6643 "VIRTIO_NET_F_CTRL_VQ") || 6644 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_RSS, 6645 "VIRTIO_NET_F_CTRL_VQ") || 6646 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_HASH_REPORT, 6647 "VIRTIO_NET_F_CTRL_VQ") || 6648 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_NOTF_COAL, 6649 "VIRTIO_NET_F_CTRL_VQ") || 6650 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_VQ_NOTF_COAL, 6651 "VIRTIO_NET_F_CTRL_VQ"))) { 6652 return false; 6653 } 6654 6655 return true; 6656 } 6657 6658 #define MIN_MTU ETH_MIN_MTU 6659 #define MAX_MTU ETH_MAX_MTU 6660 6661 static int virtnet_validate(struct virtio_device *vdev) 6662 { 6663 if (!vdev->config->get) { 6664 dev_err(&vdev->dev, "%s failure: config access disabled\n", 6665 __func__); 6666 return -EINVAL; 6667 } 6668 6669 if (!virtnet_validate_features(vdev)) 6670 return -EINVAL; 6671 6672 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 6673 int mtu = virtio_cread16(vdev, 6674 offsetof(struct virtio_net_config, 6675 mtu)); 6676 if (mtu < MIN_MTU) 6677 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU); 6678 } 6679 6680 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY) && 6681 !virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) { 6682 dev_warn(&vdev->dev, "device advertises feature VIRTIO_NET_F_STANDBY but not VIRTIO_NET_F_MAC, disabling standby"); 6683 __virtio_clear_bit(vdev, VIRTIO_NET_F_STANDBY); 6684 } 6685 6686 return 0; 6687 } 6688 6689 static bool virtnet_check_guest_gso(const struct virtnet_info *vi) 6690 { 6691 return virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || 6692 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || 6693 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || 6694 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || 6695 (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) && 6696 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6)); 6697 } 6698 6699 static void virtnet_set_big_packets(struct virtnet_info *vi, const int mtu) 6700 { 6701 bool guest_gso = virtnet_check_guest_gso(vi); 6702 6703 /* If device can receive ANY guest GSO packets, regardless of mtu, 6704 * allocate packets of maximum size, otherwise limit it to only 6705 * mtu size worth only. 6706 */ 6707 if (mtu > ETH_DATA_LEN || guest_gso) { 6708 vi->big_packets = true; 6709 vi->big_packets_num_skbfrags = guest_gso ? MAX_SKB_FRAGS : DIV_ROUND_UP(mtu, PAGE_SIZE); 6710 } 6711 } 6712 6713 #define VIRTIO_NET_HASH_REPORT_MAX_TABLE 10 6714 static enum xdp_rss_hash_type 6715 virtnet_xdp_rss_type[VIRTIO_NET_HASH_REPORT_MAX_TABLE] = { 6716 [VIRTIO_NET_HASH_REPORT_NONE] = XDP_RSS_TYPE_NONE, 6717 [VIRTIO_NET_HASH_REPORT_IPv4] = XDP_RSS_TYPE_L3_IPV4, 6718 [VIRTIO_NET_HASH_REPORT_TCPv4] = XDP_RSS_TYPE_L4_IPV4_TCP, 6719 [VIRTIO_NET_HASH_REPORT_UDPv4] = XDP_RSS_TYPE_L4_IPV4_UDP, 6720 [VIRTIO_NET_HASH_REPORT_IPv6] = XDP_RSS_TYPE_L3_IPV6, 6721 [VIRTIO_NET_HASH_REPORT_TCPv6] = XDP_RSS_TYPE_L4_IPV6_TCP, 6722 [VIRTIO_NET_HASH_REPORT_UDPv6] = XDP_RSS_TYPE_L4_IPV6_UDP, 6723 [VIRTIO_NET_HASH_REPORT_IPv6_EX] = XDP_RSS_TYPE_L3_IPV6_EX, 6724 [VIRTIO_NET_HASH_REPORT_TCPv6_EX] = XDP_RSS_TYPE_L4_IPV6_TCP_EX, 6725 [VIRTIO_NET_HASH_REPORT_UDPv6_EX] = XDP_RSS_TYPE_L4_IPV6_UDP_EX 6726 }; 6727 6728 static int virtnet_xdp_rx_hash(const struct xdp_md *_ctx, u32 *hash, 6729 enum xdp_rss_hash_type *rss_type) 6730 { 6731 const struct xdp_buff *xdp = (void *)_ctx; 6732 struct virtio_net_hdr_v1_hash *hdr_hash; 6733 struct virtnet_info *vi; 6734 u16 hash_report; 6735 6736 if (!(xdp->rxq->dev->features & NETIF_F_RXHASH)) 6737 return -ENODATA; 6738 6739 vi = netdev_priv(xdp->rxq->dev); 6740 hdr_hash = (struct virtio_net_hdr_v1_hash *)(xdp->data - vi->hdr_len); 6741 hash_report = __le16_to_cpu(hdr_hash->hash_report); 6742 6743 if (hash_report >= VIRTIO_NET_HASH_REPORT_MAX_TABLE) 6744 hash_report = VIRTIO_NET_HASH_REPORT_NONE; 6745 6746 *rss_type = virtnet_xdp_rss_type[hash_report]; 6747 *hash = virtio_net_hash_value(hdr_hash); 6748 return 0; 6749 } 6750 6751 static const struct xdp_metadata_ops virtnet_xdp_metadata_ops = { 6752 .xmo_rx_hash = virtnet_xdp_rx_hash, 6753 }; 6754 6755 static int virtnet_probe(struct virtio_device *vdev) 6756 { 6757 int i, err = -ENOMEM; 6758 struct net_device *dev; 6759 struct virtnet_info *vi; 6760 u16 max_queue_pairs; 6761 int mtu = 0; 6762 u16 key_sz; 6763 6764 /* Find if host supports multiqueue/rss virtio_net device */ 6765 max_queue_pairs = 1; 6766 if (virtio_has_feature(vdev, VIRTIO_NET_F_MQ) || virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) 6767 max_queue_pairs = 6768 virtio_cread16(vdev, offsetof(struct virtio_net_config, max_virtqueue_pairs)); 6769 6770 /* We need at least 2 queue's */ 6771 if (max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || 6772 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || 6773 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 6774 max_queue_pairs = 1; 6775 6776 /* Allocate ourselves a network device with room for our info */ 6777 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); 6778 if (!dev) 6779 return -ENOMEM; 6780 6781 /* Set up network device as normal. */ 6782 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE | 6783 IFF_TX_SKB_NO_LINEAR; 6784 dev->netdev_ops = &virtnet_netdev; 6785 dev->stat_ops = &virtnet_stat_ops; 6786 dev->features = NETIF_F_HIGHDMA; 6787 6788 dev->ethtool_ops = &virtnet_ethtool_ops; 6789 SET_NETDEV_DEV(dev, &vdev->dev); 6790 6791 /* Do we support "hardware" checksums? */ 6792 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { 6793 /* This opens up the world of extra features. */ 6794 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG; 6795 if (csum) 6796 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG; 6797 6798 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { 6799 dev->hw_features |= NETIF_F_TSO 6800 | NETIF_F_TSO_ECN | NETIF_F_TSO6; 6801 } 6802 /* Individual feature bits: what can host handle? */ 6803 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) 6804 dev->hw_features |= NETIF_F_TSO; 6805 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) 6806 dev->hw_features |= NETIF_F_TSO6; 6807 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) 6808 dev->hw_features |= NETIF_F_TSO_ECN; 6809 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_USO)) 6810 dev->hw_features |= NETIF_F_GSO_UDP_L4; 6811 6812 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) { 6813 dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL; 6814 dev->hw_enc_features = dev->hw_features; 6815 } 6816 if (dev->hw_features & NETIF_F_GSO_UDP_TUNNEL && 6817 virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM)) { 6818 dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM; 6819 dev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM; 6820 } 6821 6822 dev->features |= NETIF_F_GSO_ROBUST; 6823 6824 if (gso) 6825 dev->features |= dev->hw_features; 6826 /* (!csum && gso) case will be fixed by register_netdev() */ 6827 } 6828 6829 /* 1. With VIRTIO_NET_F_GUEST_CSUM negotiation, the driver doesn't 6830 * need to calculate checksums for partially checksummed packets, 6831 * as they're considered valid by the upper layer. 6832 * 2. Without VIRTIO_NET_F_GUEST_CSUM negotiation, the driver only 6833 * receives fully checksummed packets. The device may assist in 6834 * validating these packets' checksums, so the driver won't have to. 6835 */ 6836 dev->features |= NETIF_F_RXCSUM; 6837 6838 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || 6839 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6)) 6840 dev->features |= NETIF_F_GRO_HW; 6841 6842 dev->vlan_features = dev->features; 6843 dev->xdp_features = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT | 6844 NETDEV_XDP_ACT_XSK_ZEROCOPY; 6845 6846 /* MTU range: 68 - 65535 */ 6847 dev->min_mtu = MIN_MTU; 6848 dev->max_mtu = MAX_MTU; 6849 6850 /* Configuration may specify what MAC to use. Otherwise random. */ 6851 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) { 6852 u8 addr[ETH_ALEN]; 6853 6854 virtio_cread_bytes(vdev, 6855 offsetof(struct virtio_net_config, mac), 6856 addr, ETH_ALEN); 6857 eth_hw_addr_set(dev, addr); 6858 } else { 6859 eth_hw_addr_random(dev); 6860 dev_info(&vdev->dev, "Assigned random MAC address %pM\n", 6861 dev->dev_addr); 6862 } 6863 6864 /* Set up our device-specific information */ 6865 vi = netdev_priv(dev); 6866 vi->dev = dev; 6867 vi->vdev = vdev; 6868 vdev->priv = vi; 6869 6870 INIT_WORK(&vi->config_work, virtnet_config_changed_work); 6871 INIT_WORK(&vi->rx_mode_work, virtnet_rx_mode_work); 6872 6873 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) { 6874 vi->mergeable_rx_bufs = true; 6875 dev->xdp_features |= NETDEV_XDP_ACT_RX_SG; 6876 } 6877 6878 if (virtio_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT)) 6879 vi->has_rss_hash_report = true; 6880 6881 if (virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) { 6882 vi->has_rss = true; 6883 6884 vi->rss_indir_table_size = 6885 virtio_cread16(vdev, offsetof(struct virtio_net_config, 6886 rss_max_indirection_table_length)); 6887 } 6888 vi->rss_hdr = devm_kzalloc(&vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL); 6889 if (!vi->rss_hdr) { 6890 err = -ENOMEM; 6891 goto free; 6892 } 6893 6894 if (vi->has_rss || vi->has_rss_hash_report) { 6895 key_sz = virtio_cread8(vdev, offsetof(struct virtio_net_config, rss_max_key_size)); 6896 6897 vi->rss_key_size = min_t(u16, key_sz, NETDEV_RSS_KEY_LEN); 6898 if (key_sz > vi->rss_key_size) 6899 dev_warn(&vdev->dev, 6900 "rss_max_key_size=%u exceeds driver limit %u, clamping\n", 6901 key_sz, vi->rss_key_size); 6902 6903 vi->rss_hash_types_supported = 6904 virtio_cread32(vdev, offsetof(struct virtio_net_config, supported_hash_types)); 6905 vi->rss_hash_types_supported &= 6906 ~(VIRTIO_NET_RSS_HASH_TYPE_IP_EX | 6907 VIRTIO_NET_RSS_HASH_TYPE_TCP_EX | 6908 VIRTIO_NET_RSS_HASH_TYPE_UDP_EX); 6909 6910 dev->hw_features |= NETIF_F_RXHASH; 6911 dev->xdp_metadata_ops = &virtnet_xdp_metadata_ops; 6912 } 6913 6914 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO) || 6915 virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) 6916 vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash_tunnel); 6917 else if (vi->has_rss_hash_report) 6918 vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash); 6919 else if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) || 6920 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 6921 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); 6922 else 6923 vi->hdr_len = sizeof(struct virtio_net_hdr); 6924 6925 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM)) 6926 vi->rx_tnl_csum = true; 6927 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO)) 6928 vi->rx_tnl = true; 6929 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) 6930 vi->tx_tnl = true; 6931 6932 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) || 6933 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 6934 vi->any_header_sg = true; 6935 6936 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 6937 vi->has_cvq = true; 6938 6939 mutex_init(&vi->cvq_lock); 6940 6941 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 6942 mtu = virtio_cread16(vdev, 6943 offsetof(struct virtio_net_config, 6944 mtu)); 6945 if (mtu < dev->min_mtu) { 6946 /* Should never trigger: MTU was previously validated 6947 * in virtnet_validate. 6948 */ 6949 dev_err(&vdev->dev, 6950 "device MTU appears to have changed it is now %d < %d", 6951 mtu, dev->min_mtu); 6952 err = -EINVAL; 6953 goto free; 6954 } 6955 6956 dev->mtu = mtu; 6957 dev->max_mtu = mtu; 6958 } 6959 6960 virtnet_set_big_packets(vi, mtu); 6961 6962 if (vi->any_header_sg) 6963 dev->needed_headroom = vi->hdr_len; 6964 6965 /* Enable multiqueue by default */ 6966 if (num_online_cpus() >= max_queue_pairs) 6967 vi->curr_queue_pairs = max_queue_pairs; 6968 else 6969 vi->curr_queue_pairs = num_online_cpus(); 6970 vi->max_queue_pairs = max_queue_pairs; 6971 6972 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ 6973 err = init_vqs(vi); 6974 if (err) 6975 goto free; 6976 6977 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) { 6978 vi->intr_coal_rx.max_usecs = 0; 6979 vi->intr_coal_tx.max_usecs = 0; 6980 vi->intr_coal_rx.max_packets = 0; 6981 6982 /* Keep the default values of the coalescing parameters 6983 * aligned with the default napi_tx state. 6984 */ 6985 if (vi->sq[0].napi.weight) 6986 vi->intr_coal_tx.max_packets = 1; 6987 else 6988 vi->intr_coal_tx.max_packets = 0; 6989 } 6990 6991 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) { 6992 /* The reason is the same as VIRTIO_NET_F_NOTF_COAL. */ 6993 for (i = 0; i < vi->max_queue_pairs; i++) 6994 if (vi->sq[i].napi.weight) 6995 vi->sq[i].intr_coal.max_packets = 1; 6996 6997 err = virtnet_init_irq_moder(vi); 6998 if (err) 6999 goto free; 7000 } 7001 7002 /* Create page pools for receive queues. 7003 * Page pools are created at probe time so they can be used 7004 * with premapped DMA addresses throughout the device lifetime. 7005 */ 7006 err = virtnet_create_page_pools(vi); 7007 if (err) 7008 goto free_irq_moder; 7009 7010 #ifdef CONFIG_SYSFS 7011 if (vi->mergeable_rx_bufs) 7012 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group; 7013 #endif 7014 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs); 7015 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs); 7016 7017 virtnet_init_settings(dev); 7018 7019 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) { 7020 vi->failover = net_failover_create(vi->dev); 7021 if (IS_ERR(vi->failover)) { 7022 err = PTR_ERR(vi->failover); 7023 goto free_page_pools; 7024 } 7025 } 7026 7027 if (vi->has_rss || vi->has_rss_hash_report) 7028 virtnet_init_default_rss(vi); 7029 7030 enable_rx_mode_work(vi); 7031 7032 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++) { 7033 unsigned int fbit; 7034 7035 fbit = virtio_offload_to_feature(guest_offloads[i]); 7036 if (virtio_has_feature(vi->vdev, fbit)) 7037 set_bit(guest_offloads[i], &vi->guest_offloads); 7038 } 7039 vi->guest_offloads_capable = vi->guest_offloads; 7040 7041 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) && 7042 (vi->guest_offloads_capable & GUEST_OFFLOAD_GRO_HW_MASK)) 7043 dev->hw_features |= NETIF_F_GRO_HW; 7044 7045 /* serialize netdev register + virtio_device_ready() with ndo_open() */ 7046 rtnl_lock(); 7047 7048 err = register_netdevice(dev); 7049 if (err) { 7050 pr_debug("virtio_net: registering device failed\n"); 7051 rtnl_unlock(); 7052 goto free_failover; 7053 } 7054 7055 /* Disable config change notification until ndo_open. */ 7056 virtio_config_driver_disable(vi->vdev); 7057 7058 virtio_device_ready(vdev); 7059 7060 if (vi->has_rss || vi->has_rss_hash_report) { 7061 if (!virtnet_commit_rss_command(vi)) { 7062 dev_warn(&vdev->dev, "RSS disabled because committing failed.\n"); 7063 dev->hw_features &= ~NETIF_F_RXHASH; 7064 vi->has_rss_hash_report = false; 7065 vi->has_rss = false; 7066 } 7067 } 7068 7069 virtnet_set_queues(vi, vi->curr_queue_pairs); 7070 7071 /* a random MAC address has been assigned, notify the device. 7072 * We don't fail probe if VIRTIO_NET_F_CTRL_MAC_ADDR is not there 7073 * because many devices work fine without getting MAC explicitly 7074 */ 7075 if (!virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && 7076 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { 7077 struct scatterlist sg; 7078 7079 sg_init_one(&sg, dev->dev_addr, dev->addr_len); 7080 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 7081 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { 7082 pr_debug("virtio_net: setting MAC address failed\n"); 7083 rtnl_unlock(); 7084 err = -EINVAL; 7085 goto free_unregister_netdev; 7086 } 7087 } 7088 7089 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) { 7090 struct virtio_net_stats_capabilities *stats_cap __free(kfree) = NULL; 7091 struct scatterlist sg; 7092 __le64 v; 7093 7094 stats_cap = kzalloc_obj(*stats_cap); 7095 if (!stats_cap) { 7096 rtnl_unlock(); 7097 err = -ENOMEM; 7098 goto free_unregister_netdev; 7099 } 7100 7101 sg_init_one(&sg, stats_cap, sizeof(*stats_cap)); 7102 7103 if (!virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS, 7104 VIRTIO_NET_CTRL_STATS_QUERY, 7105 NULL, &sg)) { 7106 pr_debug("virtio_net: fail to get stats capability\n"); 7107 rtnl_unlock(); 7108 err = -EINVAL; 7109 goto free_unregister_netdev; 7110 } 7111 7112 v = stats_cap->supported_stats_types[0]; 7113 vi->device_stats_cap = le64_to_cpu(v); 7114 } 7115 7116 /* Assume link up if device can't report link status, 7117 otherwise get link status from config. */ 7118 netif_carrier_off(dev); 7119 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { 7120 virtio_config_changed(vi->vdev); 7121 } else { 7122 vi->status = VIRTIO_NET_S_LINK_UP; 7123 virtnet_update_settings(vi); 7124 netif_carrier_on(dev); 7125 } 7126 7127 rtnl_unlock(); 7128 7129 err = virtnet_cpu_notif_add(vi); 7130 if (err) { 7131 pr_debug("virtio_net: registering cpu notifier failed\n"); 7132 goto free_unregister_netdev; 7133 } 7134 7135 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", 7136 dev->name, max_queue_pairs); 7137 7138 return 0; 7139 7140 free_unregister_netdev: 7141 unregister_netdev(dev); 7142 free_failover: 7143 net_failover_destroy(vi->failover); 7144 free_page_pools: 7145 virtnet_destroy_page_pools(vi); 7146 free_irq_moder: 7147 virtnet_free_irq_moder(vi); 7148 virtio_reset_device(vdev); 7149 virtnet_del_vqs(vi); 7150 free: 7151 free_netdev(dev); 7152 return err; 7153 } 7154 7155 static void remove_vq_common(struct virtnet_info *vi) 7156 { 7157 int i; 7158 7159 virtio_reset_device(vi->vdev); 7160 7161 /* Free unused buffers in both send and recv, if any. */ 7162 free_unused_bufs(vi); 7163 7164 /* 7165 * Rule of thumb is netdev_tx_reset_queue() should follow any 7166 * skb freeing not followed by netdev_tx_completed_queue() 7167 */ 7168 for (i = 0; i < vi->max_queue_pairs; i++) 7169 netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i)); 7170 7171 free_receive_bufs(vi); 7172 7173 virtnet_destroy_page_pools(vi); 7174 7175 virtnet_del_vqs(vi); 7176 } 7177 7178 static void virtnet_remove(struct virtio_device *vdev) 7179 { 7180 struct virtnet_info *vi = vdev->priv; 7181 7182 virtnet_cpu_notif_remove(vi); 7183 7184 /* Make sure no work handler is accessing the device. */ 7185 flush_work(&vi->config_work); 7186 disable_rx_mode_work(vi); 7187 flush_work(&vi->rx_mode_work); 7188 7189 virtnet_free_irq_moder(vi); 7190 7191 unregister_netdev(vi->dev); 7192 7193 net_failover_destroy(vi->failover); 7194 7195 remove_vq_common(vi); 7196 7197 free_netdev(vi->dev); 7198 } 7199 7200 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev) 7201 { 7202 struct virtnet_info *vi = vdev->priv; 7203 7204 virtnet_cpu_notif_remove(vi); 7205 virtnet_freeze_down(vdev); 7206 remove_vq_common(vi); 7207 7208 return 0; 7209 } 7210 7211 static __maybe_unused int virtnet_restore(struct virtio_device *vdev) 7212 { 7213 struct virtnet_info *vi = vdev->priv; 7214 int err; 7215 7216 err = virtnet_restore_up(vdev); 7217 if (err) 7218 return err; 7219 virtnet_set_queues(vi, vi->curr_queue_pairs); 7220 7221 err = virtnet_cpu_notif_add(vi); 7222 if (err) { 7223 virtnet_freeze_down(vdev); 7224 remove_vq_common(vi); 7225 return err; 7226 } 7227 7228 return 0; 7229 } 7230 7231 static struct virtio_device_id id_table[] = { 7232 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, 7233 { 0 }, 7234 }; 7235 7236 #define VIRTNET_FEATURES \ 7237 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ 7238 VIRTIO_NET_F_MAC, \ 7239 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ 7240 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ 7241 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ 7242 VIRTIO_NET_F_HOST_USO, VIRTIO_NET_F_GUEST_USO4, VIRTIO_NET_F_GUEST_USO6, \ 7243 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ 7244 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ 7245 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ 7246 VIRTIO_NET_F_CTRL_MAC_ADDR, \ 7247 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ 7248 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY, \ 7249 VIRTIO_NET_F_RSS, VIRTIO_NET_F_HASH_REPORT, VIRTIO_NET_F_NOTF_COAL, \ 7250 VIRTIO_NET_F_VQ_NOTF_COAL, \ 7251 VIRTIO_NET_F_GUEST_HDRLEN, VIRTIO_NET_F_DEVICE_STATS 7252 7253 static unsigned int features[] = { 7254 VIRTNET_FEATURES, 7255 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO, 7256 VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM, 7257 VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO, 7258 VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM, 7259 }; 7260 7261 static unsigned int features_legacy[] = { 7262 VIRTNET_FEATURES, 7263 VIRTIO_NET_F_GSO, 7264 VIRTIO_F_ANY_LAYOUT, 7265 }; 7266 7267 static struct virtio_driver virtio_net_driver = { 7268 .feature_table = features, 7269 .feature_table_size = ARRAY_SIZE(features), 7270 .feature_table_legacy = features_legacy, 7271 .feature_table_size_legacy = ARRAY_SIZE(features_legacy), 7272 .driver.name = KBUILD_MODNAME, 7273 .id_table = id_table, 7274 .validate = virtnet_validate, 7275 .probe = virtnet_probe, 7276 .remove = virtnet_remove, 7277 .config_changed = virtnet_config_changed, 7278 #ifdef CONFIG_PM_SLEEP 7279 .freeze = virtnet_freeze, 7280 .restore = virtnet_restore, 7281 #endif 7282 }; 7283 7284 static __init int virtio_net_driver_init(void) 7285 { 7286 int ret; 7287 7288 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online", 7289 virtnet_cpu_online, 7290 virtnet_cpu_down_prep); 7291 if (ret < 0) 7292 goto out; 7293 virtionet_online = ret; 7294 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead", 7295 NULL, virtnet_cpu_dead); 7296 if (ret) 7297 goto err_dead; 7298 ret = register_virtio_driver(&virtio_net_driver); 7299 if (ret) 7300 goto err_virtio; 7301 return 0; 7302 err_virtio: 7303 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 7304 err_dead: 7305 cpuhp_remove_multi_state(virtionet_online); 7306 out: 7307 return ret; 7308 } 7309 module_init(virtio_net_driver_init); 7310 7311 static __exit void virtio_net_driver_exit(void) 7312 { 7313 unregister_virtio_driver(&virtio_net_driver); 7314 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 7315 cpuhp_remove_multi_state(virtionet_online); 7316 } 7317 module_exit(virtio_net_driver_exit); 7318 7319 MODULE_DEVICE_TABLE(virtio, id_table); 7320 MODULE_DESCRIPTION("Virtio network driver"); 7321 MODULE_LICENSE("GPL"); 7322