0001
0002
0003
0004
0005
0006
0007 #include <linux/netdevice.h>
0008 #include <linux/etherdevice.h>
0009 #include <linux/ethtool.h>
0010 #include <linux/module.h>
0011 #include <linux/virtio.h>
0012 #include <linux/virtio_net.h>
0013 #include <linux/bpf.h>
0014 #include <linux/bpf_trace.h>
0015 #include <linux/scatterlist.h>
0016 #include <linux/if_vlan.h>
0017 #include <linux/slab.h>
0018 #include <linux/cpu.h>
0019 #include <linux/average.h>
0020 #include <linux/filter.h>
0021 #include <linux/kernel.h>
0022 #include <net/route.h>
0023 #include <net/xdp.h>
0024 #include <net/net_failover.h>
0025
0026 static int napi_weight = NAPI_POLL_WEIGHT;
0027 module_param(napi_weight, int, 0444);
0028
0029 static bool csum = true, gso = true, napi_tx = true;
0030 module_param(csum, bool, 0444);
0031 module_param(gso, bool, 0444);
0032 module_param(napi_tx, bool, 0644);
0033
0034
0035 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
0036 #define GOOD_COPY_LEN 128
0037
0038 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
0039
0040
0041 #define VIRTIO_XDP_HEADROOM 256
0042
0043
0044 #define VIRTIO_XDP_TX BIT(0)
0045 #define VIRTIO_XDP_REDIR BIT(1)
0046
0047 #define VIRTIO_XDP_FLAG BIT(0)
0048
0049
0050
0051
0052
0053
0054 DECLARE_EWMA(pkt_len, 0, 64)
0055
0056 #define VIRTNET_DRIVER_VERSION "1.0.0"
0057
0058 static const unsigned long guest_offloads[] = {
0059 VIRTIO_NET_F_GUEST_TSO4,
0060 VIRTIO_NET_F_GUEST_TSO6,
0061 VIRTIO_NET_F_GUEST_ECN,
0062 VIRTIO_NET_F_GUEST_UFO,
0063 VIRTIO_NET_F_GUEST_CSUM
0064 };
0065
0066 #define GUEST_OFFLOAD_GRO_HW_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
0067 (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \
0068 (1ULL << VIRTIO_NET_F_GUEST_ECN) | \
0069 (1ULL << VIRTIO_NET_F_GUEST_UFO))
0070
0071 struct virtnet_stat_desc {
0072 char desc[ETH_GSTRING_LEN];
0073 size_t offset;
0074 };
0075
0076 struct virtnet_sq_stats {
0077 struct u64_stats_sync syncp;
0078 u64 packets;
0079 u64 bytes;
0080 u64 xdp_tx;
0081 u64 xdp_tx_drops;
0082 u64 kicks;
0083 u64 tx_timeouts;
0084 };
0085
0086 struct virtnet_rq_stats {
0087 struct u64_stats_sync syncp;
0088 u64 packets;
0089 u64 bytes;
0090 u64 drops;
0091 u64 xdp_packets;
0092 u64 xdp_tx;
0093 u64 xdp_redirects;
0094 u64 xdp_drops;
0095 u64 kicks;
0096 };
0097
0098 #define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
0099 #define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
0100
0101 static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
0102 { "packets", VIRTNET_SQ_STAT(packets) },
0103 { "bytes", VIRTNET_SQ_STAT(bytes) },
0104 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
0105 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
0106 { "kicks", VIRTNET_SQ_STAT(kicks) },
0107 { "tx_timeouts", VIRTNET_SQ_STAT(tx_timeouts) },
0108 };
0109
0110 static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
0111 { "packets", VIRTNET_RQ_STAT(packets) },
0112 { "bytes", VIRTNET_RQ_STAT(bytes) },
0113 { "drops", VIRTNET_RQ_STAT(drops) },
0114 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
0115 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
0116 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
0117 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
0118 { "kicks", VIRTNET_RQ_STAT(kicks) },
0119 };
0120
0121 #define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
0122 #define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
0123
0124
0125 struct send_queue {
0126
0127 struct virtqueue *vq;
0128
0129
0130 struct scatterlist sg[MAX_SKB_FRAGS + 2];
0131
0132
0133 char name[40];
0134
0135 struct virtnet_sq_stats stats;
0136
0137 struct napi_struct napi;
0138
0139
0140 bool reset;
0141 };
0142
0143
0144 struct receive_queue {
0145
0146 struct virtqueue *vq;
0147
0148 struct napi_struct napi;
0149
0150 struct bpf_prog __rcu *xdp_prog;
0151
0152 struct virtnet_rq_stats stats;
0153
0154
0155 struct page *pages;
0156
0157
0158 struct ewma_pkt_len mrg_avg_pkt_len;
0159
0160
0161 struct page_frag alloc_frag;
0162
0163
0164 struct scatterlist sg[MAX_SKB_FRAGS + 2];
0165
0166
0167 unsigned int min_buf_len;
0168
0169
0170 char name[40];
0171
0172 struct xdp_rxq_info xdp_rxq;
0173 };
0174
0175
0176
0177
0178
0179
0180
0181 #define VIRTIO_NET_RSS_MAX_KEY_SIZE 40
0182 #define VIRTIO_NET_RSS_MAX_TABLE_LEN 128
0183 struct virtio_net_ctrl_rss {
0184 u32 hash_types;
0185 u16 indirection_table_mask;
0186 u16 unclassified_queue;
0187 u16 indirection_table[VIRTIO_NET_RSS_MAX_TABLE_LEN];
0188 u16 max_tx_vq;
0189 u8 hash_key_length;
0190 u8 key[VIRTIO_NET_RSS_MAX_KEY_SIZE];
0191 };
0192
0193
0194 struct control_buf {
0195 struct virtio_net_ctrl_hdr hdr;
0196 virtio_net_ctrl_ack status;
0197 struct virtio_net_ctrl_mq mq;
0198 u8 promisc;
0199 u8 allmulti;
0200 __virtio16 vid;
0201 __virtio64 offloads;
0202 struct virtio_net_ctrl_rss rss;
0203 };
0204
0205 struct virtnet_info {
0206 struct virtio_device *vdev;
0207 struct virtqueue *cvq;
0208 struct net_device *dev;
0209 struct send_queue *sq;
0210 struct receive_queue *rq;
0211 unsigned int status;
0212
0213
0214 u16 max_queue_pairs;
0215
0216
0217 u16 curr_queue_pairs;
0218
0219
0220 u16 xdp_queue_pairs;
0221
0222
0223 bool xdp_enabled;
0224
0225
0226 bool big_packets;
0227
0228
0229 bool mergeable_rx_bufs;
0230
0231
0232 bool has_rss;
0233 bool has_rss_hash_report;
0234 u8 rss_key_size;
0235 u16 rss_indir_table_size;
0236 u32 rss_hash_types_supported;
0237 u32 rss_hash_types_saved;
0238
0239
0240 bool has_cvq;
0241
0242
0243 bool any_header_sg;
0244
0245
0246 u8 hdr_len;
0247
0248
0249 struct delayed_work refill;
0250
0251
0252 bool refill_enabled;
0253
0254
0255 spinlock_t refill_lock;
0256
0257
0258 struct work_struct config_work;
0259
0260
0261 bool affinity_hint_set;
0262
0263
0264 struct hlist_node node;
0265 struct hlist_node node_dead;
0266
0267 struct control_buf *ctrl;
0268
0269
0270 u8 duplex;
0271 u32 speed;
0272
0273
0274 u32 tx_usecs;
0275 u32 rx_usecs;
0276 u32 tx_max_packets;
0277 u32 rx_max_packets;
0278
0279 unsigned long guest_offloads;
0280 unsigned long guest_offloads_capable;
0281
0282
0283 struct failover *failover;
0284 };
0285
0286 struct padded_vnet_hdr {
0287 struct virtio_net_hdr_v1_hash hdr;
0288
0289
0290
0291
0292
0293 char padding[12];
0294 };
0295
0296 static void virtnet_rq_free_unused_buf(struct virtqueue *vq, void *buf);
0297 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf);
0298
0299 static bool is_xdp_frame(void *ptr)
0300 {
0301 return (unsigned long)ptr & VIRTIO_XDP_FLAG;
0302 }
0303
0304 static void *xdp_to_ptr(struct xdp_frame *ptr)
0305 {
0306 return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG);
0307 }
0308
0309 static struct xdp_frame *ptr_to_xdp(void *ptr)
0310 {
0311 return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG);
0312 }
0313
0314
0315
0316
0317 static int vq2txq(struct virtqueue *vq)
0318 {
0319 return (vq->index - 1) / 2;
0320 }
0321
0322 static int txq2vq(int txq)
0323 {
0324 return txq * 2 + 1;
0325 }
0326
0327 static int vq2rxq(struct virtqueue *vq)
0328 {
0329 return vq->index / 2;
0330 }
0331
0332 static int rxq2vq(int rxq)
0333 {
0334 return rxq * 2;
0335 }
0336
0337 static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
0338 {
0339 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
0340 }
0341
0342
0343
0344
0345
0346 static void give_pages(struct receive_queue *rq, struct page *page)
0347 {
0348 struct page *end;
0349
0350
0351 for (end = page; end->private; end = (struct page *)end->private);
0352 end->private = (unsigned long)rq->pages;
0353 rq->pages = page;
0354 }
0355
0356 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
0357 {
0358 struct page *p = rq->pages;
0359
0360 if (p) {
0361 rq->pages = (struct page *)p->private;
0362
0363 p->private = 0;
0364 } else
0365 p = alloc_page(gfp_mask);
0366 return p;
0367 }
0368
0369 static void enable_delayed_refill(struct virtnet_info *vi)
0370 {
0371 spin_lock_bh(&vi->refill_lock);
0372 vi->refill_enabled = true;
0373 spin_unlock_bh(&vi->refill_lock);
0374 }
0375
0376 static void disable_delayed_refill(struct virtnet_info *vi)
0377 {
0378 spin_lock_bh(&vi->refill_lock);
0379 vi->refill_enabled = false;
0380 spin_unlock_bh(&vi->refill_lock);
0381 }
0382
0383 static void virtqueue_napi_schedule(struct napi_struct *napi,
0384 struct virtqueue *vq)
0385 {
0386 if (napi_schedule_prep(napi)) {
0387 virtqueue_disable_cb(vq);
0388 __napi_schedule(napi);
0389 }
0390 }
0391
0392 static void virtqueue_napi_complete(struct napi_struct *napi,
0393 struct virtqueue *vq, int processed)
0394 {
0395 int opaque;
0396
0397 opaque = virtqueue_enable_cb_prepare(vq);
0398 if (napi_complete_done(napi, processed)) {
0399 if (unlikely(virtqueue_poll(vq, opaque)))
0400 virtqueue_napi_schedule(napi, vq);
0401 } else {
0402 virtqueue_disable_cb(vq);
0403 }
0404 }
0405
0406 static void skb_xmit_done(struct virtqueue *vq)
0407 {
0408 struct virtnet_info *vi = vq->vdev->priv;
0409 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
0410
0411
0412 virtqueue_disable_cb(vq);
0413
0414 if (napi->weight)
0415 virtqueue_napi_schedule(napi, vq);
0416 else
0417
0418 netif_wake_subqueue(vi->dev, vq2txq(vq));
0419 }
0420
0421 #define MRG_CTX_HEADER_SHIFT 22
0422 static void *mergeable_len_to_ctx(unsigned int truesize,
0423 unsigned int headroom)
0424 {
0425 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
0426 }
0427
0428 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
0429 {
0430 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
0431 }
0432
0433 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
0434 {
0435 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
0436 }
0437
0438
0439 static struct sk_buff *page_to_skb(struct virtnet_info *vi,
0440 struct receive_queue *rq,
0441 struct page *page, unsigned int offset,
0442 unsigned int len, unsigned int truesize,
0443 bool hdr_valid, unsigned int metasize,
0444 unsigned int headroom)
0445 {
0446 struct sk_buff *skb;
0447 struct virtio_net_hdr_mrg_rxbuf *hdr;
0448 unsigned int copy, hdr_len, hdr_padded_len;
0449 struct page *page_to_free = NULL;
0450 int tailroom, shinfo_size;
0451 char *p, *hdr_p, *buf;
0452
0453 p = page_address(page) + offset;
0454 hdr_p = p;
0455
0456 hdr_len = vi->hdr_len;
0457 if (vi->mergeable_rx_bufs)
0458 hdr_padded_len = hdr_len;
0459 else
0460 hdr_padded_len = sizeof(struct padded_vnet_hdr);
0461
0462
0463
0464
0465
0466
0467
0468
0469 truesize = headroom ? PAGE_SIZE : truesize;
0470 tailroom = truesize - headroom;
0471 buf = p - headroom;
0472
0473 len -= hdr_len;
0474 offset += hdr_padded_len;
0475 p += hdr_padded_len;
0476 tailroom -= hdr_padded_len + len;
0477
0478 shinfo_size = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
0479
0480
0481 if (!NET_IP_ALIGN && len > GOOD_COPY_LEN && tailroom >= shinfo_size) {
0482 skb = build_skb(buf, truesize);
0483 if (unlikely(!skb))
0484 return NULL;
0485
0486 skb_reserve(skb, p - buf);
0487 skb_put(skb, len);
0488
0489 page = (struct page *)page->private;
0490 if (page)
0491 give_pages(rq, page);
0492 goto ok;
0493 }
0494
0495
0496 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
0497 if (unlikely(!skb))
0498 return NULL;
0499
0500
0501
0502
0503 if (len <= skb_tailroom(skb))
0504 copy = len;
0505 else
0506 copy = ETH_HLEN + metasize;
0507 skb_put_data(skb, p, copy);
0508
0509 len -= copy;
0510 offset += copy;
0511
0512 if (vi->mergeable_rx_bufs) {
0513 if (len)
0514 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
0515 else
0516 page_to_free = page;
0517 goto ok;
0518 }
0519
0520
0521
0522
0523
0524
0525
0526 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
0527 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
0528 dev_kfree_skb(skb);
0529 return NULL;
0530 }
0531 BUG_ON(offset >= PAGE_SIZE);
0532 while (len) {
0533 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
0534 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
0535 frag_size, truesize);
0536 len -= frag_size;
0537 page = (struct page *)page->private;
0538 offset = 0;
0539 }
0540
0541 if (page)
0542 give_pages(rq, page);
0543
0544 ok:
0545
0546 if (hdr_valid) {
0547 hdr = skb_vnet_hdr(skb);
0548 memcpy(hdr, hdr_p, hdr_len);
0549 }
0550 if (page_to_free)
0551 put_page(page_to_free);
0552
0553 if (metasize) {
0554 __skb_pull(skb, metasize);
0555 skb_metadata_set(skb, metasize);
0556 }
0557
0558 return skb;
0559 }
0560
0561 static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
0562 struct send_queue *sq,
0563 struct xdp_frame *xdpf)
0564 {
0565 struct virtio_net_hdr_mrg_rxbuf *hdr;
0566 int err;
0567
0568 if (unlikely(xdpf->headroom < vi->hdr_len))
0569 return -EOVERFLOW;
0570
0571
0572 xdpf->data -= vi->hdr_len;
0573
0574 hdr = xdpf->data;
0575 memset(hdr, 0, vi->hdr_len);
0576 xdpf->len += vi->hdr_len;
0577
0578 sg_init_one(sq->sg, xdpf->data, xdpf->len);
0579
0580 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp_to_ptr(xdpf),
0581 GFP_ATOMIC);
0582 if (unlikely(err))
0583 return -ENOSPC;
0584
0585 return 0;
0586 }
0587
0588
0589
0590
0591
0592
0593
0594
0595
0596 #define virtnet_xdp_get_sq(vi) ({ \
0597 int cpu = smp_processor_id(); \
0598 struct netdev_queue *txq; \
0599 typeof(vi) v = (vi); \
0600 unsigned int qp; \
0601 \
0602 if (v->curr_queue_pairs > nr_cpu_ids) { \
0603 qp = v->curr_queue_pairs - v->xdp_queue_pairs; \
0604 qp += cpu; \
0605 txq = netdev_get_tx_queue(v->dev, qp); \
0606 __netif_tx_acquire(txq); \
0607 } else { \
0608 qp = cpu % v->curr_queue_pairs; \
0609 txq = netdev_get_tx_queue(v->dev, qp); \
0610 __netif_tx_lock(txq, cpu); \
0611 } \
0612 v->sq + qp; \
0613 })
0614
0615 #define virtnet_xdp_put_sq(vi, q) { \
0616 struct netdev_queue *txq; \
0617 typeof(vi) v = (vi); \
0618 \
0619 txq = netdev_get_tx_queue(v->dev, (q) - v->sq); \
0620 if (v->curr_queue_pairs > nr_cpu_ids) \
0621 __netif_tx_release(txq); \
0622 else \
0623 __netif_tx_unlock(txq); \
0624 }
0625
0626 static int virtnet_xdp_xmit(struct net_device *dev,
0627 int n, struct xdp_frame **frames, u32 flags)
0628 {
0629 struct virtnet_info *vi = netdev_priv(dev);
0630 struct receive_queue *rq = vi->rq;
0631 struct bpf_prog *xdp_prog;
0632 struct send_queue *sq;
0633 unsigned int len;
0634 int packets = 0;
0635 int bytes = 0;
0636 int nxmit = 0;
0637 int kicks = 0;
0638 void *ptr;
0639 int ret;
0640 int i;
0641
0642
0643
0644
0645 xdp_prog = rcu_access_pointer(rq->xdp_prog);
0646 if (!xdp_prog)
0647 return -ENXIO;
0648
0649 sq = virtnet_xdp_get_sq(vi);
0650
0651 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
0652 ret = -EINVAL;
0653 goto out;
0654 }
0655
0656
0657 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
0658 if (likely(is_xdp_frame(ptr))) {
0659 struct xdp_frame *frame = ptr_to_xdp(ptr);
0660
0661 bytes += frame->len;
0662 xdp_return_frame(frame);
0663 } else {
0664 struct sk_buff *skb = ptr;
0665
0666 bytes += skb->len;
0667 napi_consume_skb(skb, false);
0668 }
0669 packets++;
0670 }
0671
0672 for (i = 0; i < n; i++) {
0673 struct xdp_frame *xdpf = frames[i];
0674
0675 if (__virtnet_xdp_xmit_one(vi, sq, xdpf))
0676 break;
0677 nxmit++;
0678 }
0679 ret = nxmit;
0680
0681 if (flags & XDP_XMIT_FLUSH) {
0682 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
0683 kicks = 1;
0684 }
0685 out:
0686 u64_stats_update_begin(&sq->stats.syncp);
0687 sq->stats.bytes += bytes;
0688 sq->stats.packets += packets;
0689 sq->stats.xdp_tx += n;
0690 sq->stats.xdp_tx_drops += n - nxmit;
0691 sq->stats.kicks += kicks;
0692 u64_stats_update_end(&sq->stats.syncp);
0693
0694 virtnet_xdp_put_sq(vi, sq);
0695 return ret;
0696 }
0697
0698 static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
0699 {
0700 return vi->xdp_enabled ? VIRTIO_XDP_HEADROOM : 0;
0701 }
0702
0703
0704
0705
0706
0707
0708
0709
0710
0711
0712
0713
0714
0715
0716
0717 static struct page *xdp_linearize_page(struct receive_queue *rq,
0718 u16 *num_buf,
0719 struct page *p,
0720 int offset,
0721 int page_off,
0722 unsigned int *len)
0723 {
0724 struct page *page = alloc_page(GFP_ATOMIC);
0725
0726 if (!page)
0727 return NULL;
0728
0729 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
0730 page_off += *len;
0731
0732 while (--*num_buf) {
0733 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
0734 unsigned int buflen;
0735 void *buf;
0736 int off;
0737
0738 buf = virtqueue_get_buf(rq->vq, &buflen);
0739 if (unlikely(!buf))
0740 goto err_buf;
0741
0742 p = virt_to_head_page(buf);
0743 off = buf - page_address(p);
0744
0745
0746
0747
0748 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
0749 put_page(p);
0750 goto err_buf;
0751 }
0752
0753 memcpy(page_address(page) + page_off,
0754 page_address(p) + off, buflen);
0755 page_off += buflen;
0756 put_page(p);
0757 }
0758
0759
0760 *len = page_off - VIRTIO_XDP_HEADROOM;
0761 return page;
0762 err_buf:
0763 __free_pages(page, 0);
0764 return NULL;
0765 }
0766
0767 static struct sk_buff *receive_small(struct net_device *dev,
0768 struct virtnet_info *vi,
0769 struct receive_queue *rq,
0770 void *buf, void *ctx,
0771 unsigned int len,
0772 unsigned int *xdp_xmit,
0773 struct virtnet_rq_stats *stats)
0774 {
0775 struct sk_buff *skb;
0776 struct bpf_prog *xdp_prog;
0777 unsigned int xdp_headroom = (unsigned long)ctx;
0778 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
0779 unsigned int headroom = vi->hdr_len + header_offset;
0780 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
0781 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
0782 struct page *page = virt_to_head_page(buf);
0783 unsigned int delta = 0;
0784 struct page *xdp_page;
0785 int err;
0786 unsigned int metasize = 0;
0787
0788 len -= vi->hdr_len;
0789 stats->bytes += len;
0790
0791 if (unlikely(len > GOOD_PACKET_LEN)) {
0792 pr_debug("%s: rx error: len %u exceeds max size %d\n",
0793 dev->name, len, GOOD_PACKET_LEN);
0794 dev->stats.rx_length_errors++;
0795 goto err;
0796 }
0797
0798 if (likely(!vi->xdp_enabled)) {
0799 xdp_prog = NULL;
0800 goto skip_xdp;
0801 }
0802
0803 rcu_read_lock();
0804 xdp_prog = rcu_dereference(rq->xdp_prog);
0805 if (xdp_prog) {
0806 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
0807 struct xdp_frame *xdpf;
0808 struct xdp_buff xdp;
0809 void *orig_data;
0810 u32 act;
0811
0812 if (unlikely(hdr->hdr.gso_type))
0813 goto err_xdp;
0814
0815 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
0816 int offset = buf - page_address(page) + header_offset;
0817 unsigned int tlen = len + vi->hdr_len;
0818 u16 num_buf = 1;
0819
0820 xdp_headroom = virtnet_get_headroom(vi);
0821 header_offset = VIRTNET_RX_PAD + xdp_headroom;
0822 headroom = vi->hdr_len + header_offset;
0823 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
0824 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
0825 xdp_page = xdp_linearize_page(rq, &num_buf, page,
0826 offset, header_offset,
0827 &tlen);
0828 if (!xdp_page)
0829 goto err_xdp;
0830
0831 buf = page_address(xdp_page);
0832 put_page(page);
0833 page = xdp_page;
0834 }
0835
0836 xdp_init_buff(&xdp, buflen, &rq->xdp_rxq);
0837 xdp_prepare_buff(&xdp, buf + VIRTNET_RX_PAD + vi->hdr_len,
0838 xdp_headroom, len, true);
0839 orig_data = xdp.data;
0840 act = bpf_prog_run_xdp(xdp_prog, &xdp);
0841 stats->xdp_packets++;
0842
0843 switch (act) {
0844 case XDP_PASS:
0845
0846 delta = orig_data - xdp.data;
0847 len = xdp.data_end - xdp.data;
0848 metasize = xdp.data - xdp.data_meta;
0849 break;
0850 case XDP_TX:
0851 stats->xdp_tx++;
0852 xdpf = xdp_convert_buff_to_frame(&xdp);
0853 if (unlikely(!xdpf))
0854 goto err_xdp;
0855 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
0856 if (unlikely(!err)) {
0857 xdp_return_frame_rx_napi(xdpf);
0858 } else if (unlikely(err < 0)) {
0859 trace_xdp_exception(vi->dev, xdp_prog, act);
0860 goto err_xdp;
0861 }
0862 *xdp_xmit |= VIRTIO_XDP_TX;
0863 rcu_read_unlock();
0864 goto xdp_xmit;
0865 case XDP_REDIRECT:
0866 stats->xdp_redirects++;
0867 err = xdp_do_redirect(dev, &xdp, xdp_prog);
0868 if (err)
0869 goto err_xdp;
0870 *xdp_xmit |= VIRTIO_XDP_REDIR;
0871 rcu_read_unlock();
0872 goto xdp_xmit;
0873 default:
0874 bpf_warn_invalid_xdp_action(vi->dev, xdp_prog, act);
0875 fallthrough;
0876 case XDP_ABORTED:
0877 trace_xdp_exception(vi->dev, xdp_prog, act);
0878 goto err_xdp;
0879 case XDP_DROP:
0880 goto err_xdp;
0881 }
0882 }
0883 rcu_read_unlock();
0884
0885 skip_xdp:
0886 skb = build_skb(buf, buflen);
0887 if (!skb)
0888 goto err;
0889 skb_reserve(skb, headroom - delta);
0890 skb_put(skb, len);
0891 if (!xdp_prog) {
0892 buf += header_offset;
0893 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
0894 }
0895
0896 if (metasize)
0897 skb_metadata_set(skb, metasize);
0898
0899 return skb;
0900
0901 err_xdp:
0902 rcu_read_unlock();
0903 stats->xdp_drops++;
0904 err:
0905 stats->drops++;
0906 put_page(page);
0907 xdp_xmit:
0908 return NULL;
0909 }
0910
0911 static struct sk_buff *receive_big(struct net_device *dev,
0912 struct virtnet_info *vi,
0913 struct receive_queue *rq,
0914 void *buf,
0915 unsigned int len,
0916 struct virtnet_rq_stats *stats)
0917 {
0918 struct page *page = buf;
0919 struct sk_buff *skb =
0920 page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, true, 0, 0);
0921
0922 stats->bytes += len - vi->hdr_len;
0923 if (unlikely(!skb))
0924 goto err;
0925
0926 return skb;
0927
0928 err:
0929 stats->drops++;
0930 give_pages(rq, page);
0931 return NULL;
0932 }
0933
0934 static struct sk_buff *receive_mergeable(struct net_device *dev,
0935 struct virtnet_info *vi,
0936 struct receive_queue *rq,
0937 void *buf,
0938 void *ctx,
0939 unsigned int len,
0940 unsigned int *xdp_xmit,
0941 struct virtnet_rq_stats *stats)
0942 {
0943 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
0944 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
0945 struct page *page = virt_to_head_page(buf);
0946 int offset = buf - page_address(page);
0947 struct sk_buff *head_skb, *curr_skb;
0948 struct bpf_prog *xdp_prog;
0949 unsigned int truesize = mergeable_ctx_to_truesize(ctx);
0950 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
0951 unsigned int metasize = 0;
0952 unsigned int frame_sz;
0953 int err;
0954
0955 head_skb = NULL;
0956 stats->bytes += len - vi->hdr_len;
0957
0958 if (unlikely(len > truesize)) {
0959 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
0960 dev->name, len, (unsigned long)ctx);
0961 dev->stats.rx_length_errors++;
0962 goto err_skb;
0963 }
0964
0965 if (likely(!vi->xdp_enabled)) {
0966 xdp_prog = NULL;
0967 goto skip_xdp;
0968 }
0969
0970 rcu_read_lock();
0971 xdp_prog = rcu_dereference(rq->xdp_prog);
0972 if (xdp_prog) {
0973 struct xdp_frame *xdpf;
0974 struct page *xdp_page;
0975 struct xdp_buff xdp;
0976 void *data;
0977 u32 act;
0978
0979
0980
0981
0982
0983 if (unlikely(hdr->hdr.gso_type))
0984 goto err_xdp;
0985
0986
0987
0988
0989 frame_sz = headroom ? PAGE_SIZE : truesize;
0990
0991
0992
0993
0994
0995
0996
0997 if (unlikely(num_buf > 1 ||
0998 headroom < virtnet_get_headroom(vi))) {
0999
1000 xdp_page = xdp_linearize_page(rq, &num_buf,
1001 page, offset,
1002 VIRTIO_XDP_HEADROOM,
1003 &len);
1004 frame_sz = PAGE_SIZE;
1005
1006 if (!xdp_page)
1007 goto err_xdp;
1008 offset = VIRTIO_XDP_HEADROOM;
1009 } else {
1010 xdp_page = page;
1011 }
1012
1013
1014
1015
1016 data = page_address(xdp_page) + offset;
1017 xdp_init_buff(&xdp, frame_sz - vi->hdr_len, &rq->xdp_rxq);
1018 xdp_prepare_buff(&xdp, data - VIRTIO_XDP_HEADROOM + vi->hdr_len,
1019 VIRTIO_XDP_HEADROOM, len - vi->hdr_len, true);
1020
1021 act = bpf_prog_run_xdp(xdp_prog, &xdp);
1022 stats->xdp_packets++;
1023
1024 switch (act) {
1025 case XDP_PASS:
1026 metasize = xdp.data - xdp.data_meta;
1027
1028
1029
1030
1031
1032
1033 offset = xdp.data - page_address(xdp_page) -
1034 vi->hdr_len - metasize;
1035
1036
1037
1038
1039 len = xdp.data_end - xdp.data + vi->hdr_len + metasize;
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056 headroom = xdp.data - xdp.data_hard_start - metasize;
1057
1058
1059 if (unlikely(xdp_page != page)) {
1060 rcu_read_unlock();
1061 put_page(page);
1062 head_skb = page_to_skb(vi, rq, xdp_page, offset,
1063 len, PAGE_SIZE, false,
1064 metasize,
1065 headroom);
1066 return head_skb;
1067 }
1068 break;
1069 case XDP_TX:
1070 stats->xdp_tx++;
1071 xdpf = xdp_convert_buff_to_frame(&xdp);
1072 if (unlikely(!xdpf)) {
1073 if (unlikely(xdp_page != page))
1074 put_page(xdp_page);
1075 goto err_xdp;
1076 }
1077 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
1078 if (unlikely(!err)) {
1079 xdp_return_frame_rx_napi(xdpf);
1080 } else if (unlikely(err < 0)) {
1081 trace_xdp_exception(vi->dev, xdp_prog, act);
1082 if (unlikely(xdp_page != page))
1083 put_page(xdp_page);
1084 goto err_xdp;
1085 }
1086 *xdp_xmit |= VIRTIO_XDP_TX;
1087 if (unlikely(xdp_page != page))
1088 put_page(page);
1089 rcu_read_unlock();
1090 goto xdp_xmit;
1091 case XDP_REDIRECT:
1092 stats->xdp_redirects++;
1093 err = xdp_do_redirect(dev, &xdp, xdp_prog);
1094 if (err) {
1095 if (unlikely(xdp_page != page))
1096 put_page(xdp_page);
1097 goto err_xdp;
1098 }
1099 *xdp_xmit |= VIRTIO_XDP_REDIR;
1100 if (unlikely(xdp_page != page))
1101 put_page(page);
1102 rcu_read_unlock();
1103 goto xdp_xmit;
1104 default:
1105 bpf_warn_invalid_xdp_action(vi->dev, xdp_prog, act);
1106 fallthrough;
1107 case XDP_ABORTED:
1108 trace_xdp_exception(vi->dev, xdp_prog, act);
1109 fallthrough;
1110 case XDP_DROP:
1111 if (unlikely(xdp_page != page))
1112 __free_pages(xdp_page, 0);
1113 goto err_xdp;
1114 }
1115 }
1116 rcu_read_unlock();
1117
1118 skip_xdp:
1119 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog,
1120 metasize, headroom);
1121 curr_skb = head_skb;
1122
1123 if (unlikely(!curr_skb))
1124 goto err_skb;
1125 while (--num_buf) {
1126 int num_skb_frags;
1127
1128 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
1129 if (unlikely(!buf)) {
1130 pr_debug("%s: rx error: %d buffers out of %d missing\n",
1131 dev->name, num_buf,
1132 virtio16_to_cpu(vi->vdev,
1133 hdr->num_buffers));
1134 dev->stats.rx_length_errors++;
1135 goto err_buf;
1136 }
1137
1138 stats->bytes += len;
1139 page = virt_to_head_page(buf);
1140
1141 truesize = mergeable_ctx_to_truesize(ctx);
1142 if (unlikely(len > truesize)) {
1143 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
1144 dev->name, len, (unsigned long)ctx);
1145 dev->stats.rx_length_errors++;
1146 goto err_skb;
1147 }
1148
1149 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
1150 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
1151 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
1152
1153 if (unlikely(!nskb))
1154 goto err_skb;
1155 if (curr_skb == head_skb)
1156 skb_shinfo(curr_skb)->frag_list = nskb;
1157 else
1158 curr_skb->next = nskb;
1159 curr_skb = nskb;
1160 head_skb->truesize += nskb->truesize;
1161 num_skb_frags = 0;
1162 }
1163 if (curr_skb != head_skb) {
1164 head_skb->data_len += len;
1165 head_skb->len += len;
1166 head_skb->truesize += truesize;
1167 }
1168 offset = buf - page_address(page);
1169 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
1170 put_page(page);
1171 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
1172 len, truesize);
1173 } else {
1174 skb_add_rx_frag(curr_skb, num_skb_frags, page,
1175 offset, len, truesize);
1176 }
1177 }
1178
1179 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
1180 return head_skb;
1181
1182 err_xdp:
1183 rcu_read_unlock();
1184 stats->xdp_drops++;
1185 err_skb:
1186 put_page(page);
1187 while (num_buf-- > 1) {
1188 buf = virtqueue_get_buf(rq->vq, &len);
1189 if (unlikely(!buf)) {
1190 pr_debug("%s: rx error: %d buffers missing\n",
1191 dev->name, num_buf);
1192 dev->stats.rx_length_errors++;
1193 break;
1194 }
1195 stats->bytes += len;
1196 page = virt_to_head_page(buf);
1197 put_page(page);
1198 }
1199 err_buf:
1200 stats->drops++;
1201 dev_kfree_skb(head_skb);
1202 xdp_xmit:
1203 return NULL;
1204 }
1205
1206 static void virtio_skb_set_hash(const struct virtio_net_hdr_v1_hash *hdr_hash,
1207 struct sk_buff *skb)
1208 {
1209 enum pkt_hash_types rss_hash_type;
1210
1211 if (!hdr_hash || !skb)
1212 return;
1213
1214 switch (__le16_to_cpu(hdr_hash->hash_report)) {
1215 case VIRTIO_NET_HASH_REPORT_TCPv4:
1216 case VIRTIO_NET_HASH_REPORT_UDPv4:
1217 case VIRTIO_NET_HASH_REPORT_TCPv6:
1218 case VIRTIO_NET_HASH_REPORT_UDPv6:
1219 case VIRTIO_NET_HASH_REPORT_TCPv6_EX:
1220 case VIRTIO_NET_HASH_REPORT_UDPv6_EX:
1221 rss_hash_type = PKT_HASH_TYPE_L4;
1222 break;
1223 case VIRTIO_NET_HASH_REPORT_IPv4:
1224 case VIRTIO_NET_HASH_REPORT_IPv6:
1225 case VIRTIO_NET_HASH_REPORT_IPv6_EX:
1226 rss_hash_type = PKT_HASH_TYPE_L3;
1227 break;
1228 case VIRTIO_NET_HASH_REPORT_NONE:
1229 default:
1230 rss_hash_type = PKT_HASH_TYPE_NONE;
1231 }
1232 skb_set_hash(skb, __le32_to_cpu(hdr_hash->hash_value), rss_hash_type);
1233 }
1234
1235 static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
1236 void *buf, unsigned int len, void **ctx,
1237 unsigned int *xdp_xmit,
1238 struct virtnet_rq_stats *stats)
1239 {
1240 struct net_device *dev = vi->dev;
1241 struct sk_buff *skb;
1242 struct virtio_net_hdr_mrg_rxbuf *hdr;
1243
1244 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
1245 pr_debug("%s: short packet %i\n", dev->name, len);
1246 dev->stats.rx_length_errors++;
1247 if (vi->mergeable_rx_bufs) {
1248 put_page(virt_to_head_page(buf));
1249 } else if (vi->big_packets) {
1250 give_pages(rq, buf);
1251 } else {
1252 put_page(virt_to_head_page(buf));
1253 }
1254 return;
1255 }
1256
1257 if (vi->mergeable_rx_bufs)
1258 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
1259 stats);
1260 else if (vi->big_packets)
1261 skb = receive_big(dev, vi, rq, buf, len, stats);
1262 else
1263 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
1264
1265 if (unlikely(!skb))
1266 return;
1267
1268 hdr = skb_vnet_hdr(skb);
1269 if (dev->features & NETIF_F_RXHASH && vi->has_rss_hash_report)
1270 virtio_skb_set_hash((const struct virtio_net_hdr_v1_hash *)hdr, skb);
1271
1272 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
1273 skb->ip_summed = CHECKSUM_UNNECESSARY;
1274
1275 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1276 virtio_is_little_endian(vi->vdev))) {
1277 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1278 dev->name, hdr->hdr.gso_type,
1279 hdr->hdr.gso_size);
1280 goto frame_err;
1281 }
1282
1283 skb_record_rx_queue(skb, vq2rxq(rq->vq));
1284 skb->protocol = eth_type_trans(skb, dev);
1285 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1286 ntohs(skb->protocol), skb->len, skb->pkt_type);
1287
1288 napi_gro_receive(&rq->napi, skb);
1289 return;
1290
1291 frame_err:
1292 dev->stats.rx_frame_errors++;
1293 dev_kfree_skb(skb);
1294 }
1295
1296
1297
1298
1299
1300
1301 static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1302 gfp_t gfp)
1303 {
1304 struct page_frag *alloc_frag = &rq->alloc_frag;
1305 char *buf;
1306 unsigned int xdp_headroom = virtnet_get_headroom(vi);
1307 void *ctx = (void *)(unsigned long)xdp_headroom;
1308 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
1309 int err;
1310
1311 len = SKB_DATA_ALIGN(len) +
1312 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1313 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
1314 return -ENOMEM;
1315
1316 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1317 get_page(alloc_frag->page);
1318 alloc_frag->offset += len;
1319 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1320 vi->hdr_len + GOOD_PACKET_LEN);
1321 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
1322 if (err < 0)
1323 put_page(virt_to_head_page(buf));
1324 return err;
1325 }
1326
1327 static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1328 gfp_t gfp)
1329 {
1330 struct page *first, *list = NULL;
1331 char *p;
1332 int i, err, offset;
1333
1334 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1335
1336
1337 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
1338 first = get_a_page(rq, gfp);
1339 if (!first) {
1340 if (list)
1341 give_pages(rq, list);
1342 return -ENOMEM;
1343 }
1344 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
1345
1346
1347 first->private = (unsigned long)list;
1348 list = first;
1349 }
1350
1351 first = get_a_page(rq, gfp);
1352 if (!first) {
1353 give_pages(rq, list);
1354 return -ENOMEM;
1355 }
1356 p = page_address(first);
1357
1358
1359
1360 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
1361
1362
1363 offset = sizeof(struct padded_vnet_hdr);
1364 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
1365
1366
1367 first->private = (unsigned long)list;
1368 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1369 first, gfp);
1370 if (err < 0)
1371 give_pages(rq, first);
1372
1373 return err;
1374 }
1375
1376 static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
1377 struct ewma_pkt_len *avg_pkt_len,
1378 unsigned int room)
1379 {
1380 struct virtnet_info *vi = rq->vq->vdev->priv;
1381 const size_t hdr_len = vi->hdr_len;
1382 unsigned int len;
1383
1384 if (room)
1385 return PAGE_SIZE - room;
1386
1387 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
1388 rq->min_buf_len, PAGE_SIZE - hdr_len);
1389
1390 return ALIGN(len, L1_CACHE_BYTES);
1391 }
1392
1393 static int add_recvbuf_mergeable(struct virtnet_info *vi,
1394 struct receive_queue *rq, gfp_t gfp)
1395 {
1396 struct page_frag *alloc_frag = &rq->alloc_frag;
1397 unsigned int headroom = virtnet_get_headroom(vi);
1398 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1399 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
1400 char *buf;
1401 void *ctx;
1402 int err;
1403 unsigned int len, hole;
1404
1405
1406
1407
1408
1409 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1410 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
1411 return -ENOMEM;
1412
1413 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1414 buf += headroom;
1415 get_page(alloc_frag->page);
1416 alloc_frag->offset += len + room;
1417 hole = alloc_frag->size - alloc_frag->offset;
1418 if (hole < len + room) {
1419
1420
1421
1422
1423 len += hole;
1424 alloc_frag->offset += hole;
1425 }
1426
1427 sg_init_one(rq->sg, buf, len);
1428 ctx = mergeable_len_to_ctx(len, headroom);
1429 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
1430 if (err < 0)
1431 put_page(virt_to_head_page(buf));
1432
1433 return err;
1434 }
1435
1436
1437
1438
1439
1440
1441
1442
1443 static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1444 gfp_t gfp)
1445 {
1446 int err;
1447 bool oom;
1448
1449 do {
1450 if (vi->mergeable_rx_bufs)
1451 err = add_recvbuf_mergeable(vi, rq, gfp);
1452 else if (vi->big_packets)
1453 err = add_recvbuf_big(vi, rq, gfp);
1454 else
1455 err = add_recvbuf_small(vi, rq, gfp);
1456
1457 oom = err == -ENOMEM;
1458 if (err)
1459 break;
1460 } while (rq->vq->num_free);
1461 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
1462 unsigned long flags;
1463
1464 flags = u64_stats_update_begin_irqsave(&rq->stats.syncp);
1465 rq->stats.kicks++;
1466 u64_stats_update_end_irqrestore(&rq->stats.syncp, flags);
1467 }
1468
1469 return !oom;
1470 }
1471
1472 static void skb_recv_done(struct virtqueue *rvq)
1473 {
1474 struct virtnet_info *vi = rvq->vdev->priv;
1475 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
1476
1477 virtqueue_napi_schedule(&rq->napi, rvq);
1478 }
1479
1480 static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
1481 {
1482 napi_enable(napi);
1483
1484
1485
1486
1487
1488 local_bh_disable();
1489 virtqueue_napi_schedule(napi, vq);
1490 local_bh_enable();
1491 }
1492
1493 static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1494 struct virtqueue *vq,
1495 struct napi_struct *napi)
1496 {
1497 if (!napi->weight)
1498 return;
1499
1500
1501
1502
1503 if (!vi->affinity_hint_set) {
1504 napi->weight = 0;
1505 return;
1506 }
1507
1508 return virtnet_napi_enable(vq, napi);
1509 }
1510
1511 static void virtnet_napi_tx_disable(struct napi_struct *napi)
1512 {
1513 if (napi->weight)
1514 napi_disable(napi);
1515 }
1516
1517 static void refill_work(struct work_struct *work)
1518 {
1519 struct virtnet_info *vi =
1520 container_of(work, struct virtnet_info, refill.work);
1521 bool still_empty;
1522 int i;
1523
1524 for (i = 0; i < vi->curr_queue_pairs; i++) {
1525 struct receive_queue *rq = &vi->rq[i];
1526
1527 napi_disable(&rq->napi);
1528 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
1529 virtnet_napi_enable(rq->vq, &rq->napi);
1530
1531
1532
1533
1534 if (still_empty)
1535 schedule_delayed_work(&vi->refill, HZ/2);
1536 }
1537 }
1538
1539 static int virtnet_receive(struct receive_queue *rq, int budget,
1540 unsigned int *xdp_xmit)
1541 {
1542 struct virtnet_info *vi = rq->vq->vdev->priv;
1543 struct virtnet_rq_stats stats = {};
1544 unsigned int len;
1545 void *buf;
1546 int i;
1547
1548 if (!vi->big_packets || vi->mergeable_rx_bufs) {
1549 void *ctx;
1550
1551 while (stats.packets < budget &&
1552 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
1553 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
1554 stats.packets++;
1555 }
1556 } else {
1557 while (stats.packets < budget &&
1558 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
1559 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
1560 stats.packets++;
1561 }
1562 }
1563
1564 if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) {
1565 if (!try_fill_recv(vi, rq, GFP_ATOMIC)) {
1566 spin_lock(&vi->refill_lock);
1567 if (vi->refill_enabled)
1568 schedule_delayed_work(&vi->refill, 0);
1569 spin_unlock(&vi->refill_lock);
1570 }
1571 }
1572
1573 u64_stats_update_begin(&rq->stats.syncp);
1574 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1575 size_t offset = virtnet_rq_stats_desc[i].offset;
1576 u64 *item;
1577
1578 item = (u64 *)((u8 *)&rq->stats + offset);
1579 *item += *(u64 *)((u8 *)&stats + offset);
1580 }
1581 u64_stats_update_end(&rq->stats.syncp);
1582
1583 return stats.packets;
1584 }
1585
1586 static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi)
1587 {
1588 unsigned int len;
1589 unsigned int packets = 0;
1590 unsigned int bytes = 0;
1591 void *ptr;
1592
1593 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1594 if (likely(!is_xdp_frame(ptr))) {
1595 struct sk_buff *skb = ptr;
1596
1597 pr_debug("Sent skb %p\n", skb);
1598
1599 bytes += skb->len;
1600 napi_consume_skb(skb, in_napi);
1601 } else {
1602 struct xdp_frame *frame = ptr_to_xdp(ptr);
1603
1604 bytes += frame->len;
1605 xdp_return_frame(frame);
1606 }
1607 packets++;
1608 }
1609
1610
1611
1612
1613 if (!packets)
1614 return;
1615
1616 u64_stats_update_begin(&sq->stats.syncp);
1617 sq->stats.bytes += bytes;
1618 sq->stats.packets += packets;
1619 u64_stats_update_end(&sq->stats.syncp);
1620 }
1621
1622 static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1623 {
1624 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1625 return false;
1626 else if (q < vi->curr_queue_pairs)
1627 return true;
1628 else
1629 return false;
1630 }
1631
1632 static void virtnet_poll_cleantx(struct receive_queue *rq)
1633 {
1634 struct virtnet_info *vi = rq->vq->vdev->priv;
1635 unsigned int index = vq2rxq(rq->vq);
1636 struct send_queue *sq = &vi->sq[index];
1637 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1638
1639 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
1640 return;
1641
1642 if (__netif_tx_trylock(txq)) {
1643 if (sq->reset) {
1644 __netif_tx_unlock(txq);
1645 return;
1646 }
1647
1648 do {
1649 virtqueue_disable_cb(sq->vq);
1650 free_old_xmit_skbs(sq, true);
1651 } while (unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
1652
1653 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1654 netif_tx_wake_queue(txq);
1655
1656 __netif_tx_unlock(txq);
1657 }
1658 }
1659
1660 static int virtnet_poll(struct napi_struct *napi, int budget)
1661 {
1662 struct receive_queue *rq =
1663 container_of(napi, struct receive_queue, napi);
1664 struct virtnet_info *vi = rq->vq->vdev->priv;
1665 struct send_queue *sq;
1666 unsigned int received;
1667 unsigned int xdp_xmit = 0;
1668
1669 virtnet_poll_cleantx(rq);
1670
1671 received = virtnet_receive(rq, budget, &xdp_xmit);
1672
1673
1674 if (received < budget)
1675 virtqueue_napi_complete(napi, rq->vq, received);
1676
1677 if (xdp_xmit & VIRTIO_XDP_REDIR)
1678 xdp_do_flush();
1679
1680 if (xdp_xmit & VIRTIO_XDP_TX) {
1681 sq = virtnet_xdp_get_sq(vi);
1682 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1683 u64_stats_update_begin(&sq->stats.syncp);
1684 sq->stats.kicks++;
1685 u64_stats_update_end(&sq->stats.syncp);
1686 }
1687 virtnet_xdp_put_sq(vi, sq);
1688 }
1689
1690 return received;
1691 }
1692
1693 static int virtnet_open(struct net_device *dev)
1694 {
1695 struct virtnet_info *vi = netdev_priv(dev);
1696 int i, err;
1697
1698 enable_delayed_refill(vi);
1699
1700 for (i = 0; i < vi->max_queue_pairs; i++) {
1701 if (i < vi->curr_queue_pairs)
1702
1703 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1704 schedule_delayed_work(&vi->refill, 0);
1705
1706 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i, vi->rq[i].napi.napi_id);
1707 if (err < 0)
1708 return err;
1709
1710 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1711 MEM_TYPE_PAGE_SHARED, NULL);
1712 if (err < 0) {
1713 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1714 return err;
1715 }
1716
1717 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
1718 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
1719 }
1720
1721 return 0;
1722 }
1723
1724 static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1725 {
1726 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1727 struct virtnet_info *vi = sq->vq->vdev->priv;
1728 unsigned int index = vq2txq(sq->vq);
1729 struct netdev_queue *txq;
1730 int opaque;
1731 bool done;
1732
1733 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
1734
1735 napi_complete_done(napi, 0);
1736 return 0;
1737 }
1738
1739 txq = netdev_get_tx_queue(vi->dev, index);
1740 __netif_tx_lock(txq, raw_smp_processor_id());
1741 virtqueue_disable_cb(sq->vq);
1742 free_old_xmit_skbs(sq, true);
1743
1744 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1745 netif_tx_wake_queue(txq);
1746
1747 opaque = virtqueue_enable_cb_prepare(sq->vq);
1748
1749 done = napi_complete_done(napi, 0);
1750
1751 if (!done)
1752 virtqueue_disable_cb(sq->vq);
1753
1754 __netif_tx_unlock(txq);
1755
1756 if (done) {
1757 if (unlikely(virtqueue_poll(sq->vq, opaque))) {
1758 if (napi_schedule_prep(napi)) {
1759 __netif_tx_lock(txq, raw_smp_processor_id());
1760 virtqueue_disable_cb(sq->vq);
1761 __netif_tx_unlock(txq);
1762 __napi_schedule(napi);
1763 }
1764 }
1765 }
1766
1767 return 0;
1768 }
1769
1770 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
1771 {
1772 struct virtio_net_hdr_mrg_rxbuf *hdr;
1773 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
1774 struct virtnet_info *vi = sq->vq->vdev->priv;
1775 int num_sg;
1776 unsigned hdr_len = vi->hdr_len;
1777 bool can_push;
1778
1779 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
1780
1781 can_push = vi->any_header_sg &&
1782 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1783 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1784
1785
1786 if (can_push)
1787 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
1788 else
1789 hdr = skb_vnet_hdr(skb);
1790
1791 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1792 virtio_is_little_endian(vi->vdev), false,
1793 0))
1794 return -EPROTO;
1795
1796 if (vi->mergeable_rx_bufs)
1797 hdr->num_buffers = 0;
1798
1799 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
1800 if (can_push) {
1801 __skb_push(skb, hdr_len);
1802 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1803 if (unlikely(num_sg < 0))
1804 return num_sg;
1805
1806 __skb_pull(skb, hdr_len);
1807 } else {
1808 sg_set_buf(sq->sg, hdr, hdr_len);
1809 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1810 if (unlikely(num_sg < 0))
1811 return num_sg;
1812 num_sg++;
1813 }
1814 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
1815 }
1816
1817 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
1818 {
1819 struct virtnet_info *vi = netdev_priv(dev);
1820 int qnum = skb_get_queue_mapping(skb);
1821 struct send_queue *sq = &vi->sq[qnum];
1822 int err;
1823 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1824 bool kick = !netdev_xmit_more();
1825 bool use_napi = sq->napi.weight;
1826
1827
1828 do {
1829 if (use_napi)
1830 virtqueue_disable_cb(sq->vq);
1831
1832 free_old_xmit_skbs(sq, false);
1833
1834 } while (use_napi && kick &&
1835 unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
1836
1837
1838 skb_tx_timestamp(skb);
1839
1840
1841 err = xmit_skb(sq, skb);
1842
1843
1844 if (unlikely(err)) {
1845 dev->stats.tx_fifo_errors++;
1846 if (net_ratelimit())
1847 dev_warn(&dev->dev,
1848 "Unexpected TXQ (%d) queue failure: %d\n",
1849 qnum, err);
1850 dev->stats.tx_dropped++;
1851 dev_kfree_skb_any(skb);
1852 return NETDEV_TX_OK;
1853 }
1854
1855
1856 if (!use_napi) {
1857 skb_orphan(skb);
1858 nf_reset_ct(skb);
1859 }
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
1872 netif_stop_subqueue(dev, qnum);
1873 if (!use_napi &&
1874 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
1875
1876 free_old_xmit_skbs(sq, false);
1877 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
1878 netif_start_subqueue(dev, qnum);
1879 virtqueue_disable_cb(sq->vq);
1880 }
1881 }
1882 }
1883
1884 if (kick || netif_xmit_stopped(txq)) {
1885 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1886 u64_stats_update_begin(&sq->stats.syncp);
1887 sq->stats.kicks++;
1888 u64_stats_update_end(&sq->stats.syncp);
1889 }
1890 }
1891
1892 return NETDEV_TX_OK;
1893 }
1894
1895 static int virtnet_rx_resize(struct virtnet_info *vi,
1896 struct receive_queue *rq, u32 ring_num)
1897 {
1898 bool running = netif_running(vi->dev);
1899 int err, qindex;
1900
1901 qindex = rq - vi->rq;
1902
1903 if (running)
1904 napi_disable(&rq->napi);
1905
1906 err = virtqueue_resize(rq->vq, ring_num, virtnet_rq_free_unused_buf);
1907 if (err)
1908 netdev_err(vi->dev, "resize rx fail: rx queue index: %d err: %d\n", qindex, err);
1909
1910 if (!try_fill_recv(vi, rq, GFP_KERNEL))
1911 schedule_delayed_work(&vi->refill, 0);
1912
1913 if (running)
1914 virtnet_napi_enable(rq->vq, &rq->napi);
1915 return err;
1916 }
1917
1918 static int virtnet_tx_resize(struct virtnet_info *vi,
1919 struct send_queue *sq, u32 ring_num)
1920 {
1921 bool running = netif_running(vi->dev);
1922 struct netdev_queue *txq;
1923 int err, qindex;
1924
1925 qindex = sq - vi->sq;
1926
1927 if (running)
1928 virtnet_napi_tx_disable(&sq->napi);
1929
1930 txq = netdev_get_tx_queue(vi->dev, qindex);
1931
1932
1933
1934
1935 __netif_tx_lock_bh(txq);
1936
1937
1938 sq->reset = true;
1939
1940
1941 netif_stop_subqueue(vi->dev, qindex);
1942
1943 __netif_tx_unlock_bh(txq);
1944
1945 err = virtqueue_resize(sq->vq, ring_num, virtnet_sq_free_unused_buf);
1946 if (err)
1947 netdev_err(vi->dev, "resize tx fail: tx queue index: %d err: %d\n", qindex, err);
1948
1949 __netif_tx_lock_bh(txq);
1950 sq->reset = false;
1951 netif_tx_wake_queue(txq);
1952 __netif_tx_unlock_bh(txq);
1953
1954 if (running)
1955 virtnet_napi_tx_enable(vi, sq->vq, &sq->napi);
1956 return err;
1957 }
1958
1959
1960
1961
1962
1963
1964 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
1965 struct scatterlist *out)
1966 {
1967 struct scatterlist *sgs[4], hdr, stat;
1968 unsigned out_num = 0, tmp;
1969 int ret;
1970
1971
1972 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
1973
1974 vi->ctrl->status = ~0;
1975 vi->ctrl->hdr.class = class;
1976 vi->ctrl->hdr.cmd = cmd;
1977
1978 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
1979 sgs[out_num++] = &hdr;
1980
1981 if (out)
1982 sgs[out_num++] = out;
1983
1984
1985 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
1986 sgs[out_num] = &stat;
1987
1988 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
1989 ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
1990 if (ret < 0) {
1991 dev_warn(&vi->vdev->dev,
1992 "Failed to add sgs for command vq: %d\n.", ret);
1993 return false;
1994 }
1995
1996 if (unlikely(!virtqueue_kick(vi->cvq)))
1997 return vi->ctrl->status == VIRTIO_NET_OK;
1998
1999
2000
2001
2002 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
2003 !virtqueue_is_broken(vi->cvq))
2004 cpu_relax();
2005
2006 return vi->ctrl->status == VIRTIO_NET_OK;
2007 }
2008
2009 static int virtnet_set_mac_address(struct net_device *dev, void *p)
2010 {
2011 struct virtnet_info *vi = netdev_priv(dev);
2012 struct virtio_device *vdev = vi->vdev;
2013 int ret;
2014 struct sockaddr *addr;
2015 struct scatterlist sg;
2016
2017 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2018 return -EOPNOTSUPP;
2019
2020 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
2021 if (!addr)
2022 return -ENOMEM;
2023
2024 ret = eth_prepare_mac_addr_change(dev, addr);
2025 if (ret)
2026 goto out;
2027
2028 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
2029 sg_init_one(&sg, addr->sa_data, dev->addr_len);
2030 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
2031 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
2032 dev_warn(&vdev->dev,
2033 "Failed to set mac address by vq command.\n");
2034 ret = -EINVAL;
2035 goto out;
2036 }
2037 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
2038 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
2039 unsigned int i;
2040
2041
2042 for (i = 0; i < dev->addr_len; i++)
2043 virtio_cwrite8(vdev,
2044 offsetof(struct virtio_net_config, mac) +
2045 i, addr->sa_data[i]);
2046 }
2047
2048 eth_commit_mac_addr_change(dev, p);
2049 ret = 0;
2050
2051 out:
2052 kfree(addr);
2053 return ret;
2054 }
2055
2056 static void virtnet_stats(struct net_device *dev,
2057 struct rtnl_link_stats64 *tot)
2058 {
2059 struct virtnet_info *vi = netdev_priv(dev);
2060 unsigned int start;
2061 int i;
2062
2063 for (i = 0; i < vi->max_queue_pairs; i++) {
2064 u64 tpackets, tbytes, terrors, rpackets, rbytes, rdrops;
2065 struct receive_queue *rq = &vi->rq[i];
2066 struct send_queue *sq = &vi->sq[i];
2067
2068 do {
2069 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2070 tpackets = sq->stats.packets;
2071 tbytes = sq->stats.bytes;
2072 terrors = sq->stats.tx_timeouts;
2073 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2074
2075 do {
2076 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2077 rpackets = rq->stats.packets;
2078 rbytes = rq->stats.bytes;
2079 rdrops = rq->stats.drops;
2080 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2081
2082 tot->rx_packets += rpackets;
2083 tot->tx_packets += tpackets;
2084 tot->rx_bytes += rbytes;
2085 tot->tx_bytes += tbytes;
2086 tot->rx_dropped += rdrops;
2087 tot->tx_errors += terrors;
2088 }
2089
2090 tot->tx_dropped = dev->stats.tx_dropped;
2091 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
2092 tot->rx_length_errors = dev->stats.rx_length_errors;
2093 tot->rx_frame_errors = dev->stats.rx_frame_errors;
2094 }
2095
2096 static void virtnet_ack_link_announce(struct virtnet_info *vi)
2097 {
2098 rtnl_lock();
2099 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
2100 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
2101 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
2102 rtnl_unlock();
2103 }
2104
2105 static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
2106 {
2107 struct scatterlist sg;
2108 struct net_device *dev = vi->dev;
2109
2110 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
2111 return 0;
2112
2113 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
2114 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
2115
2116 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
2117 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
2118 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
2119 queue_pairs);
2120 return -EINVAL;
2121 } else {
2122 vi->curr_queue_pairs = queue_pairs;
2123
2124 if (dev->flags & IFF_UP)
2125 schedule_delayed_work(&vi->refill, 0);
2126 }
2127
2128 return 0;
2129 }
2130
2131 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
2132 {
2133 int err;
2134
2135 rtnl_lock();
2136 err = _virtnet_set_queues(vi, queue_pairs);
2137 rtnl_unlock();
2138 return err;
2139 }
2140
2141 static int virtnet_close(struct net_device *dev)
2142 {
2143 struct virtnet_info *vi = netdev_priv(dev);
2144 int i;
2145
2146
2147 disable_delayed_refill(vi);
2148
2149 cancel_delayed_work_sync(&vi->refill);
2150
2151 for (i = 0; i < vi->max_queue_pairs; i++) {
2152 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
2153 napi_disable(&vi->rq[i].napi);
2154 virtnet_napi_tx_disable(&vi->sq[i].napi);
2155 }
2156
2157 return 0;
2158 }
2159
2160 static void virtnet_set_rx_mode(struct net_device *dev)
2161 {
2162 struct virtnet_info *vi = netdev_priv(dev);
2163 struct scatterlist sg[2];
2164 struct virtio_net_ctrl_mac *mac_data;
2165 struct netdev_hw_addr *ha;
2166 int uc_count;
2167 int mc_count;
2168 void *buf;
2169 int i;
2170
2171
2172 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
2173 return;
2174
2175 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
2176 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
2177
2178 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
2179
2180 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
2181 VIRTIO_NET_CTRL_RX_PROMISC, sg))
2182 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
2183 vi->ctrl->promisc ? "en" : "dis");
2184
2185 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
2186
2187 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
2188 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
2189 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
2190 vi->ctrl->allmulti ? "en" : "dis");
2191
2192 uc_count = netdev_uc_count(dev);
2193 mc_count = netdev_mc_count(dev);
2194
2195 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
2196 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
2197 mac_data = buf;
2198 if (!buf)
2199 return;
2200
2201 sg_init_table(sg, 2);
2202
2203
2204 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
2205 i = 0;
2206 netdev_for_each_uc_addr(ha, dev)
2207 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
2208
2209 sg_set_buf(&sg[0], mac_data,
2210 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
2211
2212
2213 mac_data = (void *)&mac_data->macs[uc_count][0];
2214
2215 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
2216 i = 0;
2217 netdev_for_each_mc_addr(ha, dev)
2218 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
2219
2220 sg_set_buf(&sg[1], mac_data,
2221 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
2222
2223 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
2224 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
2225 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
2226
2227 kfree(buf);
2228 }
2229
2230 static int virtnet_vlan_rx_add_vid(struct net_device *dev,
2231 __be16 proto, u16 vid)
2232 {
2233 struct virtnet_info *vi = netdev_priv(dev);
2234 struct scatterlist sg;
2235
2236 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
2237 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
2238
2239 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
2240 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
2241 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
2242 return 0;
2243 }
2244
2245 static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
2246 __be16 proto, u16 vid)
2247 {
2248 struct virtnet_info *vi = netdev_priv(dev);
2249 struct scatterlist sg;
2250
2251 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
2252 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
2253
2254 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
2255 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
2256 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
2257 return 0;
2258 }
2259
2260 static void virtnet_clean_affinity(struct virtnet_info *vi)
2261 {
2262 int i;
2263
2264 if (vi->affinity_hint_set) {
2265 for (i = 0; i < vi->max_queue_pairs; i++) {
2266 virtqueue_set_affinity(vi->rq[i].vq, NULL);
2267 virtqueue_set_affinity(vi->sq[i].vq, NULL);
2268 }
2269
2270 vi->affinity_hint_set = false;
2271 }
2272 }
2273
2274 static void virtnet_set_affinity(struct virtnet_info *vi)
2275 {
2276 cpumask_var_t mask;
2277 int stragglers;
2278 int group_size;
2279 int i, j, cpu;
2280 int num_cpu;
2281 int stride;
2282
2283 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
2284 virtnet_clean_affinity(vi);
2285 return;
2286 }
2287
2288 num_cpu = num_online_cpus();
2289 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
2290 stragglers = num_cpu >= vi->curr_queue_pairs ?
2291 num_cpu % vi->curr_queue_pairs :
2292 0;
2293 cpu = cpumask_first(cpu_online_mask);
2294
2295 for (i = 0; i < vi->curr_queue_pairs; i++) {
2296 group_size = stride + (i < stragglers ? 1 : 0);
2297
2298 for (j = 0; j < group_size; j++) {
2299 cpumask_set_cpu(cpu, mask);
2300 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
2301 nr_cpu_ids, false);
2302 }
2303 virtqueue_set_affinity(vi->rq[i].vq, mask);
2304 virtqueue_set_affinity(vi->sq[i].vq, mask);
2305 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS);
2306 cpumask_clear(mask);
2307 }
2308
2309 vi->affinity_hint_set = true;
2310 free_cpumask_var(mask);
2311 }
2312
2313 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
2314 {
2315 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2316 node);
2317 virtnet_set_affinity(vi);
2318 return 0;
2319 }
2320
2321 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
2322 {
2323 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2324 node_dead);
2325 virtnet_set_affinity(vi);
2326 return 0;
2327 }
2328
2329 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
2330 {
2331 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2332 node);
2333
2334 virtnet_clean_affinity(vi);
2335 return 0;
2336 }
2337
2338 static enum cpuhp_state virtionet_online;
2339
2340 static int virtnet_cpu_notif_add(struct virtnet_info *vi)
2341 {
2342 int ret;
2343
2344 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
2345 if (ret)
2346 return ret;
2347 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2348 &vi->node_dead);
2349 if (!ret)
2350 return ret;
2351 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2352 return ret;
2353 }
2354
2355 static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
2356 {
2357 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2358 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2359 &vi->node_dead);
2360 }
2361
2362 static void virtnet_get_ringparam(struct net_device *dev,
2363 struct ethtool_ringparam *ring,
2364 struct kernel_ethtool_ringparam *kernel_ring,
2365 struct netlink_ext_ack *extack)
2366 {
2367 struct virtnet_info *vi = netdev_priv(dev);
2368
2369 ring->rx_max_pending = vi->rq[0].vq->num_max;
2370 ring->tx_max_pending = vi->sq[0].vq->num_max;
2371 ring->rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
2372 ring->tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
2373 }
2374
2375 static int virtnet_set_ringparam(struct net_device *dev,
2376 struct ethtool_ringparam *ring,
2377 struct kernel_ethtool_ringparam *kernel_ring,
2378 struct netlink_ext_ack *extack)
2379 {
2380 struct virtnet_info *vi = netdev_priv(dev);
2381 u32 rx_pending, tx_pending;
2382 struct receive_queue *rq;
2383 struct send_queue *sq;
2384 int i, err;
2385
2386 if (ring->rx_mini_pending || ring->rx_jumbo_pending)
2387 return -EINVAL;
2388
2389 rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
2390 tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
2391
2392 if (ring->rx_pending == rx_pending &&
2393 ring->tx_pending == tx_pending)
2394 return 0;
2395
2396 if (ring->rx_pending > vi->rq[0].vq->num_max)
2397 return -EINVAL;
2398
2399 if (ring->tx_pending > vi->sq[0].vq->num_max)
2400 return -EINVAL;
2401
2402 for (i = 0; i < vi->max_queue_pairs; i++) {
2403 rq = vi->rq + i;
2404 sq = vi->sq + i;
2405
2406 if (ring->tx_pending != tx_pending) {
2407 err = virtnet_tx_resize(vi, sq, ring->tx_pending);
2408 if (err)
2409 return err;
2410 }
2411
2412 if (ring->rx_pending != rx_pending) {
2413 err = virtnet_rx_resize(vi, rq, ring->rx_pending);
2414 if (err)
2415 return err;
2416 }
2417 }
2418
2419 return 0;
2420 }
2421
2422 static bool virtnet_commit_rss_command(struct virtnet_info *vi)
2423 {
2424 struct net_device *dev = vi->dev;
2425 struct scatterlist sgs[4];
2426 unsigned int sg_buf_size;
2427
2428
2429 sg_init_table(sgs, 4);
2430
2431 sg_buf_size = offsetof(struct virtio_net_ctrl_rss, indirection_table);
2432 sg_set_buf(&sgs[0], &vi->ctrl->rss, sg_buf_size);
2433
2434 sg_buf_size = sizeof(uint16_t) * (vi->ctrl->rss.indirection_table_mask + 1);
2435 sg_set_buf(&sgs[1], vi->ctrl->rss.indirection_table, sg_buf_size);
2436
2437 sg_buf_size = offsetof(struct virtio_net_ctrl_rss, key)
2438 - offsetof(struct virtio_net_ctrl_rss, max_tx_vq);
2439 sg_set_buf(&sgs[2], &vi->ctrl->rss.max_tx_vq, sg_buf_size);
2440
2441 sg_buf_size = vi->rss_key_size;
2442 sg_set_buf(&sgs[3], vi->ctrl->rss.key, sg_buf_size);
2443
2444 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
2445 vi->has_rss ? VIRTIO_NET_CTRL_MQ_RSS_CONFIG
2446 : VIRTIO_NET_CTRL_MQ_HASH_CONFIG, sgs)) {
2447 dev_warn(&dev->dev, "VIRTIONET issue with committing RSS sgs\n");
2448 return false;
2449 }
2450 return true;
2451 }
2452
2453 static void virtnet_init_default_rss(struct virtnet_info *vi)
2454 {
2455 u32 indir_val = 0;
2456 int i = 0;
2457
2458 vi->ctrl->rss.hash_types = vi->rss_hash_types_supported;
2459 vi->rss_hash_types_saved = vi->rss_hash_types_supported;
2460 vi->ctrl->rss.indirection_table_mask = vi->rss_indir_table_size
2461 ? vi->rss_indir_table_size - 1 : 0;
2462 vi->ctrl->rss.unclassified_queue = 0;
2463
2464 for (; i < vi->rss_indir_table_size; ++i) {
2465 indir_val = ethtool_rxfh_indir_default(i, vi->curr_queue_pairs);
2466 vi->ctrl->rss.indirection_table[i] = indir_val;
2467 }
2468
2469 vi->ctrl->rss.max_tx_vq = vi->curr_queue_pairs;
2470 vi->ctrl->rss.hash_key_length = vi->rss_key_size;
2471
2472 netdev_rss_key_fill(vi->ctrl->rss.key, vi->rss_key_size);
2473 }
2474
2475 static void virtnet_get_hashflow(const struct virtnet_info *vi, struct ethtool_rxnfc *info)
2476 {
2477 info->data = 0;
2478 switch (info->flow_type) {
2479 case TCP_V4_FLOW:
2480 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) {
2481 info->data = RXH_IP_SRC | RXH_IP_DST |
2482 RXH_L4_B_0_1 | RXH_L4_B_2_3;
2483 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
2484 info->data = RXH_IP_SRC | RXH_IP_DST;
2485 }
2486 break;
2487 case TCP_V6_FLOW:
2488 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) {
2489 info->data = RXH_IP_SRC | RXH_IP_DST |
2490 RXH_L4_B_0_1 | RXH_L4_B_2_3;
2491 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
2492 info->data = RXH_IP_SRC | RXH_IP_DST;
2493 }
2494 break;
2495 case UDP_V4_FLOW:
2496 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) {
2497 info->data = RXH_IP_SRC | RXH_IP_DST |
2498 RXH_L4_B_0_1 | RXH_L4_B_2_3;
2499 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
2500 info->data = RXH_IP_SRC | RXH_IP_DST;
2501 }
2502 break;
2503 case UDP_V6_FLOW:
2504 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) {
2505 info->data = RXH_IP_SRC | RXH_IP_DST |
2506 RXH_L4_B_0_1 | RXH_L4_B_2_3;
2507 } else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
2508 info->data = RXH_IP_SRC | RXH_IP_DST;
2509 }
2510 break;
2511 case IPV4_FLOW:
2512 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4)
2513 info->data = RXH_IP_SRC | RXH_IP_DST;
2514
2515 break;
2516 case IPV6_FLOW:
2517 if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6)
2518 info->data = RXH_IP_SRC | RXH_IP_DST;
2519
2520 break;
2521 default:
2522 info->data = 0;
2523 break;
2524 }
2525 }
2526
2527 static bool virtnet_set_hashflow(struct virtnet_info *vi, struct ethtool_rxnfc *info)
2528 {
2529 u32 new_hashtypes = vi->rss_hash_types_saved;
2530 bool is_disable = info->data & RXH_DISCARD;
2531 bool is_l4 = info->data == (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3);
2532
2533
2534 if (!((info->data == (RXH_IP_SRC | RXH_IP_DST)) | is_l4 | is_disable))
2535 return false;
2536
2537 switch (info->flow_type) {
2538 case TCP_V4_FLOW:
2539 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_TCPv4);
2540 if (!is_disable)
2541 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
2542 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv4 : 0);
2543 break;
2544 case UDP_V4_FLOW:
2545 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_UDPv4);
2546 if (!is_disable)
2547 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
2548 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv4 : 0);
2549 break;
2550 case IPV4_FLOW:
2551 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv4;
2552 if (!is_disable)
2553 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv4;
2554 break;
2555 case TCP_V6_FLOW:
2556 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_TCPv6);
2557 if (!is_disable)
2558 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
2559 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv6 : 0);
2560 break;
2561 case UDP_V6_FLOW:
2562 new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_UDPv6);
2563 if (!is_disable)
2564 new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
2565 | (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv6 : 0);
2566 break;
2567 case IPV6_FLOW:
2568 new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv6;
2569 if (!is_disable)
2570 new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv6;
2571 break;
2572 default:
2573
2574 return false;
2575 }
2576
2577
2578 if (new_hashtypes != (new_hashtypes & vi->rss_hash_types_supported))
2579 return false;
2580
2581 if (new_hashtypes != vi->rss_hash_types_saved) {
2582 vi->rss_hash_types_saved = new_hashtypes;
2583 vi->ctrl->rss.hash_types = vi->rss_hash_types_saved;
2584 if (vi->dev->features & NETIF_F_RXHASH)
2585 return virtnet_commit_rss_command(vi);
2586 }
2587
2588 return true;
2589 }
2590
2591 static void virtnet_get_drvinfo(struct net_device *dev,
2592 struct ethtool_drvinfo *info)
2593 {
2594 struct virtnet_info *vi = netdev_priv(dev);
2595 struct virtio_device *vdev = vi->vdev;
2596
2597 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
2598 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
2599 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
2600
2601 }
2602
2603
2604 static int virtnet_set_channels(struct net_device *dev,
2605 struct ethtool_channels *channels)
2606 {
2607 struct virtnet_info *vi = netdev_priv(dev);
2608 u16 queue_pairs = channels->combined_count;
2609 int err;
2610
2611
2612
2613
2614 if (channels->rx_count || channels->tx_count || channels->other_count)
2615 return -EINVAL;
2616
2617 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
2618 return -EINVAL;
2619
2620
2621
2622
2623
2624 if (vi->rq[0].xdp_prog)
2625 return -EINVAL;
2626
2627 cpus_read_lock();
2628 err = _virtnet_set_queues(vi, queue_pairs);
2629 if (err) {
2630 cpus_read_unlock();
2631 goto err;
2632 }
2633 virtnet_set_affinity(vi);
2634 cpus_read_unlock();
2635
2636 netif_set_real_num_tx_queues(dev, queue_pairs);
2637 netif_set_real_num_rx_queues(dev, queue_pairs);
2638 err:
2639 return err;
2640 }
2641
2642 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2643 {
2644 struct virtnet_info *vi = netdev_priv(dev);
2645 unsigned int i, j;
2646 u8 *p = data;
2647
2648 switch (stringset) {
2649 case ETH_SS_STATS:
2650 for (i = 0; i < vi->curr_queue_pairs; i++) {
2651 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++)
2652 ethtool_sprintf(&p, "rx_queue_%u_%s", i,
2653 virtnet_rq_stats_desc[j].desc);
2654 }
2655
2656 for (i = 0; i < vi->curr_queue_pairs; i++) {
2657 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++)
2658 ethtool_sprintf(&p, "tx_queue_%u_%s", i,
2659 virtnet_sq_stats_desc[j].desc);
2660 }
2661 break;
2662 }
2663 }
2664
2665 static int virtnet_get_sset_count(struct net_device *dev, int sset)
2666 {
2667 struct virtnet_info *vi = netdev_priv(dev);
2668
2669 switch (sset) {
2670 case ETH_SS_STATS:
2671 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2672 VIRTNET_SQ_STATS_LEN);
2673 default:
2674 return -EOPNOTSUPP;
2675 }
2676 }
2677
2678 static void virtnet_get_ethtool_stats(struct net_device *dev,
2679 struct ethtool_stats *stats, u64 *data)
2680 {
2681 struct virtnet_info *vi = netdev_priv(dev);
2682 unsigned int idx = 0, start, i, j;
2683 const u8 *stats_base;
2684 size_t offset;
2685
2686 for (i = 0; i < vi->curr_queue_pairs; i++) {
2687 struct receive_queue *rq = &vi->rq[i];
2688
2689 stats_base = (u8 *)&rq->stats;
2690 do {
2691 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2692 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2693 offset = virtnet_rq_stats_desc[j].offset;
2694 data[idx + j] = *(u64 *)(stats_base + offset);
2695 }
2696 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2697 idx += VIRTNET_RQ_STATS_LEN;
2698 }
2699
2700 for (i = 0; i < vi->curr_queue_pairs; i++) {
2701 struct send_queue *sq = &vi->sq[i];
2702
2703 stats_base = (u8 *)&sq->stats;
2704 do {
2705 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2706 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2707 offset = virtnet_sq_stats_desc[j].offset;
2708 data[idx + j] = *(u64 *)(stats_base + offset);
2709 }
2710 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2711 idx += VIRTNET_SQ_STATS_LEN;
2712 }
2713 }
2714
2715 static void virtnet_get_channels(struct net_device *dev,
2716 struct ethtool_channels *channels)
2717 {
2718 struct virtnet_info *vi = netdev_priv(dev);
2719
2720 channels->combined_count = vi->curr_queue_pairs;
2721 channels->max_combined = vi->max_queue_pairs;
2722 channels->max_other = 0;
2723 channels->rx_count = 0;
2724 channels->tx_count = 0;
2725 channels->other_count = 0;
2726 }
2727
2728 static int virtnet_set_link_ksettings(struct net_device *dev,
2729 const struct ethtool_link_ksettings *cmd)
2730 {
2731 struct virtnet_info *vi = netdev_priv(dev);
2732
2733 return ethtool_virtdev_set_link_ksettings(dev, cmd,
2734 &vi->speed, &vi->duplex);
2735 }
2736
2737 static int virtnet_get_link_ksettings(struct net_device *dev,
2738 struct ethtool_link_ksettings *cmd)
2739 {
2740 struct virtnet_info *vi = netdev_priv(dev);
2741
2742 cmd->base.speed = vi->speed;
2743 cmd->base.duplex = vi->duplex;
2744 cmd->base.port = PORT_OTHER;
2745
2746 return 0;
2747 }
2748
2749 static int virtnet_send_notf_coal_cmds(struct virtnet_info *vi,
2750 struct ethtool_coalesce *ec)
2751 {
2752 struct scatterlist sgs_tx, sgs_rx;
2753 struct virtio_net_ctrl_coal_tx coal_tx;
2754 struct virtio_net_ctrl_coal_rx coal_rx;
2755
2756 coal_tx.tx_usecs = cpu_to_le32(ec->tx_coalesce_usecs);
2757 coal_tx.tx_max_packets = cpu_to_le32(ec->tx_max_coalesced_frames);
2758 sg_init_one(&sgs_tx, &coal_tx, sizeof(coal_tx));
2759
2760 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
2761 VIRTIO_NET_CTRL_NOTF_COAL_TX_SET,
2762 &sgs_tx))
2763 return -EINVAL;
2764
2765
2766 vi->tx_usecs = ec->tx_coalesce_usecs;
2767 vi->tx_max_packets = ec->tx_max_coalesced_frames;
2768
2769 coal_rx.rx_usecs = cpu_to_le32(ec->rx_coalesce_usecs);
2770 coal_rx.rx_max_packets = cpu_to_le32(ec->rx_max_coalesced_frames);
2771 sg_init_one(&sgs_rx, &coal_rx, sizeof(coal_rx));
2772
2773 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
2774 VIRTIO_NET_CTRL_NOTF_COAL_RX_SET,
2775 &sgs_rx))
2776 return -EINVAL;
2777
2778
2779 vi->rx_usecs = ec->rx_coalesce_usecs;
2780 vi->rx_max_packets = ec->rx_max_coalesced_frames;
2781
2782 return 0;
2783 }
2784
2785 static int virtnet_coal_params_supported(struct ethtool_coalesce *ec)
2786 {
2787
2788
2789
2790 if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs)
2791 return -EOPNOTSUPP;
2792
2793 if (ec->tx_max_coalesced_frames > 1 ||
2794 ec->rx_max_coalesced_frames != 1)
2795 return -EINVAL;
2796
2797 return 0;
2798 }
2799
2800 static int virtnet_set_coalesce(struct net_device *dev,
2801 struct ethtool_coalesce *ec,
2802 struct kernel_ethtool_coalesce *kernel_coal,
2803 struct netlink_ext_ack *extack)
2804 {
2805 struct virtnet_info *vi = netdev_priv(dev);
2806 int ret, i, napi_weight;
2807 bool update_napi = false;
2808
2809
2810 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
2811 if (napi_weight ^ vi->sq[0].napi.weight) {
2812 if (dev->flags & IFF_UP)
2813 return -EBUSY;
2814 else
2815 update_napi = true;
2816 }
2817
2818 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL))
2819 ret = virtnet_send_notf_coal_cmds(vi, ec);
2820 else
2821 ret = virtnet_coal_params_supported(ec);
2822
2823 if (ret)
2824 return ret;
2825
2826 if (update_napi) {
2827 for (i = 0; i < vi->max_queue_pairs; i++)
2828 vi->sq[i].napi.weight = napi_weight;
2829 }
2830
2831 return ret;
2832 }
2833
2834 static int virtnet_get_coalesce(struct net_device *dev,
2835 struct ethtool_coalesce *ec,
2836 struct kernel_ethtool_coalesce *kernel_coal,
2837 struct netlink_ext_ack *extack)
2838 {
2839 struct virtnet_info *vi = netdev_priv(dev);
2840
2841 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
2842 ec->rx_coalesce_usecs = vi->rx_usecs;
2843 ec->tx_coalesce_usecs = vi->tx_usecs;
2844 ec->tx_max_coalesced_frames = vi->tx_max_packets;
2845 ec->rx_max_coalesced_frames = vi->rx_max_packets;
2846 } else {
2847 ec->rx_max_coalesced_frames = 1;
2848
2849 if (vi->sq[0].napi.weight)
2850 ec->tx_max_coalesced_frames = 1;
2851 }
2852
2853 return 0;
2854 }
2855
2856 static void virtnet_init_settings(struct net_device *dev)
2857 {
2858 struct virtnet_info *vi = netdev_priv(dev);
2859
2860 vi->speed = SPEED_UNKNOWN;
2861 vi->duplex = DUPLEX_UNKNOWN;
2862 }
2863
2864 static void virtnet_update_settings(struct virtnet_info *vi)
2865 {
2866 u32 speed;
2867 u8 duplex;
2868
2869 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2870 return;
2871
2872 virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed);
2873
2874 if (ethtool_validate_speed(speed))
2875 vi->speed = speed;
2876
2877 virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex);
2878
2879 if (ethtool_validate_duplex(duplex))
2880 vi->duplex = duplex;
2881 }
2882
2883 static u32 virtnet_get_rxfh_key_size(struct net_device *dev)
2884 {
2885 return ((struct virtnet_info *)netdev_priv(dev))->rss_key_size;
2886 }
2887
2888 static u32 virtnet_get_rxfh_indir_size(struct net_device *dev)
2889 {
2890 return ((struct virtnet_info *)netdev_priv(dev))->rss_indir_table_size;
2891 }
2892
2893 static int virtnet_get_rxfh(struct net_device *dev, u32 *indir, u8 *key, u8 *hfunc)
2894 {
2895 struct virtnet_info *vi = netdev_priv(dev);
2896 int i;
2897
2898 if (indir) {
2899 for (i = 0; i < vi->rss_indir_table_size; ++i)
2900 indir[i] = vi->ctrl->rss.indirection_table[i];
2901 }
2902
2903 if (key)
2904 memcpy(key, vi->ctrl->rss.key, vi->rss_key_size);
2905
2906 if (hfunc)
2907 *hfunc = ETH_RSS_HASH_TOP;
2908
2909 return 0;
2910 }
2911
2912 static int virtnet_set_rxfh(struct net_device *dev, const u32 *indir, const u8 *key, const u8 hfunc)
2913 {
2914 struct virtnet_info *vi = netdev_priv(dev);
2915 int i;
2916
2917 if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP)
2918 return -EOPNOTSUPP;
2919
2920 if (indir) {
2921 for (i = 0; i < vi->rss_indir_table_size; ++i)
2922 vi->ctrl->rss.indirection_table[i] = indir[i];
2923 }
2924 if (key)
2925 memcpy(vi->ctrl->rss.key, key, vi->rss_key_size);
2926
2927 virtnet_commit_rss_command(vi);
2928
2929 return 0;
2930 }
2931
2932 static int virtnet_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info, u32 *rule_locs)
2933 {
2934 struct virtnet_info *vi = netdev_priv(dev);
2935 int rc = 0;
2936
2937 switch (info->cmd) {
2938 case ETHTOOL_GRXRINGS:
2939 info->data = vi->curr_queue_pairs;
2940 break;
2941 case ETHTOOL_GRXFH:
2942 virtnet_get_hashflow(vi, info);
2943 break;
2944 default:
2945 rc = -EOPNOTSUPP;
2946 }
2947
2948 return rc;
2949 }
2950
2951 static int virtnet_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info)
2952 {
2953 struct virtnet_info *vi = netdev_priv(dev);
2954 int rc = 0;
2955
2956 switch (info->cmd) {
2957 case ETHTOOL_SRXFH:
2958 if (!virtnet_set_hashflow(vi, info))
2959 rc = -EINVAL;
2960
2961 break;
2962 default:
2963 rc = -EOPNOTSUPP;
2964 }
2965
2966 return rc;
2967 }
2968
2969 static const struct ethtool_ops virtnet_ethtool_ops = {
2970 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES |
2971 ETHTOOL_COALESCE_USECS,
2972 .get_drvinfo = virtnet_get_drvinfo,
2973 .get_link = ethtool_op_get_link,
2974 .get_ringparam = virtnet_get_ringparam,
2975 .set_ringparam = virtnet_set_ringparam,
2976 .get_strings = virtnet_get_strings,
2977 .get_sset_count = virtnet_get_sset_count,
2978 .get_ethtool_stats = virtnet_get_ethtool_stats,
2979 .set_channels = virtnet_set_channels,
2980 .get_channels = virtnet_get_channels,
2981 .get_ts_info = ethtool_op_get_ts_info,
2982 .get_link_ksettings = virtnet_get_link_ksettings,
2983 .set_link_ksettings = virtnet_set_link_ksettings,
2984 .set_coalesce = virtnet_set_coalesce,
2985 .get_coalesce = virtnet_get_coalesce,
2986 .get_rxfh_key_size = virtnet_get_rxfh_key_size,
2987 .get_rxfh_indir_size = virtnet_get_rxfh_indir_size,
2988 .get_rxfh = virtnet_get_rxfh,
2989 .set_rxfh = virtnet_set_rxfh,
2990 .get_rxnfc = virtnet_get_rxnfc,
2991 .set_rxnfc = virtnet_set_rxnfc,
2992 };
2993
2994 static void virtnet_freeze_down(struct virtio_device *vdev)
2995 {
2996 struct virtnet_info *vi = vdev->priv;
2997
2998
2999 flush_work(&vi->config_work);
3000
3001 netif_tx_lock_bh(vi->dev);
3002 netif_device_detach(vi->dev);
3003 netif_tx_unlock_bh(vi->dev);
3004 if (netif_running(vi->dev))
3005 virtnet_close(vi->dev);
3006 }
3007
3008 static int init_vqs(struct virtnet_info *vi);
3009
3010 static int virtnet_restore_up(struct virtio_device *vdev)
3011 {
3012 struct virtnet_info *vi = vdev->priv;
3013 int err;
3014
3015 err = init_vqs(vi);
3016 if (err)
3017 return err;
3018
3019 virtio_device_ready(vdev);
3020
3021 enable_delayed_refill(vi);
3022
3023 if (netif_running(vi->dev)) {
3024 err = virtnet_open(vi->dev);
3025 if (err)
3026 return err;
3027 }
3028
3029 netif_tx_lock_bh(vi->dev);
3030 netif_device_attach(vi->dev);
3031 netif_tx_unlock_bh(vi->dev);
3032 return err;
3033 }
3034
3035 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
3036 {
3037 struct scatterlist sg;
3038 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
3039
3040 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
3041
3042 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
3043 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
3044 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
3045 return -EINVAL;
3046 }
3047
3048 return 0;
3049 }
3050
3051 static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
3052 {
3053 u64 offloads = 0;
3054
3055 if (!vi->guest_offloads)
3056 return 0;
3057
3058 return virtnet_set_guest_offloads(vi, offloads);
3059 }
3060
3061 static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
3062 {
3063 u64 offloads = vi->guest_offloads;
3064
3065 if (!vi->guest_offloads)
3066 return 0;
3067
3068 return virtnet_set_guest_offloads(vi, offloads);
3069 }
3070
3071 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
3072 struct netlink_ext_ack *extack)
3073 {
3074 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
3075 struct virtnet_info *vi = netdev_priv(dev);
3076 struct bpf_prog *old_prog;
3077 u16 xdp_qp = 0, curr_qp;
3078 int i, err;
3079
3080 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
3081 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3082 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
3083 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
3084 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
3085 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) {
3086 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first");
3087 return -EOPNOTSUPP;
3088 }
3089
3090 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
3091 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
3092 return -EINVAL;
3093 }
3094
3095 if (dev->mtu > max_sz) {
3096 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
3097 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
3098 return -EINVAL;
3099 }
3100
3101 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
3102 if (prog)
3103 xdp_qp = nr_cpu_ids;
3104
3105
3106 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
3107 netdev_warn_once(dev, "XDP request %i queues but max is %i. XDP_TX and XDP_REDIRECT will operate in a slower locked tx mode.\n",
3108 curr_qp + xdp_qp, vi->max_queue_pairs);
3109 xdp_qp = 0;
3110 }
3111
3112 old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
3113 if (!prog && !old_prog)
3114 return 0;
3115
3116 if (prog)
3117 bpf_prog_add(prog, vi->max_queue_pairs - 1);
3118
3119
3120 if (netif_running(dev)) {
3121 for (i = 0; i < vi->max_queue_pairs; i++) {
3122 napi_disable(&vi->rq[i].napi);
3123 virtnet_napi_tx_disable(&vi->sq[i].napi);
3124 }
3125 }
3126
3127 if (!prog) {
3128 for (i = 0; i < vi->max_queue_pairs; i++) {
3129 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
3130 if (i == 0)
3131 virtnet_restore_guest_offloads(vi);
3132 }
3133 synchronize_net();
3134 }
3135
3136 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
3137 if (err)
3138 goto err;
3139 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
3140 vi->xdp_queue_pairs = xdp_qp;
3141
3142 if (prog) {
3143 vi->xdp_enabled = true;
3144 for (i = 0; i < vi->max_queue_pairs; i++) {
3145 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
3146 if (i == 0 && !old_prog)
3147 virtnet_clear_guest_offloads(vi);
3148 }
3149 } else {
3150 vi->xdp_enabled = false;
3151 }
3152
3153 for (i = 0; i < vi->max_queue_pairs; i++) {
3154 if (old_prog)
3155 bpf_prog_put(old_prog);
3156 if (netif_running(dev)) {
3157 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
3158 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
3159 &vi->sq[i].napi);
3160 }
3161 }
3162
3163 return 0;
3164
3165 err:
3166 if (!prog) {
3167 virtnet_clear_guest_offloads(vi);
3168 for (i = 0; i < vi->max_queue_pairs; i++)
3169 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
3170 }
3171
3172 if (netif_running(dev)) {
3173 for (i = 0; i < vi->max_queue_pairs; i++) {
3174 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
3175 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
3176 &vi->sq[i].napi);
3177 }
3178 }
3179 if (prog)
3180 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
3181 return err;
3182 }
3183
3184 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
3185 {
3186 switch (xdp->command) {
3187 case XDP_SETUP_PROG:
3188 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
3189 default:
3190 return -EINVAL;
3191 }
3192 }
3193
3194 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
3195 size_t len)
3196 {
3197 struct virtnet_info *vi = netdev_priv(dev);
3198 int ret;
3199
3200 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
3201 return -EOPNOTSUPP;
3202
3203 ret = snprintf(buf, len, "sby");
3204 if (ret >= len)
3205 return -EOPNOTSUPP;
3206
3207 return 0;
3208 }
3209
3210 static int virtnet_set_features(struct net_device *dev,
3211 netdev_features_t features)
3212 {
3213 struct virtnet_info *vi = netdev_priv(dev);
3214 u64 offloads;
3215 int err;
3216
3217 if ((dev->features ^ features) & NETIF_F_GRO_HW) {
3218 if (vi->xdp_enabled)
3219 return -EBUSY;
3220
3221 if (features & NETIF_F_GRO_HW)
3222 offloads = vi->guest_offloads_capable;
3223 else
3224 offloads = vi->guest_offloads_capable &
3225 ~GUEST_OFFLOAD_GRO_HW_MASK;
3226
3227 err = virtnet_set_guest_offloads(vi, offloads);
3228 if (err)
3229 return err;
3230 vi->guest_offloads = offloads;
3231 }
3232
3233 if ((dev->features ^ features) & NETIF_F_RXHASH) {
3234 if (features & NETIF_F_RXHASH)
3235 vi->ctrl->rss.hash_types = vi->rss_hash_types_saved;
3236 else
3237 vi->ctrl->rss.hash_types = VIRTIO_NET_HASH_REPORT_NONE;
3238
3239 if (!virtnet_commit_rss_command(vi))
3240 return -EINVAL;
3241 }
3242
3243 return 0;
3244 }
3245
3246 static void virtnet_tx_timeout(struct net_device *dev, unsigned int txqueue)
3247 {
3248 struct virtnet_info *priv = netdev_priv(dev);
3249 struct send_queue *sq = &priv->sq[txqueue];
3250 struct netdev_queue *txq = netdev_get_tx_queue(dev, txqueue);
3251
3252 u64_stats_update_begin(&sq->stats.syncp);
3253 sq->stats.tx_timeouts++;
3254 u64_stats_update_end(&sq->stats.syncp);
3255
3256 netdev_err(dev, "TX timeout on queue: %u, sq: %s, vq: 0x%x, name: %s, %u usecs ago\n",
3257 txqueue, sq->name, sq->vq->index, sq->vq->name,
3258 jiffies_to_usecs(jiffies - READ_ONCE(txq->trans_start)));
3259 }
3260
3261 static const struct net_device_ops virtnet_netdev = {
3262 .ndo_open = virtnet_open,
3263 .ndo_stop = virtnet_close,
3264 .ndo_start_xmit = start_xmit,
3265 .ndo_validate_addr = eth_validate_addr,
3266 .ndo_set_mac_address = virtnet_set_mac_address,
3267 .ndo_set_rx_mode = virtnet_set_rx_mode,
3268 .ndo_get_stats64 = virtnet_stats,
3269 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
3270 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
3271 .ndo_bpf = virtnet_xdp,
3272 .ndo_xdp_xmit = virtnet_xdp_xmit,
3273 .ndo_features_check = passthru_features_check,
3274 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
3275 .ndo_set_features = virtnet_set_features,
3276 .ndo_tx_timeout = virtnet_tx_timeout,
3277 };
3278
3279 static void virtnet_config_changed_work(struct work_struct *work)
3280 {
3281 struct virtnet_info *vi =
3282 container_of(work, struct virtnet_info, config_work);
3283 u16 v;
3284
3285 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
3286 struct virtio_net_config, status, &v) < 0)
3287 return;
3288
3289 if (v & VIRTIO_NET_S_ANNOUNCE) {
3290 netdev_notify_peers(vi->dev);
3291 virtnet_ack_link_announce(vi);
3292 }
3293
3294
3295 v &= VIRTIO_NET_S_LINK_UP;
3296
3297 if (vi->status == v)
3298 return;
3299
3300 vi->status = v;
3301
3302 if (vi->status & VIRTIO_NET_S_LINK_UP) {
3303 virtnet_update_settings(vi);
3304 netif_carrier_on(vi->dev);
3305 netif_tx_wake_all_queues(vi->dev);
3306 } else {
3307 netif_carrier_off(vi->dev);
3308 netif_tx_stop_all_queues(vi->dev);
3309 }
3310 }
3311
3312 static void virtnet_config_changed(struct virtio_device *vdev)
3313 {
3314 struct virtnet_info *vi = vdev->priv;
3315
3316 schedule_work(&vi->config_work);
3317 }
3318
3319 static void virtnet_free_queues(struct virtnet_info *vi)
3320 {
3321 int i;
3322
3323 for (i = 0; i < vi->max_queue_pairs; i++) {
3324 __netif_napi_del(&vi->rq[i].napi);
3325 __netif_napi_del(&vi->sq[i].napi);
3326 }
3327
3328
3329
3330
3331 synchronize_net();
3332
3333 kfree(vi->rq);
3334 kfree(vi->sq);
3335 kfree(vi->ctrl);
3336 }
3337
3338 static void _free_receive_bufs(struct virtnet_info *vi)
3339 {
3340 struct bpf_prog *old_prog;
3341 int i;
3342
3343 for (i = 0; i < vi->max_queue_pairs; i++) {
3344 while (vi->rq[i].pages)
3345 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
3346
3347 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
3348 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
3349 if (old_prog)
3350 bpf_prog_put(old_prog);
3351 }
3352 }
3353
3354 static void free_receive_bufs(struct virtnet_info *vi)
3355 {
3356 rtnl_lock();
3357 _free_receive_bufs(vi);
3358 rtnl_unlock();
3359 }
3360
3361 static void free_receive_page_frags(struct virtnet_info *vi)
3362 {
3363 int i;
3364 for (i = 0; i < vi->max_queue_pairs; i++)
3365 if (vi->rq[i].alloc_frag.page)
3366 put_page(vi->rq[i].alloc_frag.page);
3367 }
3368
3369 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf)
3370 {
3371 if (!is_xdp_frame(buf))
3372 dev_kfree_skb(buf);
3373 else
3374 xdp_return_frame(ptr_to_xdp(buf));
3375 }
3376
3377 static void virtnet_rq_free_unused_buf(struct virtqueue *vq, void *buf)
3378 {
3379 struct virtnet_info *vi = vq->vdev->priv;
3380 int i = vq2rxq(vq);
3381
3382 if (vi->mergeable_rx_bufs)
3383 put_page(virt_to_head_page(buf));
3384 else if (vi->big_packets)
3385 give_pages(&vi->rq[i], buf);
3386 else
3387 put_page(virt_to_head_page(buf));
3388 }
3389
3390 static void free_unused_bufs(struct virtnet_info *vi)
3391 {
3392 void *buf;
3393 int i;
3394
3395 for (i = 0; i < vi->max_queue_pairs; i++) {
3396 struct virtqueue *vq = vi->sq[i].vq;
3397 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
3398 virtnet_sq_free_unused_buf(vq, buf);
3399 }
3400
3401 for (i = 0; i < vi->max_queue_pairs; i++) {
3402 struct virtqueue *vq = vi->rq[i].vq;
3403 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
3404 virtnet_rq_free_unused_buf(vq, buf);
3405 }
3406 }
3407
3408 static void virtnet_del_vqs(struct virtnet_info *vi)
3409 {
3410 struct virtio_device *vdev = vi->vdev;
3411
3412 virtnet_clean_affinity(vi);
3413
3414 vdev->config->del_vqs(vdev);
3415
3416 virtnet_free_queues(vi);
3417 }
3418
3419
3420
3421
3422
3423 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
3424 {
3425 const unsigned int hdr_len = vi->hdr_len;
3426 unsigned int rq_size = virtqueue_get_vring_size(vq);
3427 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
3428 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
3429 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
3430
3431 return max(max(min_buf_len, hdr_len) - hdr_len,
3432 (unsigned int)GOOD_PACKET_LEN);
3433 }
3434
3435 static int virtnet_find_vqs(struct virtnet_info *vi)
3436 {
3437 vq_callback_t **callbacks;
3438 struct virtqueue **vqs;
3439 int ret = -ENOMEM;
3440 int i, total_vqs;
3441 const char **names;
3442 bool *ctx;
3443
3444
3445
3446
3447
3448 total_vqs = vi->max_queue_pairs * 2 +
3449 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
3450
3451
3452 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
3453 if (!vqs)
3454 goto err_vq;
3455 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
3456 if (!callbacks)
3457 goto err_callback;
3458 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
3459 if (!names)
3460 goto err_names;
3461 if (!vi->big_packets || vi->mergeable_rx_bufs) {
3462 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
3463 if (!ctx)
3464 goto err_ctx;
3465 } else {
3466 ctx = NULL;
3467 }
3468
3469
3470 if (vi->has_cvq) {
3471 callbacks[total_vqs - 1] = NULL;
3472 names[total_vqs - 1] = "control";
3473 }
3474
3475
3476 for (i = 0; i < vi->max_queue_pairs; i++) {
3477 callbacks[rxq2vq(i)] = skb_recv_done;
3478 callbacks[txq2vq(i)] = skb_xmit_done;
3479 sprintf(vi->rq[i].name, "input.%d", i);
3480 sprintf(vi->sq[i].name, "output.%d", i);
3481 names[rxq2vq(i)] = vi->rq[i].name;
3482 names[txq2vq(i)] = vi->sq[i].name;
3483 if (ctx)
3484 ctx[rxq2vq(i)] = true;
3485 }
3486
3487 ret = virtio_find_vqs_ctx(vi->vdev, total_vqs, vqs, callbacks,
3488 names, ctx, NULL);
3489 if (ret)
3490 goto err_find;
3491
3492 if (vi->has_cvq) {
3493 vi->cvq = vqs[total_vqs - 1];
3494 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
3495 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
3496 }
3497
3498 for (i = 0; i < vi->max_queue_pairs; i++) {
3499 vi->rq[i].vq = vqs[rxq2vq(i)];
3500 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
3501 vi->sq[i].vq = vqs[txq2vq(i)];
3502 }
3503
3504
3505
3506
3507 err_find:
3508 kfree(ctx);
3509 err_ctx:
3510 kfree(names);
3511 err_names:
3512 kfree(callbacks);
3513 err_callback:
3514 kfree(vqs);
3515 err_vq:
3516 return ret;
3517 }
3518
3519 static int virtnet_alloc_queues(struct virtnet_info *vi)
3520 {
3521 int i;
3522
3523 if (vi->has_cvq) {
3524 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
3525 if (!vi->ctrl)
3526 goto err_ctrl;
3527 } else {
3528 vi->ctrl = NULL;
3529 }
3530 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
3531 if (!vi->sq)
3532 goto err_sq;
3533 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
3534 if (!vi->rq)
3535 goto err_rq;
3536
3537 INIT_DELAYED_WORK(&vi->refill, refill_work);
3538 for (i = 0; i < vi->max_queue_pairs; i++) {
3539 vi->rq[i].pages = NULL;
3540 netif_napi_add_weight(vi->dev, &vi->rq[i].napi, virtnet_poll,
3541 napi_weight);
3542 netif_napi_add_tx_weight(vi->dev, &vi->sq[i].napi,
3543 virtnet_poll_tx,
3544 napi_tx ? napi_weight : 0);
3545
3546 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
3547 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
3548 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
3549
3550 u64_stats_init(&vi->rq[i].stats.syncp);
3551 u64_stats_init(&vi->sq[i].stats.syncp);
3552 }
3553
3554 return 0;
3555
3556 err_rq:
3557 kfree(vi->sq);
3558 err_sq:
3559 kfree(vi->ctrl);
3560 err_ctrl:
3561 return -ENOMEM;
3562 }
3563
3564 static int init_vqs(struct virtnet_info *vi)
3565 {
3566 int ret;
3567
3568
3569 ret = virtnet_alloc_queues(vi);
3570 if (ret)
3571 goto err;
3572
3573 ret = virtnet_find_vqs(vi);
3574 if (ret)
3575 goto err_free;
3576
3577 cpus_read_lock();
3578 virtnet_set_affinity(vi);
3579 cpus_read_unlock();
3580
3581 return 0;
3582
3583 err_free:
3584 virtnet_free_queues(vi);
3585 err:
3586 return ret;
3587 }
3588
3589 #ifdef CONFIG_SYSFS
3590 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
3591 char *buf)
3592 {
3593 struct virtnet_info *vi = netdev_priv(queue->dev);
3594 unsigned int queue_index = get_netdev_rx_queue_index(queue);
3595 unsigned int headroom = virtnet_get_headroom(vi);
3596 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
3597 struct ewma_pkt_len *avg;
3598
3599 BUG_ON(queue_index >= vi->max_queue_pairs);
3600 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
3601 return sprintf(buf, "%u\n",
3602 get_mergeable_buf_len(&vi->rq[queue_index], avg,
3603 SKB_DATA_ALIGN(headroom + tailroom)));
3604 }
3605
3606 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
3607 __ATTR_RO(mergeable_rx_buffer_size);
3608
3609 static struct attribute *virtio_net_mrg_rx_attrs[] = {
3610 &mergeable_rx_buffer_size_attribute.attr,
3611 NULL
3612 };
3613
3614 static const struct attribute_group virtio_net_mrg_rx_group = {
3615 .name = "virtio_net",
3616 .attrs = virtio_net_mrg_rx_attrs
3617 };
3618 #endif
3619
3620 static bool virtnet_fail_on_feature(struct virtio_device *vdev,
3621 unsigned int fbit,
3622 const char *fname, const char *dname)
3623 {
3624 if (!virtio_has_feature(vdev, fbit))
3625 return false;
3626
3627 dev_err(&vdev->dev, "device advertises feature %s but not %s",
3628 fname, dname);
3629
3630 return true;
3631 }
3632
3633 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
3634 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
3635
3636 static bool virtnet_validate_features(struct virtio_device *vdev)
3637 {
3638 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
3639 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
3640 "VIRTIO_NET_F_CTRL_VQ") ||
3641 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
3642 "VIRTIO_NET_F_CTRL_VQ") ||
3643 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
3644 "VIRTIO_NET_F_CTRL_VQ") ||
3645 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
3646 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
3647 "VIRTIO_NET_F_CTRL_VQ") ||
3648 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_RSS,
3649 "VIRTIO_NET_F_CTRL_VQ") ||
3650 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_HASH_REPORT,
3651 "VIRTIO_NET_F_CTRL_VQ") ||
3652 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_NOTF_COAL,
3653 "VIRTIO_NET_F_CTRL_VQ"))) {
3654 return false;
3655 }
3656
3657 return true;
3658 }
3659
3660 #define MIN_MTU ETH_MIN_MTU
3661 #define MAX_MTU ETH_MAX_MTU
3662
3663 static int virtnet_validate(struct virtio_device *vdev)
3664 {
3665 if (!vdev->config->get) {
3666 dev_err(&vdev->dev, "%s failure: config access disabled\n",
3667 __func__);
3668 return -EINVAL;
3669 }
3670
3671 if (!virtnet_validate_features(vdev))
3672 return -EINVAL;
3673
3674 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3675 int mtu = virtio_cread16(vdev,
3676 offsetof(struct virtio_net_config,
3677 mtu));
3678 if (mtu < MIN_MTU)
3679 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
3680 }
3681
3682 return 0;
3683 }
3684
3685 static int virtnet_probe(struct virtio_device *vdev)
3686 {
3687 int i, err = -ENOMEM;
3688 struct net_device *dev;
3689 struct virtnet_info *vi;
3690 u16 max_queue_pairs;
3691 int mtu;
3692
3693
3694 max_queue_pairs = 1;
3695 if (virtio_has_feature(vdev, VIRTIO_NET_F_MQ) || virtio_has_feature(vdev, VIRTIO_NET_F_RSS))
3696 max_queue_pairs =
3697 virtio_cread16(vdev, offsetof(struct virtio_net_config, max_virtqueue_pairs));
3698
3699
3700 if (max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
3701 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
3702 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3703 max_queue_pairs = 1;
3704
3705
3706 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
3707 if (!dev)
3708 return -ENOMEM;
3709
3710
3711 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE |
3712 IFF_TX_SKB_NO_LINEAR;
3713 dev->netdev_ops = &virtnet_netdev;
3714 dev->features = NETIF_F_HIGHDMA;
3715
3716 dev->ethtool_ops = &virtnet_ethtool_ops;
3717 SET_NETDEV_DEV(dev, &vdev->dev);
3718
3719
3720 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
3721
3722 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
3723 if (csum)
3724 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
3725
3726 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
3727 dev->hw_features |= NETIF_F_TSO
3728 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
3729 }
3730
3731 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
3732 dev->hw_features |= NETIF_F_TSO;
3733 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
3734 dev->hw_features |= NETIF_F_TSO6;
3735 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
3736 dev->hw_features |= NETIF_F_TSO_ECN;
3737
3738 dev->features |= NETIF_F_GSO_ROBUST;
3739
3740 if (gso)
3741 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
3742
3743 }
3744 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
3745 dev->features |= NETIF_F_RXCSUM;
3746 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3747 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
3748 dev->features |= NETIF_F_GRO_HW;
3749 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
3750 dev->hw_features |= NETIF_F_GRO_HW;
3751
3752 dev->vlan_features = dev->features;
3753
3754
3755 dev->min_mtu = MIN_MTU;
3756 dev->max_mtu = MAX_MTU;
3757
3758
3759 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
3760 u8 addr[ETH_ALEN];
3761
3762 virtio_cread_bytes(vdev,
3763 offsetof(struct virtio_net_config, mac),
3764 addr, ETH_ALEN);
3765 eth_hw_addr_set(dev, addr);
3766 } else {
3767 eth_hw_addr_random(dev);
3768 }
3769
3770
3771 vi = netdev_priv(dev);
3772 vi->dev = dev;
3773 vi->vdev = vdev;
3774 vdev->priv = vi;
3775
3776 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
3777 spin_lock_init(&vi->refill_lock);
3778
3779
3780 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3781 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
3782 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
3783 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
3784 vi->big_packets = true;
3785
3786 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
3787 vi->mergeable_rx_bufs = true;
3788
3789 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
3790 vi->rx_usecs = 0;
3791 vi->tx_usecs = 0;
3792 vi->tx_max_packets = 0;
3793 vi->rx_max_packets = 0;
3794 }
3795
3796 if (virtio_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT))
3797 vi->has_rss_hash_report = true;
3798
3799 if (virtio_has_feature(vdev, VIRTIO_NET_F_RSS))
3800 vi->has_rss = true;
3801
3802 if (vi->has_rss || vi->has_rss_hash_report) {
3803 vi->rss_indir_table_size =
3804 virtio_cread16(vdev, offsetof(struct virtio_net_config,
3805 rss_max_indirection_table_length));
3806 vi->rss_key_size =
3807 virtio_cread8(vdev, offsetof(struct virtio_net_config, rss_max_key_size));
3808
3809 vi->rss_hash_types_supported =
3810 virtio_cread32(vdev, offsetof(struct virtio_net_config, supported_hash_types));
3811 vi->rss_hash_types_supported &=
3812 ~(VIRTIO_NET_RSS_HASH_TYPE_IP_EX |
3813 VIRTIO_NET_RSS_HASH_TYPE_TCP_EX |
3814 VIRTIO_NET_RSS_HASH_TYPE_UDP_EX);
3815
3816 dev->hw_features |= NETIF_F_RXHASH;
3817 }
3818
3819 if (vi->has_rss_hash_report)
3820 vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash);
3821 else if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
3822 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
3823 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
3824 else
3825 vi->hdr_len = sizeof(struct virtio_net_hdr);
3826
3827 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
3828 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
3829 vi->any_header_sg = true;
3830
3831 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3832 vi->has_cvq = true;
3833
3834 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3835 mtu = virtio_cread16(vdev,
3836 offsetof(struct virtio_net_config,
3837 mtu));
3838 if (mtu < dev->min_mtu) {
3839
3840
3841
3842 dev_err(&vdev->dev,
3843 "device MTU appears to have changed it is now %d < %d",
3844 mtu, dev->min_mtu);
3845 err = -EINVAL;
3846 goto free;
3847 }
3848
3849 dev->mtu = mtu;
3850 dev->max_mtu = mtu;
3851
3852
3853 if (dev->mtu > ETH_DATA_LEN)
3854 vi->big_packets = true;
3855 }
3856
3857 if (vi->any_header_sg)
3858 dev->needed_headroom = vi->hdr_len;
3859
3860
3861 if (num_online_cpus() >= max_queue_pairs)
3862 vi->curr_queue_pairs = max_queue_pairs;
3863 else
3864 vi->curr_queue_pairs = num_online_cpus();
3865 vi->max_queue_pairs = max_queue_pairs;
3866
3867
3868 err = init_vqs(vi);
3869 if (err)
3870 goto free;
3871
3872 #ifdef CONFIG_SYSFS
3873 if (vi->mergeable_rx_bufs)
3874 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3875 #endif
3876 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3877 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
3878
3879 virtnet_init_settings(dev);
3880
3881 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3882 vi->failover = net_failover_create(vi->dev);
3883 if (IS_ERR(vi->failover)) {
3884 err = PTR_ERR(vi->failover);
3885 goto free_vqs;
3886 }
3887 }
3888
3889 if (vi->has_rss || vi->has_rss_hash_report)
3890 virtnet_init_default_rss(vi);
3891
3892
3893 rtnl_lock();
3894
3895 err = register_netdevice(dev);
3896 if (err) {
3897 pr_debug("virtio_net: registering device failed\n");
3898 rtnl_unlock();
3899 goto free_failover;
3900 }
3901
3902 virtio_device_ready(vdev);
3903
3904 rtnl_unlock();
3905
3906 err = virtnet_cpu_notif_add(vi);
3907 if (err) {
3908 pr_debug("virtio_net: registering cpu notifier failed\n");
3909 goto free_unregister_netdev;
3910 }
3911
3912 virtnet_set_queues(vi, vi->curr_queue_pairs);
3913
3914
3915
3916 netif_carrier_off(dev);
3917 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
3918 schedule_work(&vi->config_work);
3919 } else {
3920 vi->status = VIRTIO_NET_S_LINK_UP;
3921 virtnet_update_settings(vi);
3922 netif_carrier_on(dev);
3923 }
3924
3925 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3926 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3927 set_bit(guest_offloads[i], &vi->guest_offloads);
3928 vi->guest_offloads_capable = vi->guest_offloads;
3929
3930 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3931 dev->name, max_queue_pairs);
3932
3933 return 0;
3934
3935 free_unregister_netdev:
3936 virtio_reset_device(vdev);
3937
3938 unregister_netdev(dev);
3939 free_failover:
3940 net_failover_destroy(vi->failover);
3941 free_vqs:
3942 cancel_delayed_work_sync(&vi->refill);
3943 free_receive_page_frags(vi);
3944 virtnet_del_vqs(vi);
3945 free:
3946 free_netdev(dev);
3947 return err;
3948 }
3949
3950 static void remove_vq_common(struct virtnet_info *vi)
3951 {
3952 virtio_reset_device(vi->vdev);
3953
3954
3955 free_unused_bufs(vi);
3956
3957 free_receive_bufs(vi);
3958
3959 free_receive_page_frags(vi);
3960
3961 virtnet_del_vqs(vi);
3962 }
3963
3964 static void virtnet_remove(struct virtio_device *vdev)
3965 {
3966 struct virtnet_info *vi = vdev->priv;
3967
3968 virtnet_cpu_notif_remove(vi);
3969
3970
3971 flush_work(&vi->config_work);
3972
3973 unregister_netdev(vi->dev);
3974
3975 net_failover_destroy(vi->failover);
3976
3977 remove_vq_common(vi);
3978
3979 free_netdev(vi->dev);
3980 }
3981
3982 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
3983 {
3984 struct virtnet_info *vi = vdev->priv;
3985
3986 virtnet_cpu_notif_remove(vi);
3987 virtnet_freeze_down(vdev);
3988 remove_vq_common(vi);
3989
3990 return 0;
3991 }
3992
3993 static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
3994 {
3995 struct virtnet_info *vi = vdev->priv;
3996 int err;
3997
3998 err = virtnet_restore_up(vdev);
3999 if (err)
4000 return err;
4001 virtnet_set_queues(vi, vi->curr_queue_pairs);
4002
4003 err = virtnet_cpu_notif_add(vi);
4004 if (err) {
4005 virtnet_freeze_down(vdev);
4006 remove_vq_common(vi);
4007 return err;
4008 }
4009
4010 return 0;
4011 }
4012
4013 static struct virtio_device_id id_table[] = {
4014 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
4015 { 0 },
4016 };
4017
4018 #define VIRTNET_FEATURES \
4019 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
4020 VIRTIO_NET_F_MAC, \
4021 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
4022 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
4023 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
4024 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
4025 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
4026 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
4027 VIRTIO_NET_F_CTRL_MAC_ADDR, \
4028 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
4029 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY, \
4030 VIRTIO_NET_F_RSS, VIRTIO_NET_F_HASH_REPORT, VIRTIO_NET_F_NOTF_COAL
4031
4032 static unsigned int features[] = {
4033 VIRTNET_FEATURES,
4034 };
4035
4036 static unsigned int features_legacy[] = {
4037 VIRTNET_FEATURES,
4038 VIRTIO_NET_F_GSO,
4039 VIRTIO_F_ANY_LAYOUT,
4040 };
4041
4042 static struct virtio_driver virtio_net_driver = {
4043 .feature_table = features,
4044 .feature_table_size = ARRAY_SIZE(features),
4045 .feature_table_legacy = features_legacy,
4046 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
4047 .driver.name = KBUILD_MODNAME,
4048 .driver.owner = THIS_MODULE,
4049 .id_table = id_table,
4050 .validate = virtnet_validate,
4051 .probe = virtnet_probe,
4052 .remove = virtnet_remove,
4053 .config_changed = virtnet_config_changed,
4054 #ifdef CONFIG_PM_SLEEP
4055 .freeze = virtnet_freeze,
4056 .restore = virtnet_restore,
4057 #endif
4058 };
4059
4060 static __init int virtio_net_driver_init(void)
4061 {
4062 int ret;
4063
4064 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
4065 virtnet_cpu_online,
4066 virtnet_cpu_down_prep);
4067 if (ret < 0)
4068 goto out;
4069 virtionet_online = ret;
4070 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
4071 NULL, virtnet_cpu_dead);
4072 if (ret)
4073 goto err_dead;
4074 ret = register_virtio_driver(&virtio_net_driver);
4075 if (ret)
4076 goto err_virtio;
4077 return 0;
4078 err_virtio:
4079 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
4080 err_dead:
4081 cpuhp_remove_multi_state(virtionet_online);
4082 out:
4083 return ret;
4084 }
4085 module_init(virtio_net_driver_init);
4086
4087 static __exit void virtio_net_driver_exit(void)
4088 {
4089 unregister_virtio_driver(&virtio_net_driver);
4090 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
4091 cpuhp_remove_multi_state(virtionet_online);
4092 }
4093 module_exit(virtio_net_driver_exit);
4094
4095 MODULE_DEVICE_TABLE(virtio, id_table);
4096 MODULE_DESCRIPTION("Virtio network driver");
4097 MODULE_LICENSE("GPL");