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 <net/route.h> 23 #include <net/xdp.h> 24 #include <net/net_failover.h> 25 26 static int napi_weight = NAPI_POLL_WEIGHT; 27 module_param(napi_weight, int, 0444); 28 29 static bool csum = true, gso = true, napi_tx = true; 30 module_param(csum, bool, 0444); 31 module_param(gso, bool, 0444); 32 module_param(napi_tx, bool, 0644); 33 34 /* FIXME: MTU in config. */ 35 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN) 36 #define GOOD_COPY_LEN 128 37 38 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD) 39 40 /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */ 41 #define VIRTIO_XDP_HEADROOM 256 42 43 /* Separating two types of XDP xmit */ 44 #define VIRTIO_XDP_TX BIT(0) 45 #define VIRTIO_XDP_REDIR BIT(1) 46 47 #define VIRTIO_XDP_FLAG BIT(0) 48 49 /* RX packet size EWMA. The average packet size is used to determine the packet 50 * buffer size when refilling RX rings. As the entire RX ring may be refilled 51 * at once, the weight is chosen so that the EWMA will be insensitive to short- 52 * term, transient changes in packet size. 53 */ 54 DECLARE_EWMA(pkt_len, 0, 64) 55 56 #define VIRTNET_DRIVER_VERSION "1.0.0" 57 58 static const unsigned long guest_offloads[] = { 59 VIRTIO_NET_F_GUEST_TSO4, 60 VIRTIO_NET_F_GUEST_TSO6, 61 VIRTIO_NET_F_GUEST_ECN, 62 VIRTIO_NET_F_GUEST_UFO, 63 VIRTIO_NET_F_GUEST_CSUM 64 }; 65 66 #define GUEST_OFFLOAD_GRO_HW_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \ 67 (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \ 68 (1ULL << VIRTIO_NET_F_GUEST_ECN) | \ 69 (1ULL << VIRTIO_NET_F_GUEST_UFO)) 70 71 struct virtnet_stat_desc { 72 char desc[ETH_GSTRING_LEN]; 73 size_t offset; 74 }; 75 76 struct virtnet_sq_stats { 77 struct u64_stats_sync syncp; 78 u64 packets; 79 u64 bytes; 80 u64 xdp_tx; 81 u64 xdp_tx_drops; 82 u64 kicks; 83 }; 84 85 struct virtnet_rq_stats { 86 struct u64_stats_sync syncp; 87 u64 packets; 88 u64 bytes; 89 u64 drops; 90 u64 xdp_packets; 91 u64 xdp_tx; 92 u64 xdp_redirects; 93 u64 xdp_drops; 94 u64 kicks; 95 }; 96 97 #define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m) 98 #define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m) 99 100 static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = { 101 { "packets", VIRTNET_SQ_STAT(packets) }, 102 { "bytes", VIRTNET_SQ_STAT(bytes) }, 103 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) }, 104 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) }, 105 { "kicks", VIRTNET_SQ_STAT(kicks) }, 106 }; 107 108 static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = { 109 { "packets", VIRTNET_RQ_STAT(packets) }, 110 { "bytes", VIRTNET_RQ_STAT(bytes) }, 111 { "drops", VIRTNET_RQ_STAT(drops) }, 112 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) }, 113 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) }, 114 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) }, 115 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) }, 116 { "kicks", VIRTNET_RQ_STAT(kicks) }, 117 }; 118 119 #define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc) 120 #define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc) 121 122 /* Internal representation of a send virtqueue */ 123 struct send_queue { 124 /* Virtqueue associated with this send _queue */ 125 struct virtqueue *vq; 126 127 /* TX: fragments + linear part + virtio header */ 128 struct scatterlist sg[MAX_SKB_FRAGS + 2]; 129 130 /* Name of the send queue: output.$index */ 131 char name[40]; 132 133 struct virtnet_sq_stats stats; 134 135 struct napi_struct napi; 136 }; 137 138 /* Internal representation of a receive virtqueue */ 139 struct receive_queue { 140 /* Virtqueue associated with this receive_queue */ 141 struct virtqueue *vq; 142 143 struct napi_struct napi; 144 145 struct bpf_prog __rcu *xdp_prog; 146 147 struct virtnet_rq_stats stats; 148 149 /* Chain pages by the private ptr. */ 150 struct page *pages; 151 152 /* Average packet length for mergeable receive buffers. */ 153 struct ewma_pkt_len mrg_avg_pkt_len; 154 155 /* Page frag for packet buffer allocation. */ 156 struct page_frag alloc_frag; 157 158 /* RX: fragments + linear part + virtio header */ 159 struct scatterlist sg[MAX_SKB_FRAGS + 2]; 160 161 /* Min single buffer size for mergeable buffers case. */ 162 unsigned int min_buf_len; 163 164 /* Name of this receive queue: input.$index */ 165 char name[40]; 166 167 struct xdp_rxq_info xdp_rxq; 168 }; 169 170 /* Control VQ buffers: protected by the rtnl lock */ 171 struct control_buf { 172 struct virtio_net_ctrl_hdr hdr; 173 virtio_net_ctrl_ack status; 174 struct virtio_net_ctrl_mq mq; 175 u8 promisc; 176 u8 allmulti; 177 __virtio16 vid; 178 __virtio64 offloads; 179 }; 180 181 struct virtnet_info { 182 struct virtio_device *vdev; 183 struct virtqueue *cvq; 184 struct net_device *dev; 185 struct send_queue *sq; 186 struct receive_queue *rq; 187 unsigned int status; 188 189 /* Max # of queue pairs supported by the device */ 190 u16 max_queue_pairs; 191 192 /* # of queue pairs currently used by the driver */ 193 u16 curr_queue_pairs; 194 195 /* # of XDP queue pairs currently used by the driver */ 196 u16 xdp_queue_pairs; 197 198 /* xdp_queue_pairs may be 0, when xdp is already loaded. So add this. */ 199 bool xdp_enabled; 200 201 /* I like... big packets and I cannot lie! */ 202 bool big_packets; 203 204 /* Host will merge rx buffers for big packets (shake it! shake it!) */ 205 bool mergeable_rx_bufs; 206 207 /* Has control virtqueue */ 208 bool has_cvq; 209 210 /* Host can handle any s/g split between our header and packet data */ 211 bool any_header_sg; 212 213 /* Packet virtio header size */ 214 u8 hdr_len; 215 216 /* Work struct for refilling if we run low on memory. */ 217 struct delayed_work refill; 218 219 /* Work struct for config space updates */ 220 struct work_struct config_work; 221 222 /* Does the affinity hint is set for virtqueues? */ 223 bool affinity_hint_set; 224 225 /* CPU hotplug instances for online & dead */ 226 struct hlist_node node; 227 struct hlist_node node_dead; 228 229 struct control_buf *ctrl; 230 231 /* Ethtool settings */ 232 u8 duplex; 233 u32 speed; 234 235 unsigned long guest_offloads; 236 unsigned long guest_offloads_capable; 237 238 /* failover when STANDBY feature enabled */ 239 struct failover *failover; 240 }; 241 242 struct padded_vnet_hdr { 243 struct virtio_net_hdr_mrg_rxbuf hdr; 244 /* 245 * hdr is in a separate sg buffer, and data sg buffer shares same page 246 * with this header sg. This padding makes next sg 16 byte aligned 247 * after the header. 248 */ 249 char padding[4]; 250 }; 251 252 static bool is_xdp_frame(void *ptr) 253 { 254 return (unsigned long)ptr & VIRTIO_XDP_FLAG; 255 } 256 257 static void *xdp_to_ptr(struct xdp_frame *ptr) 258 { 259 return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG); 260 } 261 262 static struct xdp_frame *ptr_to_xdp(void *ptr) 263 { 264 return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG); 265 } 266 267 /* Converting between virtqueue no. and kernel tx/rx queue no. 268 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq 269 */ 270 static int vq2txq(struct virtqueue *vq) 271 { 272 return (vq->index - 1) / 2; 273 } 274 275 static int txq2vq(int txq) 276 { 277 return txq * 2 + 1; 278 } 279 280 static int vq2rxq(struct virtqueue *vq) 281 { 282 return vq->index / 2; 283 } 284 285 static int rxq2vq(int rxq) 286 { 287 return rxq * 2; 288 } 289 290 static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb) 291 { 292 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb; 293 } 294 295 /* 296 * private is used to chain pages for big packets, put the whole 297 * most recent used list in the beginning for reuse 298 */ 299 static void give_pages(struct receive_queue *rq, struct page *page) 300 { 301 struct page *end; 302 303 /* Find end of list, sew whole thing into vi->rq.pages. */ 304 for (end = page; end->private; end = (struct page *)end->private); 305 end->private = (unsigned long)rq->pages; 306 rq->pages = page; 307 } 308 309 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask) 310 { 311 struct page *p = rq->pages; 312 313 if (p) { 314 rq->pages = (struct page *)p->private; 315 /* clear private here, it is used to chain pages */ 316 p->private = 0; 317 } else 318 p = alloc_page(gfp_mask); 319 return p; 320 } 321 322 static void virtqueue_napi_schedule(struct napi_struct *napi, 323 struct virtqueue *vq) 324 { 325 if (napi_schedule_prep(napi)) { 326 virtqueue_disable_cb(vq); 327 __napi_schedule(napi); 328 } 329 } 330 331 static void virtqueue_napi_complete(struct napi_struct *napi, 332 struct virtqueue *vq, int processed) 333 { 334 int opaque; 335 336 opaque = virtqueue_enable_cb_prepare(vq); 337 if (napi_complete_done(napi, processed)) { 338 if (unlikely(virtqueue_poll(vq, opaque))) 339 virtqueue_napi_schedule(napi, vq); 340 } else { 341 virtqueue_disable_cb(vq); 342 } 343 } 344 345 static void skb_xmit_done(struct virtqueue *vq) 346 { 347 struct virtnet_info *vi = vq->vdev->priv; 348 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi; 349 350 /* Suppress further interrupts. */ 351 virtqueue_disable_cb(vq); 352 353 if (napi->weight) 354 virtqueue_napi_schedule(napi, vq); 355 else 356 /* We were probably waiting for more output buffers. */ 357 netif_wake_subqueue(vi->dev, vq2txq(vq)); 358 } 359 360 #define MRG_CTX_HEADER_SHIFT 22 361 static void *mergeable_len_to_ctx(unsigned int truesize, 362 unsigned int headroom) 363 { 364 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize); 365 } 366 367 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx) 368 { 369 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT; 370 } 371 372 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx) 373 { 374 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1); 375 } 376 377 /* Called from bottom half context */ 378 static struct sk_buff *page_to_skb(struct virtnet_info *vi, 379 struct receive_queue *rq, 380 struct page *page, unsigned int offset, 381 unsigned int len, unsigned int truesize, 382 bool hdr_valid, unsigned int metasize, 383 unsigned int headroom) 384 { 385 struct sk_buff *skb; 386 struct virtio_net_hdr_mrg_rxbuf *hdr; 387 unsigned int copy, hdr_len, hdr_padded_len; 388 struct page *page_to_free = NULL; 389 int tailroom, shinfo_size; 390 char *p, *hdr_p, *buf; 391 392 p = page_address(page) + offset; 393 hdr_p = p; 394 395 hdr_len = vi->hdr_len; 396 if (vi->mergeable_rx_bufs) 397 hdr_padded_len = sizeof(*hdr); 398 else 399 hdr_padded_len = sizeof(struct padded_vnet_hdr); 400 401 /* If headroom is not 0, there is an offset between the beginning of the 402 * data and the allocated space, otherwise the data and the allocated 403 * space are aligned. 404 * 405 * Buffers with headroom use PAGE_SIZE as alloc size, see 406 * add_recvbuf_mergeable() + get_mergeable_buf_len() 407 */ 408 truesize = headroom ? PAGE_SIZE : truesize; 409 tailroom = truesize - len - headroom; 410 buf = p - headroom; 411 412 len -= hdr_len; 413 offset += hdr_padded_len; 414 p += hdr_padded_len; 415 416 shinfo_size = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 417 418 /* copy small packet so we can reuse these pages */ 419 if (!NET_IP_ALIGN && len > GOOD_COPY_LEN && tailroom >= shinfo_size) { 420 skb = build_skb(buf, truesize); 421 if (unlikely(!skb)) 422 return NULL; 423 424 skb_reserve(skb, p - buf); 425 skb_put(skb, len); 426 goto ok; 427 } 428 429 /* copy small packet so we can reuse these pages for small data */ 430 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN); 431 if (unlikely(!skb)) 432 return NULL; 433 434 /* Copy all frame if it fits skb->head, otherwise 435 * we let virtio_net_hdr_to_skb() and GRO pull headers as needed. 436 */ 437 if (len <= skb_tailroom(skb)) 438 copy = len; 439 else 440 copy = ETH_HLEN + metasize; 441 skb_put_data(skb, p, copy); 442 443 len -= copy; 444 offset += copy; 445 446 if (vi->mergeable_rx_bufs) { 447 if (len) 448 skb_add_rx_frag(skb, 0, page, offset, len, truesize); 449 else 450 page_to_free = page; 451 goto ok; 452 } 453 454 /* 455 * Verify that we can indeed put this data into a skb. 456 * This is here to handle cases when the device erroneously 457 * tries to receive more than is possible. This is usually 458 * the case of a broken device. 459 */ 460 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) { 461 net_dbg_ratelimited("%s: too much data\n", skb->dev->name); 462 dev_kfree_skb(skb); 463 return NULL; 464 } 465 BUG_ON(offset >= PAGE_SIZE); 466 while (len) { 467 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len); 468 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset, 469 frag_size, truesize); 470 len -= frag_size; 471 page = (struct page *)page->private; 472 offset = 0; 473 } 474 475 if (page) 476 give_pages(rq, page); 477 478 ok: 479 /* hdr_valid means no XDP, so we can copy the vnet header */ 480 if (hdr_valid) { 481 hdr = skb_vnet_hdr(skb); 482 memcpy(hdr, hdr_p, hdr_len); 483 } 484 if (page_to_free) 485 put_page(page_to_free); 486 487 if (metasize) { 488 __skb_pull(skb, metasize); 489 skb_metadata_set(skb, metasize); 490 } 491 492 return skb; 493 } 494 495 static int __virtnet_xdp_xmit_one(struct virtnet_info *vi, 496 struct send_queue *sq, 497 struct xdp_frame *xdpf) 498 { 499 struct virtio_net_hdr_mrg_rxbuf *hdr; 500 int err; 501 502 if (unlikely(xdpf->headroom < vi->hdr_len)) 503 return -EOVERFLOW; 504 505 /* Make room for virtqueue hdr (also change xdpf->headroom?) */ 506 xdpf->data -= vi->hdr_len; 507 /* Zero header and leave csum up to XDP layers */ 508 hdr = xdpf->data; 509 memset(hdr, 0, vi->hdr_len); 510 xdpf->len += vi->hdr_len; 511 512 sg_init_one(sq->sg, xdpf->data, xdpf->len); 513 514 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp_to_ptr(xdpf), 515 GFP_ATOMIC); 516 if (unlikely(err)) 517 return -ENOSPC; /* Caller handle free/refcnt */ 518 519 return 0; 520 } 521 522 /* when vi->curr_queue_pairs > nr_cpu_ids, the txq/sq is only used for xdp tx on 523 * the current cpu, so it does not need to be locked. 524 * 525 * Here we use marco instead of inline functions because we have to deal with 526 * three issues at the same time: 1. the choice of sq. 2. judge and execute the 527 * lock/unlock of txq 3. make sparse happy. It is difficult for two inline 528 * functions to perfectly solve these three problems at the same time. 529 */ 530 #define virtnet_xdp_get_sq(vi) ({ \ 531 struct netdev_queue *txq; \ 532 typeof(vi) v = (vi); \ 533 unsigned int qp; \ 534 \ 535 if (v->curr_queue_pairs > nr_cpu_ids) { \ 536 qp = v->curr_queue_pairs - v->xdp_queue_pairs; \ 537 qp += smp_processor_id(); \ 538 txq = netdev_get_tx_queue(v->dev, qp); \ 539 __netif_tx_acquire(txq); \ 540 } else { \ 541 qp = smp_processor_id() % v->curr_queue_pairs; \ 542 txq = netdev_get_tx_queue(v->dev, qp); \ 543 __netif_tx_lock(txq, raw_smp_processor_id()); \ 544 } \ 545 v->sq + qp; \ 546 }) 547 548 #define virtnet_xdp_put_sq(vi, q) { \ 549 struct netdev_queue *txq; \ 550 typeof(vi) v = (vi); \ 551 \ 552 txq = netdev_get_tx_queue(v->dev, (q) - v->sq); \ 553 if (v->curr_queue_pairs > nr_cpu_ids) \ 554 __netif_tx_release(txq); \ 555 else \ 556 __netif_tx_unlock(txq); \ 557 } 558 559 static int virtnet_xdp_xmit(struct net_device *dev, 560 int n, struct xdp_frame **frames, u32 flags) 561 { 562 struct virtnet_info *vi = netdev_priv(dev); 563 struct receive_queue *rq = vi->rq; 564 struct bpf_prog *xdp_prog; 565 struct send_queue *sq; 566 unsigned int len; 567 int packets = 0; 568 int bytes = 0; 569 int nxmit = 0; 570 int kicks = 0; 571 void *ptr; 572 int ret; 573 int i; 574 575 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this 576 * indicate XDP resources have been successfully allocated. 577 */ 578 xdp_prog = rcu_access_pointer(rq->xdp_prog); 579 if (!xdp_prog) 580 return -ENXIO; 581 582 sq = virtnet_xdp_get_sq(vi); 583 584 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) { 585 ret = -EINVAL; 586 goto out; 587 } 588 589 /* Free up any pending old buffers before queueing new ones. */ 590 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) { 591 if (likely(is_xdp_frame(ptr))) { 592 struct xdp_frame *frame = ptr_to_xdp(ptr); 593 594 bytes += frame->len; 595 xdp_return_frame(frame); 596 } else { 597 struct sk_buff *skb = ptr; 598 599 bytes += skb->len; 600 napi_consume_skb(skb, false); 601 } 602 packets++; 603 } 604 605 for (i = 0; i < n; i++) { 606 struct xdp_frame *xdpf = frames[i]; 607 608 if (__virtnet_xdp_xmit_one(vi, sq, xdpf)) 609 break; 610 nxmit++; 611 } 612 ret = nxmit; 613 614 if (flags & XDP_XMIT_FLUSH) { 615 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) 616 kicks = 1; 617 } 618 out: 619 u64_stats_update_begin(&sq->stats.syncp); 620 sq->stats.bytes += bytes; 621 sq->stats.packets += packets; 622 sq->stats.xdp_tx += n; 623 sq->stats.xdp_tx_drops += n - nxmit; 624 sq->stats.kicks += kicks; 625 u64_stats_update_end(&sq->stats.syncp); 626 627 virtnet_xdp_put_sq(vi, sq); 628 return ret; 629 } 630 631 static unsigned int virtnet_get_headroom(struct virtnet_info *vi) 632 { 633 return vi->xdp_enabled ? VIRTIO_XDP_HEADROOM : 0; 634 } 635 636 /* We copy the packet for XDP in the following cases: 637 * 638 * 1) Packet is scattered across multiple rx buffers. 639 * 2) Headroom space is insufficient. 640 * 641 * This is inefficient but it's a temporary condition that 642 * we hit right after XDP is enabled and until queue is refilled 643 * with large buffers with sufficient headroom - so it should affect 644 * at most queue size packets. 645 * Afterwards, the conditions to enable 646 * XDP should preclude the underlying device from sending packets 647 * across multiple buffers (num_buf > 1), and we make sure buffers 648 * have enough headroom. 649 */ 650 static struct page *xdp_linearize_page(struct receive_queue *rq, 651 u16 *num_buf, 652 struct page *p, 653 int offset, 654 int page_off, 655 unsigned int *len) 656 { 657 struct page *page = alloc_page(GFP_ATOMIC); 658 659 if (!page) 660 return NULL; 661 662 memcpy(page_address(page) + page_off, page_address(p) + offset, *len); 663 page_off += *len; 664 665 while (--*num_buf) { 666 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 667 unsigned int buflen; 668 void *buf; 669 int off; 670 671 buf = virtqueue_get_buf(rq->vq, &buflen); 672 if (unlikely(!buf)) 673 goto err_buf; 674 675 p = virt_to_head_page(buf); 676 off = buf - page_address(p); 677 678 /* guard against a misconfigured or uncooperative backend that 679 * is sending packet larger than the MTU. 680 */ 681 if ((page_off + buflen + tailroom) > PAGE_SIZE) { 682 put_page(p); 683 goto err_buf; 684 } 685 686 memcpy(page_address(page) + page_off, 687 page_address(p) + off, buflen); 688 page_off += buflen; 689 put_page(p); 690 } 691 692 /* Headroom does not contribute to packet length */ 693 *len = page_off - VIRTIO_XDP_HEADROOM; 694 return page; 695 err_buf: 696 __free_pages(page, 0); 697 return NULL; 698 } 699 700 static struct sk_buff *receive_small(struct net_device *dev, 701 struct virtnet_info *vi, 702 struct receive_queue *rq, 703 void *buf, void *ctx, 704 unsigned int len, 705 unsigned int *xdp_xmit, 706 struct virtnet_rq_stats *stats) 707 { 708 struct sk_buff *skb; 709 struct bpf_prog *xdp_prog; 710 unsigned int xdp_headroom = (unsigned long)ctx; 711 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom; 712 unsigned int headroom = vi->hdr_len + header_offset; 713 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + 714 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 715 struct page *page = virt_to_head_page(buf); 716 unsigned int delta = 0; 717 struct page *xdp_page; 718 int err; 719 unsigned int metasize = 0; 720 721 len -= vi->hdr_len; 722 stats->bytes += len; 723 724 if (unlikely(len > GOOD_PACKET_LEN)) { 725 pr_debug("%s: rx error: len %u exceeds max size %d\n", 726 dev->name, len, GOOD_PACKET_LEN); 727 dev->stats.rx_length_errors++; 728 goto err_len; 729 } 730 rcu_read_lock(); 731 xdp_prog = rcu_dereference(rq->xdp_prog); 732 if (xdp_prog) { 733 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset; 734 struct xdp_frame *xdpf; 735 struct xdp_buff xdp; 736 void *orig_data; 737 u32 act; 738 739 if (unlikely(hdr->hdr.gso_type)) 740 goto err_xdp; 741 742 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) { 743 int offset = buf - page_address(page) + header_offset; 744 unsigned int tlen = len + vi->hdr_len; 745 u16 num_buf = 1; 746 747 xdp_headroom = virtnet_get_headroom(vi); 748 header_offset = VIRTNET_RX_PAD + xdp_headroom; 749 headroom = vi->hdr_len + header_offset; 750 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + 751 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 752 xdp_page = xdp_linearize_page(rq, &num_buf, page, 753 offset, header_offset, 754 &tlen); 755 if (!xdp_page) 756 goto err_xdp; 757 758 buf = page_address(xdp_page); 759 put_page(page); 760 page = xdp_page; 761 } 762 763 xdp_init_buff(&xdp, buflen, &rq->xdp_rxq); 764 xdp_prepare_buff(&xdp, buf + VIRTNET_RX_PAD + vi->hdr_len, 765 xdp_headroom, len, true); 766 orig_data = xdp.data; 767 act = bpf_prog_run_xdp(xdp_prog, &xdp); 768 stats->xdp_packets++; 769 770 switch (act) { 771 case XDP_PASS: 772 /* Recalculate length in case bpf program changed it */ 773 delta = orig_data - xdp.data; 774 len = xdp.data_end - xdp.data; 775 metasize = xdp.data - xdp.data_meta; 776 break; 777 case XDP_TX: 778 stats->xdp_tx++; 779 xdpf = xdp_convert_buff_to_frame(&xdp); 780 if (unlikely(!xdpf)) 781 goto err_xdp; 782 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0); 783 if (unlikely(!err)) { 784 xdp_return_frame_rx_napi(xdpf); 785 } else if (unlikely(err < 0)) { 786 trace_xdp_exception(vi->dev, xdp_prog, act); 787 goto err_xdp; 788 } 789 *xdp_xmit |= VIRTIO_XDP_TX; 790 rcu_read_unlock(); 791 goto xdp_xmit; 792 case XDP_REDIRECT: 793 stats->xdp_redirects++; 794 err = xdp_do_redirect(dev, &xdp, xdp_prog); 795 if (err) 796 goto err_xdp; 797 *xdp_xmit |= VIRTIO_XDP_REDIR; 798 rcu_read_unlock(); 799 goto xdp_xmit; 800 default: 801 bpf_warn_invalid_xdp_action(act); 802 fallthrough; 803 case XDP_ABORTED: 804 trace_xdp_exception(vi->dev, xdp_prog, act); 805 goto err_xdp; 806 case XDP_DROP: 807 goto err_xdp; 808 } 809 } 810 rcu_read_unlock(); 811 812 skb = build_skb(buf, buflen); 813 if (!skb) { 814 put_page(page); 815 goto err; 816 } 817 skb_reserve(skb, headroom - delta); 818 skb_put(skb, len); 819 if (!xdp_prog) { 820 buf += header_offset; 821 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len); 822 } /* keep zeroed vnet hdr since XDP is loaded */ 823 824 if (metasize) 825 skb_metadata_set(skb, metasize); 826 827 err: 828 return skb; 829 830 err_xdp: 831 rcu_read_unlock(); 832 stats->xdp_drops++; 833 err_len: 834 stats->drops++; 835 put_page(page); 836 xdp_xmit: 837 return NULL; 838 } 839 840 static struct sk_buff *receive_big(struct net_device *dev, 841 struct virtnet_info *vi, 842 struct receive_queue *rq, 843 void *buf, 844 unsigned int len, 845 struct virtnet_rq_stats *stats) 846 { 847 struct page *page = buf; 848 struct sk_buff *skb = 849 page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, true, 0, 0); 850 851 stats->bytes += len - vi->hdr_len; 852 if (unlikely(!skb)) 853 goto err; 854 855 return skb; 856 857 err: 858 stats->drops++; 859 give_pages(rq, page); 860 return NULL; 861 } 862 863 static struct sk_buff *receive_mergeable(struct net_device *dev, 864 struct virtnet_info *vi, 865 struct receive_queue *rq, 866 void *buf, 867 void *ctx, 868 unsigned int len, 869 unsigned int *xdp_xmit, 870 struct virtnet_rq_stats *stats) 871 { 872 struct virtio_net_hdr_mrg_rxbuf *hdr = buf; 873 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); 874 struct page *page = virt_to_head_page(buf); 875 int offset = buf - page_address(page); 876 struct sk_buff *head_skb, *curr_skb; 877 struct bpf_prog *xdp_prog; 878 unsigned int truesize = mergeable_ctx_to_truesize(ctx); 879 unsigned int headroom = mergeable_ctx_to_headroom(ctx); 880 unsigned int metasize = 0; 881 unsigned int frame_sz; 882 int err; 883 884 head_skb = NULL; 885 stats->bytes += len - vi->hdr_len; 886 887 if (unlikely(len > truesize)) { 888 pr_debug("%s: rx error: len %u exceeds truesize %lu\n", 889 dev->name, len, (unsigned long)ctx); 890 dev->stats.rx_length_errors++; 891 goto err_skb; 892 } 893 rcu_read_lock(); 894 xdp_prog = rcu_dereference(rq->xdp_prog); 895 if (xdp_prog) { 896 struct xdp_frame *xdpf; 897 struct page *xdp_page; 898 struct xdp_buff xdp; 899 void *data; 900 u32 act; 901 902 /* Transient failure which in theory could occur if 903 * in-flight packets from before XDP was enabled reach 904 * the receive path after XDP is loaded. 905 */ 906 if (unlikely(hdr->hdr.gso_type)) 907 goto err_xdp; 908 909 /* Buffers with headroom use PAGE_SIZE as alloc size, 910 * see add_recvbuf_mergeable() + get_mergeable_buf_len() 911 */ 912 frame_sz = headroom ? PAGE_SIZE : truesize; 913 914 /* This happens when rx buffer size is underestimated 915 * or headroom is not enough because of the buffer 916 * was refilled before XDP is set. This should only 917 * happen for the first several packets, so we don't 918 * care much about its performance. 919 */ 920 if (unlikely(num_buf > 1 || 921 headroom < virtnet_get_headroom(vi))) { 922 /* linearize data for XDP */ 923 xdp_page = xdp_linearize_page(rq, &num_buf, 924 page, offset, 925 VIRTIO_XDP_HEADROOM, 926 &len); 927 frame_sz = PAGE_SIZE; 928 929 if (!xdp_page) 930 goto err_xdp; 931 offset = VIRTIO_XDP_HEADROOM; 932 } else { 933 xdp_page = page; 934 } 935 936 /* Allow consuming headroom but reserve enough space to push 937 * the descriptor on if we get an XDP_TX return code. 938 */ 939 data = page_address(xdp_page) + offset; 940 xdp_init_buff(&xdp, frame_sz - vi->hdr_len, &rq->xdp_rxq); 941 xdp_prepare_buff(&xdp, data - VIRTIO_XDP_HEADROOM + vi->hdr_len, 942 VIRTIO_XDP_HEADROOM, len - vi->hdr_len, true); 943 944 act = bpf_prog_run_xdp(xdp_prog, &xdp); 945 stats->xdp_packets++; 946 947 switch (act) { 948 case XDP_PASS: 949 metasize = xdp.data - xdp.data_meta; 950 951 /* recalculate offset to account for any header 952 * adjustments and minus the metasize to copy the 953 * metadata in page_to_skb(). Note other cases do not 954 * build an skb and avoid using offset 955 */ 956 offset = xdp.data - page_address(xdp_page) - 957 vi->hdr_len - metasize; 958 959 /* recalculate len if xdp.data, xdp.data_end or 960 * xdp.data_meta were adjusted 961 */ 962 len = xdp.data_end - xdp.data + vi->hdr_len + metasize; 963 /* We can only create skb based on xdp_page. */ 964 if (unlikely(xdp_page != page)) { 965 rcu_read_unlock(); 966 put_page(page); 967 head_skb = page_to_skb(vi, rq, xdp_page, offset, 968 len, PAGE_SIZE, false, 969 metasize, 970 VIRTIO_XDP_HEADROOM); 971 return head_skb; 972 } 973 break; 974 case XDP_TX: 975 stats->xdp_tx++; 976 xdpf = xdp_convert_buff_to_frame(&xdp); 977 if (unlikely(!xdpf)) 978 goto err_xdp; 979 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0); 980 if (unlikely(!err)) { 981 xdp_return_frame_rx_napi(xdpf); 982 } else if (unlikely(err < 0)) { 983 trace_xdp_exception(vi->dev, xdp_prog, act); 984 if (unlikely(xdp_page != page)) 985 put_page(xdp_page); 986 goto err_xdp; 987 } 988 *xdp_xmit |= VIRTIO_XDP_TX; 989 if (unlikely(xdp_page != page)) 990 put_page(page); 991 rcu_read_unlock(); 992 goto xdp_xmit; 993 case XDP_REDIRECT: 994 stats->xdp_redirects++; 995 err = xdp_do_redirect(dev, &xdp, xdp_prog); 996 if (err) { 997 if (unlikely(xdp_page != page)) 998 put_page(xdp_page); 999 goto err_xdp; 1000 } 1001 *xdp_xmit |= VIRTIO_XDP_REDIR; 1002 if (unlikely(xdp_page != page)) 1003 put_page(page); 1004 rcu_read_unlock(); 1005 goto xdp_xmit; 1006 default: 1007 bpf_warn_invalid_xdp_action(act); 1008 fallthrough; 1009 case XDP_ABORTED: 1010 trace_xdp_exception(vi->dev, xdp_prog, act); 1011 fallthrough; 1012 case XDP_DROP: 1013 if (unlikely(xdp_page != page)) 1014 __free_pages(xdp_page, 0); 1015 goto err_xdp; 1016 } 1017 } 1018 rcu_read_unlock(); 1019 1020 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog, 1021 metasize, headroom); 1022 curr_skb = head_skb; 1023 1024 if (unlikely(!curr_skb)) 1025 goto err_skb; 1026 while (--num_buf) { 1027 int num_skb_frags; 1028 1029 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx); 1030 if (unlikely(!buf)) { 1031 pr_debug("%s: rx error: %d buffers out of %d missing\n", 1032 dev->name, num_buf, 1033 virtio16_to_cpu(vi->vdev, 1034 hdr->num_buffers)); 1035 dev->stats.rx_length_errors++; 1036 goto err_buf; 1037 } 1038 1039 stats->bytes += len; 1040 page = virt_to_head_page(buf); 1041 1042 truesize = mergeable_ctx_to_truesize(ctx); 1043 if (unlikely(len > truesize)) { 1044 pr_debug("%s: rx error: len %u exceeds truesize %lu\n", 1045 dev->name, len, (unsigned long)ctx); 1046 dev->stats.rx_length_errors++; 1047 goto err_skb; 1048 } 1049 1050 num_skb_frags = skb_shinfo(curr_skb)->nr_frags; 1051 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) { 1052 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC); 1053 1054 if (unlikely(!nskb)) 1055 goto err_skb; 1056 if (curr_skb == head_skb) 1057 skb_shinfo(curr_skb)->frag_list = nskb; 1058 else 1059 curr_skb->next = nskb; 1060 curr_skb = nskb; 1061 head_skb->truesize += nskb->truesize; 1062 num_skb_frags = 0; 1063 } 1064 if (curr_skb != head_skb) { 1065 head_skb->data_len += len; 1066 head_skb->len += len; 1067 head_skb->truesize += truesize; 1068 } 1069 offset = buf - page_address(page); 1070 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) { 1071 put_page(page); 1072 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1, 1073 len, truesize); 1074 } else { 1075 skb_add_rx_frag(curr_skb, num_skb_frags, page, 1076 offset, len, truesize); 1077 } 1078 } 1079 1080 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len); 1081 return head_skb; 1082 1083 err_xdp: 1084 rcu_read_unlock(); 1085 stats->xdp_drops++; 1086 err_skb: 1087 put_page(page); 1088 while (num_buf-- > 1) { 1089 buf = virtqueue_get_buf(rq->vq, &len); 1090 if (unlikely(!buf)) { 1091 pr_debug("%s: rx error: %d buffers missing\n", 1092 dev->name, num_buf); 1093 dev->stats.rx_length_errors++; 1094 break; 1095 } 1096 stats->bytes += len; 1097 page = virt_to_head_page(buf); 1098 put_page(page); 1099 } 1100 err_buf: 1101 stats->drops++; 1102 dev_kfree_skb(head_skb); 1103 xdp_xmit: 1104 return NULL; 1105 } 1106 1107 static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq, 1108 void *buf, unsigned int len, void **ctx, 1109 unsigned int *xdp_xmit, 1110 struct virtnet_rq_stats *stats) 1111 { 1112 struct net_device *dev = vi->dev; 1113 struct sk_buff *skb; 1114 struct virtio_net_hdr_mrg_rxbuf *hdr; 1115 1116 if (unlikely(len < vi->hdr_len + ETH_HLEN)) { 1117 pr_debug("%s: short packet %i\n", dev->name, len); 1118 dev->stats.rx_length_errors++; 1119 if (vi->mergeable_rx_bufs) { 1120 put_page(virt_to_head_page(buf)); 1121 } else if (vi->big_packets) { 1122 give_pages(rq, buf); 1123 } else { 1124 put_page(virt_to_head_page(buf)); 1125 } 1126 return; 1127 } 1128 1129 if (vi->mergeable_rx_bufs) 1130 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit, 1131 stats); 1132 else if (vi->big_packets) 1133 skb = receive_big(dev, vi, rq, buf, len, stats); 1134 else 1135 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats); 1136 1137 if (unlikely(!skb)) 1138 return; 1139 1140 hdr = skb_vnet_hdr(skb); 1141 1142 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) 1143 skb->ip_summed = CHECKSUM_UNNECESSARY; 1144 1145 if (virtio_net_hdr_to_skb(skb, &hdr->hdr, 1146 virtio_is_little_endian(vi->vdev))) { 1147 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n", 1148 dev->name, hdr->hdr.gso_type, 1149 hdr->hdr.gso_size); 1150 goto frame_err; 1151 } 1152 1153 skb_record_rx_queue(skb, vq2rxq(rq->vq)); 1154 skb->protocol = eth_type_trans(skb, dev); 1155 pr_debug("Receiving skb proto 0x%04x len %i type %i\n", 1156 ntohs(skb->protocol), skb->len, skb->pkt_type); 1157 1158 napi_gro_receive(&rq->napi, skb); 1159 return; 1160 1161 frame_err: 1162 dev->stats.rx_frame_errors++; 1163 dev_kfree_skb(skb); 1164 } 1165 1166 /* Unlike mergeable buffers, all buffers are allocated to the 1167 * same size, except for the headroom. For this reason we do 1168 * not need to use mergeable_len_to_ctx here - it is enough 1169 * to store the headroom as the context ignoring the truesize. 1170 */ 1171 static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq, 1172 gfp_t gfp) 1173 { 1174 struct page_frag *alloc_frag = &rq->alloc_frag; 1175 char *buf; 1176 unsigned int xdp_headroom = virtnet_get_headroom(vi); 1177 void *ctx = (void *)(unsigned long)xdp_headroom; 1178 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom; 1179 int err; 1180 1181 len = SKB_DATA_ALIGN(len) + 1182 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 1183 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp))) 1184 return -ENOMEM; 1185 1186 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; 1187 get_page(alloc_frag->page); 1188 alloc_frag->offset += len; 1189 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom, 1190 vi->hdr_len + GOOD_PACKET_LEN); 1191 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); 1192 if (err < 0) 1193 put_page(virt_to_head_page(buf)); 1194 return err; 1195 } 1196 1197 static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq, 1198 gfp_t gfp) 1199 { 1200 struct page *first, *list = NULL; 1201 char *p; 1202 int i, err, offset; 1203 1204 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2); 1205 1206 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */ 1207 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) { 1208 first = get_a_page(rq, gfp); 1209 if (!first) { 1210 if (list) 1211 give_pages(rq, list); 1212 return -ENOMEM; 1213 } 1214 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE); 1215 1216 /* chain new page in list head to match sg */ 1217 first->private = (unsigned long)list; 1218 list = first; 1219 } 1220 1221 first = get_a_page(rq, gfp); 1222 if (!first) { 1223 give_pages(rq, list); 1224 return -ENOMEM; 1225 } 1226 p = page_address(first); 1227 1228 /* rq->sg[0], rq->sg[1] share the same page */ 1229 /* a separated rq->sg[0] for header - required in case !any_header_sg */ 1230 sg_set_buf(&rq->sg[0], p, vi->hdr_len); 1231 1232 /* rq->sg[1] for data packet, from offset */ 1233 offset = sizeof(struct padded_vnet_hdr); 1234 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset); 1235 1236 /* chain first in list head */ 1237 first->private = (unsigned long)list; 1238 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2, 1239 first, gfp); 1240 if (err < 0) 1241 give_pages(rq, first); 1242 1243 return err; 1244 } 1245 1246 static unsigned int get_mergeable_buf_len(struct receive_queue *rq, 1247 struct ewma_pkt_len *avg_pkt_len, 1248 unsigned int room) 1249 { 1250 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); 1251 unsigned int len; 1252 1253 if (room) 1254 return PAGE_SIZE - room; 1255 1256 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len), 1257 rq->min_buf_len, PAGE_SIZE - hdr_len); 1258 1259 return ALIGN(len, L1_CACHE_BYTES); 1260 } 1261 1262 static int add_recvbuf_mergeable(struct virtnet_info *vi, 1263 struct receive_queue *rq, gfp_t gfp) 1264 { 1265 struct page_frag *alloc_frag = &rq->alloc_frag; 1266 unsigned int headroom = virtnet_get_headroom(vi); 1267 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 1268 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom); 1269 char *buf; 1270 void *ctx; 1271 int err; 1272 unsigned int len, hole; 1273 1274 /* Extra tailroom is needed to satisfy XDP's assumption. This 1275 * means rx frags coalescing won't work, but consider we've 1276 * disabled GSO for XDP, it won't be a big issue. 1277 */ 1278 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room); 1279 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp))) 1280 return -ENOMEM; 1281 1282 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; 1283 buf += headroom; /* advance address leaving hole at front of pkt */ 1284 get_page(alloc_frag->page); 1285 alloc_frag->offset += len + room; 1286 hole = alloc_frag->size - alloc_frag->offset; 1287 if (hole < len + room) { 1288 /* To avoid internal fragmentation, if there is very likely not 1289 * enough space for another buffer, add the remaining space to 1290 * the current buffer. 1291 */ 1292 len += hole; 1293 alloc_frag->offset += hole; 1294 } 1295 1296 sg_init_one(rq->sg, buf, len); 1297 ctx = mergeable_len_to_ctx(len, headroom); 1298 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); 1299 if (err < 0) 1300 put_page(virt_to_head_page(buf)); 1301 1302 return err; 1303 } 1304 1305 /* 1306 * Returns false if we couldn't fill entirely (OOM). 1307 * 1308 * Normally run in the receive path, but can also be run from ndo_open 1309 * before we're receiving packets, or from refill_work which is 1310 * careful to disable receiving (using napi_disable). 1311 */ 1312 static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq, 1313 gfp_t gfp) 1314 { 1315 int err; 1316 bool oom; 1317 1318 do { 1319 if (vi->mergeable_rx_bufs) 1320 err = add_recvbuf_mergeable(vi, rq, gfp); 1321 else if (vi->big_packets) 1322 err = add_recvbuf_big(vi, rq, gfp); 1323 else 1324 err = add_recvbuf_small(vi, rq, gfp); 1325 1326 oom = err == -ENOMEM; 1327 if (err) 1328 break; 1329 } while (rq->vq->num_free); 1330 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) { 1331 unsigned long flags; 1332 1333 flags = u64_stats_update_begin_irqsave(&rq->stats.syncp); 1334 rq->stats.kicks++; 1335 u64_stats_update_end_irqrestore(&rq->stats.syncp, flags); 1336 } 1337 1338 return !oom; 1339 } 1340 1341 static void skb_recv_done(struct virtqueue *rvq) 1342 { 1343 struct virtnet_info *vi = rvq->vdev->priv; 1344 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)]; 1345 1346 virtqueue_napi_schedule(&rq->napi, rvq); 1347 } 1348 1349 static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi) 1350 { 1351 napi_enable(napi); 1352 1353 /* If all buffers were filled by other side before we napi_enabled, we 1354 * won't get another interrupt, so process any outstanding packets now. 1355 * Call local_bh_enable after to trigger softIRQ processing. 1356 */ 1357 local_bh_disable(); 1358 virtqueue_napi_schedule(napi, vq); 1359 local_bh_enable(); 1360 } 1361 1362 static void virtnet_napi_tx_enable(struct virtnet_info *vi, 1363 struct virtqueue *vq, 1364 struct napi_struct *napi) 1365 { 1366 if (!napi->weight) 1367 return; 1368 1369 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only 1370 * enable the feature if this is likely affine with the transmit path. 1371 */ 1372 if (!vi->affinity_hint_set) { 1373 napi->weight = 0; 1374 return; 1375 } 1376 1377 return virtnet_napi_enable(vq, napi); 1378 } 1379 1380 static void virtnet_napi_tx_disable(struct napi_struct *napi) 1381 { 1382 if (napi->weight) 1383 napi_disable(napi); 1384 } 1385 1386 static void refill_work(struct work_struct *work) 1387 { 1388 struct virtnet_info *vi = 1389 container_of(work, struct virtnet_info, refill.work); 1390 bool still_empty; 1391 int i; 1392 1393 for (i = 0; i < vi->curr_queue_pairs; i++) { 1394 struct receive_queue *rq = &vi->rq[i]; 1395 1396 napi_disable(&rq->napi); 1397 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL); 1398 virtnet_napi_enable(rq->vq, &rq->napi); 1399 1400 /* In theory, this can happen: if we don't get any buffers in 1401 * we will *never* try to fill again. 1402 */ 1403 if (still_empty) 1404 schedule_delayed_work(&vi->refill, HZ/2); 1405 } 1406 } 1407 1408 static int virtnet_receive(struct receive_queue *rq, int budget, 1409 unsigned int *xdp_xmit) 1410 { 1411 struct virtnet_info *vi = rq->vq->vdev->priv; 1412 struct virtnet_rq_stats stats = {}; 1413 unsigned int len; 1414 void *buf; 1415 int i; 1416 1417 if (!vi->big_packets || vi->mergeable_rx_bufs) { 1418 void *ctx; 1419 1420 while (stats.packets < budget && 1421 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) { 1422 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats); 1423 stats.packets++; 1424 } 1425 } else { 1426 while (stats.packets < budget && 1427 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) { 1428 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats); 1429 stats.packets++; 1430 } 1431 } 1432 1433 if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) { 1434 if (!try_fill_recv(vi, rq, GFP_ATOMIC)) 1435 schedule_delayed_work(&vi->refill, 0); 1436 } 1437 1438 u64_stats_update_begin(&rq->stats.syncp); 1439 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) { 1440 size_t offset = virtnet_rq_stats_desc[i].offset; 1441 u64 *item; 1442 1443 item = (u64 *)((u8 *)&rq->stats + offset); 1444 *item += *(u64 *)((u8 *)&stats + offset); 1445 } 1446 u64_stats_update_end(&rq->stats.syncp); 1447 1448 return stats.packets; 1449 } 1450 1451 static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi) 1452 { 1453 unsigned int len; 1454 unsigned int packets = 0; 1455 unsigned int bytes = 0; 1456 void *ptr; 1457 1458 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) { 1459 if (likely(!is_xdp_frame(ptr))) { 1460 struct sk_buff *skb = ptr; 1461 1462 pr_debug("Sent skb %p\n", skb); 1463 1464 bytes += skb->len; 1465 napi_consume_skb(skb, in_napi); 1466 } else { 1467 struct xdp_frame *frame = ptr_to_xdp(ptr); 1468 1469 bytes += frame->len; 1470 xdp_return_frame(frame); 1471 } 1472 packets++; 1473 } 1474 1475 /* Avoid overhead when no packets have been processed 1476 * happens when called speculatively from start_xmit. 1477 */ 1478 if (!packets) 1479 return; 1480 1481 u64_stats_update_begin(&sq->stats.syncp); 1482 sq->stats.bytes += bytes; 1483 sq->stats.packets += packets; 1484 u64_stats_update_end(&sq->stats.syncp); 1485 } 1486 1487 static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q) 1488 { 1489 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs)) 1490 return false; 1491 else if (q < vi->curr_queue_pairs) 1492 return true; 1493 else 1494 return false; 1495 } 1496 1497 static void virtnet_poll_cleantx(struct receive_queue *rq) 1498 { 1499 struct virtnet_info *vi = rq->vq->vdev->priv; 1500 unsigned int index = vq2rxq(rq->vq); 1501 struct send_queue *sq = &vi->sq[index]; 1502 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index); 1503 1504 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index)) 1505 return; 1506 1507 if (__netif_tx_trylock(txq)) { 1508 do { 1509 virtqueue_disable_cb(sq->vq); 1510 free_old_xmit_skbs(sq, true); 1511 } while (unlikely(!virtqueue_enable_cb_delayed(sq->vq))); 1512 1513 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) 1514 netif_tx_wake_queue(txq); 1515 1516 __netif_tx_unlock(txq); 1517 } 1518 } 1519 1520 static int virtnet_poll(struct napi_struct *napi, int budget) 1521 { 1522 struct receive_queue *rq = 1523 container_of(napi, struct receive_queue, napi); 1524 struct virtnet_info *vi = rq->vq->vdev->priv; 1525 struct send_queue *sq; 1526 unsigned int received; 1527 unsigned int xdp_xmit = 0; 1528 1529 virtnet_poll_cleantx(rq); 1530 1531 received = virtnet_receive(rq, budget, &xdp_xmit); 1532 1533 /* Out of packets? */ 1534 if (received < budget) 1535 virtqueue_napi_complete(napi, rq->vq, received); 1536 1537 if (xdp_xmit & VIRTIO_XDP_REDIR) 1538 xdp_do_flush(); 1539 1540 if (xdp_xmit & VIRTIO_XDP_TX) { 1541 sq = virtnet_xdp_get_sq(vi); 1542 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) { 1543 u64_stats_update_begin(&sq->stats.syncp); 1544 sq->stats.kicks++; 1545 u64_stats_update_end(&sq->stats.syncp); 1546 } 1547 virtnet_xdp_put_sq(vi, sq); 1548 } 1549 1550 return received; 1551 } 1552 1553 static int virtnet_open(struct net_device *dev) 1554 { 1555 struct virtnet_info *vi = netdev_priv(dev); 1556 int i, err; 1557 1558 for (i = 0; i < vi->max_queue_pairs; i++) { 1559 if (i < vi->curr_queue_pairs) 1560 /* Make sure we have some buffers: if oom use wq. */ 1561 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) 1562 schedule_delayed_work(&vi->refill, 0); 1563 1564 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i, vi->rq[i].napi.napi_id); 1565 if (err < 0) 1566 return err; 1567 1568 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq, 1569 MEM_TYPE_PAGE_SHARED, NULL); 1570 if (err < 0) { 1571 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); 1572 return err; 1573 } 1574 1575 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); 1576 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi); 1577 } 1578 1579 return 0; 1580 } 1581 1582 static int virtnet_poll_tx(struct napi_struct *napi, int budget) 1583 { 1584 struct send_queue *sq = container_of(napi, struct send_queue, napi); 1585 struct virtnet_info *vi = sq->vq->vdev->priv; 1586 unsigned int index = vq2txq(sq->vq); 1587 struct netdev_queue *txq; 1588 int opaque; 1589 bool done; 1590 1591 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) { 1592 /* We don't need to enable cb for XDP */ 1593 napi_complete_done(napi, 0); 1594 return 0; 1595 } 1596 1597 txq = netdev_get_tx_queue(vi->dev, index); 1598 __netif_tx_lock(txq, raw_smp_processor_id()); 1599 virtqueue_disable_cb(sq->vq); 1600 free_old_xmit_skbs(sq, true); 1601 1602 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) 1603 netif_tx_wake_queue(txq); 1604 1605 opaque = virtqueue_enable_cb_prepare(sq->vq); 1606 1607 done = napi_complete_done(napi, 0); 1608 1609 if (!done) 1610 virtqueue_disable_cb(sq->vq); 1611 1612 __netif_tx_unlock(txq); 1613 1614 if (done) { 1615 if (unlikely(virtqueue_poll(sq->vq, opaque))) { 1616 if (napi_schedule_prep(napi)) { 1617 __netif_tx_lock(txq, raw_smp_processor_id()); 1618 virtqueue_disable_cb(sq->vq); 1619 __netif_tx_unlock(txq); 1620 __napi_schedule(napi); 1621 } 1622 } 1623 } 1624 1625 return 0; 1626 } 1627 1628 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb) 1629 { 1630 struct virtio_net_hdr_mrg_rxbuf *hdr; 1631 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; 1632 struct virtnet_info *vi = sq->vq->vdev->priv; 1633 int num_sg; 1634 unsigned hdr_len = vi->hdr_len; 1635 bool can_push; 1636 1637 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest); 1638 1639 can_push = vi->any_header_sg && 1640 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) && 1641 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len; 1642 /* Even if we can, don't push here yet as this would skew 1643 * csum_start offset below. */ 1644 if (can_push) 1645 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len); 1646 else 1647 hdr = skb_vnet_hdr(skb); 1648 1649 if (virtio_net_hdr_from_skb(skb, &hdr->hdr, 1650 virtio_is_little_endian(vi->vdev), false, 1651 0)) 1652 return -EPROTO; 1653 1654 if (vi->mergeable_rx_bufs) 1655 hdr->num_buffers = 0; 1656 1657 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2)); 1658 if (can_push) { 1659 __skb_push(skb, hdr_len); 1660 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len); 1661 if (unlikely(num_sg < 0)) 1662 return num_sg; 1663 /* Pull header back to avoid skew in tx bytes calculations. */ 1664 __skb_pull(skb, hdr_len); 1665 } else { 1666 sg_set_buf(sq->sg, hdr, hdr_len); 1667 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len); 1668 if (unlikely(num_sg < 0)) 1669 return num_sg; 1670 num_sg++; 1671 } 1672 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC); 1673 } 1674 1675 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) 1676 { 1677 struct virtnet_info *vi = netdev_priv(dev); 1678 int qnum = skb_get_queue_mapping(skb); 1679 struct send_queue *sq = &vi->sq[qnum]; 1680 int err; 1681 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); 1682 bool kick = !netdev_xmit_more(); 1683 bool use_napi = sq->napi.weight; 1684 1685 /* Free up any pending old buffers before queueing new ones. */ 1686 do { 1687 if (use_napi) 1688 virtqueue_disable_cb(sq->vq); 1689 1690 free_old_xmit_skbs(sq, false); 1691 1692 } while (use_napi && kick && 1693 unlikely(!virtqueue_enable_cb_delayed(sq->vq))); 1694 1695 /* timestamp packet in software */ 1696 skb_tx_timestamp(skb); 1697 1698 /* Try to transmit */ 1699 err = xmit_skb(sq, skb); 1700 1701 /* This should not happen! */ 1702 if (unlikely(err)) { 1703 dev->stats.tx_fifo_errors++; 1704 if (net_ratelimit()) 1705 dev_warn(&dev->dev, 1706 "Unexpected TXQ (%d) queue failure: %d\n", 1707 qnum, err); 1708 dev->stats.tx_dropped++; 1709 dev_kfree_skb_any(skb); 1710 return NETDEV_TX_OK; 1711 } 1712 1713 /* Don't wait up for transmitted skbs to be freed. */ 1714 if (!use_napi) { 1715 skb_orphan(skb); 1716 nf_reset_ct(skb); 1717 } 1718 1719 /* If running out of space, stop queue to avoid getting packets that we 1720 * are then unable to transmit. 1721 * An alternative would be to force queuing layer to requeue the skb by 1722 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be 1723 * returned in a normal path of operation: it means that driver is not 1724 * maintaining the TX queue stop/start state properly, and causes 1725 * the stack to do a non-trivial amount of useless work. 1726 * Since most packets only take 1 or 2 ring slots, stopping the queue 1727 * early means 16 slots are typically wasted. 1728 */ 1729 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) { 1730 netif_stop_subqueue(dev, qnum); 1731 if (!use_napi && 1732 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) { 1733 /* More just got used, free them then recheck. */ 1734 free_old_xmit_skbs(sq, false); 1735 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) { 1736 netif_start_subqueue(dev, qnum); 1737 virtqueue_disable_cb(sq->vq); 1738 } 1739 } 1740 } 1741 1742 if (kick || netif_xmit_stopped(txq)) { 1743 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) { 1744 u64_stats_update_begin(&sq->stats.syncp); 1745 sq->stats.kicks++; 1746 u64_stats_update_end(&sq->stats.syncp); 1747 } 1748 } 1749 1750 return NETDEV_TX_OK; 1751 } 1752 1753 /* 1754 * Send command via the control virtqueue and check status. Commands 1755 * supported by the hypervisor, as indicated by feature bits, should 1756 * never fail unless improperly formatted. 1757 */ 1758 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, 1759 struct scatterlist *out) 1760 { 1761 struct scatterlist *sgs[4], hdr, stat; 1762 unsigned out_num = 0, tmp; 1763 int ret; 1764 1765 /* Caller should know better */ 1766 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)); 1767 1768 vi->ctrl->status = ~0; 1769 vi->ctrl->hdr.class = class; 1770 vi->ctrl->hdr.cmd = cmd; 1771 /* Add header */ 1772 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr)); 1773 sgs[out_num++] = &hdr; 1774 1775 if (out) 1776 sgs[out_num++] = out; 1777 1778 /* Add return status. */ 1779 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status)); 1780 sgs[out_num] = &stat; 1781 1782 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs)); 1783 ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC); 1784 if (ret < 0) { 1785 dev_warn(&vi->vdev->dev, 1786 "Failed to add sgs for command vq: %d\n.", ret); 1787 return false; 1788 } 1789 1790 if (unlikely(!virtqueue_kick(vi->cvq))) 1791 return vi->ctrl->status == VIRTIO_NET_OK; 1792 1793 /* Spin for a response, the kick causes an ioport write, trapping 1794 * into the hypervisor, so the request should be handled immediately. 1795 */ 1796 while (!virtqueue_get_buf(vi->cvq, &tmp) && 1797 !virtqueue_is_broken(vi->cvq)) 1798 cpu_relax(); 1799 1800 return vi->ctrl->status == VIRTIO_NET_OK; 1801 } 1802 1803 static int virtnet_set_mac_address(struct net_device *dev, void *p) 1804 { 1805 struct virtnet_info *vi = netdev_priv(dev); 1806 struct virtio_device *vdev = vi->vdev; 1807 int ret; 1808 struct sockaddr *addr; 1809 struct scatterlist sg; 1810 1811 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 1812 return -EOPNOTSUPP; 1813 1814 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL); 1815 if (!addr) 1816 return -ENOMEM; 1817 1818 ret = eth_prepare_mac_addr_change(dev, addr); 1819 if (ret) 1820 goto out; 1821 1822 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { 1823 sg_init_one(&sg, addr->sa_data, dev->addr_len); 1824 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 1825 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { 1826 dev_warn(&vdev->dev, 1827 "Failed to set mac address by vq command.\n"); 1828 ret = -EINVAL; 1829 goto out; 1830 } 1831 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && 1832 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) { 1833 unsigned int i; 1834 1835 /* Naturally, this has an atomicity problem. */ 1836 for (i = 0; i < dev->addr_len; i++) 1837 virtio_cwrite8(vdev, 1838 offsetof(struct virtio_net_config, mac) + 1839 i, addr->sa_data[i]); 1840 } 1841 1842 eth_commit_mac_addr_change(dev, p); 1843 ret = 0; 1844 1845 out: 1846 kfree(addr); 1847 return ret; 1848 } 1849 1850 static void virtnet_stats(struct net_device *dev, 1851 struct rtnl_link_stats64 *tot) 1852 { 1853 struct virtnet_info *vi = netdev_priv(dev); 1854 unsigned int start; 1855 int i; 1856 1857 for (i = 0; i < vi->max_queue_pairs; i++) { 1858 u64 tpackets, tbytes, rpackets, rbytes, rdrops; 1859 struct receive_queue *rq = &vi->rq[i]; 1860 struct send_queue *sq = &vi->sq[i]; 1861 1862 do { 1863 start = u64_stats_fetch_begin_irq(&sq->stats.syncp); 1864 tpackets = sq->stats.packets; 1865 tbytes = sq->stats.bytes; 1866 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start)); 1867 1868 do { 1869 start = u64_stats_fetch_begin_irq(&rq->stats.syncp); 1870 rpackets = rq->stats.packets; 1871 rbytes = rq->stats.bytes; 1872 rdrops = rq->stats.drops; 1873 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start)); 1874 1875 tot->rx_packets += rpackets; 1876 tot->tx_packets += tpackets; 1877 tot->rx_bytes += rbytes; 1878 tot->tx_bytes += tbytes; 1879 tot->rx_dropped += rdrops; 1880 } 1881 1882 tot->tx_dropped = dev->stats.tx_dropped; 1883 tot->tx_fifo_errors = dev->stats.tx_fifo_errors; 1884 tot->rx_length_errors = dev->stats.rx_length_errors; 1885 tot->rx_frame_errors = dev->stats.rx_frame_errors; 1886 } 1887 1888 static void virtnet_ack_link_announce(struct virtnet_info *vi) 1889 { 1890 rtnl_lock(); 1891 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, 1892 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL)) 1893 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); 1894 rtnl_unlock(); 1895 } 1896 1897 static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) 1898 { 1899 struct scatterlist sg; 1900 struct net_device *dev = vi->dev; 1901 1902 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) 1903 return 0; 1904 1905 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs); 1906 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq)); 1907 1908 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, 1909 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) { 1910 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", 1911 queue_pairs); 1912 return -EINVAL; 1913 } else { 1914 vi->curr_queue_pairs = queue_pairs; 1915 /* virtnet_open() will refill when device is going to up. */ 1916 if (dev->flags & IFF_UP) 1917 schedule_delayed_work(&vi->refill, 0); 1918 } 1919 1920 return 0; 1921 } 1922 1923 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) 1924 { 1925 int err; 1926 1927 rtnl_lock(); 1928 err = _virtnet_set_queues(vi, queue_pairs); 1929 rtnl_unlock(); 1930 return err; 1931 } 1932 1933 static int virtnet_close(struct net_device *dev) 1934 { 1935 struct virtnet_info *vi = netdev_priv(dev); 1936 int i; 1937 1938 /* Make sure refill_work doesn't re-enable napi! */ 1939 cancel_delayed_work_sync(&vi->refill); 1940 1941 for (i = 0; i < vi->max_queue_pairs; i++) { 1942 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); 1943 napi_disable(&vi->rq[i].napi); 1944 virtnet_napi_tx_disable(&vi->sq[i].napi); 1945 } 1946 1947 return 0; 1948 } 1949 1950 static void virtnet_set_rx_mode(struct net_device *dev) 1951 { 1952 struct virtnet_info *vi = netdev_priv(dev); 1953 struct scatterlist sg[2]; 1954 struct virtio_net_ctrl_mac *mac_data; 1955 struct netdev_hw_addr *ha; 1956 int uc_count; 1957 int mc_count; 1958 void *buf; 1959 int i; 1960 1961 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */ 1962 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) 1963 return; 1964 1965 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0); 1966 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0); 1967 1968 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc)); 1969 1970 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 1971 VIRTIO_NET_CTRL_RX_PROMISC, sg)) 1972 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", 1973 vi->ctrl->promisc ? "en" : "dis"); 1974 1975 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti)); 1976 1977 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, 1978 VIRTIO_NET_CTRL_RX_ALLMULTI, sg)) 1979 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", 1980 vi->ctrl->allmulti ? "en" : "dis"); 1981 1982 uc_count = netdev_uc_count(dev); 1983 mc_count = netdev_mc_count(dev); 1984 /* MAC filter - use one buffer for both lists */ 1985 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + 1986 (2 * sizeof(mac_data->entries)), GFP_ATOMIC); 1987 mac_data = buf; 1988 if (!buf) 1989 return; 1990 1991 sg_init_table(sg, 2); 1992 1993 /* Store the unicast list and count in the front of the buffer */ 1994 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count); 1995 i = 0; 1996 netdev_for_each_uc_addr(ha, dev) 1997 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 1998 1999 sg_set_buf(&sg[0], mac_data, 2000 sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); 2001 2002 /* multicast list and count fill the end */ 2003 mac_data = (void *)&mac_data->macs[uc_count][0]; 2004 2005 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count); 2006 i = 0; 2007 netdev_for_each_mc_addr(ha, dev) 2008 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); 2009 2010 sg_set_buf(&sg[1], mac_data, 2011 sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); 2012 2013 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, 2014 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg)) 2015 dev_warn(&dev->dev, "Failed to set MAC filter table.\n"); 2016 2017 kfree(buf); 2018 } 2019 2020 static int virtnet_vlan_rx_add_vid(struct net_device *dev, 2021 __be16 proto, u16 vid) 2022 { 2023 struct virtnet_info *vi = netdev_priv(dev); 2024 struct scatterlist sg; 2025 2026 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid); 2027 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid)); 2028 2029 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 2030 VIRTIO_NET_CTRL_VLAN_ADD, &sg)) 2031 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); 2032 return 0; 2033 } 2034 2035 static int virtnet_vlan_rx_kill_vid(struct net_device *dev, 2036 __be16 proto, u16 vid) 2037 { 2038 struct virtnet_info *vi = netdev_priv(dev); 2039 struct scatterlist sg; 2040 2041 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid); 2042 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid)); 2043 2044 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, 2045 VIRTIO_NET_CTRL_VLAN_DEL, &sg)) 2046 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); 2047 return 0; 2048 } 2049 2050 static void virtnet_clean_affinity(struct virtnet_info *vi) 2051 { 2052 int i; 2053 2054 if (vi->affinity_hint_set) { 2055 for (i = 0; i < vi->max_queue_pairs; i++) { 2056 virtqueue_set_affinity(vi->rq[i].vq, NULL); 2057 virtqueue_set_affinity(vi->sq[i].vq, NULL); 2058 } 2059 2060 vi->affinity_hint_set = false; 2061 } 2062 } 2063 2064 static void virtnet_set_affinity(struct virtnet_info *vi) 2065 { 2066 cpumask_var_t mask; 2067 int stragglers; 2068 int group_size; 2069 int i, j, cpu; 2070 int num_cpu; 2071 int stride; 2072 2073 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) { 2074 virtnet_clean_affinity(vi); 2075 return; 2076 } 2077 2078 num_cpu = num_online_cpus(); 2079 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1); 2080 stragglers = num_cpu >= vi->curr_queue_pairs ? 2081 num_cpu % vi->curr_queue_pairs : 2082 0; 2083 cpu = cpumask_next(-1, cpu_online_mask); 2084 2085 for (i = 0; i < vi->curr_queue_pairs; i++) { 2086 group_size = stride + (i < stragglers ? 1 : 0); 2087 2088 for (j = 0; j < group_size; j++) { 2089 cpumask_set_cpu(cpu, mask); 2090 cpu = cpumask_next_wrap(cpu, cpu_online_mask, 2091 nr_cpu_ids, false); 2092 } 2093 virtqueue_set_affinity(vi->rq[i].vq, mask); 2094 virtqueue_set_affinity(vi->sq[i].vq, mask); 2095 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS); 2096 cpumask_clear(mask); 2097 } 2098 2099 vi->affinity_hint_set = true; 2100 free_cpumask_var(mask); 2101 } 2102 2103 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node) 2104 { 2105 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 2106 node); 2107 virtnet_set_affinity(vi); 2108 return 0; 2109 } 2110 2111 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node) 2112 { 2113 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 2114 node_dead); 2115 virtnet_set_affinity(vi); 2116 return 0; 2117 } 2118 2119 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node) 2120 { 2121 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, 2122 node); 2123 2124 virtnet_clean_affinity(vi); 2125 return 0; 2126 } 2127 2128 static enum cpuhp_state virtionet_online; 2129 2130 static int virtnet_cpu_notif_add(struct virtnet_info *vi) 2131 { 2132 int ret; 2133 2134 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node); 2135 if (ret) 2136 return ret; 2137 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD, 2138 &vi->node_dead); 2139 if (!ret) 2140 return ret; 2141 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 2142 return ret; 2143 } 2144 2145 static void virtnet_cpu_notif_remove(struct virtnet_info *vi) 2146 { 2147 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); 2148 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD, 2149 &vi->node_dead); 2150 } 2151 2152 static void virtnet_get_ringparam(struct net_device *dev, 2153 struct ethtool_ringparam *ring) 2154 { 2155 struct virtnet_info *vi = netdev_priv(dev); 2156 2157 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq); 2158 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq); 2159 ring->rx_pending = ring->rx_max_pending; 2160 ring->tx_pending = ring->tx_max_pending; 2161 } 2162 2163 2164 static void virtnet_get_drvinfo(struct net_device *dev, 2165 struct ethtool_drvinfo *info) 2166 { 2167 struct virtnet_info *vi = netdev_priv(dev); 2168 struct virtio_device *vdev = vi->vdev; 2169 2170 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); 2171 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); 2172 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); 2173 2174 } 2175 2176 /* TODO: Eliminate OOO packets during switching */ 2177 static int virtnet_set_channels(struct net_device *dev, 2178 struct ethtool_channels *channels) 2179 { 2180 struct virtnet_info *vi = netdev_priv(dev); 2181 u16 queue_pairs = channels->combined_count; 2182 int err; 2183 2184 /* We don't support separate rx/tx channels. 2185 * We don't allow setting 'other' channels. 2186 */ 2187 if (channels->rx_count || channels->tx_count || channels->other_count) 2188 return -EINVAL; 2189 2190 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0) 2191 return -EINVAL; 2192 2193 /* For now we don't support modifying channels while XDP is loaded 2194 * also when XDP is loaded all RX queues have XDP programs so we only 2195 * need to check a single RX queue. 2196 */ 2197 if (vi->rq[0].xdp_prog) 2198 return -EINVAL; 2199 2200 cpus_read_lock(); 2201 err = _virtnet_set_queues(vi, queue_pairs); 2202 if (err) { 2203 cpus_read_unlock(); 2204 goto err; 2205 } 2206 virtnet_set_affinity(vi); 2207 cpus_read_unlock(); 2208 2209 netif_set_real_num_tx_queues(dev, queue_pairs); 2210 netif_set_real_num_rx_queues(dev, queue_pairs); 2211 err: 2212 return err; 2213 } 2214 2215 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data) 2216 { 2217 struct virtnet_info *vi = netdev_priv(dev); 2218 unsigned int i, j; 2219 u8 *p = data; 2220 2221 switch (stringset) { 2222 case ETH_SS_STATS: 2223 for (i = 0; i < vi->curr_queue_pairs; i++) { 2224 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) 2225 ethtool_sprintf(&p, "rx_queue_%u_%s", i, 2226 virtnet_rq_stats_desc[j].desc); 2227 } 2228 2229 for (i = 0; i < vi->curr_queue_pairs; i++) { 2230 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) 2231 ethtool_sprintf(&p, "tx_queue_%u_%s", i, 2232 virtnet_sq_stats_desc[j].desc); 2233 } 2234 break; 2235 } 2236 } 2237 2238 static int virtnet_get_sset_count(struct net_device *dev, int sset) 2239 { 2240 struct virtnet_info *vi = netdev_priv(dev); 2241 2242 switch (sset) { 2243 case ETH_SS_STATS: 2244 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN + 2245 VIRTNET_SQ_STATS_LEN); 2246 default: 2247 return -EOPNOTSUPP; 2248 } 2249 } 2250 2251 static void virtnet_get_ethtool_stats(struct net_device *dev, 2252 struct ethtool_stats *stats, u64 *data) 2253 { 2254 struct virtnet_info *vi = netdev_priv(dev); 2255 unsigned int idx = 0, start, i, j; 2256 const u8 *stats_base; 2257 size_t offset; 2258 2259 for (i = 0; i < vi->curr_queue_pairs; i++) { 2260 struct receive_queue *rq = &vi->rq[i]; 2261 2262 stats_base = (u8 *)&rq->stats; 2263 do { 2264 start = u64_stats_fetch_begin_irq(&rq->stats.syncp); 2265 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) { 2266 offset = virtnet_rq_stats_desc[j].offset; 2267 data[idx + j] = *(u64 *)(stats_base + offset); 2268 } 2269 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start)); 2270 idx += VIRTNET_RQ_STATS_LEN; 2271 } 2272 2273 for (i = 0; i < vi->curr_queue_pairs; i++) { 2274 struct send_queue *sq = &vi->sq[i]; 2275 2276 stats_base = (u8 *)&sq->stats; 2277 do { 2278 start = u64_stats_fetch_begin_irq(&sq->stats.syncp); 2279 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) { 2280 offset = virtnet_sq_stats_desc[j].offset; 2281 data[idx + j] = *(u64 *)(stats_base + offset); 2282 } 2283 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start)); 2284 idx += VIRTNET_SQ_STATS_LEN; 2285 } 2286 } 2287 2288 static void virtnet_get_channels(struct net_device *dev, 2289 struct ethtool_channels *channels) 2290 { 2291 struct virtnet_info *vi = netdev_priv(dev); 2292 2293 channels->combined_count = vi->curr_queue_pairs; 2294 channels->max_combined = vi->max_queue_pairs; 2295 channels->max_other = 0; 2296 channels->rx_count = 0; 2297 channels->tx_count = 0; 2298 channels->other_count = 0; 2299 } 2300 2301 static int virtnet_set_link_ksettings(struct net_device *dev, 2302 const struct ethtool_link_ksettings *cmd) 2303 { 2304 struct virtnet_info *vi = netdev_priv(dev); 2305 2306 return ethtool_virtdev_set_link_ksettings(dev, cmd, 2307 &vi->speed, &vi->duplex); 2308 } 2309 2310 static int virtnet_get_link_ksettings(struct net_device *dev, 2311 struct ethtool_link_ksettings *cmd) 2312 { 2313 struct virtnet_info *vi = netdev_priv(dev); 2314 2315 cmd->base.speed = vi->speed; 2316 cmd->base.duplex = vi->duplex; 2317 cmd->base.port = PORT_OTHER; 2318 2319 return 0; 2320 } 2321 2322 static int virtnet_set_coalesce(struct net_device *dev, 2323 struct ethtool_coalesce *ec) 2324 { 2325 struct virtnet_info *vi = netdev_priv(dev); 2326 int i, napi_weight; 2327 2328 if (ec->tx_max_coalesced_frames > 1 || 2329 ec->rx_max_coalesced_frames != 1) 2330 return -EINVAL; 2331 2332 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0; 2333 if (napi_weight ^ vi->sq[0].napi.weight) { 2334 if (dev->flags & IFF_UP) 2335 return -EBUSY; 2336 for (i = 0; i < vi->max_queue_pairs; i++) 2337 vi->sq[i].napi.weight = napi_weight; 2338 } 2339 2340 return 0; 2341 } 2342 2343 static int virtnet_get_coalesce(struct net_device *dev, 2344 struct ethtool_coalesce *ec) 2345 { 2346 struct ethtool_coalesce ec_default = { 2347 .cmd = ETHTOOL_GCOALESCE, 2348 .rx_max_coalesced_frames = 1, 2349 }; 2350 struct virtnet_info *vi = netdev_priv(dev); 2351 2352 memcpy(ec, &ec_default, sizeof(ec_default)); 2353 2354 if (vi->sq[0].napi.weight) 2355 ec->tx_max_coalesced_frames = 1; 2356 2357 return 0; 2358 } 2359 2360 static void virtnet_init_settings(struct net_device *dev) 2361 { 2362 struct virtnet_info *vi = netdev_priv(dev); 2363 2364 vi->speed = SPEED_UNKNOWN; 2365 vi->duplex = DUPLEX_UNKNOWN; 2366 } 2367 2368 static void virtnet_update_settings(struct virtnet_info *vi) 2369 { 2370 u32 speed; 2371 u8 duplex; 2372 2373 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX)) 2374 return; 2375 2376 virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed); 2377 2378 if (ethtool_validate_speed(speed)) 2379 vi->speed = speed; 2380 2381 virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex); 2382 2383 if (ethtool_validate_duplex(duplex)) 2384 vi->duplex = duplex; 2385 } 2386 2387 static const struct ethtool_ops virtnet_ethtool_ops = { 2388 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES, 2389 .get_drvinfo = virtnet_get_drvinfo, 2390 .get_link = ethtool_op_get_link, 2391 .get_ringparam = virtnet_get_ringparam, 2392 .get_strings = virtnet_get_strings, 2393 .get_sset_count = virtnet_get_sset_count, 2394 .get_ethtool_stats = virtnet_get_ethtool_stats, 2395 .set_channels = virtnet_set_channels, 2396 .get_channels = virtnet_get_channels, 2397 .get_ts_info = ethtool_op_get_ts_info, 2398 .get_link_ksettings = virtnet_get_link_ksettings, 2399 .set_link_ksettings = virtnet_set_link_ksettings, 2400 .set_coalesce = virtnet_set_coalesce, 2401 .get_coalesce = virtnet_get_coalesce, 2402 }; 2403 2404 static void virtnet_freeze_down(struct virtio_device *vdev) 2405 { 2406 struct virtnet_info *vi = vdev->priv; 2407 int i; 2408 2409 /* Make sure no work handler is accessing the device */ 2410 flush_work(&vi->config_work); 2411 2412 netif_tx_lock_bh(vi->dev); 2413 netif_device_detach(vi->dev); 2414 netif_tx_unlock_bh(vi->dev); 2415 cancel_delayed_work_sync(&vi->refill); 2416 2417 if (netif_running(vi->dev)) { 2418 for (i = 0; i < vi->max_queue_pairs; i++) { 2419 napi_disable(&vi->rq[i].napi); 2420 virtnet_napi_tx_disable(&vi->sq[i].napi); 2421 } 2422 } 2423 } 2424 2425 static int init_vqs(struct virtnet_info *vi); 2426 2427 static int virtnet_restore_up(struct virtio_device *vdev) 2428 { 2429 struct virtnet_info *vi = vdev->priv; 2430 int err, i; 2431 2432 err = init_vqs(vi); 2433 if (err) 2434 return err; 2435 2436 virtio_device_ready(vdev); 2437 2438 if (netif_running(vi->dev)) { 2439 for (i = 0; i < vi->curr_queue_pairs; i++) 2440 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) 2441 schedule_delayed_work(&vi->refill, 0); 2442 2443 for (i = 0; i < vi->max_queue_pairs; i++) { 2444 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); 2445 virtnet_napi_tx_enable(vi, vi->sq[i].vq, 2446 &vi->sq[i].napi); 2447 } 2448 } 2449 2450 netif_tx_lock_bh(vi->dev); 2451 netif_device_attach(vi->dev); 2452 netif_tx_unlock_bh(vi->dev); 2453 return err; 2454 } 2455 2456 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads) 2457 { 2458 struct scatterlist sg; 2459 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads); 2460 2461 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads)); 2462 2463 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS, 2464 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) { 2465 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n"); 2466 return -EINVAL; 2467 } 2468 2469 return 0; 2470 } 2471 2472 static int virtnet_clear_guest_offloads(struct virtnet_info *vi) 2473 { 2474 u64 offloads = 0; 2475 2476 if (!vi->guest_offloads) 2477 return 0; 2478 2479 return virtnet_set_guest_offloads(vi, offloads); 2480 } 2481 2482 static int virtnet_restore_guest_offloads(struct virtnet_info *vi) 2483 { 2484 u64 offloads = vi->guest_offloads; 2485 2486 if (!vi->guest_offloads) 2487 return 0; 2488 2489 return virtnet_set_guest_offloads(vi, offloads); 2490 } 2491 2492 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog, 2493 struct netlink_ext_ack *extack) 2494 { 2495 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr); 2496 struct virtnet_info *vi = netdev_priv(dev); 2497 struct bpf_prog *old_prog; 2498 u16 xdp_qp = 0, curr_qp; 2499 int i, err; 2500 2501 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) 2502 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || 2503 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || 2504 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || 2505 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || 2506 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) { 2507 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first"); 2508 return -EOPNOTSUPP; 2509 } 2510 2511 if (vi->mergeable_rx_bufs && !vi->any_header_sg) { 2512 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required"); 2513 return -EINVAL; 2514 } 2515 2516 if (dev->mtu > max_sz) { 2517 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP"); 2518 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz); 2519 return -EINVAL; 2520 } 2521 2522 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs; 2523 if (prog) 2524 xdp_qp = nr_cpu_ids; 2525 2526 /* XDP requires extra queues for XDP_TX */ 2527 if (curr_qp + xdp_qp > vi->max_queue_pairs) { 2528 netdev_warn(dev, "XDP request %i queues but max is %i. XDP_TX and XDP_REDIRECT will operate in a slower locked tx mode.\n", 2529 curr_qp + xdp_qp, vi->max_queue_pairs); 2530 xdp_qp = 0; 2531 } 2532 2533 old_prog = rtnl_dereference(vi->rq[0].xdp_prog); 2534 if (!prog && !old_prog) 2535 return 0; 2536 2537 if (prog) 2538 bpf_prog_add(prog, vi->max_queue_pairs - 1); 2539 2540 /* Make sure NAPI is not using any XDP TX queues for RX. */ 2541 if (netif_running(dev)) { 2542 for (i = 0; i < vi->max_queue_pairs; i++) { 2543 napi_disable(&vi->rq[i].napi); 2544 virtnet_napi_tx_disable(&vi->sq[i].napi); 2545 } 2546 } 2547 2548 if (!prog) { 2549 for (i = 0; i < vi->max_queue_pairs; i++) { 2550 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 2551 if (i == 0) 2552 virtnet_restore_guest_offloads(vi); 2553 } 2554 synchronize_net(); 2555 } 2556 2557 err = _virtnet_set_queues(vi, curr_qp + xdp_qp); 2558 if (err) 2559 goto err; 2560 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp); 2561 vi->xdp_queue_pairs = xdp_qp; 2562 2563 if (prog) { 2564 vi->xdp_enabled = true; 2565 for (i = 0; i < vi->max_queue_pairs; i++) { 2566 rcu_assign_pointer(vi->rq[i].xdp_prog, prog); 2567 if (i == 0 && !old_prog) 2568 virtnet_clear_guest_offloads(vi); 2569 } 2570 } else { 2571 vi->xdp_enabled = false; 2572 } 2573 2574 for (i = 0; i < vi->max_queue_pairs; i++) { 2575 if (old_prog) 2576 bpf_prog_put(old_prog); 2577 if (netif_running(dev)) { 2578 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); 2579 virtnet_napi_tx_enable(vi, vi->sq[i].vq, 2580 &vi->sq[i].napi); 2581 } 2582 } 2583 2584 return 0; 2585 2586 err: 2587 if (!prog) { 2588 virtnet_clear_guest_offloads(vi); 2589 for (i = 0; i < vi->max_queue_pairs; i++) 2590 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog); 2591 } 2592 2593 if (netif_running(dev)) { 2594 for (i = 0; i < vi->max_queue_pairs; i++) { 2595 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); 2596 virtnet_napi_tx_enable(vi, vi->sq[i].vq, 2597 &vi->sq[i].napi); 2598 } 2599 } 2600 if (prog) 2601 bpf_prog_sub(prog, vi->max_queue_pairs - 1); 2602 return err; 2603 } 2604 2605 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp) 2606 { 2607 switch (xdp->command) { 2608 case XDP_SETUP_PROG: 2609 return virtnet_xdp_set(dev, xdp->prog, xdp->extack); 2610 default: 2611 return -EINVAL; 2612 } 2613 } 2614 2615 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf, 2616 size_t len) 2617 { 2618 struct virtnet_info *vi = netdev_priv(dev); 2619 int ret; 2620 2621 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY)) 2622 return -EOPNOTSUPP; 2623 2624 ret = snprintf(buf, len, "sby"); 2625 if (ret >= len) 2626 return -EOPNOTSUPP; 2627 2628 return 0; 2629 } 2630 2631 static int virtnet_set_features(struct net_device *dev, 2632 netdev_features_t features) 2633 { 2634 struct virtnet_info *vi = netdev_priv(dev); 2635 u64 offloads; 2636 int err; 2637 2638 if ((dev->features ^ features) & NETIF_F_GRO_HW) { 2639 if (vi->xdp_enabled) 2640 return -EBUSY; 2641 2642 if (features & NETIF_F_GRO_HW) 2643 offloads = vi->guest_offloads_capable; 2644 else 2645 offloads = vi->guest_offloads_capable & 2646 ~GUEST_OFFLOAD_GRO_HW_MASK; 2647 2648 err = virtnet_set_guest_offloads(vi, offloads); 2649 if (err) 2650 return err; 2651 vi->guest_offloads = offloads; 2652 } 2653 2654 return 0; 2655 } 2656 2657 static const struct net_device_ops virtnet_netdev = { 2658 .ndo_open = virtnet_open, 2659 .ndo_stop = virtnet_close, 2660 .ndo_start_xmit = start_xmit, 2661 .ndo_validate_addr = eth_validate_addr, 2662 .ndo_set_mac_address = virtnet_set_mac_address, 2663 .ndo_set_rx_mode = virtnet_set_rx_mode, 2664 .ndo_get_stats64 = virtnet_stats, 2665 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, 2666 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, 2667 .ndo_bpf = virtnet_xdp, 2668 .ndo_xdp_xmit = virtnet_xdp_xmit, 2669 .ndo_features_check = passthru_features_check, 2670 .ndo_get_phys_port_name = virtnet_get_phys_port_name, 2671 .ndo_set_features = virtnet_set_features, 2672 }; 2673 2674 static void virtnet_config_changed_work(struct work_struct *work) 2675 { 2676 struct virtnet_info *vi = 2677 container_of(work, struct virtnet_info, config_work); 2678 u16 v; 2679 2680 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS, 2681 struct virtio_net_config, status, &v) < 0) 2682 return; 2683 2684 if (v & VIRTIO_NET_S_ANNOUNCE) { 2685 netdev_notify_peers(vi->dev); 2686 virtnet_ack_link_announce(vi); 2687 } 2688 2689 /* Ignore unknown (future) status bits */ 2690 v &= VIRTIO_NET_S_LINK_UP; 2691 2692 if (vi->status == v) 2693 return; 2694 2695 vi->status = v; 2696 2697 if (vi->status & VIRTIO_NET_S_LINK_UP) { 2698 virtnet_update_settings(vi); 2699 netif_carrier_on(vi->dev); 2700 netif_tx_wake_all_queues(vi->dev); 2701 } else { 2702 netif_carrier_off(vi->dev); 2703 netif_tx_stop_all_queues(vi->dev); 2704 } 2705 } 2706 2707 static void virtnet_config_changed(struct virtio_device *vdev) 2708 { 2709 struct virtnet_info *vi = vdev->priv; 2710 2711 schedule_work(&vi->config_work); 2712 } 2713 2714 static void virtnet_free_queues(struct virtnet_info *vi) 2715 { 2716 int i; 2717 2718 for (i = 0; i < vi->max_queue_pairs; i++) { 2719 __netif_napi_del(&vi->rq[i].napi); 2720 __netif_napi_del(&vi->sq[i].napi); 2721 } 2722 2723 /* We called __netif_napi_del(), 2724 * we need to respect an RCU grace period before freeing vi->rq 2725 */ 2726 synchronize_net(); 2727 2728 kfree(vi->rq); 2729 kfree(vi->sq); 2730 kfree(vi->ctrl); 2731 } 2732 2733 static void _free_receive_bufs(struct virtnet_info *vi) 2734 { 2735 struct bpf_prog *old_prog; 2736 int i; 2737 2738 for (i = 0; i < vi->max_queue_pairs; i++) { 2739 while (vi->rq[i].pages) 2740 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); 2741 2742 old_prog = rtnl_dereference(vi->rq[i].xdp_prog); 2743 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL); 2744 if (old_prog) 2745 bpf_prog_put(old_prog); 2746 } 2747 } 2748 2749 static void free_receive_bufs(struct virtnet_info *vi) 2750 { 2751 rtnl_lock(); 2752 _free_receive_bufs(vi); 2753 rtnl_unlock(); 2754 } 2755 2756 static void free_receive_page_frags(struct virtnet_info *vi) 2757 { 2758 int i; 2759 for (i = 0; i < vi->max_queue_pairs; i++) 2760 if (vi->rq[i].alloc_frag.page) 2761 put_page(vi->rq[i].alloc_frag.page); 2762 } 2763 2764 static void free_unused_bufs(struct virtnet_info *vi) 2765 { 2766 void *buf; 2767 int i; 2768 2769 for (i = 0; i < vi->max_queue_pairs; i++) { 2770 struct virtqueue *vq = vi->sq[i].vq; 2771 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { 2772 if (!is_xdp_frame(buf)) 2773 dev_kfree_skb(buf); 2774 else 2775 xdp_return_frame(ptr_to_xdp(buf)); 2776 } 2777 } 2778 2779 for (i = 0; i < vi->max_queue_pairs; i++) { 2780 struct virtqueue *vq = vi->rq[i].vq; 2781 2782 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { 2783 if (vi->mergeable_rx_bufs) { 2784 put_page(virt_to_head_page(buf)); 2785 } else if (vi->big_packets) { 2786 give_pages(&vi->rq[i], buf); 2787 } else { 2788 put_page(virt_to_head_page(buf)); 2789 } 2790 } 2791 } 2792 } 2793 2794 static void virtnet_del_vqs(struct virtnet_info *vi) 2795 { 2796 struct virtio_device *vdev = vi->vdev; 2797 2798 virtnet_clean_affinity(vi); 2799 2800 vdev->config->del_vqs(vdev); 2801 2802 virtnet_free_queues(vi); 2803 } 2804 2805 /* How large should a single buffer be so a queue full of these can fit at 2806 * least one full packet? 2807 * Logic below assumes the mergeable buffer header is used. 2808 */ 2809 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq) 2810 { 2811 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); 2812 unsigned int rq_size = virtqueue_get_vring_size(vq); 2813 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu; 2814 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len; 2815 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size); 2816 2817 return max(max(min_buf_len, hdr_len) - hdr_len, 2818 (unsigned int)GOOD_PACKET_LEN); 2819 } 2820 2821 static int virtnet_find_vqs(struct virtnet_info *vi) 2822 { 2823 vq_callback_t **callbacks; 2824 struct virtqueue **vqs; 2825 int ret = -ENOMEM; 2826 int i, total_vqs; 2827 const char **names; 2828 bool *ctx; 2829 2830 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by 2831 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by 2832 * possible control vq. 2833 */ 2834 total_vqs = vi->max_queue_pairs * 2 + 2835 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); 2836 2837 /* Allocate space for find_vqs parameters */ 2838 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL); 2839 if (!vqs) 2840 goto err_vq; 2841 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL); 2842 if (!callbacks) 2843 goto err_callback; 2844 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL); 2845 if (!names) 2846 goto err_names; 2847 if (!vi->big_packets || vi->mergeable_rx_bufs) { 2848 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL); 2849 if (!ctx) 2850 goto err_ctx; 2851 } else { 2852 ctx = NULL; 2853 } 2854 2855 /* Parameters for control virtqueue, if any */ 2856 if (vi->has_cvq) { 2857 callbacks[total_vqs - 1] = NULL; 2858 names[total_vqs - 1] = "control"; 2859 } 2860 2861 /* Allocate/initialize parameters for send/receive virtqueues */ 2862 for (i = 0; i < vi->max_queue_pairs; i++) { 2863 callbacks[rxq2vq(i)] = skb_recv_done; 2864 callbacks[txq2vq(i)] = skb_xmit_done; 2865 sprintf(vi->rq[i].name, "input.%d", i); 2866 sprintf(vi->sq[i].name, "output.%d", i); 2867 names[rxq2vq(i)] = vi->rq[i].name; 2868 names[txq2vq(i)] = vi->sq[i].name; 2869 if (ctx) 2870 ctx[rxq2vq(i)] = true; 2871 } 2872 2873 ret = virtio_find_vqs_ctx(vi->vdev, total_vqs, vqs, callbacks, 2874 names, ctx, NULL); 2875 if (ret) 2876 goto err_find; 2877 2878 if (vi->has_cvq) { 2879 vi->cvq = vqs[total_vqs - 1]; 2880 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) 2881 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; 2882 } 2883 2884 for (i = 0; i < vi->max_queue_pairs; i++) { 2885 vi->rq[i].vq = vqs[rxq2vq(i)]; 2886 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq); 2887 vi->sq[i].vq = vqs[txq2vq(i)]; 2888 } 2889 2890 /* run here: ret == 0. */ 2891 2892 2893 err_find: 2894 kfree(ctx); 2895 err_ctx: 2896 kfree(names); 2897 err_names: 2898 kfree(callbacks); 2899 err_callback: 2900 kfree(vqs); 2901 err_vq: 2902 return ret; 2903 } 2904 2905 static int virtnet_alloc_queues(struct virtnet_info *vi) 2906 { 2907 int i; 2908 2909 if (vi->has_cvq) { 2910 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL); 2911 if (!vi->ctrl) 2912 goto err_ctrl; 2913 } else { 2914 vi->ctrl = NULL; 2915 } 2916 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL); 2917 if (!vi->sq) 2918 goto err_sq; 2919 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL); 2920 if (!vi->rq) 2921 goto err_rq; 2922 2923 INIT_DELAYED_WORK(&vi->refill, refill_work); 2924 for (i = 0; i < vi->max_queue_pairs; i++) { 2925 vi->rq[i].pages = NULL; 2926 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll, 2927 napi_weight); 2928 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx, 2929 napi_tx ? napi_weight : 0); 2930 2931 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); 2932 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len); 2933 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); 2934 2935 u64_stats_init(&vi->rq[i].stats.syncp); 2936 u64_stats_init(&vi->sq[i].stats.syncp); 2937 } 2938 2939 return 0; 2940 2941 err_rq: 2942 kfree(vi->sq); 2943 err_sq: 2944 kfree(vi->ctrl); 2945 err_ctrl: 2946 return -ENOMEM; 2947 } 2948 2949 static int init_vqs(struct virtnet_info *vi) 2950 { 2951 int ret; 2952 2953 /* Allocate send & receive queues */ 2954 ret = virtnet_alloc_queues(vi); 2955 if (ret) 2956 goto err; 2957 2958 ret = virtnet_find_vqs(vi); 2959 if (ret) 2960 goto err_free; 2961 2962 cpus_read_lock(); 2963 virtnet_set_affinity(vi); 2964 cpus_read_unlock(); 2965 2966 return 0; 2967 2968 err_free: 2969 virtnet_free_queues(vi); 2970 err: 2971 return ret; 2972 } 2973 2974 #ifdef CONFIG_SYSFS 2975 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue, 2976 char *buf) 2977 { 2978 struct virtnet_info *vi = netdev_priv(queue->dev); 2979 unsigned int queue_index = get_netdev_rx_queue_index(queue); 2980 unsigned int headroom = virtnet_get_headroom(vi); 2981 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; 2982 struct ewma_pkt_len *avg; 2983 2984 BUG_ON(queue_index >= vi->max_queue_pairs); 2985 avg = &vi->rq[queue_index].mrg_avg_pkt_len; 2986 return sprintf(buf, "%u\n", 2987 get_mergeable_buf_len(&vi->rq[queue_index], avg, 2988 SKB_DATA_ALIGN(headroom + tailroom))); 2989 } 2990 2991 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute = 2992 __ATTR_RO(mergeable_rx_buffer_size); 2993 2994 static struct attribute *virtio_net_mrg_rx_attrs[] = { 2995 &mergeable_rx_buffer_size_attribute.attr, 2996 NULL 2997 }; 2998 2999 static const struct attribute_group virtio_net_mrg_rx_group = { 3000 .name = "virtio_net", 3001 .attrs = virtio_net_mrg_rx_attrs 3002 }; 3003 #endif 3004 3005 static bool virtnet_fail_on_feature(struct virtio_device *vdev, 3006 unsigned int fbit, 3007 const char *fname, const char *dname) 3008 { 3009 if (!virtio_has_feature(vdev, fbit)) 3010 return false; 3011 3012 dev_err(&vdev->dev, "device advertises feature %s but not %s", 3013 fname, dname); 3014 3015 return true; 3016 } 3017 3018 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ 3019 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit) 3020 3021 static bool virtnet_validate_features(struct virtio_device *vdev) 3022 { 3023 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) && 3024 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX, 3025 "VIRTIO_NET_F_CTRL_VQ") || 3026 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN, 3027 "VIRTIO_NET_F_CTRL_VQ") || 3028 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE, 3029 "VIRTIO_NET_F_CTRL_VQ") || 3030 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") || 3031 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR, 3032 "VIRTIO_NET_F_CTRL_VQ"))) { 3033 return false; 3034 } 3035 3036 return true; 3037 } 3038 3039 #define MIN_MTU ETH_MIN_MTU 3040 #define MAX_MTU ETH_MAX_MTU 3041 3042 static int virtnet_validate(struct virtio_device *vdev) 3043 { 3044 if (!vdev->config->get) { 3045 dev_err(&vdev->dev, "%s failure: config access disabled\n", 3046 __func__); 3047 return -EINVAL; 3048 } 3049 3050 if (!virtnet_validate_features(vdev)) 3051 return -EINVAL; 3052 3053 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 3054 int mtu = virtio_cread16(vdev, 3055 offsetof(struct virtio_net_config, 3056 mtu)); 3057 if (mtu < MIN_MTU) 3058 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU); 3059 } 3060 3061 return 0; 3062 } 3063 3064 static int virtnet_probe(struct virtio_device *vdev) 3065 { 3066 int i, err = -ENOMEM; 3067 struct net_device *dev; 3068 struct virtnet_info *vi; 3069 u16 max_queue_pairs; 3070 int mtu; 3071 3072 /* Find if host supports multiqueue virtio_net device */ 3073 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ, 3074 struct virtio_net_config, 3075 max_virtqueue_pairs, &max_queue_pairs); 3076 3077 /* We need at least 2 queue's */ 3078 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || 3079 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || 3080 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 3081 max_queue_pairs = 1; 3082 3083 /* Allocate ourselves a network device with room for our info */ 3084 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); 3085 if (!dev) 3086 return -ENOMEM; 3087 3088 /* Set up network device as normal. */ 3089 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE | 3090 IFF_TX_SKB_NO_LINEAR; 3091 dev->netdev_ops = &virtnet_netdev; 3092 dev->features = NETIF_F_HIGHDMA; 3093 3094 dev->ethtool_ops = &virtnet_ethtool_ops; 3095 SET_NETDEV_DEV(dev, &vdev->dev); 3096 3097 /* Do we support "hardware" checksums? */ 3098 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { 3099 /* This opens up the world of extra features. */ 3100 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG; 3101 if (csum) 3102 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG; 3103 3104 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { 3105 dev->hw_features |= NETIF_F_TSO 3106 | NETIF_F_TSO_ECN | NETIF_F_TSO6; 3107 } 3108 /* Individual feature bits: what can host handle? */ 3109 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) 3110 dev->hw_features |= NETIF_F_TSO; 3111 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) 3112 dev->hw_features |= NETIF_F_TSO6; 3113 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) 3114 dev->hw_features |= NETIF_F_TSO_ECN; 3115 3116 dev->features |= NETIF_F_GSO_ROBUST; 3117 3118 if (gso) 3119 dev->features |= dev->hw_features & NETIF_F_ALL_TSO; 3120 /* (!csum && gso) case will be fixed by register_netdev() */ 3121 } 3122 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM)) 3123 dev->features |= NETIF_F_RXCSUM; 3124 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || 3125 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6)) 3126 dev->features |= NETIF_F_GRO_HW; 3127 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) 3128 dev->hw_features |= NETIF_F_GRO_HW; 3129 3130 dev->vlan_features = dev->features; 3131 3132 /* MTU range: 68 - 65535 */ 3133 dev->min_mtu = MIN_MTU; 3134 dev->max_mtu = MAX_MTU; 3135 3136 /* Configuration may specify what MAC to use. Otherwise random. */ 3137 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) 3138 virtio_cread_bytes(vdev, 3139 offsetof(struct virtio_net_config, mac), 3140 dev->dev_addr, dev->addr_len); 3141 else 3142 eth_hw_addr_random(dev); 3143 3144 /* Set up our device-specific information */ 3145 vi = netdev_priv(dev); 3146 vi->dev = dev; 3147 vi->vdev = vdev; 3148 vdev->priv = vi; 3149 3150 INIT_WORK(&vi->config_work, virtnet_config_changed_work); 3151 3152 /* If we can receive ANY GSO packets, we must allocate large ones. */ 3153 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || 3154 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) || 3155 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) || 3156 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO)) 3157 vi->big_packets = true; 3158 3159 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) 3160 vi->mergeable_rx_bufs = true; 3161 3162 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) || 3163 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 3164 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); 3165 else 3166 vi->hdr_len = sizeof(struct virtio_net_hdr); 3167 3168 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) || 3169 virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) 3170 vi->any_header_sg = true; 3171 3172 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) 3173 vi->has_cvq = true; 3174 3175 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { 3176 mtu = virtio_cread16(vdev, 3177 offsetof(struct virtio_net_config, 3178 mtu)); 3179 if (mtu < dev->min_mtu) { 3180 /* Should never trigger: MTU was previously validated 3181 * in virtnet_validate. 3182 */ 3183 dev_err(&vdev->dev, 3184 "device MTU appears to have changed it is now %d < %d", 3185 mtu, dev->min_mtu); 3186 err = -EINVAL; 3187 goto free; 3188 } 3189 3190 dev->mtu = mtu; 3191 dev->max_mtu = mtu; 3192 3193 /* TODO: size buffers correctly in this case. */ 3194 if (dev->mtu > ETH_DATA_LEN) 3195 vi->big_packets = true; 3196 } 3197 3198 if (vi->any_header_sg) 3199 dev->needed_headroom = vi->hdr_len; 3200 3201 /* Enable multiqueue by default */ 3202 if (num_online_cpus() >= max_queue_pairs) 3203 vi->curr_queue_pairs = max_queue_pairs; 3204 else 3205 vi->curr_queue_pairs = num_online_cpus(); 3206 vi->max_queue_pairs = max_queue_pairs; 3207 3208 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ 3209 err = init_vqs(vi); 3210 if (err) 3211 goto free; 3212 3213 #ifdef CONFIG_SYSFS 3214 if (vi->mergeable_rx_bufs) 3215 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group; 3216 #endif 3217 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs); 3218 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs); 3219 3220 virtnet_init_settings(dev); 3221 3222 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) { 3223 vi->failover = net_failover_create(vi->dev); 3224 if (IS_ERR(vi->failover)) { 3225 err = PTR_ERR(vi->failover); 3226 goto free_vqs; 3227 } 3228 } 3229 3230 err = register_netdev(dev); 3231 if (err) { 3232 pr_debug("virtio_net: registering device failed\n"); 3233 goto free_failover; 3234 } 3235 3236 virtio_device_ready(vdev); 3237 3238 err = virtnet_cpu_notif_add(vi); 3239 if (err) { 3240 pr_debug("virtio_net: registering cpu notifier failed\n"); 3241 goto free_unregister_netdev; 3242 } 3243 3244 virtnet_set_queues(vi, vi->curr_queue_pairs); 3245 3246 /* Assume link up if device can't report link status, 3247 otherwise get link status from config. */ 3248 netif_carrier_off(dev); 3249 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { 3250 schedule_work(&vi->config_work); 3251 } else { 3252 vi->status = VIRTIO_NET_S_LINK_UP; 3253 virtnet_update_settings(vi); 3254 netif_carrier_on(dev); 3255 } 3256 3257 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++) 3258 if (virtio_has_feature(vi->vdev, guest_offloads[i])) 3259 set_bit(guest_offloads[i], &vi->guest_offloads); 3260 vi->guest_offloads_capable = vi->guest_offloads; 3261 3262 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", 3263 dev->name, max_queue_pairs); 3264 3265 return 0; 3266 3267 free_unregister_netdev: 3268 vi->vdev->config->reset(vdev); 3269 3270 unregister_netdev(dev); 3271 free_failover: 3272 net_failover_destroy(vi->failover); 3273 free_vqs: 3274 cancel_delayed_work_sync(&vi->refill); 3275 free_receive_page_frags(vi); 3276 virtnet_del_vqs(vi); 3277 free: 3278 free_netdev(dev); 3279 return err; 3280 } 3281 3282 static void remove_vq_common(struct virtnet_info *vi) 3283 { 3284 vi->vdev->config->reset(vi->vdev); 3285 3286 /* Free unused buffers in both send and recv, if any. */ 3287 free_unused_bufs(vi); 3288 3289 free_receive_bufs(vi); 3290 3291 free_receive_page_frags(vi); 3292 3293 virtnet_del_vqs(vi); 3294 } 3295 3296 static void virtnet_remove(struct virtio_device *vdev) 3297 { 3298 struct virtnet_info *vi = vdev->priv; 3299 3300 virtnet_cpu_notif_remove(vi); 3301 3302 /* Make sure no work handler is accessing the device. */ 3303 flush_work(&vi->config_work); 3304 3305 unregister_netdev(vi->dev); 3306 3307 net_failover_destroy(vi->failover); 3308 3309 remove_vq_common(vi); 3310 3311 free_netdev(vi->dev); 3312 } 3313 3314 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev) 3315 { 3316 struct virtnet_info *vi = vdev->priv; 3317 3318 virtnet_cpu_notif_remove(vi); 3319 virtnet_freeze_down(vdev); 3320 remove_vq_common(vi); 3321 3322 return 0; 3323 } 3324 3325 static __maybe_unused int virtnet_restore(struct virtio_device *vdev) 3326 { 3327 struct virtnet_info *vi = vdev->priv; 3328 int err; 3329 3330 err = virtnet_restore_up(vdev); 3331 if (err) 3332 return err; 3333 virtnet_set_queues(vi, vi->curr_queue_pairs); 3334 3335 err = virtnet_cpu_notif_add(vi); 3336 if (err) { 3337 virtnet_freeze_down(vdev); 3338 remove_vq_common(vi); 3339 return err; 3340 } 3341 3342 return 0; 3343 } 3344 3345 static struct virtio_device_id id_table[] = { 3346 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, 3347 { 0 }, 3348 }; 3349 3350 #define VIRTNET_FEATURES \ 3351 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ 3352 VIRTIO_NET_F_MAC, \ 3353 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ 3354 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ 3355 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ 3356 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ 3357 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ 3358 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ 3359 VIRTIO_NET_F_CTRL_MAC_ADDR, \ 3360 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ 3361 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY 3362 3363 static unsigned int features[] = { 3364 VIRTNET_FEATURES, 3365 }; 3366 3367 static unsigned int features_legacy[] = { 3368 VIRTNET_FEATURES, 3369 VIRTIO_NET_F_GSO, 3370 VIRTIO_F_ANY_LAYOUT, 3371 }; 3372 3373 static struct virtio_driver virtio_net_driver = { 3374 .feature_table = features, 3375 .feature_table_size = ARRAY_SIZE(features), 3376 .feature_table_legacy = features_legacy, 3377 .feature_table_size_legacy = ARRAY_SIZE(features_legacy), 3378 .driver.name = KBUILD_MODNAME, 3379 .driver.owner = THIS_MODULE, 3380 .id_table = id_table, 3381 .validate = virtnet_validate, 3382 .probe = virtnet_probe, 3383 .remove = virtnet_remove, 3384 .config_changed = virtnet_config_changed, 3385 #ifdef CONFIG_PM_SLEEP 3386 .freeze = virtnet_freeze, 3387 .restore = virtnet_restore, 3388 #endif 3389 }; 3390 3391 static __init int virtio_net_driver_init(void) 3392 { 3393 int ret; 3394 3395 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online", 3396 virtnet_cpu_online, 3397 virtnet_cpu_down_prep); 3398 if (ret < 0) 3399 goto out; 3400 virtionet_online = ret; 3401 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead", 3402 NULL, virtnet_cpu_dead); 3403 if (ret) 3404 goto err_dead; 3405 3406 ret = register_virtio_driver(&virtio_net_driver); 3407 if (ret) 3408 goto err_virtio; 3409 return 0; 3410 err_virtio: 3411 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 3412 err_dead: 3413 cpuhp_remove_multi_state(virtionet_online); 3414 out: 3415 return ret; 3416 } 3417 module_init(virtio_net_driver_init); 3418 3419 static __exit void virtio_net_driver_exit(void) 3420 { 3421 unregister_virtio_driver(&virtio_net_driver); 3422 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); 3423 cpuhp_remove_multi_state(virtionet_online); 3424 } 3425 module_exit(virtio_net_driver_exit); 3426 3427 MODULE_DEVICE_TABLE(virtio, id_table); 3428 MODULE_DESCRIPTION("Virtio network driver"); 3429 MODULE_LICENSE("GPL"); 3430