blob: 21b71148c53241beb26b0e812f4038854c35a479 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rusty Russell48925e32009-09-24 09:59:20 -06002/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10003 *
4 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
Rusty Russell296f96f2007-10-22 11:03:37 +10005 */
6//#define DEBUG
7#include <linux/netdevice.h>
8#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +08009#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100010#include <linux/module.h>
11#include <linux/virtio.h>
12#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080013#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010014#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100015#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080016#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000018#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080019#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080020#include <linux/filter.h>
Caleb Raitto2ca653d2018-08-09 17:28:40 -070021#include <linux/kernel.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020022#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010023#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070024#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100025
Amerigo Wangd34710e2013-05-09 19:50:51 +000026static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020027module_param(napi_weight, int, 0444);
28
Willem de Bruijn31c03ae2019-06-13 12:24:57 -040029static bool csum = true, gso = true, napi_tx = true;
Rusty Russell34a48572008-02-04 23:50:02 -050030module_param(csum, bool, 0444);
31module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040032module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050033
Rusty Russell296f96f2007-10-22 11:03:37 +100034/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080035#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080036#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100037
Jason Wangf6b10202017-02-21 16:46:28 +080038#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
39
John Fastabend2de2f7f2017-02-02 19:16:29 -080040/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
41#define VIRTIO_XDP_HEADROOM 256
42
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020043/* Separating two types of XDP xmit */
44#define VIRTIO_XDP_TX BIT(0)
45#define VIRTIO_XDP_REDIR BIT(1)
46
Toshiaki Makita50504712019-01-29 09:45:59 +090047#define VIRTIO_XDP_FLAG BIT(0)
48
Johannes Berg5377d7582015-08-19 09:48:40 +020049/* RX packet size EWMA. The average packet size is used to determine the packet
50 * buffer size when refilling RX rings. As the entire RX ring may be refilled
51 * at once, the weight is chosen so that the EWMA will be insensitive to short-
52 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080053 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010054DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080055
Rick Jones66846042011-11-14 14:17:08 +000056#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000057
Colin Ian King7acd4322017-08-12 22:45:53 +010058static const unsigned long guest_offloads[] = {
59 VIRTIO_NET_F_GUEST_TSO4,
60 VIRTIO_NET_F_GUEST_TSO6,
61 VIRTIO_NET_F_GUEST_ECN,
Jason Wange59ff2c2018-11-22 14:36:30 +080062 VIRTIO_NET_F_GUEST_UFO,
63 VIRTIO_NET_F_GUEST_CSUM
Colin Ian King7acd4322017-08-12 22:45:53 +010064};
Jason Wang3f935222017-07-19 16:54:49 +080065
Tonghao Zhang1a03b8a2020-09-29 09:58:06 +080066#define GUEST_OFFLOAD_LRO_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
67 (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \
68 (1ULL << VIRTIO_NET_F_GUEST_ECN) | \
69 (1ULL << VIRTIO_NET_F_GUEST_UFO))
70
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090071struct virtnet_stat_desc {
72 char desc[ETH_GSTRING_LEN];
73 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000074};
75
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090076struct virtnet_sq_stats {
77 struct u64_stats_sync syncp;
78 u64 packets;
79 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090080 u64 xdp_tx;
81 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090082 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090083};
84
Jason Wangd46eeea2018-07-31 17:43:39 +080085struct virtnet_rq_stats {
86 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090087 u64 packets;
88 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090089 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090090 u64 xdp_packets;
91 u64 xdp_tx;
92 u64 xdp_redirects;
93 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090094 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090095};
96
97#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +080098#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090099
100static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900101 { "packets", VIRTNET_SQ_STAT(packets) },
102 { "bytes", VIRTNET_SQ_STAT(bytes) },
103 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
104 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900105 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900106};
107
108static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900109 { "packets", VIRTNET_RQ_STAT(packets) },
110 { "bytes", VIRTNET_RQ_STAT(bytes) },
111 { "drops", VIRTNET_RQ_STAT(drops) },
112 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
113 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
114 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
115 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900116 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900117};
118
119#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
120#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
121
Jason Wange9d74172012-12-07 07:04:55 +0000122/* Internal representation of a send virtqueue */
123struct send_queue {
124 /* Virtqueue associated with this send _queue */
125 struct virtqueue *vq;
126
127 /* TX: fragments + linear part + virtio header */
128 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000129
130 /* Name of the send queue: output.$index */
131 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400132
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900133 struct virtnet_sq_stats stats;
134
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400135 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000136};
137
138/* Internal representation of a receive virtqueue */
139struct receive_queue {
140 /* Virtqueue associated with this receive_queue */
141 struct virtqueue *vq;
142
Rusty Russell296f96f2007-10-22 11:03:37 +1000143 struct napi_struct napi;
144
John Fastabendf600b692016-12-15 12:13:24 -0800145 struct bpf_prog __rcu *xdp_prog;
146
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900147 struct virtnet_rq_stats stats;
148
Jason Wange9d74172012-12-07 07:04:55 +0000149 /* Chain pages by the private ptr. */
150 struct page *pages;
151
Michael Daltonab7db912014-01-16 22:23:27 -0800152 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200153 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800154
Michael Daltonfb518792014-01-16 22:23:26 -0800155 /* Page frag for packet buffer allocation. */
156 struct page_frag alloc_frag;
157
Jason Wange9d74172012-12-07 07:04:55 +0000158 /* RX: fragments + linear part + virtio header */
159 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000160
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200161 /* Min single buffer size for mergeable buffers case. */
162 unsigned int min_buf_len;
163
Jason Wang986a4f42012-12-07 07:04:56 +0000164 /* Name of this receive queue: input.$index */
165 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100166
167 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000168};
169
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300170/* Control VQ buffers: protected by the rtnl lock */
171struct control_buf {
172 struct virtio_net_ctrl_hdr hdr;
173 virtio_net_ctrl_ack status;
174 struct virtio_net_ctrl_mq mq;
175 u8 promisc;
176 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300177 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300178 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300179};
180
Jason Wange9d74172012-12-07 07:04:55 +0000181struct virtnet_info {
182 struct virtio_device *vdev;
183 struct virtqueue *cvq;
184 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000185 struct send_queue *sq;
186 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000187 unsigned int status;
188
Jason Wang986a4f42012-12-07 07:04:56 +0000189 /* Max # of queue pairs supported by the device */
190 u16 max_queue_pairs;
191
192 /* # of queue pairs currently used by the driver */
193 u16 curr_queue_pairs;
194
John Fastabend672aafd2016-12-15 12:13:49 -0800195 /* # of XDP queue pairs currently used by the driver */
196 u16 xdp_queue_pairs;
197
Herbert Xu97402b92008-04-18 11:24:27 +0800198 /* I like... big packets and I cannot lie! */
199 bool big_packets;
200
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800201 /* Host will merge rx buffers for big packets (shake it! shake it!) */
202 bool mergeable_rx_bufs;
203
Jason Wang986a4f42012-12-07 07:04:56 +0000204 /* Has control virtqueue */
205 bool has_cvq;
206
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930207 /* Host can handle any s/g split between our header and packet data */
208 bool any_header_sg;
209
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300210 /* Packet virtio header size */
211 u8 hdr_len;
212
Rusty Russell3161e452009-08-26 12:22:32 -0700213 /* Work struct for refilling if we run low on memory. */
214 struct delayed_work refill;
215
Jason Wang586d17c2012-04-11 20:43:52 +0000216 /* Work struct for config space updates */
217 struct work_struct config_work;
218
Jason Wang986a4f42012-12-07 07:04:56 +0000219 /* Does the affinity hint is set for virtqueues? */
220 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000221
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200222 /* CPU hotplug instances for online & dead */
223 struct hlist_node node;
224 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200225
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300226 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100227
228 /* Ethtool settings */
229 u8 duplex;
230 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800231
232 unsigned long guest_offloads;
Willem de Bruijna02e8962018-12-20 17:14:54 -0500233 unsigned long guest_offloads_capable;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700234
235 /* failover when STANDBY feature enabled */
236 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000237};
238
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000239struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300240 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000241 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300242 * hdr is in a separate sg buffer, and data sg buffer shares same page
243 * with this header sg. This padding makes next sg 16 byte aligned
244 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000245 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300246 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000247};
248
Toshiaki Makita50504712019-01-29 09:45:59 +0900249static bool is_xdp_frame(void *ptr)
250{
251 return (unsigned long)ptr & VIRTIO_XDP_FLAG;
252}
253
254static void *xdp_to_ptr(struct xdp_frame *ptr)
255{
256 return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG);
257}
258
259static struct xdp_frame *ptr_to_xdp(void *ptr)
260{
261 return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG);
262}
263
Jason Wang986a4f42012-12-07 07:04:56 +0000264/* Converting between virtqueue no. and kernel tx/rx queue no.
265 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
266 */
267static int vq2txq(struct virtqueue *vq)
268{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000269 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000270}
271
272static int txq2vq(int txq)
273{
274 return txq * 2 + 1;
275}
276
277static int vq2rxq(struct virtqueue *vq)
278{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000279 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000280}
281
282static int rxq2vq(int rxq)
283{
284 return rxq * 2;
285}
286
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300287static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000288{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300289 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000290}
291
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000292/*
293 * private is used to chain pages for big packets, put the whole
294 * most recent used list in the beginning for reuse
295 */
Jason Wange9d74172012-12-07 07:04:55 +0000296static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500297{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000298 struct page *end;
299
Jason Wange9d74172012-12-07 07:04:55 +0000300 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000301 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000302 end->private = (unsigned long)rq->pages;
303 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500304}
305
Jason Wange9d74172012-12-07 07:04:55 +0000306static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500307{
Jason Wange9d74172012-12-07 07:04:55 +0000308 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500309
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000310 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000311 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000312 /* clear private here, it is used to chain pages */
313 p->private = 0;
314 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500315 p = alloc_page(gfp_mask);
316 return p;
317}
318
Willem de Bruijne4e84522017-04-24 13:49:26 -0400319static void virtqueue_napi_schedule(struct napi_struct *napi,
320 struct virtqueue *vq)
321{
322 if (napi_schedule_prep(napi)) {
323 virtqueue_disable_cb(vq);
324 __napi_schedule(napi);
325 }
326}
327
328static void virtqueue_napi_complete(struct napi_struct *napi,
329 struct virtqueue *vq, int processed)
330{
331 int opaque;
332
333 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900334 if (napi_complete_done(napi, processed)) {
335 if (unlikely(virtqueue_poll(vq, opaque)))
336 virtqueue_napi_schedule(napi, vq);
337 } else {
338 virtqueue_disable_cb(vq);
339 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400340}
341
Jason Wange9d74172012-12-07 07:04:55 +0000342static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000343{
Jason Wange9d74172012-12-07 07:04:55 +0000344 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400345 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000346
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500347 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000348 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000349
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400350 if (napi->weight)
351 virtqueue_napi_schedule(napi, vq);
352 else
353 /* We were probably waiting for more output buffers. */
354 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000355}
356
Jason Wang28b39bc2017-07-19 16:54:46 +0800357#define MRG_CTX_HEADER_SHIFT 22
358static void *mergeable_len_to_ctx(unsigned int truesize,
359 unsigned int headroom)
360{
361 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
362}
363
364static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
365{
366 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
367}
368
369static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
370{
371 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
372}
373
Mike Waychison34646452012-01-04 12:52:32 +0000374/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300375static struct sk_buff *page_to_skb(struct virtnet_info *vi,
376 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700377 struct page *page, unsigned int offset,
Jason Wang436c9452018-11-29 13:53:16 +0800378 unsigned int len, unsigned int truesize,
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900379 bool hdr_valid, unsigned int metasize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000380{
381 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300382 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700383 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000384 char *p;
385
Michael Dalton2613af02013-10-28 15:44:18 -0700386 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000387
388 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100389 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000390 if (unlikely(!skb))
391 return NULL;
392
393 hdr = skb_vnet_hdr(skb);
394
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300395 hdr_len = vi->hdr_len;
396 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700397 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300398 else
Michael Dalton2613af02013-10-28 15:44:18 -0700399 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000400
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900401 /* hdr_valid means no XDP, so we can copy the vnet header */
Jason Wang436c9452018-11-29 13:53:16 +0800402 if (hdr_valid)
403 memcpy(hdr, p, hdr_len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000404
405 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700406 offset += hdr_padded_len;
407 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000408
409 copy = len;
410 if (copy > skb_tailroom(skb))
411 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200412 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000413
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900414 if (metasize) {
415 __skb_pull(skb, metasize);
416 skb_metadata_set(skb, metasize);
417 }
418
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000419 len -= copy;
420 offset += copy;
421
Michael Dalton2613af02013-10-28 15:44:18 -0700422 if (vi->mergeable_rx_bufs) {
423 if (len)
424 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
425 else
426 put_page(page);
427 return skb;
428 }
429
Sasha Levine878d782011-09-28 04:40:54 +0000430 /*
431 * Verify that we can indeed put this data into a skb.
432 * This is here to handle cases when the device erroneously
433 * tries to receive more than is possible. This is usually
434 * the case of a broken device.
435 */
436 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000437 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000438 dev_kfree_skb(skb);
439 return NULL;
440 }
Michael Dalton2613af02013-10-28 15:44:18 -0700441 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000442 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700443 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
444 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
445 frag_size, truesize);
446 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000447 page = (struct page *)page->private;
448 offset = 0;
449 }
450
451 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000452 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000453
454 return skb;
455}
456
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200457static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
458 struct send_queue *sq,
459 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800460{
John Fastabend56434a02016-12-15 12:14:13 -0800461 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800462 int err;
463
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200464 if (unlikely(xdpf->headroom < vi->hdr_len))
465 return -EOVERFLOW;
466
467 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
468 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800469 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200470 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800471 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200472 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800473
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200474 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800475
Toshiaki Makita50504712019-01-29 09:45:59 +0900476 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp_to_ptr(xdpf),
477 GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100478 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200479 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800480
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200481 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800482}
483
Toshiaki Makita2a435652018-07-23 23:36:07 +0900484static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
485{
486 unsigned int qp;
487
488 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
489 return &vi->sq[qp];
490}
491
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200492static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200493 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800494{
495 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100496 struct receive_queue *rq = vi->rq;
497 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200498 struct send_queue *sq;
499 unsigned int len;
Toshiaki Makita546f28972019-01-31 20:40:30 +0900500 int packets = 0;
501 int bytes = 0;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200502 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900503 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900504 int ret, err;
Toshiaki Makita50504712019-01-29 09:45:59 +0900505 void *ptr;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200506 int i;
507
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100508 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
509 * indicate XDP resources have been successfully allocated.
510 */
John Fastabend9719c6b2020-01-26 16:14:01 -0800511 xdp_prog = rcu_access_pointer(rq->xdp_prog);
Toshiaki Makita1667c082019-01-29 09:45:56 +0900512 if (!xdp_prog)
513 return -ENXIO;
514
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000515 sq = virtnet_xdp_sq(vi);
516
517 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
Jason Wang186b3c92017-09-19 17:42:43 +0800518 ret = -EINVAL;
519 drops = n;
520 goto out;
521 }
522
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200523 /* Free up any pending old buffers before queueing new ones. */
Toshiaki Makita50504712019-01-29 09:45:59 +0900524 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Toshiaki Makita546f28972019-01-31 20:40:30 +0900525 if (likely(is_xdp_frame(ptr))) {
526 struct xdp_frame *frame = ptr_to_xdp(ptr);
527
528 bytes += frame->len;
529 xdp_return_frame(frame);
530 } else {
531 struct sk_buff *skb = ptr;
532
533 bytes += skb->len;
534 napi_consume_skb(skb, false);
535 }
536 packets++;
Toshiaki Makita50504712019-01-29 09:45:59 +0900537 }
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200538
539 for (i = 0; i < n; i++) {
540 struct xdp_frame *xdpf = frames[i];
541
542 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
543 if (err) {
544 xdp_return_frame_rx_napi(xdpf);
545 drops++;
546 }
547 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900548 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200549
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900550 if (flags & XDP_XMIT_FLUSH) {
551 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
552 kicks = 1;
553 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900554out:
555 u64_stats_update_begin(&sq->stats.syncp);
Toshiaki Makita546f28972019-01-31 20:40:30 +0900556 sq->stats.bytes += bytes;
557 sq->stats.packets += packets;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900558 sq->stats.xdp_tx += n;
559 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900560 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900561 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200562
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900563 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800564}
565
Jason Wangf6b10202017-02-21 16:46:28 +0800566static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
567{
568 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
569}
570
Jason Wang4941d472017-07-19 16:54:48 +0800571/* We copy the packet for XDP in the following cases:
572 *
573 * 1) Packet is scattered across multiple rx buffers.
574 * 2) Headroom space is insufficient.
575 *
576 * This is inefficient but it's a temporary condition that
577 * we hit right after XDP is enabled and until queue is refilled
578 * with large buffers with sufficient headroom - so it should affect
579 * at most queue size packets.
580 * Afterwards, the conditions to enable
581 * XDP should preclude the underlying device from sending packets
582 * across multiple buffers (num_buf > 1), and we make sure buffers
583 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800584 */
585static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800586 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800587 struct page *p,
588 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800589 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800590 unsigned int *len)
591{
592 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800593
594 if (!page)
595 return NULL;
596
597 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
598 page_off += *len;
599
Jason Wang56a86f82016-12-23 22:37:26 +0800600 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800601 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800602 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800603 void *buf;
604 int off;
605
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200606 buf = virtqueue_get_buf(rq->vq, &buflen);
607 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800608 goto err_buf;
609
John Fastabend72979a62016-12-15 12:14:36 -0800610 p = virt_to_head_page(buf);
611 off = buf - page_address(p);
612
Jason Wang56a86f82016-12-23 22:37:26 +0800613 /* guard against a misconfigured or uncooperative backend that
614 * is sending packet larger than the MTU.
615 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800616 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800617 put_page(p);
618 goto err_buf;
619 }
620
John Fastabend72979a62016-12-15 12:14:36 -0800621 memcpy(page_address(page) + page_off,
622 page_address(p) + off, buflen);
623 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800624 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800625 }
626
John Fastabend2de2f7f2017-02-02 19:16:29 -0800627 /* Headroom does not contribute to packet length */
628 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800629 return page;
630err_buf:
631 __free_pages(page, 0);
632 return NULL;
633}
634
Jason Wang4941d472017-07-19 16:54:48 +0800635static struct sk_buff *receive_small(struct net_device *dev,
636 struct virtnet_info *vi,
637 struct receive_queue *rq,
638 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800639 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900640 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800641 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800642{
643 struct sk_buff *skb;
644 struct bpf_prog *xdp_prog;
645 unsigned int xdp_headroom = (unsigned long)ctx;
646 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
647 unsigned int headroom = vi->hdr_len + header_offset;
648 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
649 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
650 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100651 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800652 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100653 int err;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900654 unsigned int metasize = 0;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100655
Jason Wang4941d472017-07-19 16:54:48 +0800656 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800657 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800658
659 rcu_read_lock();
660 xdp_prog = rcu_dereference(rq->xdp_prog);
661 if (xdp_prog) {
662 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200663 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800664 struct xdp_buff xdp;
665 void *orig_data;
666 u32 act;
667
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100668 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800669 goto err_xdp;
670
671 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
672 int offset = buf - page_address(page) + header_offset;
673 unsigned int tlen = len + vi->hdr_len;
674 u16 num_buf = 1;
675
676 xdp_headroom = virtnet_get_headroom(vi);
677 header_offset = VIRTNET_RX_PAD + xdp_headroom;
678 headroom = vi->hdr_len + header_offset;
679 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
680 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
681 xdp_page = xdp_linearize_page(rq, &num_buf, page,
682 offset, header_offset,
683 &tlen);
684 if (!xdp_page)
685 goto err_xdp;
686
687 buf = page_address(xdp_page);
688 put_page(page);
689 page = xdp_page;
690 }
691
692 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
693 xdp.data = xdp.data_hard_start + xdp_headroom;
694 xdp.data_end = xdp.data + len;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900695 xdp.data_meta = xdp.data;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100696 xdp.rxq = &rq->xdp_rxq;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200697 xdp.frame_sz = buflen;
Jason Wang4941d472017-07-19 16:54:48 +0800698 orig_data = xdp.data;
699 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800700 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800701
702 switch (act) {
703 case XDP_PASS:
704 /* Recalculate length in case bpf program changed it */
705 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700706 len = xdp.data_end - xdp.data;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900707 metasize = xdp.data - xdp.data_meta;
Jason Wang4941d472017-07-19 16:54:48 +0800708 break;
709 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800710 stats->xdp_tx++;
Lorenzo Bianconi1b698fa2020-05-28 22:47:29 +0200711 xdpf = xdp_convert_buff_to_frame(&xdp);
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200712 if (unlikely(!xdpf))
713 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800714 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
715 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800716 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100717 goto err_xdp;
718 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200719 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800720 rcu_read_unlock();
721 goto xdp_xmit;
722 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800723 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800724 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100725 if (err)
726 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200727 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800728 rcu_read_unlock();
729 goto xdp_xmit;
730 default:
731 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500732 fallthrough;
Jason Wang4941d472017-07-19 16:54:48 +0800733 case XDP_ABORTED:
734 trace_xdp_exception(vi->dev, xdp_prog, act);
735 case XDP_DROP:
736 goto err_xdp;
737 }
738 }
739 rcu_read_unlock();
740
741 skb = build_skb(buf, buflen);
742 if (!skb) {
743 put_page(page);
744 goto err;
745 }
746 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700747 skb_put(skb, len);
Yuya Kusakabef1d48842020-02-25 12:32:11 +0900748 if (!xdp_prog) {
Jason Wang4941d472017-07-19 16:54:48 +0800749 buf += header_offset;
750 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
Yuya Kusakabef1d48842020-02-25 12:32:11 +0900751 } /* keep zeroed vnet hdr since XDP is loaded */
Jason Wang4941d472017-07-19 16:54:48 +0800752
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900753 if (metasize)
754 skb_metadata_set(skb, metasize);
755
Jason Wang4941d472017-07-19 16:54:48 +0800756err:
757 return skb;
758
759err_xdp:
760 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800761 stats->xdp_drops++;
762 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800763 put_page(page);
764xdp_xmit:
765 return NULL;
766}
767
768static struct sk_buff *receive_big(struct net_device *dev,
769 struct virtnet_info *vi,
770 struct receive_queue *rq,
771 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900772 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800773 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800774{
775 struct page *page = buf;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900776 struct sk_buff *skb =
777 page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, true, 0);
Jason Wang4941d472017-07-19 16:54:48 +0800778
Jason Wangd46eeea2018-07-31 17:43:39 +0800779 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800780 if (unlikely(!skb))
781 goto err;
782
783 return skb;
784
785err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800786 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800787 give_pages(rq, page);
788 return NULL;
789}
790
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200791static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200792 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200793 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200794 void *buf,
795 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800796 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900797 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800798 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000799{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300800 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
801 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200802 struct page *page = virt_to_head_page(buf);
803 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800804 struct sk_buff *head_skb, *curr_skb;
805 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200806 unsigned int truesize = mergeable_ctx_to_truesize(ctx);
Jason Wang4941d472017-07-19 16:54:48 +0800807 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900808 unsigned int metasize = 0;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200809 unsigned int frame_sz;
810 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800811
John Fastabend56434a02016-12-15 12:14:13 -0800812 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800813 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800814
John Fastabendf600b692016-12-15 12:13:24 -0800815 rcu_read_lock();
816 xdp_prog = rcu_dereference(rq->xdp_prog);
817 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200818 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800819 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800820 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800821 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800822 u32 act;
823
Jason Wang3d62b2a2018-05-22 11:44:31 +0800824 /* Transient failure which in theory could occur if
825 * in-flight packets from before XDP was enabled reach
826 * the receive path after XDP is loaded.
827 */
828 if (unlikely(hdr->hdr.gso_type))
829 goto err_xdp;
830
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200831 /* Buffers with headroom use PAGE_SIZE as alloc size,
832 * see add_recvbuf_mergeable() + get_mergeable_buf_len()
833 */
834 frame_sz = headroom ? PAGE_SIZE : truesize;
835
Jason Wang3cc81a92018-03-02 17:29:14 +0800836 /* This happens when rx buffer size is underestimated
837 * or headroom is not enough because of the buffer
838 * was refilled before XDP is set. This should only
839 * happen for the first several packets, so we don't
840 * care much about its performance.
841 */
Jason Wang4941d472017-07-19 16:54:48 +0800842 if (unlikely(num_buf > 1 ||
843 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800844 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800845 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800846 page, offset,
847 VIRTIO_XDP_HEADROOM,
848 &len);
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200849 frame_sz = PAGE_SIZE;
850
John Fastabend72979a62016-12-15 12:14:36 -0800851 if (!xdp_page)
852 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800853 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800854 } else {
855 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800856 }
857
John Fastabend2de2f7f2017-02-02 19:16:29 -0800858 /* Allow consuming headroom but reserve enough space to push
859 * the descriptor on if we get an XDP_TX return code.
860 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800861 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800862 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800863 xdp.data = data + vi->hdr_len;
864 xdp.data_end = xdp.data + (len - vi->hdr_len);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900865 xdp.data_meta = xdp.data;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100866 xdp.rxq = &rq->xdp_rxq;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200867 xdp.frame_sz = frame_sz - vi->hdr_len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100868
John Fastabend0354e4d2017-02-02 19:15:01 -0800869 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800870 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800871
John Fastabend56434a02016-12-15 12:14:13 -0800872 switch (act) {
873 case XDP_PASS:
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900874 metasize = xdp.data - xdp.data_meta;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800875
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900876 /* recalculate offset to account for any header
877 * adjustments and minus the metasize to copy the
878 * metadata in page_to_skb(). Note other cases do not
879 * build an skb and avoid using offset
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700880 */
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900881 offset = xdp.data - page_address(xdp_page) -
882 vi->hdr_len - metasize;
883
884 /* recalculate len if xdp.data, xdp.data_end or
885 * xdp.data_meta were adjusted
886 */
887 len = xdp.data_end - xdp.data + vi->hdr_len + metasize;
Jason Wang1830f892016-12-23 22:37:27 +0800888 /* We can only create skb based on xdp_page. */
889 if (unlikely(xdp_page != page)) {
890 rcu_read_unlock();
891 put_page(page);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900892 head_skb = page_to_skb(vi, rq, xdp_page, offset,
893 len, PAGE_SIZE, false,
894 metasize);
Jason Wang1830f892016-12-23 22:37:27 +0800895 return head_skb;
896 }
John Fastabend56434a02016-12-15 12:14:13 -0800897 break;
898 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800899 stats->xdp_tx++;
Lorenzo Bianconi1b698fa2020-05-28 22:47:29 +0200900 xdpf = xdp_convert_buff_to_frame(&xdp);
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200901 if (unlikely(!xdpf))
902 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800903 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
904 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800905 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100906 if (unlikely(xdp_page != page))
907 put_page(xdp_page);
908 goto err_xdp;
909 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200910 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800911 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800912 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800913 rcu_read_unlock();
914 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800915 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800916 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800917 err = xdp_do_redirect(dev, &xdp, xdp_prog);
918 if (err) {
919 if (unlikely(xdp_page != page))
920 put_page(xdp_page);
921 goto err_xdp;
922 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200923 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800924 if (unlikely(xdp_page != page))
Jason Wang6890418b2018-05-22 11:44:28 +0800925 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800926 rcu_read_unlock();
927 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800928 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800929 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500930 fallthrough;
John Fastabend0354e4d2017-02-02 19:15:01 -0800931 case XDP_ABORTED:
932 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500933 fallthrough;
John Fastabend0354e4d2017-02-02 19:15:01 -0800934 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800935 if (unlikely(xdp_page != page))
936 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800937 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800938 }
John Fastabendf600b692016-12-15 12:13:24 -0800939 }
940 rcu_read_unlock();
941
Jason Wang28b39bc2017-07-19 16:54:46 +0800942 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300943 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200944 dev->name, len, (unsigned long)ctx);
945 dev->stats.rx_length_errors++;
946 goto err_skb;
947 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800948
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900949 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog,
950 metasize);
John Fastabendf600b692016-12-15 12:13:24 -0800951 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000952
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200953 if (unlikely(!curr_skb))
954 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000955 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200956 int num_skb_frags;
957
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200958 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800959 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200960 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200961 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300962 virtio16_to_cpu(vi->vdev,
963 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200964 dev->stats.rx_length_errors++;
965 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000966 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200967
Jason Wangd46eeea2018-07-31 17:43:39 +0800968 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200969 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800970
971 truesize = mergeable_ctx_to_truesize(ctx);
972 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300973 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200974 dev->name, len, (unsigned long)ctx);
975 dev->stats.rx_length_errors++;
976 goto err_skb;
977 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200978
979 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700980 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
981 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200982
983 if (unlikely(!nskb))
984 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700985 if (curr_skb == head_skb)
986 skb_shinfo(curr_skb)->frag_list = nskb;
987 else
988 curr_skb->next = nskb;
989 curr_skb = nskb;
990 head_skb->truesize += nskb->truesize;
991 num_skb_frags = 0;
992 }
993 if (curr_skb != head_skb) {
994 head_skb->data_len += len;
995 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800996 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700997 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200998 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800999 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
1000 put_page(page);
1001 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -08001002 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +08001003 } else {
1004 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -08001005 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +08001006 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001007 }
1008
Johannes Berg5377d7582015-08-19 09:48:40 +02001009 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001010 return head_skb;
1011
John Fastabendf600b692016-12-15 12:13:24 -08001012err_xdp:
1013 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +08001014 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001015err_skb:
1016 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +08001017 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001018 buf = virtqueue_get_buf(rq->vq, &len);
1019 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001020 pr_debug("%s: rx error: %d buffers missing\n",
1021 dev->name, num_buf);
1022 dev->stats.rx_length_errors++;
1023 break;
1024 }
Jason Wangd46eeea2018-07-31 17:43:39 +08001025 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001026 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001027 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001028 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001029err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +08001030 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001031 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -08001032xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001033 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001034}
1035
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001036static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
1037 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001038 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +08001039 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +10001040{
Jason Wange9d74172012-12-07 07:04:55 +00001041 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001042 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001043 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001044
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +03001045 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001046 pr_debug("%s: short packet %i\n", dev->name, len);
1047 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -08001048 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001049 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001050 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001051 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001052 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001053 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001054 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001055 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001056 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001057
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001058 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001059 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001060 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001061 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001062 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001063 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001064 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001065
1066 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001067 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001068
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001069 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001070
Mike Rapoporte858fae2016-06-08 16:09:21 +03001071 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001072 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001073
Mike Rapoporte858fae2016-06-08 16:09:21 +03001074 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1075 virtio_is_little_endian(vi->vdev))) {
1076 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1077 dev->name, hdr->hdr.gso_type,
1078 hdr->hdr.gso_size);
1079 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001080 }
1081
Willem de Bruijn133bbb12019-01-17 20:08:53 -05001082 skb_record_rx_queue(skb, vq2rxq(rq->vq));
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001083 skb->protocol = eth_type_trans(skb, dev);
1084 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1085 ntohs(skb->protocol), skb->len, skb->pkt_type);
1086
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001087 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001088 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001089
1090frame_err:
1091 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001092 dev_kfree_skb(skb);
1093}
1094
Jason Wang192f68c2017-07-19 16:54:47 +08001095/* Unlike mergeable buffers, all buffers are allocated to the
1096 * same size, except for the headroom. For this reason we do
1097 * not need to use mergeable_len_to_ctx here - it is enough
1098 * to store the headroom as the context ignoring the truesize.
1099 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001100static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1101 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001102{
Jason Wangf6b10202017-02-21 16:46:28 +08001103 struct page_frag *alloc_frag = &rq->alloc_frag;
1104 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001105 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001106 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001107 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001108 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001109
Jason Wangf6b10202017-02-21 16:46:28 +08001110 len = SKB_DATA_ALIGN(len) +
1111 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1112 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001113 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001114
Jason Wangf6b10202017-02-21 16:46:28 +08001115 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1116 get_page(alloc_frag->page);
1117 alloc_frag->offset += len;
1118 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1119 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001120 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001121 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001122 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001123 return err;
1124}
1125
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001126static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1127 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001128{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001129 struct page *first, *list = NULL;
1130 char *p;
1131 int i, err, offset;
1132
Rusty Russella5835442014-09-11 10:17:36 +09301133 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1134
Jason Wange9d74172012-12-07 07:04:55 +00001135 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001136 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001137 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001138 if (!first) {
1139 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001140 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001141 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001142 }
Jason Wange9d74172012-12-07 07:04:55 +00001143 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001144
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001145 /* chain new page in list head to match sg */
1146 first->private = (unsigned long)list;
1147 list = first;
1148 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001149
Jason Wange9d74172012-12-07 07:04:55 +00001150 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001151 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001152 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001153 return -ENOMEM;
1154 }
1155 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001156
Jason Wange9d74172012-12-07 07:04:55 +00001157 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001158 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1159 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001160
Jason Wange9d74172012-12-07 07:04:55 +00001161 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001162 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001163 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001164
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001165 /* chain first in list head */
1166 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301167 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1168 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001169 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001170 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001171
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001172 return err;
1173}
Herbert Xu97402b92008-04-18 11:24:27 +08001174
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001175static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001176 struct ewma_pkt_len *avg_pkt_len,
1177 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001178{
Michael Daltonab7db912014-01-16 22:23:27 -08001179 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001180 unsigned int len;
1181
Jason Wang3cc81a92018-03-02 17:29:14 +08001182 if (room)
1183 return PAGE_SIZE - room;
1184
1185 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001186 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001187
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001188 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001189}
1190
John Fastabend2de2f7f2017-02-02 19:16:29 -08001191static int add_recvbuf_mergeable(struct virtnet_info *vi,
1192 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001193{
Michael Daltonfb518792014-01-16 22:23:26 -08001194 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001195 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001196 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1197 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001198 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001199 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001200 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001201 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001202
Jason Wang3cc81a92018-03-02 17:29:14 +08001203 /* Extra tailroom is needed to satisfy XDP's assumption. This
1204 * means rx frags coalescing won't work, but consider we've
1205 * disabled GSO for XDP, it won't be a big issue.
1206 */
1207 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1208 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001209 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001210
Michael Daltonfb518792014-01-16 22:23:26 -08001211 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001212 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001213 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001214 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001215 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001216 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001217 /* To avoid internal fragmentation, if there is very likely not
1218 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001219 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001220 */
Michael Daltonfb518792014-01-16 22:23:26 -08001221 len += hole;
1222 alloc_frag->offset += hole;
1223 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001224
Michael Daltonfb518792014-01-16 22:23:26 -08001225 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001226 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001227 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001228 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001229 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001230
1231 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001232}
1233
Rusty Russellb2baed62011-12-29 00:42:38 +00001234/*
1235 * Returns false if we couldn't fill entirely (OOM).
1236 *
1237 * Normally run in the receive path, but can also be run from ndo_open
1238 * before we're receiving packets, or from refill_work which is
1239 * careful to disable receiving (using napi_disable).
1240 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001241static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1242 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001243{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001244 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001245 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001246
Amit Shah0aea51c2009-08-26 14:58:28 +05301247 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001248 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001249 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001250 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001251 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001252 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001253 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001254
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001255 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301256 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001257 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001258 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001259 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
Michael S. Tsirkin01c32592020-05-07 03:25:56 -04001260 unsigned long flags;
1261
1262 flags = u64_stats_update_begin_irqsave(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001263 rq->stats.kicks++;
Michael S. Tsirkin01c32592020-05-07 03:25:56 -04001264 u64_stats_update_end_irqrestore(&rq->stats.syncp, flags);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001265 }
1266
Rusty Russell3161e452009-08-26 12:22:32 -07001267 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001268}
1269
Rusty Russell18445c42008-02-04 23:49:57 -05001270static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001271{
1272 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001273 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001274
Willem de Bruijne4e84522017-04-24 13:49:26 -04001275 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001276}
1277
Willem de Bruijne4e84522017-04-24 13:49:26 -04001278static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001279{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001280 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001281
1282 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001283 * won't get another interrupt, so process any outstanding packets now.
1284 * Call local_bh_enable after to trigger softIRQ processing.
1285 */
1286 local_bh_disable();
1287 virtqueue_napi_schedule(napi, vq);
1288 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001289}
1290
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001291static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1292 struct virtqueue *vq,
1293 struct napi_struct *napi)
1294{
1295 if (!napi->weight)
1296 return;
1297
1298 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1299 * enable the feature if this is likely affine with the transmit path.
1300 */
1301 if (!vi->affinity_hint_set) {
1302 napi->weight = 0;
1303 return;
1304 }
1305
1306 return virtnet_napi_enable(vq, napi);
1307}
1308
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001309static void virtnet_napi_tx_disable(struct napi_struct *napi)
1310{
1311 if (napi->weight)
1312 napi_disable(napi);
1313}
1314
Rusty Russell3161e452009-08-26 12:22:32 -07001315static void refill_work(struct work_struct *work)
1316{
Jason Wange9d74172012-12-07 07:04:55 +00001317 struct virtnet_info *vi =
1318 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001319 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001320 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001321
Sasha Levin55257d72013-04-29 12:00:08 +09301322 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001323 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001324
Jason Wang986a4f42012-12-07 07:04:56 +00001325 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001326 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001327 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001328
1329 /* In theory, this can happen: if we don't get any buffers in
1330 * we will *never* try to fill again.
1331 */
1332 if (still_empty)
1333 schedule_delayed_work(&vi->refill, HZ/2);
1334 }
Rusty Russell3161e452009-08-26 12:22:32 -07001335}
1336
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001337static int virtnet_receive(struct receive_queue *rq, int budget,
1338 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001339{
Jason Wange9d74172012-12-07 07:04:55 +00001340 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001341 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001342 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001343 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001344 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001345
Jason Wang192f68c2017-07-19 16:54:47 +08001346 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001347 void *ctx;
1348
Jason Wangd46eeea2018-07-31 17:43:39 +08001349 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001350 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001351 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001352 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001353 }
1354 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001355 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001356 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001357 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001358 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001359 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001360 }
1361
? jiang718be6b2019-08-20 02:51:23 +00001362 if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001363 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001364 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001365 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001366
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001367 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001368 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1369 size_t offset = virtnet_rq_stats_desc[i].offset;
1370 u64 *item;
1371
Jason Wangd46eeea2018-07-31 17:43:39 +08001372 item = (u64 *)((u8 *)&rq->stats + offset);
1373 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001374 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001375 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001376
Jason Wangd46eeea2018-07-31 17:43:39 +08001377 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001378}
1379
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001380static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi)
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001381{
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001382 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001383 unsigned int packets = 0;
1384 unsigned int bytes = 0;
Toshiaki Makita50504712019-01-29 09:45:59 +09001385 void *ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001386
Toshiaki Makita50504712019-01-29 09:45:59 +09001387 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1388 if (likely(!is_xdp_frame(ptr))) {
1389 struct sk_buff *skb = ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001390
Toshiaki Makita50504712019-01-29 09:45:59 +09001391 pr_debug("Sent skb %p\n", skb);
1392
1393 bytes += skb->len;
1394 napi_consume_skb(skb, in_napi);
1395 } else {
1396 struct xdp_frame *frame = ptr_to_xdp(ptr);
1397
1398 bytes += frame->len;
1399 xdp_return_frame(frame);
1400 }
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001401 packets++;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001402 }
1403
1404 /* Avoid overhead when no packets have been processed
1405 * happens when called speculatively from start_xmit.
1406 */
1407 if (!packets)
1408 return;
1409
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001410 u64_stats_update_begin(&sq->stats.syncp);
1411 sq->stats.bytes += bytes;
1412 sq->stats.packets += packets;
1413 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001414}
1415
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001416static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1417{
1418 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1419 return false;
1420 else if (q < vi->curr_queue_pairs)
1421 return true;
1422 else
1423 return false;
1424}
1425
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001426static void virtnet_poll_cleantx(struct receive_queue *rq)
1427{
1428 struct virtnet_info *vi = rq->vq->vdev->priv;
1429 unsigned int index = vq2rxq(rq->vq);
1430 struct send_queue *sq = &vi->sq[index];
1431 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1432
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001433 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001434 return;
1435
1436 if (__netif_tx_trylock(txq)) {
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001437 free_old_xmit_skbs(sq, true);
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001438 __netif_tx_unlock(txq);
1439 }
1440
1441 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1442 netif_tx_wake_queue(txq);
1443}
1444
Jason Wang2ffa7592014-07-23 16:33:54 +08001445static int virtnet_poll(struct napi_struct *napi, int budget)
1446{
1447 struct receive_queue *rq =
1448 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001449 struct virtnet_info *vi = rq->vq->vdev->priv;
1450 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001451 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001452 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001453
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001454 virtnet_poll_cleantx(rq);
1455
Jason Wang186b3c92017-09-19 17:42:43 +08001456 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001457
Rusty Russell8329d982007-11-19 11:20:43 -05001458 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001459 if (received < budget)
1460 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001461
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001462 if (xdp_xmit & VIRTIO_XDP_REDIR)
Toke Høiland-Jørgensen1d233882020-01-16 16:14:45 +01001463 xdp_do_flush();
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001464
1465 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001466 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001467 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1468 u64_stats_update_begin(&sq->stats.syncp);
1469 sq->stats.kicks++;
1470 u64_stats_update_end(&sq->stats.syncp);
1471 }
Jason Wang9267c432018-04-13 14:58:25 +08001472 }
Jason Wang186b3c92017-09-19 17:42:43 +08001473
Rusty Russell296f96f2007-10-22 11:03:37 +10001474 return received;
1475}
1476
Jason Wang986a4f42012-12-07 07:04:56 +00001477static int virtnet_open(struct net_device *dev)
1478{
1479 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001480 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001481
Jason Wange4166622013-05-21 20:03:58 +00001482 for (i = 0; i < vi->max_queue_pairs; i++) {
1483 if (i < vi->curr_queue_pairs)
1484 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001485 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001486 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001487
1488 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1489 if (err < 0)
1490 return err;
1491
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001492 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1493 MEM_TYPE_PAGE_SHARED, NULL);
1494 if (err < 0) {
1495 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1496 return err;
1497 }
1498
Willem de Bruijne4e84522017-04-24 13:49:26 -04001499 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001500 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001501 }
1502
1503 return 0;
1504}
1505
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001506static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1507{
1508 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1509 struct virtnet_info *vi = sq->vq->vdev->priv;
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001510 unsigned int index = vq2txq(sq->vq);
1511 struct netdev_queue *txq;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001512
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001513 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
1514 /* We don't need to enable cb for XDP */
1515 napi_complete_done(napi, 0);
1516 return 0;
1517 }
1518
1519 txq = netdev_get_tx_queue(vi->dev, index);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001520 __netif_tx_lock(txq, raw_smp_processor_id());
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001521 free_old_xmit_skbs(sq, true);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001522 __netif_tx_unlock(txq);
1523
1524 virtqueue_napi_complete(napi, sq->vq, 0);
1525
1526 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1527 netif_tx_wake_queue(txq);
1528
1529 return 0;
1530}
1531
Jason Wange9d74172012-12-07 07:04:55 +00001532static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001533{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001534 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001535 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001536 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001537 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001538 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301539 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001540
Johannes Berge1749612008-10-27 15:59:26 -07001541 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301542
1543 can_push = vi->any_header_sg &&
1544 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1545 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1546 /* Even if we can, don't push here yet as this would skew
1547 * csum_start offset below. */
1548 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001549 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301550 else
1551 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001552
Mike Rapoporte858fae2016-06-08 16:09:21 +03001553 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001554 virtio_is_little_endian(vi->vdev), false,
1555 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001556 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001557
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001558 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001559 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001560
Jason Wang547c8902015-08-27 14:53:06 +08001561 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301562 if (can_push) {
1563 __skb_push(skb, hdr_len);
1564 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001565 if (unlikely(num_sg < 0))
1566 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301567 /* Pull header back to avoid skew in tx bytes calculations. */
1568 __skb_pull(skb, hdr_len);
1569 } else {
1570 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001571 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1572 if (unlikely(num_sg < 0))
1573 return num_sg;
1574 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301575 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301576 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001577}
1578
Stephen Hemminger424efe92009-08-31 19:50:51 +00001579static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001580{
1581 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001582 int qnum = skb_get_queue_mapping(skb);
1583 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301584 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001585 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
Florian Westphal6b16f9e2019-04-01 16:42:14 +02001586 bool kick = !netdev_xmit_more();
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001587 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001588
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001589 /* Free up any pending old buffers before queueing new ones. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001590 free_old_xmit_skbs(sq, false);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001591
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001592 if (use_napi && kick)
1593 virtqueue_enable_cb_delayed(sq->vq);
1594
Jacob Keller074c3582014-06-25 02:37:13 +00001595 /* timestamp packet in software */
1596 skb_tx_timestamp(skb);
1597
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001598 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001599 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001600
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301601 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001602 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301603 dev->stats.tx_fifo_errors++;
1604 if (net_ratelimit())
1605 dev_warn(&dev->dev,
Yuval Shaia7934b482019-04-03 12:10:13 +03001606 "Unexpected TXQ (%d) queue failure: %d\n",
1607 qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001608 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001609 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001610 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001611 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001612
Rusty Russell48925e32009-09-24 09:59:20 -06001613 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001614 if (!use_napi) {
1615 skb_orphan(skb);
Florian Westphal895b5c92019-09-29 20:54:03 +02001616 nf_reset_ct(skb);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001617 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001618
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001619 /* If running out of space, stop queue to avoid getting packets that we
1620 * are then unable to transmit.
1621 * An alternative would be to force queuing layer to requeue the skb by
1622 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1623 * returned in a normal path of operation: it means that driver is not
1624 * maintaining the TX queue stop/start state properly, and causes
1625 * the stack to do a non-trivial amount of useless work.
1626 * Since most packets only take 1 or 2 ring slots, stopping the queue
1627 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001628 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001629 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001630 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001631 if (!use_napi &&
1632 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001633 /* More just got used, free them then recheck. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001634 free_old_xmit_skbs(sq, false);
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001635 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001636 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001637 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001638 }
1639 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001640 }
Rusty Russell48925e32009-09-24 09:59:20 -06001641
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001642 if (kick || netif_xmit_stopped(txq)) {
1643 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1644 u64_stats_update_begin(&sq->stats.syncp);
1645 sq->stats.kicks++;
1646 u64_stats_update_end(&sq->stats.syncp);
1647 }
1648 }
David S. Miller0b725a22014-08-25 15:51:53 -07001649
Rusty Russell48925e32009-09-24 09:59:20 -06001650 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001651}
1652
Amos Kong40cbfc32013-01-21 01:17:21 +00001653/*
1654 * Send command via the control virtqueue and check status. Commands
1655 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001656 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001657 */
1658static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001659 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001660{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301661 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001662 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001663
1664 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301665 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001666
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001667 vi->ctrl->status = ~0;
1668 vi->ctrl->hdr.class = class;
1669 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301670 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001671 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301672 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001673
Rusty Russellf7bc9592013-03-20 15:44:28 +10301674 if (out)
1675 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001676
Rusty Russellf7bc9592013-03-20 15:44:28 +10301677 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001678 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001679 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001680
stephen hemmingerd24bae32013-12-09 16:17:40 -08001681 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301682 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001683
Heinz Graalfs67975902013-10-29 09:40:02 +10301684 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001685 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001686
1687 /* Spin for a response, the kick causes an ioport write, trapping
1688 * into the hypervisor, so the request should be handled immediately.
1689 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301690 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1691 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001692 cpu_relax();
1693
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001694 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001695}
1696
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001697static int virtnet_set_mac_address(struct net_device *dev, void *p)
1698{
1699 struct virtnet_info *vi = netdev_priv(dev);
1700 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001701 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001702 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001703 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001704
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001705 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1706 return -EOPNOTSUPP;
1707
Shyam Saini801822d2016-12-24 00:44:58 +05301708 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001709 if (!addr)
1710 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001711
1712 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001713 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001714 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001715
Amos Kong7e58d5a2013-01-21 01:17:23 +00001716 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1717 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1718 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001719 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001720 dev_warn(&vdev->dev,
1721 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001722 ret = -EINVAL;
1723 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001724 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001725 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1726 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301727 unsigned int i;
1728
1729 /* Naturally, this has an atomicity problem. */
1730 for (i = 0; i < dev->addr_len; i++)
1731 virtio_cwrite8(vdev,
1732 offsetof(struct virtio_net_config, mac) +
1733 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001734 }
1735
1736 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001737 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001738
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001739out:
1740 kfree(addr);
1741 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001742}
1743
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001744static void virtnet_stats(struct net_device *dev,
1745 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001746{
1747 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001748 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001749 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001750
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001751 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001752 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001753 struct receive_queue *rq = &vi->rq[i];
1754 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001755
1756 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001757 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1758 tpackets = sq->stats.packets;
1759 tbytes = sq->stats.bytes;
1760 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001761
1762 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001763 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001764 rpackets = rq->stats.packets;
1765 rbytes = rq->stats.bytes;
1766 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001767 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001768
1769 tot->rx_packets += rpackets;
1770 tot->tx_packets += tpackets;
1771 tot->rx_bytes += rbytes;
1772 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001773 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001774 }
1775
1776 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001777 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001778 tot->rx_length_errors = dev->stats.rx_length_errors;
1779 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001780}
1781
Jason Wang586d17c2012-04-11 20:43:52 +00001782static void virtnet_ack_link_announce(struct virtnet_info *vi)
1783{
1784 rtnl_lock();
1785 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001786 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001787 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1788 rtnl_unlock();
1789}
1790
John Fastabend473153292017-02-02 19:14:32 -08001791static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001792{
1793 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001794 struct net_device *dev = vi->dev;
1795
1796 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1797 return 0;
1798
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001799 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1800 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001801
1802 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001803 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001804 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1805 queue_pairs);
1806 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301807 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001808 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001809 /* virtnet_open() will refill when device is going to up. */
1810 if (dev->flags & IFF_UP)
1811 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301812 }
Jason Wang986a4f42012-12-07 07:04:56 +00001813
1814 return 0;
1815}
1816
John Fastabend473153292017-02-02 19:14:32 -08001817static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1818{
1819 int err;
1820
1821 rtnl_lock();
1822 err = _virtnet_set_queues(vi, queue_pairs);
1823 rtnl_unlock();
1824 return err;
1825}
1826
Rusty Russell296f96f2007-10-22 11:03:37 +10001827static int virtnet_close(struct net_device *dev)
1828{
1829 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001830 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001831
Rusty Russellb2baed62011-12-29 00:42:38 +00001832 /* Make sure refill_work doesn't re-enable napi! */
1833 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001834
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001835 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001836 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001837 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001838 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001839 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001840
Rusty Russell296f96f2007-10-22 11:03:37 +10001841 return 0;
1842}
1843
Alex Williamson2af76982009-02-04 09:02:40 +00001844static void virtnet_set_rx_mode(struct net_device *dev)
1845{
1846 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001847 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001848 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001849 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001850 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001851 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001852 void *buf;
1853 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001854
stephen hemminger788a8b62013-12-09 16:18:45 -08001855 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001856 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1857 return;
1858
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001859 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1860 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001861
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001862 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001863
1864 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001865 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001866 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001867 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001868
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001869 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001870
1871 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001872 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001873 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001874 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001875
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001876 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001877 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001878 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001879 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1880 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1881 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001882 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001883 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001884
Alex Williamson23e258e2009-05-01 17:27:56 +00001885 sg_init_table(sg, 2);
1886
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001887 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001888 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001889 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001890 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001891 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001892
1893 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001894 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001895
1896 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001897 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001898
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001899 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001900 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001901 netdev_for_each_mc_addr(ha, dev)
1902 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001903
1904 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001905 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001906
1907 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001908 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001909 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001910
1911 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001912}
1913
Patrick McHardy80d5c362013-04-19 02:04:28 +00001914static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1915 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001916{
1917 struct virtnet_info *vi = netdev_priv(dev);
1918 struct scatterlist sg;
1919
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001920 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001921 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001922
1923 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001924 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001925 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001926 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001927}
1928
Patrick McHardy80d5c362013-04-19 02:04:28 +00001929static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1930 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001931{
1932 struct virtnet_info *vi = netdev_priv(dev);
1933 struct scatterlist sg;
1934
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001935 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001936 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001937
1938 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001939 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001940 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001941 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001942}
1943
Peter Xu310974f2019-03-18 14:56:06 +08001944static void virtnet_clean_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001945{
1946 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001947
1948 if (vi->affinity_hint_set) {
1949 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001950 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1951 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001952 }
1953
1954 vi->affinity_hint_set = false;
1955 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001956}
1957
1958static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001959{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001960 cpumask_var_t mask;
1961 int stragglers;
1962 int group_size;
1963 int i, j, cpu;
1964 int num_cpu;
1965 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001966
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001967 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Peter Xu310974f2019-03-18 14:56:06 +08001968 virtnet_clean_affinity(vi);
Wanlong Gao8898c212013-01-24 23:51:30 +00001969 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001970 }
1971
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001972 num_cpu = num_online_cpus();
1973 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1974 stragglers = num_cpu >= vi->curr_queue_pairs ?
1975 num_cpu % vi->curr_queue_pairs :
1976 0;
1977 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001978
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001979 for (i = 0; i < vi->curr_queue_pairs; i++) {
1980 group_size = stride + (i < stragglers ? 1 : 0);
1981
1982 for (j = 0; j < group_size; j++) {
1983 cpumask_set_cpu(cpu, mask);
1984 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1985 nr_cpu_ids, false);
1986 }
1987 virtqueue_set_affinity(vi->rq[i].vq, mask);
1988 virtqueue_set_affinity(vi->sq[i].vq, mask);
1989 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1990 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001991 }
1992
Wanlong Gao8898c212013-01-24 23:51:30 +00001993 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001994 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001995}
1996
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001997static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001998{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001999 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2000 node);
2001 virtnet_set_affinity(vi);
2002 return 0;
2003}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002004
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002005static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
2006{
2007 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2008 node_dead);
2009 virtnet_set_affinity(vi);
2010 return 0;
2011}
Jason Wang3ab098d2013-10-15 11:18:58 +08002012
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002013static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
2014{
2015 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2016 node);
2017
Peter Xu310974f2019-03-18 14:56:06 +08002018 virtnet_clean_affinity(vi);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002019 return 0;
2020}
2021
2022static enum cpuhp_state virtionet_online;
2023
2024static int virtnet_cpu_notif_add(struct virtnet_info *vi)
2025{
2026 int ret;
2027
2028 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
2029 if (ret)
2030 return ret;
2031 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2032 &vi->node_dead);
2033 if (!ret)
2034 return ret;
2035 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2036 return ret;
2037}
2038
2039static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
2040{
2041 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2042 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2043 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002044}
2045
Rick Jones8f9f4662011-10-19 08:10:59 +00002046static void virtnet_get_ringparam(struct net_device *dev,
2047 struct ethtool_ringparam *ring)
2048{
2049 struct virtnet_info *vi = netdev_priv(dev);
2050
Jason Wang986a4f42012-12-07 07:04:56 +00002051 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
2052 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00002053 ring->rx_pending = ring->rx_max_pending;
2054 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00002055}
2056
Rick Jones66846042011-11-14 14:17:08 +00002057
2058static void virtnet_get_drvinfo(struct net_device *dev,
2059 struct ethtool_drvinfo *info)
2060{
2061 struct virtnet_info *vi = netdev_priv(dev);
2062 struct virtio_device *vdev = vi->vdev;
2063
2064 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
2065 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
2066 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
2067
2068}
2069
Jason Wangd73bcd22012-12-07 07:04:57 +00002070/* TODO: Eliminate OOO packets during switching */
2071static int virtnet_set_channels(struct net_device *dev,
2072 struct ethtool_channels *channels)
2073{
2074 struct virtnet_info *vi = netdev_priv(dev);
2075 u16 queue_pairs = channels->combined_count;
2076 int err;
2077
2078 /* We don't support separate rx/tx channels.
2079 * We don't allow setting 'other' channels.
2080 */
2081 if (channels->rx_count || channels->tx_count || channels->other_count)
2082 return -EINVAL;
2083
Amos Kongc18e9cd2014-04-18 13:45:41 +08002084 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002085 return -EINVAL;
2086
John Fastabendf600b692016-12-15 12:13:24 -08002087 /* For now we don't support modifying channels while XDP is loaded
2088 * also when XDP is loaded all RX queues have XDP programs so we only
2089 * need to check a single RX queue.
2090 */
2091 if (vi->rq[0].xdp_prog)
2092 return -EINVAL;
2093
Wanlong Gao47be2472013-01-24 23:51:29 +00002094 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002095 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002096 if (!err) {
2097 netif_set_real_num_tx_queues(dev, queue_pairs);
2098 netif_set_real_num_rx_queues(dev, queue_pairs);
2099
Wanlong Gao8898c212013-01-24 23:51:30 +00002100 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002101 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002102 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002103
2104 return err;
2105}
2106
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002107static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2108{
2109 struct virtnet_info *vi = netdev_priv(dev);
2110 char *p = (char *)data;
2111 unsigned int i, j;
2112
2113 switch (stringset) {
2114 case ETH_SS_STATS:
2115 for (i = 0; i < vi->curr_queue_pairs; i++) {
2116 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2117 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2118 i, virtnet_rq_stats_desc[j].desc);
2119 p += ETH_GSTRING_LEN;
2120 }
2121 }
2122
2123 for (i = 0; i < vi->curr_queue_pairs; i++) {
2124 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2125 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2126 i, virtnet_sq_stats_desc[j].desc);
2127 p += ETH_GSTRING_LEN;
2128 }
2129 }
2130 break;
2131 }
2132}
2133
2134static int virtnet_get_sset_count(struct net_device *dev, int sset)
2135{
2136 struct virtnet_info *vi = netdev_priv(dev);
2137
2138 switch (sset) {
2139 case ETH_SS_STATS:
2140 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2141 VIRTNET_SQ_STATS_LEN);
2142 default:
2143 return -EOPNOTSUPP;
2144 }
2145}
2146
2147static void virtnet_get_ethtool_stats(struct net_device *dev,
2148 struct ethtool_stats *stats, u64 *data)
2149{
2150 struct virtnet_info *vi = netdev_priv(dev);
2151 unsigned int idx = 0, start, i, j;
2152 const u8 *stats_base;
2153 size_t offset;
2154
2155 for (i = 0; i < vi->curr_queue_pairs; i++) {
2156 struct receive_queue *rq = &vi->rq[i];
2157
Jason Wangd46eeea2018-07-31 17:43:39 +08002158 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002159 do {
2160 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2161 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2162 offset = virtnet_rq_stats_desc[j].offset;
2163 data[idx + j] = *(u64 *)(stats_base + offset);
2164 }
2165 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2166 idx += VIRTNET_RQ_STATS_LEN;
2167 }
2168
2169 for (i = 0; i < vi->curr_queue_pairs; i++) {
2170 struct send_queue *sq = &vi->sq[i];
2171
2172 stats_base = (u8 *)&sq->stats;
2173 do {
2174 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2175 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2176 offset = virtnet_sq_stats_desc[j].offset;
2177 data[idx + j] = *(u64 *)(stats_base + offset);
2178 }
2179 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2180 idx += VIRTNET_SQ_STATS_LEN;
2181 }
2182}
2183
Jason Wangd73bcd22012-12-07 07:04:57 +00002184static void virtnet_get_channels(struct net_device *dev,
2185 struct ethtool_channels *channels)
2186{
2187 struct virtnet_info *vi = netdev_priv(dev);
2188
2189 channels->combined_count = vi->curr_queue_pairs;
2190 channels->max_combined = vi->max_queue_pairs;
2191 channels->max_other = 0;
2192 channels->rx_count = 0;
2193 channels->tx_count = 0;
2194 channels->other_count = 0;
2195}
2196
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002197static int virtnet_set_link_ksettings(struct net_device *dev,
2198 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002199{
2200 struct virtnet_info *vi = netdev_priv(dev);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002201
Cris Forno9aedc6e22020-02-28 14:12:05 -06002202 return ethtool_virtdev_set_link_ksettings(dev, cmd,
2203 &vi->speed, &vi->duplex);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002204}
2205
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002206static int virtnet_get_link_ksettings(struct net_device *dev,
2207 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002208{
2209 struct virtnet_info *vi = netdev_priv(dev);
2210
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002211 cmd->base.speed = vi->speed;
2212 cmd->base.duplex = vi->duplex;
2213 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002214
2215 return 0;
2216}
2217
Jason Wang0c465be2018-10-09 10:06:26 +08002218static int virtnet_set_coalesce(struct net_device *dev,
2219 struct ethtool_coalesce *ec)
2220{
Jason Wang0c465be2018-10-09 10:06:26 +08002221 struct virtnet_info *vi = netdev_priv(dev);
2222 int i, napi_weight;
2223
Jakub Kicinskia51e5202020-03-04 21:15:42 -08002224 if (ec->tx_max_coalesced_frames > 1 ||
2225 ec->rx_max_coalesced_frames != 1)
Jason Wang0c465be2018-10-09 10:06:26 +08002226 return -EINVAL;
2227
Jason Wang0c465be2018-10-09 10:06:26 +08002228 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
Jason Wang0c465be2018-10-09 10:06:26 +08002229 if (napi_weight ^ vi->sq[0].napi.weight) {
2230 if (dev->flags & IFF_UP)
2231 return -EBUSY;
2232 for (i = 0; i < vi->max_queue_pairs; i++)
2233 vi->sq[i].napi.weight = napi_weight;
2234 }
2235
2236 return 0;
2237}
2238
2239static int virtnet_get_coalesce(struct net_device *dev,
2240 struct ethtool_coalesce *ec)
2241{
2242 struct ethtool_coalesce ec_default = {
2243 .cmd = ETHTOOL_GCOALESCE,
2244 .rx_max_coalesced_frames = 1,
2245 };
2246 struct virtnet_info *vi = netdev_priv(dev);
2247
2248 memcpy(ec, &ec_default, sizeof(ec_default));
2249
2250 if (vi->sq[0].napi.weight)
2251 ec->tx_max_coalesced_frames = 1;
2252
2253 return 0;
2254}
2255
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002256static void virtnet_init_settings(struct net_device *dev)
2257{
2258 struct virtnet_info *vi = netdev_priv(dev);
2259
2260 vi->speed = SPEED_UNKNOWN;
2261 vi->duplex = DUPLEX_UNKNOWN;
2262}
2263
Jason Baronfaa9b392018-01-05 17:44:54 -05002264static void virtnet_update_settings(struct virtnet_info *vi)
2265{
2266 u32 speed;
2267 u8 duplex;
2268
2269 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2270 return;
2271
Michael S. Tsirkin64ffa392020-08-05 05:39:36 -04002272 virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed);
2273
Jason Baronfaa9b392018-01-05 17:44:54 -05002274 if (ethtool_validate_speed(speed))
2275 vi->speed = speed;
Michael S. Tsirkin64ffa392020-08-05 05:39:36 -04002276
2277 virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex);
2278
Jason Baronfaa9b392018-01-05 17:44:54 -05002279 if (ethtool_validate_duplex(duplex))
2280 vi->duplex = duplex;
2281}
2282
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002283static const struct ethtool_ops virtnet_ethtool_ops = {
Jakub Kicinskia51e5202020-03-04 21:15:42 -08002284 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES,
Rick Jones66846042011-11-14 14:17:08 +00002285 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002286 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002287 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002288 .get_strings = virtnet_get_strings,
2289 .get_sset_count = virtnet_get_sset_count,
2290 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002291 .set_channels = virtnet_set_channels,
2292 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002293 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002294 .get_link_ksettings = virtnet_get_link_ksettings,
2295 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002296 .set_coalesce = virtnet_set_coalesce,
2297 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002298};
2299
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002300static void virtnet_freeze_down(struct virtio_device *vdev)
2301{
2302 struct virtnet_info *vi = vdev->priv;
2303 int i;
2304
2305 /* Make sure no work handler is accessing the device */
2306 flush_work(&vi->config_work);
2307
Ake Koomsin05c998b2018-10-17 19:44:12 +09002308 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002309 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002310 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002311 cancel_delayed_work_sync(&vi->refill);
2312
2313 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002314 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002315 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002316 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002317 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002318 }
2319}
2320
2321static int init_vqs(struct virtnet_info *vi);
2322
2323static int virtnet_restore_up(struct virtio_device *vdev)
2324{
2325 struct virtnet_info *vi = vdev->priv;
2326 int err, i;
2327
2328 err = init_vqs(vi);
2329 if (err)
2330 return err;
2331
2332 virtio_device_ready(vdev);
2333
2334 if (netif_running(vi->dev)) {
2335 for (i = 0; i < vi->curr_queue_pairs; i++)
2336 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2337 schedule_delayed_work(&vi->refill, 0);
2338
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002339 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002340 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002341 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2342 &vi->sq[i].napi);
2343 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002344 }
2345
Ake Koomsin05c998b2018-10-17 19:44:12 +09002346 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002347 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002348 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002349 return err;
2350}
2351
Jason Wang3f935222017-07-19 16:54:49 +08002352static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2353{
2354 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002355 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002356
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002357 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002358
2359 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2360 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
Yuval Shaia7934b482019-04-03 12:10:13 +03002361 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
Jason Wang3f935222017-07-19 16:54:49 +08002362 return -EINVAL;
2363 }
2364
2365 return 0;
2366}
2367
2368static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2369{
2370 u64 offloads = 0;
2371
2372 if (!vi->guest_offloads)
2373 return 0;
2374
Jason Wang3f935222017-07-19 16:54:49 +08002375 return virtnet_set_guest_offloads(vi, offloads);
2376}
2377
2378static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2379{
2380 u64 offloads = vi->guest_offloads;
2381
2382 if (!vi->guest_offloads)
2383 return 0;
Jason Wang3f935222017-07-19 16:54:49 +08002384
2385 return virtnet_set_guest_offloads(vi, offloads);
2386}
2387
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002388static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2389 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002390{
2391 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2392 struct virtnet_info *vi = netdev_priv(dev);
2393 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002394 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002395 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002396
Jason Wang3f935222017-07-19 16:54:49 +08002397 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2398 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2399 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2400 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
Jason Wang18ba58e2018-11-22 14:36:31 +08002401 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
2402 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) {
2403 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO/CSUM, disable LRO/CSUM first");
John Fastabendf600b692016-12-15 12:13:24 -08002404 return -EOPNOTSUPP;
2405 }
2406
2407 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002408 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002409 return -EINVAL;
2410 }
2411
2412 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002413 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002414 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2415 return -EINVAL;
2416 }
2417
John Fastabend672aafd2016-12-15 12:13:49 -08002418 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2419 if (prog)
2420 xdp_qp = nr_cpu_ids;
2421
2422 /* XDP requires extra queues for XDP_TX */
2423 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002424 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002425 netdev_warn(dev, "request %i queues but max is %i\n",
2426 curr_qp + xdp_qp, vi->max_queue_pairs);
2427 return -ENOMEM;
2428 }
2429
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002430 old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
2431 if (!prog && !old_prog)
2432 return 0;
2433
Andrii Nakryiko85192db2019-11-17 09:28:03 -08002434 if (prog)
2435 bpf_prog_add(prog, vi->max_queue_pairs - 1);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002436
Jason Wang4941d472017-07-19 16:54:48 +08002437 /* Make sure NAPI is not using any XDP TX queues for RX. */
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002438 if (netif_running(dev)) {
2439 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002440 napi_disable(&vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002441 virtnet_napi_tx_disable(&vi->sq[i].napi);
2442 }
2443 }
John Fastabendf600b692016-12-15 12:13:24 -08002444
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002445 if (!prog) {
2446 for (i = 0; i < vi->max_queue_pairs; i++) {
2447 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2448 if (i == 0)
2449 virtnet_restore_guest_offloads(vi);
2450 }
2451 synchronize_net();
2452 }
2453
Jason Wang4941d472017-07-19 16:54:48 +08002454 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2455 if (err)
2456 goto err;
Toshiaki Makita188313c2019-01-29 09:45:55 +09002457 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002458 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002459
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002460 if (prog) {
2461 for (i = 0; i < vi->max_queue_pairs; i++) {
2462 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2463 if (i == 0 && !old_prog)
Jason Wang3f935222017-07-19 16:54:49 +08002464 virtnet_clear_guest_offloads(vi);
Jason Wang3f935222017-07-19 16:54:49 +08002465 }
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002466 }
2467
2468 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabendf600b692016-12-15 12:13:24 -08002469 if (old_prog)
2470 bpf_prog_put(old_prog);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002471 if (netif_running(dev)) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002472 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002473 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2474 &vi->sq[i].napi);
2475 }
John Fastabendf600b692016-12-15 12:13:24 -08002476 }
2477
2478 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002479
Jason Wang4941d472017-07-19 16:54:48 +08002480err:
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002481 if (!prog) {
2482 virtnet_clear_guest_offloads(vi);
2483 for (i = 0; i < vi->max_queue_pairs; i++)
2484 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
2485 }
2486
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002487 if (netif_running(dev)) {
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002488 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002489 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002490 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2491 &vi->sq[i].napi);
2492 }
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002493 }
John Fastabend2de2f7f2017-02-02 19:16:29 -08002494 if (prog)
2495 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2496 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002497}
2498
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002499static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002500{
2501 switch (xdp->command) {
2502 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002503 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002504 default:
2505 return -EINVAL;
2506 }
2507}
2508
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002509static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2510 size_t len)
2511{
2512 struct virtnet_info *vi = netdev_priv(dev);
2513 int ret;
2514
2515 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2516 return -EOPNOTSUPP;
2517
2518 ret = snprintf(buf, len, "sby");
2519 if (ret >= len)
2520 return -EOPNOTSUPP;
2521
2522 return 0;
2523}
2524
Willem de Bruijna02e8962018-12-20 17:14:54 -05002525static int virtnet_set_features(struct net_device *dev,
2526 netdev_features_t features)
2527{
2528 struct virtnet_info *vi = netdev_priv(dev);
2529 u64 offloads;
2530 int err;
2531
2532 if ((dev->features ^ features) & NETIF_F_LRO) {
2533 if (vi->xdp_queue_pairs)
2534 return -EBUSY;
2535
2536 if (features & NETIF_F_LRO)
2537 offloads = vi->guest_offloads_capable;
2538 else
Tonghao Zhang1a03b8a2020-09-29 09:58:06 +08002539 offloads = vi->guest_offloads_capable &
2540 ~GUEST_OFFLOAD_LRO_MASK;
Willem de Bruijna02e8962018-12-20 17:14:54 -05002541
2542 err = virtnet_set_guest_offloads(vi, offloads);
2543 if (err)
2544 return err;
2545 vi->guest_offloads = offloads;
2546 }
2547
2548 return 0;
2549}
2550
Stephen Hemminger76288b42009-01-06 10:44:22 -08002551static const struct net_device_ops virtnet_netdev = {
2552 .ndo_open = virtnet_open,
2553 .ndo_stop = virtnet_close,
2554 .ndo_start_xmit = start_xmit,
2555 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002556 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002557 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002558 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002559 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2560 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002561 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002562 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002563 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002564 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Willem de Bruijna02e8962018-12-20 17:14:54 -05002565 .ndo_set_features = virtnet_set_features,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002566};
2567
Jason Wang586d17c2012-04-11 20:43:52 +00002568static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002569{
Jason Wang586d17c2012-04-11 20:43:52 +00002570 struct virtnet_info *vi =
2571 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002572 u16 v;
2573
Rusty Russell855e0c52013-10-14 18:11:51 +10302574 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2575 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302576 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002577
2578 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002579 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002580 virtnet_ack_link_announce(vi);
2581 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002582
2583 /* Ignore unknown (future) status bits */
2584 v &= VIRTIO_NET_S_LINK_UP;
2585
2586 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302587 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002588
2589 vi->status = v;
2590
2591 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002592 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002593 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002594 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002595 } else {
2596 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002597 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002598 }
2599}
2600
2601static void virtnet_config_changed(struct virtio_device *vdev)
2602{
2603 struct virtnet_info *vi = vdev->priv;
2604
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002605 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002606}
2607
Jason Wang986a4f42012-12-07 07:04:56 +00002608static void virtnet_free_queues(struct virtnet_info *vi)
2609{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002610 int i;
2611
Jason Wangab3971b2015-03-12 13:57:44 +08002612 for (i = 0; i < vi->max_queue_pairs; i++) {
Jakub Kicinski5198d5452020-09-09 10:37:51 -07002613 __netif_napi_del(&vi->rq[i].napi);
2614 __netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002615 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002616
Jakub Kicinski5198d5452020-09-09 10:37:51 -07002617 /* We called __netif_napi_del(),
Eric Dumazet963abe52016-11-15 22:24:12 -08002618 * we need to respect an RCU grace period before freeing vi->rq
2619 */
2620 synchronize_net();
2621
Jason Wang986a4f42012-12-07 07:04:56 +00002622 kfree(vi->rq);
2623 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002624 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002625}
2626
John Fastabend473153292017-02-02 19:14:32 -08002627static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002628{
John Fastabendf600b692016-12-15 12:13:24 -08002629 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002630 int i;
2631
2632 for (i = 0; i < vi->max_queue_pairs; i++) {
2633 while (vi->rq[i].pages)
2634 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002635
2636 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2637 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2638 if (old_prog)
2639 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002640 }
John Fastabend473153292017-02-02 19:14:32 -08002641}
2642
2643static void free_receive_bufs(struct virtnet_info *vi)
2644{
2645 rtnl_lock();
2646 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002647 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002648}
2649
Michael Daltonfb518792014-01-16 22:23:26 -08002650static void free_receive_page_frags(struct virtnet_info *vi)
2651{
2652 int i;
2653 for (i = 0; i < vi->max_queue_pairs; i++)
2654 if (vi->rq[i].alloc_frag.page)
2655 put_page(vi->rq[i].alloc_frag.page);
2656}
2657
Jason Wang986a4f42012-12-07 07:04:56 +00002658static void free_unused_bufs(struct virtnet_info *vi)
2659{
2660 void *buf;
2661 int i;
2662
2663 for (i = 0; i < vi->max_queue_pairs; i++) {
2664 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002665 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Toshiaki Makita50504712019-01-29 09:45:59 +09002666 if (!is_xdp_frame(buf))
John Fastabend56434a02016-12-15 12:14:13 -08002667 dev_kfree_skb(buf);
2668 else
Toshiaki Makita50504712019-01-29 09:45:59 +09002669 xdp_return_frame(ptr_to_xdp(buf));
John Fastabend56434a02016-12-15 12:14:13 -08002670 }
Jason Wang986a4f42012-12-07 07:04:56 +00002671 }
2672
2673 for (i = 0; i < vi->max_queue_pairs; i++) {
2674 struct virtqueue *vq = vi->rq[i].vq;
2675
2676 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002677 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002678 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002679 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002680 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002681 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002682 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002683 }
Jason Wang986a4f42012-12-07 07:04:56 +00002684 }
Jason Wang986a4f42012-12-07 07:04:56 +00002685 }
2686}
2687
Jason Wange9d74172012-12-07 07:04:55 +00002688static void virtnet_del_vqs(struct virtnet_info *vi)
2689{
2690 struct virtio_device *vdev = vi->vdev;
2691
Peter Xu310974f2019-03-18 14:56:06 +08002692 virtnet_clean_affinity(vi);
Jason Wang986a4f42012-12-07 07:04:56 +00002693
Jason Wange9d74172012-12-07 07:04:55 +00002694 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002695
2696 virtnet_free_queues(vi);
2697}
2698
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002699/* How large should a single buffer be so a queue full of these can fit at
2700 * least one full packet?
2701 * Logic below assumes the mergeable buffer header is used.
2702 */
2703static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2704{
2705 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2706 unsigned int rq_size = virtqueue_get_vring_size(vq);
2707 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2708 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2709 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2710
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002711 return max(max(min_buf_len, hdr_len) - hdr_len,
2712 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002713}
2714
Jason Wang986a4f42012-12-07 07:04:56 +00002715static int virtnet_find_vqs(struct virtnet_info *vi)
2716{
2717 vq_callback_t **callbacks;
2718 struct virtqueue **vqs;
2719 int ret = -ENOMEM;
2720 int i, total_vqs;
2721 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002722 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002723
2724 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2725 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2726 * possible control vq.
2727 */
2728 total_vqs = vi->max_queue_pairs * 2 +
2729 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2730
2731 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002732 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002733 if (!vqs)
2734 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002735 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002736 if (!callbacks)
2737 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002738 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002739 if (!names)
2740 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002741 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002742 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002743 if (!ctx)
2744 goto err_ctx;
2745 } else {
2746 ctx = NULL;
2747 }
Jason Wang986a4f42012-12-07 07:04:56 +00002748
2749 /* Parameters for control virtqueue, if any */
2750 if (vi->has_cvq) {
2751 callbacks[total_vqs - 1] = NULL;
2752 names[total_vqs - 1] = "control";
2753 }
2754
2755 /* Allocate/initialize parameters for send/receive virtqueues */
2756 for (i = 0; i < vi->max_queue_pairs; i++) {
2757 callbacks[rxq2vq(i)] = skb_recv_done;
2758 callbacks[txq2vq(i)] = skb_xmit_done;
2759 sprintf(vi->rq[i].name, "input.%d", i);
2760 sprintf(vi->sq[i].name, "output.%d", i);
2761 names[rxq2vq(i)] = vi->rq[i].name;
2762 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002763 if (ctx)
2764 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002765 }
2766
2767 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002768 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002769 if (ret)
2770 goto err_find;
2771
2772 if (vi->has_cvq) {
2773 vi->cvq = vqs[total_vqs - 1];
2774 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002775 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002776 }
2777
2778 for (i = 0; i < vi->max_queue_pairs; i++) {
2779 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002780 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002781 vi->sq[i].vq = vqs[txq2vq(i)];
2782 }
2783
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002784 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002785
Jason Wang986a4f42012-12-07 07:04:56 +00002786
2787err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002788 kfree(ctx);
2789err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002790 kfree(names);
2791err_names:
2792 kfree(callbacks);
2793err_callback:
2794 kfree(vqs);
2795err_vq:
2796 return ret;
2797}
2798
2799static int virtnet_alloc_queues(struct virtnet_info *vi)
2800{
2801 int i;
2802
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002803 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2804 if (!vi->ctrl)
2805 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002806 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002807 if (!vi->sq)
2808 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002809 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002810 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002811 goto err_rq;
2812
2813 INIT_DELAYED_WORK(&vi->refill, refill_work);
2814 for (i = 0; i < vi->max_queue_pairs; i++) {
2815 vi->rq[i].pages = NULL;
2816 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2817 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002818 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2819 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002820
2821 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002822 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002823 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002824
2825 u64_stats_init(&vi->rq[i].stats.syncp);
2826 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002827 }
2828
2829 return 0;
2830
2831err_rq:
2832 kfree(vi->sq);
2833err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002834 kfree(vi->ctrl);
2835err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002836 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002837}
2838
Amit Shah3f9c10b2011-12-22 16:58:31 +05302839static int init_vqs(struct virtnet_info *vi)
2840{
Jason Wang986a4f42012-12-07 07:04:56 +00002841 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302842
Jason Wang986a4f42012-12-07 07:04:56 +00002843 /* Allocate send & receive queues */
2844 ret = virtnet_alloc_queues(vi);
2845 if (ret)
2846 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302847
Jason Wang986a4f42012-12-07 07:04:56 +00002848 ret = virtnet_find_vqs(vi);
2849 if (ret)
2850 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302851
Wanlong Gao47be2472013-01-24 23:51:29 +00002852 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002853 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002854 put_online_cpus();
2855
Amit Shah3f9c10b2011-12-22 16:58:31 +05302856 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002857
2858err_free:
2859 virtnet_free_queues(vi);
2860err:
2861 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302862}
2863
Michael Daltonfbf28d72014-01-16 22:23:30 -08002864#ifdef CONFIG_SYSFS
2865static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002866 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002867{
2868 struct virtnet_info *vi = netdev_priv(queue->dev);
2869 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002870 unsigned int headroom = virtnet_get_headroom(vi);
2871 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002872 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002873
2874 BUG_ON(queue_index >= vi->max_queue_pairs);
2875 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002876 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002877 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2878 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002879}
2880
2881static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2882 __ATTR_RO(mergeable_rx_buffer_size);
2883
2884static struct attribute *virtio_net_mrg_rx_attrs[] = {
2885 &mergeable_rx_buffer_size_attribute.attr,
2886 NULL
2887};
2888
2889static const struct attribute_group virtio_net_mrg_rx_group = {
2890 .name = "virtio_net",
2891 .attrs = virtio_net_mrg_rx_attrs
2892};
2893#endif
2894
Jason Wang892d6eb2014-11-20 17:03:05 +08002895static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2896 unsigned int fbit,
2897 const char *fname, const char *dname)
2898{
2899 if (!virtio_has_feature(vdev, fbit))
2900 return false;
2901
2902 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2903 fname, dname);
2904
2905 return true;
2906}
2907
2908#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2909 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2910
2911static bool virtnet_validate_features(struct virtio_device *vdev)
2912{
2913 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2914 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2915 "VIRTIO_NET_F_CTRL_VQ") ||
2916 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2917 "VIRTIO_NET_F_CTRL_VQ") ||
2918 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2919 "VIRTIO_NET_F_CTRL_VQ") ||
2920 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2921 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2922 "VIRTIO_NET_F_CTRL_VQ"))) {
2923 return false;
2924 }
2925
2926 return true;
2927}
2928
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002929#define MIN_MTU ETH_MIN_MTU
2930#define MAX_MTU ETH_MAX_MTU
2931
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002932static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002933{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002934 if (!vdev->config->get) {
2935 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2936 __func__);
2937 return -EINVAL;
2938 }
2939
Jason Wang892d6eb2014-11-20 17:03:05 +08002940 if (!virtnet_validate_features(vdev))
2941 return -EINVAL;
2942
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002943 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2944 int mtu = virtio_cread16(vdev,
2945 offsetof(struct virtio_net_config,
2946 mtu));
2947 if (mtu < MIN_MTU)
2948 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2949 }
2950
2951 return 0;
2952}
2953
2954static int virtnet_probe(struct virtio_device *vdev)
2955{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002956 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002957 struct net_device *dev;
2958 struct virtnet_info *vi;
2959 u16 max_queue_pairs;
2960 int mtu;
2961
Jason Wang986a4f42012-12-07 07:04:56 +00002962 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302963 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2964 struct virtio_net_config,
2965 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002966
2967 /* We need at least 2 queue's */
2968 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2969 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2970 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2971 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002972
2973 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002974 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002975 if (!dev)
2976 return -ENOMEM;
2977
2978 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002979 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002980 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002981 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002982
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002983 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002984 SET_NETDEV_DEV(dev, &vdev->dev);
2985
2986 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002987 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002988 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002989 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002990 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002991 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002992
2993 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002994 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002995 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2996 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002997 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002998 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2999 dev->hw_features |= NETIF_F_TSO;
3000 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
3001 dev->hw_features |= NETIF_F_TSO6;
3002 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
3003 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003004
Jason Wang41f2f122014-12-24 11:03:52 +08003005 dev->features |= NETIF_F_GSO_ROBUST;
3006
Michał Mirosław98e778c2011-03-31 01:01:35 +00003007 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07003008 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003009 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10003010 }
Thomas Huth4f491292013-08-27 17:09:02 +02003011 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
3012 dev->features |= NETIF_F_RXCSUM;
Willem de Bruijna02e8962018-12-20 17:14:54 -05003013 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3014 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
3015 dev->features |= NETIF_F_LRO;
3016 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
3017 dev->hw_features |= NETIF_F_LRO;
Rusty Russell296f96f2007-10-22 11:03:37 +10003018
Jason Wang4fda8302013-04-10 23:32:21 +00003019 dev->vlan_features = dev->features;
3020
Jarod Wilsond0c2c992016-10-20 13:55:21 -04003021 /* MTU range: 68 - 65535 */
3022 dev->min_mtu = MIN_MTU;
3023 dev->max_mtu = MAX_MTU;
3024
Rusty Russell296f96f2007-10-22 11:03:37 +10003025 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10303026 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
3027 virtio_cread_bytes(vdev,
3028 offsetof(struct virtio_net_config, mac),
3029 dev->dev_addr, dev->addr_len);
3030 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00003031 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003032
3033 /* Set up our device-specific information */
3034 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003035 vi->dev = dev;
3036 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01003037 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07003038
Jason Wang586d17c2012-04-11 20:43:52 +00003039 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10003040
Herbert Xu97402b92008-04-18 11:24:27 +08003041 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00003042 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3043 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05003044 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
3045 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08003046 vi->big_packets = true;
3047
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08003048 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
3049 vi->mergeable_rx_bufs = true;
3050
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03003051 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
3052 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003053 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
3054 else
3055 vi->hdr_len = sizeof(struct virtio_net_hdr);
3056
Michael S. Tsirkin75993302015-07-15 15:26:19 +03003057 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
3058 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303059 vi->any_header_sg = true;
3060
Jason Wang986a4f42012-12-07 07:04:56 +00003061 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3062 vi->has_cvq = true;
3063
Aaron Conole14de9d12016-06-03 16:57:12 -04003064 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3065 mtu = virtio_cread16(vdev,
3066 offsetof(struct virtio_net_config,
3067 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04003068 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003069 /* Should never trigger: MTU was previously validated
3070 * in virtnet_validate.
3071 */
Yuval Shaia7934b482019-04-03 12:10:13 +03003072 dev_err(&vdev->dev,
3073 "device MTU appears to have changed it is now %d < %d",
3074 mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003075 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003076 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003077
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003078 dev->mtu = mtu;
3079 dev->max_mtu = mtu;
3080
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003081 /* TODO: size buffers correctly in this case. */
3082 if (dev->mtu > ETH_DATA_LEN)
3083 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003084 }
3085
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003086 if (vi->any_header_sg)
3087 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003088
Jason Wang44900012016-11-25 12:37:26 +08003089 /* Enable multiqueue by default */
3090 if (num_online_cpus() >= max_queue_pairs)
3091 vi->curr_queue_pairs = max_queue_pairs;
3092 else
3093 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003094 vi->max_queue_pairs = max_queue_pairs;
3095
3096 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303097 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003098 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003099 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003100
Michael Daltonfbf28d72014-01-16 22:23:30 -08003101#ifdef CONFIG_SYSFS
3102 if (vi->mergeable_rx_bufs)
3103 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3104#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08003105 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3106 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003107
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003108 virtnet_init_settings(dev);
3109
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003110 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3111 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003112 if (IS_ERR(vi->failover)) {
3113 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003114 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003115 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003116 }
3117
Rusty Russell296f96f2007-10-22 11:03:37 +10003118 err = register_netdev(dev);
3119 if (err) {
3120 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003121 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003122 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003123
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303124 virtio_device_ready(vdev);
3125
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003126 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003127 if (err) {
3128 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003129 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003130 }
3131
Jason Wanga2208712016-12-13 14:23:05 +08003132 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003133
Jason Wang167c25e2010-11-10 14:45:41 +00003134 /* Assume link up if device can't report link status,
3135 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003136 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003137 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003138 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003139 } else {
3140 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003141 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003142 netif_carrier_on(dev);
3143 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003144
Jason Wang3f935222017-07-19 16:54:49 +08003145 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3146 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3147 set_bit(guest_offloads[i], &vi->guest_offloads);
Willem de Bruijna02e8962018-12-20 17:14:54 -05003148 vi->guest_offloads_capable = vi->guest_offloads;
Jason Wang3f935222017-07-19 16:54:49 +08003149
Jason Wang986a4f42012-12-07 07:04:56 +00003150 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3151 dev->name, max_queue_pairs);
3152
Rusty Russell296f96f2007-10-22 11:03:37 +10003153 return 0;
3154
wangyunjianf00e35e2016-05-31 11:52:43 +08003155free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303156 vi->vdev->config->reset(vdev);
3157
Rusty Russellb3369c12008-02-04 23:50:02 -05003158 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003159free_failover:
3160 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003161free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003162 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003163 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003164 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003165free:
3166 free_netdev(dev);
3167 return err;
3168}
3169
Amit Shah04486ed2011-12-22 16:58:32 +05303170static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003171{
Amit Shah04486ed2011-12-22 16:58:32 +05303172 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003173
3174 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003175 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003176
Jason Wang986a4f42012-12-07 07:04:56 +00003177 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003178
Michael Daltonfb518792014-01-16 22:23:26 -08003179 free_receive_page_frags(vi);
3180
Jason Wang986a4f42012-12-07 07:04:56 +00003181 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303182}
3183
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003184static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303185{
3186 struct virtnet_info *vi = vdev->priv;
3187
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003188 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003189
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303190 /* Make sure no work handler is accessing the device. */
3191 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003192
Amit Shah04486ed2011-12-22 16:58:32 +05303193 unregister_netdev(vi->dev);
3194
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003195 net_failover_destroy(vi->failover);
3196
Amit Shah04486ed2011-12-22 16:58:32 +05303197 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003198
Rusty Russell74b25532007-11-19 11:20:42 -05003199 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003200}
3201
Arnd Bergmann67a75192017-07-25 17:35:50 +02003202static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303203{
3204 struct virtnet_info *vi = vdev->priv;
3205
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003206 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003207 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303208 remove_vq_common(vi);
3209
3210 return 0;
3211}
3212
Arnd Bergmann67a75192017-07-25 17:35:50 +02003213static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303214{
3215 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003216 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303217
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003218 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303219 if (err)
3220 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003221 virtnet_set_queues(vi, vi->curr_queue_pairs);
3222
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003223 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003224 if (err)
3225 return err;
3226
Amit Shah0741bcb2011-12-22 16:58:33 +05303227 return 0;
3228}
Amit Shah0741bcb2011-12-22 16:58:33 +05303229
Rusty Russell296f96f2007-10-22 11:03:37 +10003230static struct virtio_device_id id_table[] = {
3231 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3232 { 0 },
3233};
3234
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003235#define VIRTNET_FEATURES \
3236 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3237 VIRTIO_NET_F_MAC, \
3238 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3239 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3240 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3241 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3242 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3243 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3244 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003245 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003246 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003247
Rusty Russellc45a6812008-05-02 21:50:50 -05003248static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003249 VIRTNET_FEATURES,
3250};
3251
3252static unsigned int features_legacy[] = {
3253 VIRTNET_FEATURES,
3254 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303255 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003256};
3257
Uwe Kleine-König22402522009-11-05 01:32:44 -08003258static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003259 .feature_table = features,
3260 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003261 .feature_table_legacy = features_legacy,
3262 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003263 .driver.name = KBUILD_MODNAME,
3264 .driver.owner = THIS_MODULE,
3265 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003266 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003267 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003268 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003269 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303270#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303271 .freeze = virtnet_freeze,
3272 .restore = virtnet_restore,
3273#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003274};
3275
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003276static __init int virtio_net_driver_init(void)
3277{
3278 int ret;
3279
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003280 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003281 virtnet_cpu_online,
3282 virtnet_cpu_down_prep);
3283 if (ret < 0)
3284 goto out;
3285 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003286 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003287 NULL, virtnet_cpu_dead);
3288 if (ret)
3289 goto err_dead;
3290
3291 ret = register_virtio_driver(&virtio_net_driver);
3292 if (ret)
3293 goto err_virtio;
3294 return 0;
3295err_virtio:
3296 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3297err_dead:
3298 cpuhp_remove_multi_state(virtionet_online);
3299out:
3300 return ret;
3301}
3302module_init(virtio_net_driver_init);
3303
3304static __exit void virtio_net_driver_exit(void)
3305{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003306 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003307 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3308 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003309}
3310module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003311
3312MODULE_DEVICE_TABLE(virtio, id_table);
3313MODULE_DESCRIPTION("Virtio network driver");
3314MODULE_LICENSE("GPL");