blob: 1e0e0fce3ab2e60e6db48b4df6d965cbb20ba6c6 [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020033#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010034#include <net/xdp.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100035
Amerigo Wangd34710e2013-05-09 19:50:51 +000036static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020037module_param(napi_weight, int, 0444);
38
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040039static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050040module_param(csum, bool, 0444);
41module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050043
Rusty Russell296f96f2007-10-22 11:03:37 +100044/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080045#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080046#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100047
Jason Wangf6b10202017-02-21 16:46:28 +080048#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
49
John Fastabend2de2f7f2017-02-02 19:16:29 -080050/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
51#define VIRTIO_XDP_HEADROOM 256
52
Johannes Berg5377d7582015-08-19 09:48:40 +020053/* RX packet size EWMA. The average packet size is used to determine the packet
54 * buffer size when refilling RX rings. As the entire RX ring may be refilled
55 * at once, the weight is chosen so that the EWMA will be insensitive to short-
56 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080057 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010058DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080059
Rick Jones66846042011-11-14 14:17:08 +000060#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000061
Colin Ian King7acd4322017-08-12 22:45:53 +010062static const unsigned long guest_offloads[] = {
63 VIRTIO_NET_F_GUEST_TSO4,
64 VIRTIO_NET_F_GUEST_TSO6,
65 VIRTIO_NET_F_GUEST_ECN,
66 VIRTIO_NET_F_GUEST_UFO
67};
Jason Wang3f935222017-07-19 16:54:49 +080068
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090069struct virtnet_stat_desc {
70 char desc[ETH_GSTRING_LEN];
71 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000072};
73
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090074struct virtnet_sq_stats {
75 struct u64_stats_sync syncp;
76 u64 packets;
77 u64 bytes;
78};
79
80struct virtnet_rq_stats {
81 struct u64_stats_sync syncp;
82 u64 packets;
83 u64 bytes;
84};
85
86#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
87#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
88
89static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
90 { "packets", VIRTNET_SQ_STAT(packets) },
91 { "bytes", VIRTNET_SQ_STAT(bytes) },
92};
93
94static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
95 { "packets", VIRTNET_RQ_STAT(packets) },
96 { "bytes", VIRTNET_RQ_STAT(bytes) },
97};
98
99#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
100#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
101
Jason Wange9d74172012-12-07 07:04:55 +0000102/* Internal representation of a send virtqueue */
103struct send_queue {
104 /* Virtqueue associated with this send _queue */
105 struct virtqueue *vq;
106
107 /* TX: fragments + linear part + virtio header */
108 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000109
110 /* Name of the send queue: output.$index */
111 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400112
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900113 struct virtnet_sq_stats stats;
114
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400115 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000116};
117
118/* Internal representation of a receive virtqueue */
119struct receive_queue {
120 /* Virtqueue associated with this receive_queue */
121 struct virtqueue *vq;
122
Rusty Russell296f96f2007-10-22 11:03:37 +1000123 struct napi_struct napi;
124
John Fastabendf600b692016-12-15 12:13:24 -0800125 struct bpf_prog __rcu *xdp_prog;
126
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900127 struct virtnet_rq_stats stats;
128
Jason Wange9d74172012-12-07 07:04:55 +0000129 /* Chain pages by the private ptr. */
130 struct page *pages;
131
Michael Daltonab7db912014-01-16 22:23:27 -0800132 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200133 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800134
Michael Daltonfb518792014-01-16 22:23:26 -0800135 /* Page frag for packet buffer allocation. */
136 struct page_frag alloc_frag;
137
Jason Wange9d74172012-12-07 07:04:55 +0000138 /* RX: fragments + linear part + virtio header */
139 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000140
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200141 /* Min single buffer size for mergeable buffers case. */
142 unsigned int min_buf_len;
143
Jason Wang986a4f42012-12-07 07:04:56 +0000144 /* Name of this receive queue: input.$index */
145 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100146
147 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000148};
149
150struct virtnet_info {
151 struct virtio_device *vdev;
152 struct virtqueue *cvq;
153 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000154 struct send_queue *sq;
155 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000156 unsigned int status;
157
Jason Wang986a4f42012-12-07 07:04:56 +0000158 /* Max # of queue pairs supported by the device */
159 u16 max_queue_pairs;
160
161 /* # of queue pairs currently used by the driver */
162 u16 curr_queue_pairs;
163
John Fastabend672aafd2016-12-15 12:13:49 -0800164 /* # of XDP queue pairs currently used by the driver */
165 u16 xdp_queue_pairs;
166
Herbert Xu97402b92008-04-18 11:24:27 +0800167 /* I like... big packets and I cannot lie! */
168 bool big_packets;
169
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800170 /* Host will merge rx buffers for big packets (shake it! shake it!) */
171 bool mergeable_rx_bufs;
172
Jason Wang986a4f42012-12-07 07:04:56 +0000173 /* Has control virtqueue */
174 bool has_cvq;
175
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930176 /* Host can handle any s/g split between our header and packet data */
177 bool any_header_sg;
178
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300179 /* Packet virtio header size */
180 u8 hdr_len;
181
Rusty Russell3161e452009-08-26 12:22:32 -0700182 /* Work struct for refilling if we run low on memory. */
183 struct delayed_work refill;
184
Jason Wang586d17c2012-04-11 20:43:52 +0000185 /* Work struct for config space updates */
186 struct work_struct config_work;
187
Jason Wang986a4f42012-12-07 07:04:56 +0000188 /* Does the affinity hint is set for virtqueues? */
189 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000190
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200191 /* CPU hotplug instances for online & dead */
192 struct hlist_node node;
193 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200194
195 /* Control VQ buffers: protected by the rtnl lock */
196 struct virtio_net_ctrl_hdr ctrl_hdr;
197 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700198 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200199 u8 ctrl_promisc;
200 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700201 u16 ctrl_vid;
Jason Wang3f935222017-07-19 16:54:49 +0800202 u64 ctrl_offloads;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100203
204 /* Ethtool settings */
205 u8 duplex;
206 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800207
208 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000209};
210
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000211struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300212 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000213 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300214 * hdr is in a separate sg buffer, and data sg buffer shares same page
215 * with this header sg. This padding makes next sg 16 byte aligned
216 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000217 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300218 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000219};
220
Jason Wang986a4f42012-12-07 07:04:56 +0000221/* Converting between virtqueue no. and kernel tx/rx queue no.
222 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
223 */
224static int vq2txq(struct virtqueue *vq)
225{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000226 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000227}
228
229static int txq2vq(int txq)
230{
231 return txq * 2 + 1;
232}
233
234static int vq2rxq(struct virtqueue *vq)
235{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000236 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000237}
238
239static int rxq2vq(int rxq)
240{
241 return rxq * 2;
242}
243
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300244static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000245{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300246 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000247}
248
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000249/*
250 * private is used to chain pages for big packets, put the whole
251 * most recent used list in the beginning for reuse
252 */
Jason Wange9d74172012-12-07 07:04:55 +0000253static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500254{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000255 struct page *end;
256
Jason Wange9d74172012-12-07 07:04:55 +0000257 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000258 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000259 end->private = (unsigned long)rq->pages;
260 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500261}
262
Jason Wange9d74172012-12-07 07:04:55 +0000263static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500264{
Jason Wange9d74172012-12-07 07:04:55 +0000265 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500266
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000267 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000268 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000269 /* clear private here, it is used to chain pages */
270 p->private = 0;
271 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500272 p = alloc_page(gfp_mask);
273 return p;
274}
275
Willem de Bruijne4e84522017-04-24 13:49:26 -0400276static void virtqueue_napi_schedule(struct napi_struct *napi,
277 struct virtqueue *vq)
278{
279 if (napi_schedule_prep(napi)) {
280 virtqueue_disable_cb(vq);
281 __napi_schedule(napi);
282 }
283}
284
285static void virtqueue_napi_complete(struct napi_struct *napi,
286 struct virtqueue *vq, int processed)
287{
288 int opaque;
289
290 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900291 if (napi_complete_done(napi, processed)) {
292 if (unlikely(virtqueue_poll(vq, opaque)))
293 virtqueue_napi_schedule(napi, vq);
294 } else {
295 virtqueue_disable_cb(vq);
296 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400297}
298
Jason Wange9d74172012-12-07 07:04:55 +0000299static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000300{
Jason Wange9d74172012-12-07 07:04:55 +0000301 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400302 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000303
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500304 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000305 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000306
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400307 if (napi->weight)
308 virtqueue_napi_schedule(napi, vq);
309 else
310 /* We were probably waiting for more output buffers. */
311 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000312}
313
Jason Wang28b39bc2017-07-19 16:54:46 +0800314#define MRG_CTX_HEADER_SHIFT 22
315static void *mergeable_len_to_ctx(unsigned int truesize,
316 unsigned int headroom)
317{
318 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
319}
320
321static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
322{
323 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
324}
325
326static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
327{
328 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
329}
330
Mike Waychison34646452012-01-04 12:52:32 +0000331/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300332static struct sk_buff *page_to_skb(struct virtnet_info *vi,
333 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700334 struct page *page, unsigned int offset,
335 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000336{
337 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300338 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700339 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000340 char *p;
341
Michael Dalton2613af02013-10-28 15:44:18 -0700342 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000343
344 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100345 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000346 if (unlikely(!skb))
347 return NULL;
348
349 hdr = skb_vnet_hdr(skb);
350
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300351 hdr_len = vi->hdr_len;
352 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700353 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300354 else
Michael Dalton2613af02013-10-28 15:44:18 -0700355 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000356
357 memcpy(hdr, p, hdr_len);
358
359 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700360 offset += hdr_padded_len;
361 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000362
363 copy = len;
364 if (copy > skb_tailroom(skb))
365 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200366 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000367
368 len -= copy;
369 offset += copy;
370
Michael Dalton2613af02013-10-28 15:44:18 -0700371 if (vi->mergeable_rx_bufs) {
372 if (len)
373 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
374 else
375 put_page(page);
376 return skb;
377 }
378
Sasha Levine878d782011-09-28 04:40:54 +0000379 /*
380 * Verify that we can indeed put this data into a skb.
381 * This is here to handle cases when the device erroneously
382 * tries to receive more than is possible. This is usually
383 * the case of a broken device.
384 */
385 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000386 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000387 dev_kfree_skb(skb);
388 return NULL;
389 }
Michael Dalton2613af02013-10-28 15:44:18 -0700390 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000391 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700392 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
393 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
394 frag_size, truesize);
395 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000396 page = (struct page *)page->private;
397 offset = 0;
398 }
399
400 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000401 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000402
403 return skb;
404}
405
Jason Wang186b3c92017-09-19 17:42:43 +0800406static void virtnet_xdp_flush(struct net_device *dev)
407{
408 struct virtnet_info *vi = netdev_priv(dev);
409 struct send_queue *sq;
410 unsigned int qp;
411
412 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
413 sq = &vi->sq[qp];
414
415 virtqueue_kick(sq->vq);
416}
417
418static bool __virtnet_xdp_xmit(struct virtnet_info *vi,
419 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800420{
John Fastabend56434a02016-12-15 12:14:13 -0800421 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800422 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800423 struct send_queue *sq;
424 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800425 void *xdp_sent;
426 int err;
427
John Fastabend722d8282017-02-02 19:15:32 -0800428 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
429 sq = &vi->sq[qp];
430
John Fastabend56434a02016-12-15 12:14:13 -0800431 /* Free up any pending old buffers before queueing new ones. */
432 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800433 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800434
Jason Wangf6b10202017-02-21 16:46:28 +0800435 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800436 }
437
Jason Wangf6b10202017-02-21 16:46:28 +0800438 xdp->data -= vi->hdr_len;
439 /* Zero header and leave csum up to XDP layers */
440 hdr = xdp->data;
441 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800442
Jason Wangf6b10202017-02-21 16:46:28 +0800443 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800444
Jason Wangf6b10202017-02-21 16:46:28 +0800445 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100446 if (unlikely(err))
447 return false; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800448
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100449 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800450}
451
Jason Wang186b3c92017-09-19 17:42:43 +0800452static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
453{
454 struct virtnet_info *vi = netdev_priv(dev);
455 bool sent = __virtnet_xdp_xmit(vi, xdp);
456
457 if (!sent)
458 return -ENOSPC;
459 return 0;
460}
461
Jason Wangf6b10202017-02-21 16:46:28 +0800462static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
463{
464 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
465}
466
Jason Wang4941d472017-07-19 16:54:48 +0800467/* We copy the packet for XDP in the following cases:
468 *
469 * 1) Packet is scattered across multiple rx buffers.
470 * 2) Headroom space is insufficient.
471 *
472 * This is inefficient but it's a temporary condition that
473 * we hit right after XDP is enabled and until queue is refilled
474 * with large buffers with sufficient headroom - so it should affect
475 * at most queue size packets.
476 * Afterwards, the conditions to enable
477 * XDP should preclude the underlying device from sending packets
478 * across multiple buffers (num_buf > 1), and we make sure buffers
479 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800480 */
481static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800482 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800483 struct page *p,
484 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800485 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800486 unsigned int *len)
487{
488 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800489
490 if (!page)
491 return NULL;
492
493 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
494 page_off += *len;
495
Jason Wang56a86f82016-12-23 22:37:26 +0800496 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800497 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800498 void *buf;
499 int off;
500
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200501 buf = virtqueue_get_buf(rq->vq, &buflen);
502 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800503 goto err_buf;
504
John Fastabend72979a62016-12-15 12:14:36 -0800505 p = virt_to_head_page(buf);
506 off = buf - page_address(p);
507
Jason Wang56a86f82016-12-23 22:37:26 +0800508 /* guard against a misconfigured or uncooperative backend that
509 * is sending packet larger than the MTU.
510 */
511 if ((page_off + buflen) > PAGE_SIZE) {
512 put_page(p);
513 goto err_buf;
514 }
515
John Fastabend72979a62016-12-15 12:14:36 -0800516 memcpy(page_address(page) + page_off,
517 page_address(p) + off, buflen);
518 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800519 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800520 }
521
John Fastabend2de2f7f2017-02-02 19:16:29 -0800522 /* Headroom does not contribute to packet length */
523 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800524 return page;
525err_buf:
526 __free_pages(page, 0);
527 return NULL;
528}
529
Jason Wang4941d472017-07-19 16:54:48 +0800530static struct sk_buff *receive_small(struct net_device *dev,
531 struct virtnet_info *vi,
532 struct receive_queue *rq,
533 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800534 unsigned int len,
535 bool *xdp_xmit)
Jason Wang4941d472017-07-19 16:54:48 +0800536{
537 struct sk_buff *skb;
538 struct bpf_prog *xdp_prog;
539 unsigned int xdp_headroom = (unsigned long)ctx;
540 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
541 unsigned int headroom = vi->hdr_len + header_offset;
542 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
543 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
544 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100545 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800546 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100547 bool sent;
548 int err;
549
Jason Wang4941d472017-07-19 16:54:48 +0800550 len -= vi->hdr_len;
551
552 rcu_read_lock();
553 xdp_prog = rcu_dereference(rq->xdp_prog);
554 if (xdp_prog) {
555 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
556 struct xdp_buff xdp;
557 void *orig_data;
558 u32 act;
559
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100560 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800561 goto err_xdp;
562
563 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
564 int offset = buf - page_address(page) + header_offset;
565 unsigned int tlen = len + vi->hdr_len;
566 u16 num_buf = 1;
567
568 xdp_headroom = virtnet_get_headroom(vi);
569 header_offset = VIRTNET_RX_PAD + xdp_headroom;
570 headroom = vi->hdr_len + header_offset;
571 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
572 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
573 xdp_page = xdp_linearize_page(rq, &num_buf, page,
574 offset, header_offset,
575 &tlen);
576 if (!xdp_page)
577 goto err_xdp;
578
579 buf = page_address(xdp_page);
580 put_page(page);
581 page = xdp_page;
582 }
583
584 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
585 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200586 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800587 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100588 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800589 orig_data = xdp.data;
590 act = bpf_prog_run_xdp(xdp_prog, &xdp);
591
592 switch (act) {
593 case XDP_PASS:
594 /* Recalculate length in case bpf program changed it */
595 delta = orig_data - xdp.data;
596 break;
597 case XDP_TX:
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100598 sent = __virtnet_xdp_xmit(vi, &xdp);
599 if (unlikely(!sent)) {
Jason Wang4941d472017-07-19 16:54:48 +0800600 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100601 goto err_xdp;
602 }
603 *xdp_xmit = true;
Jason Wang186b3c92017-09-19 17:42:43 +0800604 rcu_read_unlock();
605 goto xdp_xmit;
606 case XDP_REDIRECT:
607 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100608 if (err)
609 goto err_xdp;
610 *xdp_xmit = true;
Jason Wang4941d472017-07-19 16:54:48 +0800611 rcu_read_unlock();
612 goto xdp_xmit;
613 default:
614 bpf_warn_invalid_xdp_action(act);
615 case XDP_ABORTED:
616 trace_xdp_exception(vi->dev, xdp_prog, act);
617 case XDP_DROP:
618 goto err_xdp;
619 }
620 }
621 rcu_read_unlock();
622
623 skb = build_skb(buf, buflen);
624 if (!skb) {
625 put_page(page);
626 goto err;
627 }
628 skb_reserve(skb, headroom - delta);
629 skb_put(skb, len + delta);
630 if (!delta) {
631 buf += header_offset;
632 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
633 } /* keep zeroed vnet hdr since packet was changed by bpf */
634
635err:
636 return skb;
637
638err_xdp:
639 rcu_read_unlock();
640 dev->stats.rx_dropped++;
641 put_page(page);
642xdp_xmit:
643 return NULL;
644}
645
646static struct sk_buff *receive_big(struct net_device *dev,
647 struct virtnet_info *vi,
648 struct receive_queue *rq,
649 void *buf,
650 unsigned int len)
651{
652 struct page *page = buf;
653 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
654
655 if (unlikely(!skb))
656 goto err;
657
658 return skb;
659
660err:
661 dev->stats.rx_dropped++;
662 give_pages(rq, page);
663 return NULL;
664}
665
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200666static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200667 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200668 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200669 void *buf,
670 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800671 unsigned int len,
672 bool *xdp_xmit)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000673{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300674 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
675 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200676 struct page *page = virt_to_head_page(buf);
677 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800678 struct sk_buff *head_skb, *curr_skb;
679 struct bpf_prog *xdp_prog;
680 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800681 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100682 bool sent;
Michael Daltonab7db912014-01-16 22:23:27 -0800683
John Fastabend56434a02016-12-15 12:14:13 -0800684 head_skb = NULL;
685
John Fastabendf600b692016-12-15 12:13:24 -0800686 rcu_read_lock();
687 xdp_prog = rcu_dereference(rq->xdp_prog);
688 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800689 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800690 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800691 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800692 u32 act;
693
Jason Wang73b62bd2016-12-23 22:37:24 +0800694 /* This happens when rx buffer size is underestimated */
Jason Wang4941d472017-07-19 16:54:48 +0800695 if (unlikely(num_buf > 1 ||
696 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800697 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800698 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800699 page, offset,
700 VIRTIO_XDP_HEADROOM,
701 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800702 if (!xdp_page)
703 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800704 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800705 } else {
706 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800707 }
708
709 /* Transient failure which in theory could occur if
710 * in-flight packets from before XDP was enabled reach
711 * the receive path after XDP is loaded. In practice I
712 * was not able to create this condition.
713 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800714 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800715 goto err_xdp;
716
John Fastabend2de2f7f2017-02-02 19:16:29 -0800717 /* Allow consuming headroom but reserve enough space to push
718 * the descriptor on if we get an XDP_TX return code.
719 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800720 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800721 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800722 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200723 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800724 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100725 xdp.rxq = &rq->xdp_rxq;
726
John Fastabend0354e4d2017-02-02 19:15:01 -0800727 act = bpf_prog_run_xdp(xdp_prog, &xdp);
728
Jason Wang31240342017-09-19 17:42:42 +0800729 if (act != XDP_PASS)
730 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
731
John Fastabend56434a02016-12-15 12:14:13 -0800732 switch (act) {
733 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800734 /* recalculate offset to account for any header
735 * adjustments. Note other cases do not build an
736 * skb and avoid using offset
737 */
738 offset = xdp.data -
739 page_address(xdp_page) - vi->hdr_len;
740
Jason Wang1830f892016-12-23 22:37:27 +0800741 /* We can only create skb based on xdp_page. */
742 if (unlikely(xdp_page != page)) {
743 rcu_read_unlock();
744 put_page(page);
745 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800746 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800747 return head_skb;
748 }
John Fastabend56434a02016-12-15 12:14:13 -0800749 break;
750 case XDP_TX:
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100751 sent = __virtnet_xdp_xmit(vi, &xdp);
752 if (unlikely(!sent)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800753 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100754 if (unlikely(xdp_page != page))
755 put_page(xdp_page);
756 goto err_xdp;
757 }
758 *xdp_xmit = true;
John Fastabend72979a62016-12-15 12:14:36 -0800759 if (unlikely(xdp_page != page))
760 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800761 rcu_read_unlock();
762 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800763 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800764 bpf_warn_invalid_xdp_action(act);
765 case XDP_ABORTED:
766 trace_xdp_exception(vi->dev, xdp_prog, act);
767 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800768 if (unlikely(xdp_page != page))
769 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800770 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800771 }
John Fastabendf600b692016-12-15 12:13:24 -0800772 }
773 rcu_read_unlock();
774
Jason Wang28b39bc2017-07-19 16:54:46 +0800775 truesize = mergeable_ctx_to_truesize(ctx);
776 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300777 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200778 dev->name, len, (unsigned long)ctx);
779 dev->stats.rx_length_errors++;
780 goto err_skb;
781 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800782
John Fastabendf600b692016-12-15 12:13:24 -0800783 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
784 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000785
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200786 if (unlikely(!curr_skb))
787 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000788 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200789 int num_skb_frags;
790
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200791 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800792 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200793 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200794 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300795 virtio16_to_cpu(vi->vdev,
796 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200797 dev->stats.rx_length_errors++;
798 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000799 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200800
801 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800802
803 truesize = mergeable_ctx_to_truesize(ctx);
804 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300805 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200806 dev->name, len, (unsigned long)ctx);
807 dev->stats.rx_length_errors++;
808 goto err_skb;
809 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200810
811 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700812 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
813 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200814
815 if (unlikely(!nskb))
816 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700817 if (curr_skb == head_skb)
818 skb_shinfo(curr_skb)->frag_list = nskb;
819 else
820 curr_skb->next = nskb;
821 curr_skb = nskb;
822 head_skb->truesize += nskb->truesize;
823 num_skb_frags = 0;
824 }
825 if (curr_skb != head_skb) {
826 head_skb->data_len += len;
827 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800828 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700829 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200830 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800831 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
832 put_page(page);
833 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800834 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800835 } else {
836 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800837 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800838 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200839 }
840
Johannes Berg5377d7582015-08-19 09:48:40 +0200841 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200842 return head_skb;
843
John Fastabendf600b692016-12-15 12:13:24 -0800844err_xdp:
845 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200846err_skb:
847 put_page(page);
848 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200849 buf = virtqueue_get_buf(rq->vq, &len);
850 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200851 pr_debug("%s: rx error: %d buffers missing\n",
852 dev->name, num_buf);
853 dev->stats.rx_length_errors++;
854 break;
855 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200856 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200857 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000858 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200859err_buf:
860 dev->stats.rx_dropped++;
861 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800862xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200863 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000864}
865
Jason Wang61845d22017-02-17 11:33:09 +0800866static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Jason Wang186b3c92017-09-19 17:42:43 +0800867 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +1000868{
Jason Wange9d74172012-12-07 07:04:55 +0000869 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000870 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300871 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800872 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000873
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300874 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000875 pr_debug("%s: short packet %i\n", dev->name, len);
876 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800877 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200878 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800879 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800880 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800881 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800882 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800883 }
Jason Wang61845d22017-02-17 11:33:09 +0800884 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000885 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000886
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200887 if (vi->mergeable_rx_bufs)
Jason Wang186b3c92017-09-19 17:42:43 +0800888 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200889 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300890 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200891 else
Jason Wang186b3c92017-09-19 17:42:43 +0800892 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200893
894 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800895 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800896
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000897 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000898
Jason Wang61845d22017-02-17 11:33:09 +0800899 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000900
Mike Rapoporte858fae2016-06-08 16:09:21 +0300901 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000902 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000903
Mike Rapoporte858fae2016-06-08 16:09:21 +0300904 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
905 virtio_is_little_endian(vi->vdev))) {
906 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
907 dev->name, hdr->hdr.gso_type,
908 hdr->hdr.gso_size);
909 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000910 }
911
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300912 skb->protocol = eth_type_trans(skb, dev);
913 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
914 ntohs(skb->protocol), skb->len, skb->pkt_type);
915
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200916 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800917 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000918
919frame_err:
920 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000921 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800922 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000923}
924
Jason Wang192f68c2017-07-19 16:54:47 +0800925/* Unlike mergeable buffers, all buffers are allocated to the
926 * same size, except for the headroom. For this reason we do
927 * not need to use mergeable_len_to_ctx here - it is enough
928 * to store the headroom as the context ignoring the truesize.
929 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300930static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
931 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000932{
Jason Wangf6b10202017-02-21 16:46:28 +0800933 struct page_frag *alloc_frag = &rq->alloc_frag;
934 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800935 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800936 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800937 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000938 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000939
Jason Wangf6b10202017-02-21 16:46:28 +0800940 len = SKB_DATA_ALIGN(len) +
941 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
942 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000943 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800944
Jason Wangf6b10202017-02-21 16:46:28 +0800945 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
946 get_page(alloc_frag->page);
947 alloc_frag->offset += len;
948 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
949 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800950 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000951 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800952 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000953 return err;
954}
955
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300956static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
957 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000958{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000959 struct page *first, *list = NULL;
960 char *p;
961 int i, err, offset;
962
Rusty Russella5835442014-09-11 10:17:36 +0930963 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
964
Jason Wange9d74172012-12-07 07:04:55 +0000965 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000966 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000967 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000968 if (!first) {
969 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000970 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000971 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700972 }
Jason Wange9d74172012-12-07 07:04:55 +0000973 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000974
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000975 /* chain new page in list head to match sg */
976 first->private = (unsigned long)list;
977 list = first;
978 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800979
Jason Wange9d74172012-12-07 07:04:55 +0000980 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000981 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000982 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000983 return -ENOMEM;
984 }
985 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800986
Jason Wange9d74172012-12-07 07:04:55 +0000987 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300988 /* a separated rq->sg[0] for header - required in case !any_header_sg */
989 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800990
Jason Wange9d74172012-12-07 07:04:55 +0000991 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000992 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000993 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800994
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000995 /* chain first in list head */
996 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030997 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
998 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000999 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001000 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001001
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001002 return err;
1003}
Herbert Xu97402b92008-04-18 11:24:27 +08001004
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001005static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
1006 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001007{
Michael Daltonab7db912014-01-16 22:23:27 -08001008 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001009 unsigned int len;
1010
Johannes Berg5377d7582015-08-19 09:48:40 +02001011 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001012 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001013 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001014}
1015
John Fastabend2de2f7f2017-02-02 19:16:29 -08001016static int add_recvbuf_mergeable(struct virtnet_info *vi,
1017 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001018{
Michael Daltonfb518792014-01-16 22:23:26 -08001019 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001020 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -08001021 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001022 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001023 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001024 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001025
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001026 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001027 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001028 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001029
Michael Daltonfb518792014-01-16 22:23:26 -08001030 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001031 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001032 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001033 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -08001034 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001035 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -08001036 /* To avoid internal fragmentation, if there is very likely not
1037 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001038 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001039 */
Michael Daltonfb518792014-01-16 22:23:26 -08001040 len += hole;
1041 alloc_frag->offset += hole;
1042 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001043
Michael Daltonfb518792014-01-16 22:23:26 -08001044 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001045 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001046 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001047 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001048 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001049
1050 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001051}
1052
Rusty Russellb2baed62011-12-29 00:42:38 +00001053/*
1054 * Returns false if we couldn't fill entirely (OOM).
1055 *
1056 * Normally run in the receive path, but can also be run from ndo_open
1057 * before we're receiving packets, or from refill_work which is
1058 * careful to disable receiving (using napi_disable).
1059 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001060static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1061 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001062{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001063 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001064 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001065
Amit Shah0aea51c2009-08-26 14:58:28 +05301066 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001067 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001068 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001069 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001070 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001071 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001072 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001073
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001074 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301075 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001076 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001077 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001078 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001079 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001080}
1081
Rusty Russell18445c42008-02-04 23:49:57 -05001082static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001083{
1084 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001085 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001086
Willem de Bruijne4e84522017-04-24 13:49:26 -04001087 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001088}
1089
Willem de Bruijne4e84522017-04-24 13:49:26 -04001090static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001091{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001092 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001093
1094 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001095 * won't get another interrupt, so process any outstanding packets now.
1096 * Call local_bh_enable after to trigger softIRQ processing.
1097 */
1098 local_bh_disable();
1099 virtqueue_napi_schedule(napi, vq);
1100 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001101}
1102
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001103static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1104 struct virtqueue *vq,
1105 struct napi_struct *napi)
1106{
1107 if (!napi->weight)
1108 return;
1109
1110 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1111 * enable the feature if this is likely affine with the transmit path.
1112 */
1113 if (!vi->affinity_hint_set) {
1114 napi->weight = 0;
1115 return;
1116 }
1117
1118 return virtnet_napi_enable(vq, napi);
1119}
1120
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001121static void virtnet_napi_tx_disable(struct napi_struct *napi)
1122{
1123 if (napi->weight)
1124 napi_disable(napi);
1125}
1126
Rusty Russell3161e452009-08-26 12:22:32 -07001127static void refill_work(struct work_struct *work)
1128{
Jason Wange9d74172012-12-07 07:04:55 +00001129 struct virtnet_info *vi =
1130 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001131 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001132 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001133
Sasha Levin55257d72013-04-29 12:00:08 +09301134 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001135 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001136
Jason Wang986a4f42012-12-07 07:04:56 +00001137 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001138 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001139 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001140
1141 /* In theory, this can happen: if we don't get any buffers in
1142 * we will *never* try to fill again.
1143 */
1144 if (still_empty)
1145 schedule_delayed_work(&vi->refill, HZ/2);
1146 }
Rusty Russell3161e452009-08-26 12:22:32 -07001147}
1148
Jason Wang186b3c92017-09-19 17:42:43 +08001149static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001150{
Jason Wange9d74172012-12-07 07:04:55 +00001151 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001152 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001153 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +10001154
Jason Wang192f68c2017-07-19 16:54:47 +08001155 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001156 void *ctx;
1157
1158 while (received < budget &&
1159 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Jason Wang186b3c92017-09-19 17:42:43 +08001160 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001161 received++;
1162 }
1163 } else {
1164 while (received < budget &&
1165 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang186b3c92017-09-19 17:42:43 +08001166 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001167 received++;
1168 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001169 }
1170
Jason Wangbe121f42014-01-16 14:45:24 +08001171 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001172 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001173 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001174 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001175
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001176 u64_stats_update_begin(&rq->stats.syncp);
1177 rq->stats.bytes += bytes;
1178 rq->stats.packets += received;
1179 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001180
Jason Wang2ffa7592014-07-23 16:33:54 +08001181 return received;
1182}
1183
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001184static void free_old_xmit_skbs(struct send_queue *sq)
1185{
1186 struct sk_buff *skb;
1187 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001188 unsigned int packets = 0;
1189 unsigned int bytes = 0;
1190
1191 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1192 pr_debug("Sent skb %p\n", skb);
1193
1194 bytes += skb->len;
1195 packets++;
1196
Eric Dumazetdadc0732017-08-24 09:02:49 -07001197 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001198 }
1199
1200 /* Avoid overhead when no packets have been processed
1201 * happens when called speculatively from start_xmit.
1202 */
1203 if (!packets)
1204 return;
1205
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001206 u64_stats_update_begin(&sq->stats.syncp);
1207 sq->stats.bytes += bytes;
1208 sq->stats.packets += packets;
1209 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001210}
1211
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001212static void virtnet_poll_cleantx(struct receive_queue *rq)
1213{
1214 struct virtnet_info *vi = rq->vq->vdev->priv;
1215 unsigned int index = vq2rxq(rq->vq);
1216 struct send_queue *sq = &vi->sq[index];
1217 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1218
1219 if (!sq->napi.weight)
1220 return;
1221
1222 if (__netif_tx_trylock(txq)) {
1223 free_old_xmit_skbs(sq);
1224 __netif_tx_unlock(txq);
1225 }
1226
1227 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1228 netif_tx_wake_queue(txq);
1229}
1230
Jason Wang2ffa7592014-07-23 16:33:54 +08001231static int virtnet_poll(struct napi_struct *napi, int budget)
1232{
1233 struct receive_queue *rq =
1234 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001235 unsigned int received;
Jason Wang186b3c92017-09-19 17:42:43 +08001236 bool xdp_xmit = false;
Jason Wang2ffa7592014-07-23 16:33:54 +08001237
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001238 virtnet_poll_cleantx(rq);
1239
Jason Wang186b3c92017-09-19 17:42:43 +08001240 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001241
Rusty Russell8329d982007-11-19 11:20:43 -05001242 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001243 if (received < budget)
1244 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001245
Jason Wang186b3c92017-09-19 17:42:43 +08001246 if (xdp_xmit)
1247 xdp_do_flush_map();
1248
Rusty Russell296f96f2007-10-22 11:03:37 +10001249 return received;
1250}
1251
Jason Wang986a4f42012-12-07 07:04:56 +00001252static int virtnet_open(struct net_device *dev)
1253{
1254 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001255 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001256
Jason Wange4166622013-05-21 20:03:58 +00001257 for (i = 0; i < vi->max_queue_pairs; i++) {
1258 if (i < vi->curr_queue_pairs)
1259 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001260 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001261 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001262
1263 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1264 if (err < 0)
1265 return err;
1266
Willem de Bruijne4e84522017-04-24 13:49:26 -04001267 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001268 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001269 }
1270
1271 return 0;
1272}
1273
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001274static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1275{
1276 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1277 struct virtnet_info *vi = sq->vq->vdev->priv;
1278 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1279
1280 __netif_tx_lock(txq, raw_smp_processor_id());
1281 free_old_xmit_skbs(sq);
1282 __netif_tx_unlock(txq);
1283
1284 virtqueue_napi_complete(napi, sq->vq, 0);
1285
1286 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1287 netif_tx_wake_queue(txq);
1288
1289 return 0;
1290}
1291
Jason Wange9d74172012-12-07 07:04:55 +00001292static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001293{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001294 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001295 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001296 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001297 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001298 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301299 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001300
Johannes Berge1749612008-10-27 15:59:26 -07001301 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301302
1303 can_push = vi->any_header_sg &&
1304 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1305 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1306 /* Even if we can, don't push here yet as this would skew
1307 * csum_start offset below. */
1308 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001309 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301310 else
1311 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001312
Mike Rapoporte858fae2016-06-08 16:09:21 +03001313 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001314 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001315 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001316
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001317 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001318 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001319
Jason Wang547c8902015-08-27 14:53:06 +08001320 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301321 if (can_push) {
1322 __skb_push(skb, hdr_len);
1323 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001324 if (unlikely(num_sg < 0))
1325 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301326 /* Pull header back to avoid skew in tx bytes calculations. */
1327 __skb_pull(skb, hdr_len);
1328 } else {
1329 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001330 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1331 if (unlikely(num_sg < 0))
1332 return num_sg;
1333 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301334 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301335 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001336}
1337
Stephen Hemminger424efe92009-08-31 19:50:51 +00001338static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001339{
1340 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001341 int qnum = skb_get_queue_mapping(skb);
1342 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301343 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001344 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1345 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001346 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001347
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001348 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001349 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001350
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001351 if (use_napi && kick)
1352 virtqueue_enable_cb_delayed(sq->vq);
1353
Jacob Keller074c3582014-06-25 02:37:13 +00001354 /* timestamp packet in software */
1355 skb_tx_timestamp(skb);
1356
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001357 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001358 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001359
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301360 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001361 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301362 dev->stats.tx_fifo_errors++;
1363 if (net_ratelimit())
1364 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001365 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001366 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001367 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001368 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001369 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001370
Rusty Russell48925e32009-09-24 09:59:20 -06001371 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001372 if (!use_napi) {
1373 skb_orphan(skb);
1374 nf_reset(skb);
1375 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001376
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001377 /* If running out of space, stop queue to avoid getting packets that we
1378 * are then unable to transmit.
1379 * An alternative would be to force queuing layer to requeue the skb by
1380 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1381 * returned in a normal path of operation: it means that driver is not
1382 * maintaining the TX queue stop/start state properly, and causes
1383 * the stack to do a non-trivial amount of useless work.
1384 * Since most packets only take 1 or 2 ring slots, stopping the queue
1385 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001386 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001387 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001388 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001389 if (!use_napi &&
1390 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001391 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001392 free_old_xmit_skbs(sq);
1393 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001394 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001395 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001396 }
1397 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001398 }
Rusty Russell48925e32009-09-24 09:59:20 -06001399
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001400 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001401 virtqueue_kick(sq->vq);
1402
Rusty Russell48925e32009-09-24 09:59:20 -06001403 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001404}
1405
Amos Kong40cbfc32013-01-21 01:17:21 +00001406/*
1407 * Send command via the control virtqueue and check status. Commands
1408 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001409 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001410 */
1411static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001412 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001413{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301414 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001415 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001416
1417 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301418 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001419
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001420 vi->ctrl_status = ~0;
1421 vi->ctrl_hdr.class = class;
1422 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301423 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001424 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301425 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001426
Rusty Russellf7bc9592013-03-20 15:44:28 +10301427 if (out)
1428 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001429
Rusty Russellf7bc9592013-03-20 15:44:28 +10301430 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001431 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001432 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001433
stephen hemmingerd24bae32013-12-09 16:17:40 -08001434 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301435 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001436
Heinz Graalfs67975902013-10-29 09:40:02 +10301437 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001438 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001439
1440 /* Spin for a response, the kick causes an ioport write, trapping
1441 * into the hypervisor, so the request should be handled immediately.
1442 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301443 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1444 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001445 cpu_relax();
1446
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001447 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001448}
1449
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001450static int virtnet_set_mac_address(struct net_device *dev, void *p)
1451{
1452 struct virtnet_info *vi = netdev_priv(dev);
1453 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001454 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001455 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001456 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001457
Shyam Saini801822d2016-12-24 00:44:58 +05301458 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001459 if (!addr)
1460 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001461
1462 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001463 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001464 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001465
Amos Kong7e58d5a2013-01-21 01:17:23 +00001466 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1467 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1468 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001469 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001470 dev_warn(&vdev->dev,
1471 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001472 ret = -EINVAL;
1473 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001474 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001475 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1476 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301477 unsigned int i;
1478
1479 /* Naturally, this has an atomicity problem. */
1480 for (i = 0; i < dev->addr_len; i++)
1481 virtio_cwrite8(vdev,
1482 offsetof(struct virtio_net_config, mac) +
1483 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001484 }
1485
1486 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001487 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001488
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001489out:
1490 kfree(addr);
1491 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001492}
1493
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001494static void virtnet_stats(struct net_device *dev,
1495 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001496{
1497 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001498 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001499 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001500
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001501 for (i = 0; i < vi->max_queue_pairs; i++) {
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001502 u64 tpackets, tbytes, rpackets, rbytes;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001503 struct receive_queue *rq = &vi->rq[i];
1504 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001505
1506 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001507 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1508 tpackets = sq->stats.packets;
1509 tbytes = sq->stats.bytes;
1510 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001511
1512 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001513 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1514 rpackets = rq->stats.packets;
1515 rbytes = rq->stats.bytes;
1516 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001517
1518 tot->rx_packets += rpackets;
1519 tot->tx_packets += tpackets;
1520 tot->rx_bytes += rbytes;
1521 tot->tx_bytes += tbytes;
1522 }
1523
1524 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001525 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001526 tot->rx_dropped = dev->stats.rx_dropped;
1527 tot->rx_length_errors = dev->stats.rx_length_errors;
1528 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001529}
1530
Amit Shahda74e892008-02-29 16:24:50 +05301531#ifdef CONFIG_NET_POLL_CONTROLLER
1532static void virtnet_netpoll(struct net_device *dev)
1533{
1534 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001535 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301536
Jason Wang986a4f42012-12-07 07:04:56 +00001537 for (i = 0; i < vi->curr_queue_pairs; i++)
1538 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301539}
1540#endif
1541
Jason Wang586d17c2012-04-11 20:43:52 +00001542static void virtnet_ack_link_announce(struct virtnet_info *vi)
1543{
1544 rtnl_lock();
1545 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001546 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001547 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1548 rtnl_unlock();
1549}
1550
John Fastabend473153292017-02-02 19:14:32 -08001551static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001552{
1553 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001554 struct net_device *dev = vi->dev;
1555
1556 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1557 return 0;
1558
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001559 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1560 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001561
1562 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001563 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001564 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1565 queue_pairs);
1566 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301567 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001568 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001569 /* virtnet_open() will refill when device is going to up. */
1570 if (dev->flags & IFF_UP)
1571 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301572 }
Jason Wang986a4f42012-12-07 07:04:56 +00001573
1574 return 0;
1575}
1576
John Fastabend473153292017-02-02 19:14:32 -08001577static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1578{
1579 int err;
1580
1581 rtnl_lock();
1582 err = _virtnet_set_queues(vi, queue_pairs);
1583 rtnl_unlock();
1584 return err;
1585}
1586
Rusty Russell296f96f2007-10-22 11:03:37 +10001587static int virtnet_close(struct net_device *dev)
1588{
1589 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001590 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001591
Rusty Russellb2baed62011-12-29 00:42:38 +00001592 /* Make sure refill_work doesn't re-enable napi! */
1593 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001594
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001595 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001596 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001597 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001598 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001599 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001600
Rusty Russell296f96f2007-10-22 11:03:37 +10001601 return 0;
1602}
1603
Alex Williamson2af76982009-02-04 09:02:40 +00001604static void virtnet_set_rx_mode(struct net_device *dev)
1605{
1606 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001607 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001608 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001609 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001610 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001611 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001612 void *buf;
1613 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001614
stephen hemminger788a8b62013-12-09 16:18:45 -08001615 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001616 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1617 return;
1618
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001619 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1620 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001621
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001622 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001623
1624 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001625 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001626 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001627 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001628
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001629 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001630
1631 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001632 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001633 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001634 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001635
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001636 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001637 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001638 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001639 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1640 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1641 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001642 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001643 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001644
Alex Williamson23e258e2009-05-01 17:27:56 +00001645 sg_init_table(sg, 2);
1646
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001647 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001648 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001649 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001650 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001651 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001652
1653 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001654 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001655
1656 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001657 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001658
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001659 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001660 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001661 netdev_for_each_mc_addr(ha, dev)
1662 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001663
1664 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001665 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001666
1667 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001668 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001669 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001670
1671 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001672}
1673
Patrick McHardy80d5c362013-04-19 02:04:28 +00001674static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1675 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001676{
1677 struct virtnet_info *vi = netdev_priv(dev);
1678 struct scatterlist sg;
1679
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001680 vi->ctrl_vid = vid;
1681 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001682
1683 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001684 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001685 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001686 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001687}
1688
Patrick McHardy80d5c362013-04-19 02:04:28 +00001689static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1690 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001691{
1692 struct virtnet_info *vi = netdev_priv(dev);
1693 struct scatterlist sg;
1694
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001695 vi->ctrl_vid = vid;
1696 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001697
1698 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001699 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001700 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001701 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001702}
1703
Wanlong Gao8898c212013-01-24 23:51:30 +00001704static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001705{
1706 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001707
1708 if (vi->affinity_hint_set) {
1709 for (i = 0; i < vi->max_queue_pairs; i++) {
1710 virtqueue_set_affinity(vi->rq[i].vq, -1);
1711 virtqueue_set_affinity(vi->sq[i].vq, -1);
1712 }
1713
1714 vi->affinity_hint_set = false;
1715 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001716}
1717
1718static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001719{
1720 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001721 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001722
1723 /* In multiqueue mode, when the number of cpu is equal to the number of
1724 * queue pairs, we let the queue pairs to be private to one cpu by
1725 * setting the affinity hint to eliminate the contention.
1726 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001727 if (vi->curr_queue_pairs == 1 ||
1728 vi->max_queue_pairs != num_online_cpus()) {
1729 virtnet_clean_affinity(vi, -1);
1730 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001731 }
1732
Wanlong Gao8898c212013-01-24 23:51:30 +00001733 i = 0;
1734 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001735 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1736 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001737 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001738 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001739 }
1740
Wanlong Gao8898c212013-01-24 23:51:30 +00001741 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001742}
1743
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001744static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001745{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001746 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1747 node);
1748 virtnet_set_affinity(vi);
1749 return 0;
1750}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001751
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001752static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1753{
1754 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1755 node_dead);
1756 virtnet_set_affinity(vi);
1757 return 0;
1758}
Jason Wang3ab098d2013-10-15 11:18:58 +08001759
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001760static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1761{
1762 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1763 node);
1764
1765 virtnet_clean_affinity(vi, cpu);
1766 return 0;
1767}
1768
1769static enum cpuhp_state virtionet_online;
1770
1771static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1772{
1773 int ret;
1774
1775 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1776 if (ret)
1777 return ret;
1778 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1779 &vi->node_dead);
1780 if (!ret)
1781 return ret;
1782 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1783 return ret;
1784}
1785
1786static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1787{
1788 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1789 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1790 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001791}
1792
Rick Jones8f9f4662011-10-19 08:10:59 +00001793static void virtnet_get_ringparam(struct net_device *dev,
1794 struct ethtool_ringparam *ring)
1795{
1796 struct virtnet_info *vi = netdev_priv(dev);
1797
Jason Wang986a4f42012-12-07 07:04:56 +00001798 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1799 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001800 ring->rx_pending = ring->rx_max_pending;
1801 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001802}
1803
Rick Jones66846042011-11-14 14:17:08 +00001804
1805static void virtnet_get_drvinfo(struct net_device *dev,
1806 struct ethtool_drvinfo *info)
1807{
1808 struct virtnet_info *vi = netdev_priv(dev);
1809 struct virtio_device *vdev = vi->vdev;
1810
1811 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1812 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1813 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1814
1815}
1816
Jason Wangd73bcd22012-12-07 07:04:57 +00001817/* TODO: Eliminate OOO packets during switching */
1818static int virtnet_set_channels(struct net_device *dev,
1819 struct ethtool_channels *channels)
1820{
1821 struct virtnet_info *vi = netdev_priv(dev);
1822 u16 queue_pairs = channels->combined_count;
1823 int err;
1824
1825 /* We don't support separate rx/tx channels.
1826 * We don't allow setting 'other' channels.
1827 */
1828 if (channels->rx_count || channels->tx_count || channels->other_count)
1829 return -EINVAL;
1830
Amos Kongc18e9cd2014-04-18 13:45:41 +08001831 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001832 return -EINVAL;
1833
John Fastabendf600b692016-12-15 12:13:24 -08001834 /* For now we don't support modifying channels while XDP is loaded
1835 * also when XDP is loaded all RX queues have XDP programs so we only
1836 * need to check a single RX queue.
1837 */
1838 if (vi->rq[0].xdp_prog)
1839 return -EINVAL;
1840
Wanlong Gao47be2472013-01-24 23:51:29 +00001841 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001842 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001843 if (!err) {
1844 netif_set_real_num_tx_queues(dev, queue_pairs);
1845 netif_set_real_num_rx_queues(dev, queue_pairs);
1846
Wanlong Gao8898c212013-01-24 23:51:30 +00001847 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001848 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001849 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001850
1851 return err;
1852}
1853
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001854static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1855{
1856 struct virtnet_info *vi = netdev_priv(dev);
1857 char *p = (char *)data;
1858 unsigned int i, j;
1859
1860 switch (stringset) {
1861 case ETH_SS_STATS:
1862 for (i = 0; i < vi->curr_queue_pairs; i++) {
1863 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1864 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
1865 i, virtnet_rq_stats_desc[j].desc);
1866 p += ETH_GSTRING_LEN;
1867 }
1868 }
1869
1870 for (i = 0; i < vi->curr_queue_pairs; i++) {
1871 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1872 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
1873 i, virtnet_sq_stats_desc[j].desc);
1874 p += ETH_GSTRING_LEN;
1875 }
1876 }
1877 break;
1878 }
1879}
1880
1881static int virtnet_get_sset_count(struct net_device *dev, int sset)
1882{
1883 struct virtnet_info *vi = netdev_priv(dev);
1884
1885 switch (sset) {
1886 case ETH_SS_STATS:
1887 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
1888 VIRTNET_SQ_STATS_LEN);
1889 default:
1890 return -EOPNOTSUPP;
1891 }
1892}
1893
1894static void virtnet_get_ethtool_stats(struct net_device *dev,
1895 struct ethtool_stats *stats, u64 *data)
1896{
1897 struct virtnet_info *vi = netdev_priv(dev);
1898 unsigned int idx = 0, start, i, j;
1899 const u8 *stats_base;
1900 size_t offset;
1901
1902 for (i = 0; i < vi->curr_queue_pairs; i++) {
1903 struct receive_queue *rq = &vi->rq[i];
1904
1905 stats_base = (u8 *)&rq->stats;
1906 do {
1907 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1908 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1909 offset = virtnet_rq_stats_desc[j].offset;
1910 data[idx + j] = *(u64 *)(stats_base + offset);
1911 }
1912 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
1913 idx += VIRTNET_RQ_STATS_LEN;
1914 }
1915
1916 for (i = 0; i < vi->curr_queue_pairs; i++) {
1917 struct send_queue *sq = &vi->sq[i];
1918
1919 stats_base = (u8 *)&sq->stats;
1920 do {
1921 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1922 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1923 offset = virtnet_sq_stats_desc[j].offset;
1924 data[idx + j] = *(u64 *)(stats_base + offset);
1925 }
1926 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
1927 idx += VIRTNET_SQ_STATS_LEN;
1928 }
1929}
1930
Jason Wangd73bcd22012-12-07 07:04:57 +00001931static void virtnet_get_channels(struct net_device *dev,
1932 struct ethtool_channels *channels)
1933{
1934 struct virtnet_info *vi = netdev_priv(dev);
1935
1936 channels->combined_count = vi->curr_queue_pairs;
1937 channels->max_combined = vi->max_queue_pairs;
1938 channels->max_other = 0;
1939 channels->rx_count = 0;
1940 channels->tx_count = 0;
1941 channels->other_count = 0;
1942}
1943
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001944/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001945static bool
1946virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001947{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001948 struct ethtool_link_ksettings diff1 = *cmd;
1949 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001950
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001951 /* cmd is always set so we need to clear it, validate the port type
1952 * and also without autonegotiation we can ignore advertising
1953 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001954 diff1.base.speed = 0;
1955 diff2.base.port = PORT_OTHER;
1956 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1957 diff1.base.duplex = 0;
1958 diff1.base.cmd = 0;
1959 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001960
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001961 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1962 bitmap_empty(diff1.link_modes.supported,
1963 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1964 bitmap_empty(diff1.link_modes.advertising,
1965 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1966 bitmap_empty(diff1.link_modes.lp_advertising,
1967 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001968}
1969
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001970static int virtnet_set_link_ksettings(struct net_device *dev,
1971 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001972{
1973 struct virtnet_info *vi = netdev_priv(dev);
1974 u32 speed;
1975
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001976 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001977 /* don't allow custom speed and duplex */
1978 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001979 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001980 !virtnet_validate_ethtool_cmd(cmd))
1981 return -EINVAL;
1982 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001983 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001984
1985 return 0;
1986}
1987
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001988static int virtnet_get_link_ksettings(struct net_device *dev,
1989 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001990{
1991 struct virtnet_info *vi = netdev_priv(dev);
1992
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001993 cmd->base.speed = vi->speed;
1994 cmd->base.duplex = vi->duplex;
1995 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001996
1997 return 0;
1998}
1999
2000static void virtnet_init_settings(struct net_device *dev)
2001{
2002 struct virtnet_info *vi = netdev_priv(dev);
2003
2004 vi->speed = SPEED_UNKNOWN;
2005 vi->duplex = DUPLEX_UNKNOWN;
2006}
2007
Jason Baronfaa9b392018-01-05 17:44:54 -05002008static void virtnet_update_settings(struct virtnet_info *vi)
2009{
2010 u32 speed;
2011 u8 duplex;
2012
2013 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2014 return;
2015
2016 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2017 speed));
2018 if (ethtool_validate_speed(speed))
2019 vi->speed = speed;
2020 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2021 duplex));
2022 if (ethtool_validate_duplex(duplex))
2023 vi->duplex = duplex;
2024}
2025
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002026static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002027 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002028 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002029 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002030 .get_strings = virtnet_get_strings,
2031 .get_sset_count = virtnet_get_sset_count,
2032 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002033 .set_channels = virtnet_set_channels,
2034 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002035 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002036 .get_link_ksettings = virtnet_get_link_ksettings,
2037 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002038};
2039
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002040static void virtnet_freeze_down(struct virtio_device *vdev)
2041{
2042 struct virtnet_info *vi = vdev->priv;
2043 int i;
2044
2045 /* Make sure no work handler is accessing the device */
2046 flush_work(&vi->config_work);
2047
2048 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08002049 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002050 cancel_delayed_work_sync(&vi->refill);
2051
2052 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002053 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002054 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002055 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002056 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002057 }
2058}
2059
2060static int init_vqs(struct virtnet_info *vi);
2061
2062static int virtnet_restore_up(struct virtio_device *vdev)
2063{
2064 struct virtnet_info *vi = vdev->priv;
2065 int err, i;
2066
2067 err = init_vqs(vi);
2068 if (err)
2069 return err;
2070
2071 virtio_device_ready(vdev);
2072
2073 if (netif_running(vi->dev)) {
2074 for (i = 0; i < vi->curr_queue_pairs; i++)
2075 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2076 schedule_delayed_work(&vi->refill, 0);
2077
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002078 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002079 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002080 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2081 &vi->sq[i].napi);
2082 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002083 }
2084
2085 netif_device_attach(vi->dev);
2086 return err;
2087}
2088
Jason Wang3f935222017-07-19 16:54:49 +08002089static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2090{
2091 struct scatterlist sg;
2092 vi->ctrl_offloads = cpu_to_virtio64(vi->vdev, offloads);
2093
2094 sg_init_one(&sg, &vi->ctrl_offloads, sizeof(vi->ctrl_offloads));
2095
2096 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2097 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2098 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2099 return -EINVAL;
2100 }
2101
2102 return 0;
2103}
2104
2105static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2106{
2107 u64 offloads = 0;
2108
2109 if (!vi->guest_offloads)
2110 return 0;
2111
2112 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2113 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2114
2115 return virtnet_set_guest_offloads(vi, offloads);
2116}
2117
2118static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2119{
2120 u64 offloads = vi->guest_offloads;
2121
2122 if (!vi->guest_offloads)
2123 return 0;
2124 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2125 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2126
2127 return virtnet_set_guest_offloads(vi, offloads);
2128}
2129
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002130static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2131 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002132{
2133 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2134 struct virtnet_info *vi = netdev_priv(dev);
2135 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002136 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002137 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002138
Jason Wang3f935222017-07-19 16:54:49 +08002139 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2140 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2141 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2142 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2143 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002144 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first");
John Fastabendf600b692016-12-15 12:13:24 -08002145 return -EOPNOTSUPP;
2146 }
2147
2148 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002149 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002150 return -EINVAL;
2151 }
2152
2153 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002154 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002155 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2156 return -EINVAL;
2157 }
2158
John Fastabend672aafd2016-12-15 12:13:49 -08002159 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2160 if (prog)
2161 xdp_qp = nr_cpu_ids;
2162
2163 /* XDP requires extra queues for XDP_TX */
2164 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002165 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002166 netdev_warn(dev, "request %i queues but max is %i\n",
2167 curr_qp + xdp_qp, vi->max_queue_pairs);
2168 return -ENOMEM;
2169 }
2170
John Fastabend2de2f7f2017-02-02 19:16:29 -08002171 if (prog) {
2172 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2173 if (IS_ERR(prog))
2174 return PTR_ERR(prog);
2175 }
2176
Jason Wang4941d472017-07-19 16:54:48 +08002177 /* Make sure NAPI is not using any XDP TX queues for RX. */
2178 for (i = 0; i < vi->max_queue_pairs; i++)
2179 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002180
John Fastabend672aafd2016-12-15 12:13:49 -08002181 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002182 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2183 if (err)
2184 goto err;
2185 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002186
John Fastabendf600b692016-12-15 12:13:24 -08002187 for (i = 0; i < vi->max_queue_pairs; i++) {
2188 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2189 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002190 if (i == 0) {
2191 if (!old_prog)
2192 virtnet_clear_guest_offloads(vi);
2193 if (!prog)
2194 virtnet_restore_guest_offloads(vi);
2195 }
John Fastabendf600b692016-12-15 12:13:24 -08002196 if (old_prog)
2197 bpf_prog_put(old_prog);
Jason Wang4941d472017-07-19 16:54:48 +08002198 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002199 }
2200
2201 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002202
Jason Wang4941d472017-07-19 16:54:48 +08002203err:
2204 for (i = 0; i < vi->max_queue_pairs; i++)
2205 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002206 if (prog)
2207 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2208 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002209}
2210
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002211static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002212{
2213 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002214 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002215 int i;
2216
2217 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002218 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2219 if (xdp_prog)
2220 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002221 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002222 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002223}
2224
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002225static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002226{
2227 switch (xdp->command) {
2228 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002229 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002230 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002231 xdp->prog_id = virtnet_xdp_query(dev);
2232 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002233 return 0;
2234 default:
2235 return -EINVAL;
2236 }
2237}
2238
Stephen Hemminger76288b42009-01-06 10:44:22 -08002239static const struct net_device_ops virtnet_netdev = {
2240 .ndo_open = virtnet_open,
2241 .ndo_stop = virtnet_close,
2242 .ndo_start_xmit = start_xmit,
2243 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002244 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002245 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002246 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002247 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2248 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002249#ifdef CONFIG_NET_POLL_CONTROLLER
2250 .ndo_poll_controller = virtnet_netpoll,
2251#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002252 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002253 .ndo_xdp_xmit = virtnet_xdp_xmit,
2254 .ndo_xdp_flush = virtnet_xdp_flush,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002255 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002256};
2257
Jason Wang586d17c2012-04-11 20:43:52 +00002258static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002259{
Jason Wang586d17c2012-04-11 20:43:52 +00002260 struct virtnet_info *vi =
2261 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002262 u16 v;
2263
Rusty Russell855e0c52013-10-14 18:11:51 +10302264 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2265 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302266 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002267
2268 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002269 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002270 virtnet_ack_link_announce(vi);
2271 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002272
2273 /* Ignore unknown (future) status bits */
2274 v &= VIRTIO_NET_S_LINK_UP;
2275
2276 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302277 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002278
2279 vi->status = v;
2280
2281 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002282 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002283 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002284 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002285 } else {
2286 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002287 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002288 }
2289}
2290
2291static void virtnet_config_changed(struct virtio_device *vdev)
2292{
2293 struct virtnet_info *vi = vdev->priv;
2294
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002295 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002296}
2297
Jason Wang986a4f42012-12-07 07:04:56 +00002298static void virtnet_free_queues(struct virtnet_info *vi)
2299{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002300 int i;
2301
Jason Wangab3971b2015-03-12 13:57:44 +08002302 for (i = 0; i < vi->max_queue_pairs; i++) {
2303 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002304 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002305 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002306 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002307
Eric Dumazet963abe52016-11-15 22:24:12 -08002308 /* We called napi_hash_del() before netif_napi_del(),
2309 * we need to respect an RCU grace period before freeing vi->rq
2310 */
2311 synchronize_net();
2312
Jason Wang986a4f42012-12-07 07:04:56 +00002313 kfree(vi->rq);
2314 kfree(vi->sq);
2315}
2316
John Fastabend473153292017-02-02 19:14:32 -08002317static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002318{
John Fastabendf600b692016-12-15 12:13:24 -08002319 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002320 int i;
2321
2322 for (i = 0; i < vi->max_queue_pairs; i++) {
2323 while (vi->rq[i].pages)
2324 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002325
2326 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2327 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2328 if (old_prog)
2329 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002330 }
John Fastabend473153292017-02-02 19:14:32 -08002331}
2332
2333static void free_receive_bufs(struct virtnet_info *vi)
2334{
2335 rtnl_lock();
2336 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002337 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002338}
2339
Michael Daltonfb518792014-01-16 22:23:26 -08002340static void free_receive_page_frags(struct virtnet_info *vi)
2341{
2342 int i;
2343 for (i = 0; i < vi->max_queue_pairs; i++)
2344 if (vi->rq[i].alloc_frag.page)
2345 put_page(vi->rq[i].alloc_frag.page);
2346}
2347
John Fastabendb68df012017-01-25 18:22:48 -08002348static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002349{
2350 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2351 return false;
2352 else if (q < vi->curr_queue_pairs)
2353 return true;
2354 else
2355 return false;
2356}
2357
Jason Wang986a4f42012-12-07 07:04:56 +00002358static void free_unused_bufs(struct virtnet_info *vi)
2359{
2360 void *buf;
2361 int i;
2362
2363 for (i = 0; i < vi->max_queue_pairs; i++) {
2364 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002365 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002366 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002367 dev_kfree_skb(buf);
2368 else
2369 put_page(virt_to_head_page(buf));
2370 }
Jason Wang986a4f42012-12-07 07:04:56 +00002371 }
2372
2373 for (i = 0; i < vi->max_queue_pairs; i++) {
2374 struct virtqueue *vq = vi->rq[i].vq;
2375
2376 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002377 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002378 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002379 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002380 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002381 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002382 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002383 }
Jason Wang986a4f42012-12-07 07:04:56 +00002384 }
Jason Wang986a4f42012-12-07 07:04:56 +00002385 }
2386}
2387
Jason Wange9d74172012-12-07 07:04:55 +00002388static void virtnet_del_vqs(struct virtnet_info *vi)
2389{
2390 struct virtio_device *vdev = vi->vdev;
2391
Wanlong Gao8898c212013-01-24 23:51:30 +00002392 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002393
Jason Wange9d74172012-12-07 07:04:55 +00002394 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002395
2396 virtnet_free_queues(vi);
2397}
2398
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002399/* How large should a single buffer be so a queue full of these can fit at
2400 * least one full packet?
2401 * Logic below assumes the mergeable buffer header is used.
2402 */
2403static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2404{
2405 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2406 unsigned int rq_size = virtqueue_get_vring_size(vq);
2407 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2408 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2409 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2410
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002411 return max(max(min_buf_len, hdr_len) - hdr_len,
2412 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002413}
2414
Jason Wang986a4f42012-12-07 07:04:56 +00002415static int virtnet_find_vqs(struct virtnet_info *vi)
2416{
2417 vq_callback_t **callbacks;
2418 struct virtqueue **vqs;
2419 int ret = -ENOMEM;
2420 int i, total_vqs;
2421 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002422 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002423
2424 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2425 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2426 * possible control vq.
2427 */
2428 total_vqs = vi->max_queue_pairs * 2 +
2429 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2430
2431 /* Allocate space for find_vqs parameters */
2432 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2433 if (!vqs)
2434 goto err_vq;
2435 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2436 if (!callbacks)
2437 goto err_callback;
2438 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2439 if (!names)
2440 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002441 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002442 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2443 if (!ctx)
2444 goto err_ctx;
2445 } else {
2446 ctx = NULL;
2447 }
Jason Wang986a4f42012-12-07 07:04:56 +00002448
2449 /* Parameters for control virtqueue, if any */
2450 if (vi->has_cvq) {
2451 callbacks[total_vqs - 1] = NULL;
2452 names[total_vqs - 1] = "control";
2453 }
2454
2455 /* Allocate/initialize parameters for send/receive virtqueues */
2456 for (i = 0; i < vi->max_queue_pairs; i++) {
2457 callbacks[rxq2vq(i)] = skb_recv_done;
2458 callbacks[txq2vq(i)] = skb_xmit_done;
2459 sprintf(vi->rq[i].name, "input.%d", i);
2460 sprintf(vi->sq[i].name, "output.%d", i);
2461 names[rxq2vq(i)] = vi->rq[i].name;
2462 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002463 if (ctx)
2464 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002465 }
2466
2467 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002468 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002469 if (ret)
2470 goto err_find;
2471
2472 if (vi->has_cvq) {
2473 vi->cvq = vqs[total_vqs - 1];
2474 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002475 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002476 }
2477
2478 for (i = 0; i < vi->max_queue_pairs; i++) {
2479 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002480 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002481 vi->sq[i].vq = vqs[txq2vq(i)];
2482 }
2483
2484 kfree(names);
2485 kfree(callbacks);
2486 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002487 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002488
2489 return 0;
2490
2491err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002492 kfree(ctx);
2493err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002494 kfree(names);
2495err_names:
2496 kfree(callbacks);
2497err_callback:
2498 kfree(vqs);
2499err_vq:
2500 return ret;
2501}
2502
2503static int virtnet_alloc_queues(struct virtnet_info *vi)
2504{
2505 int i;
2506
2507 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2508 if (!vi->sq)
2509 goto err_sq;
2510 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002511 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002512 goto err_rq;
2513
2514 INIT_DELAYED_WORK(&vi->refill, refill_work);
2515 for (i = 0; i < vi->max_queue_pairs; i++) {
2516 vi->rq[i].pages = NULL;
2517 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2518 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002519 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2520 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002521
2522 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002523 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002524 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002525
2526 u64_stats_init(&vi->rq[i].stats.syncp);
2527 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002528 }
2529
2530 return 0;
2531
2532err_rq:
2533 kfree(vi->sq);
2534err_sq:
2535 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002536}
2537
Amit Shah3f9c10b2011-12-22 16:58:31 +05302538static int init_vqs(struct virtnet_info *vi)
2539{
Jason Wang986a4f42012-12-07 07:04:56 +00002540 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302541
Jason Wang986a4f42012-12-07 07:04:56 +00002542 /* Allocate send & receive queues */
2543 ret = virtnet_alloc_queues(vi);
2544 if (ret)
2545 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302546
Jason Wang986a4f42012-12-07 07:04:56 +00002547 ret = virtnet_find_vqs(vi);
2548 if (ret)
2549 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302550
Wanlong Gao47be2472013-01-24 23:51:29 +00002551 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002552 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002553 put_online_cpus();
2554
Amit Shah3f9c10b2011-12-22 16:58:31 +05302555 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002556
2557err_free:
2558 virtnet_free_queues(vi);
2559err:
2560 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302561}
2562
Michael Daltonfbf28d72014-01-16 22:23:30 -08002563#ifdef CONFIG_SYSFS
2564static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002565 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002566{
2567 struct virtnet_info *vi = netdev_priv(queue->dev);
2568 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002569 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002570
2571 BUG_ON(queue_index >= vi->max_queue_pairs);
2572 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002573 return sprintf(buf, "%u\n",
2574 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002575}
2576
2577static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2578 __ATTR_RO(mergeable_rx_buffer_size);
2579
2580static struct attribute *virtio_net_mrg_rx_attrs[] = {
2581 &mergeable_rx_buffer_size_attribute.attr,
2582 NULL
2583};
2584
2585static const struct attribute_group virtio_net_mrg_rx_group = {
2586 .name = "virtio_net",
2587 .attrs = virtio_net_mrg_rx_attrs
2588};
2589#endif
2590
Jason Wang892d6eb2014-11-20 17:03:05 +08002591static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2592 unsigned int fbit,
2593 const char *fname, const char *dname)
2594{
2595 if (!virtio_has_feature(vdev, fbit))
2596 return false;
2597
2598 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2599 fname, dname);
2600
2601 return true;
2602}
2603
2604#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2605 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2606
2607static bool virtnet_validate_features(struct virtio_device *vdev)
2608{
2609 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2610 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2611 "VIRTIO_NET_F_CTRL_VQ") ||
2612 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2613 "VIRTIO_NET_F_CTRL_VQ") ||
2614 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2615 "VIRTIO_NET_F_CTRL_VQ") ||
2616 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2617 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2618 "VIRTIO_NET_F_CTRL_VQ"))) {
2619 return false;
2620 }
2621
2622 return true;
2623}
2624
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002625#define MIN_MTU ETH_MIN_MTU
2626#define MAX_MTU ETH_MAX_MTU
2627
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002628static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002629{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002630 if (!vdev->config->get) {
2631 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2632 __func__);
2633 return -EINVAL;
2634 }
2635
Jason Wang892d6eb2014-11-20 17:03:05 +08002636 if (!virtnet_validate_features(vdev))
2637 return -EINVAL;
2638
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002639 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2640 int mtu = virtio_cread16(vdev,
2641 offsetof(struct virtio_net_config,
2642 mtu));
2643 if (mtu < MIN_MTU)
2644 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2645 }
2646
2647 return 0;
2648}
2649
2650static int virtnet_probe(struct virtio_device *vdev)
2651{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002652 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002653 struct net_device *dev;
2654 struct virtnet_info *vi;
2655 u16 max_queue_pairs;
2656 int mtu;
2657
Jason Wang986a4f42012-12-07 07:04:56 +00002658 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302659 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2660 struct virtio_net_config,
2661 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002662
2663 /* We need at least 2 queue's */
2664 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2665 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2666 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2667 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002668
2669 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002670 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002671 if (!dev)
2672 return -ENOMEM;
2673
2674 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002675 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002676 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002677 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002678
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002679 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002680 SET_NETDEV_DEV(dev, &vdev->dev);
2681
2682 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002683 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002684 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002685 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002686 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002687 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002688
2689 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002690 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002691 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2692 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002693 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002694 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2695 dev->hw_features |= NETIF_F_TSO;
2696 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2697 dev->hw_features |= NETIF_F_TSO6;
2698 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2699 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002700
Jason Wang41f2f122014-12-24 11:03:52 +08002701 dev->features |= NETIF_F_GSO_ROBUST;
2702
Michał Mirosław98e778c2011-03-31 01:01:35 +00002703 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002704 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002705 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002706 }
Thomas Huth4f491292013-08-27 17:09:02 +02002707 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2708 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002709
Jason Wang4fda8302013-04-10 23:32:21 +00002710 dev->vlan_features = dev->features;
2711
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002712 /* MTU range: 68 - 65535 */
2713 dev->min_mtu = MIN_MTU;
2714 dev->max_mtu = MAX_MTU;
2715
Rusty Russell296f96f2007-10-22 11:03:37 +10002716 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302717 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2718 virtio_cread_bytes(vdev,
2719 offsetof(struct virtio_net_config, mac),
2720 dev->dev_addr, dev->addr_len);
2721 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002722 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002723
2724 /* Set up our device-specific information */
2725 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002726 vi->dev = dev;
2727 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002728 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002729
Jason Wang586d17c2012-04-11 20:43:52 +00002730 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002731
Herbert Xu97402b92008-04-18 11:24:27 +08002732 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002733 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2734 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002735 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2736 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002737 vi->big_packets = true;
2738
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002739 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2740 vi->mergeable_rx_bufs = true;
2741
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002742 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2743 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002744 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2745 else
2746 vi->hdr_len = sizeof(struct virtio_net_hdr);
2747
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002748 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2749 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302750 vi->any_header_sg = true;
2751
Jason Wang986a4f42012-12-07 07:04:56 +00002752 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2753 vi->has_cvq = true;
2754
Aaron Conole14de9d12016-06-03 16:57:12 -04002755 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2756 mtu = virtio_cread16(vdev,
2757 offsetof(struct virtio_net_config,
2758 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002759 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002760 /* Should never trigger: MTU was previously validated
2761 * in virtnet_validate.
2762 */
2763 dev_err(&vdev->dev, "device MTU appears to have changed "
2764 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002765 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04002766 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002767
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002768 dev->mtu = mtu;
2769 dev->max_mtu = mtu;
2770
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002771 /* TODO: size buffers correctly in this case. */
2772 if (dev->mtu > ETH_DATA_LEN)
2773 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002774 }
2775
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002776 if (vi->any_header_sg)
2777 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002778
Jason Wang44900012016-11-25 12:37:26 +08002779 /* Enable multiqueue by default */
2780 if (num_online_cpus() >= max_queue_pairs)
2781 vi->curr_queue_pairs = max_queue_pairs;
2782 else
2783 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002784 vi->max_queue_pairs = max_queue_pairs;
2785
2786 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302787 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002788 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002789 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002790
Michael Daltonfbf28d72014-01-16 22:23:30 -08002791#ifdef CONFIG_SYSFS
2792 if (vi->mergeable_rx_bufs)
2793 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2794#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002795 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2796 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002797
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002798 virtnet_init_settings(dev);
2799
Rusty Russell296f96f2007-10-22 11:03:37 +10002800 err = register_netdev(dev);
2801 if (err) {
2802 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002803 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002804 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002805
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302806 virtio_device_ready(vdev);
2807
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002808 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002809 if (err) {
2810 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002811 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002812 }
2813
Jason Wanga2208712016-12-13 14:23:05 +08002814 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002815
Jason Wang167c25e2010-11-10 14:45:41 +00002816 /* Assume link up if device can't report link status,
2817 otherwise get link status from config. */
2818 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2819 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002820 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002821 } else {
2822 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05002823 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00002824 netif_carrier_on(dev);
2825 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002826
Jason Wang3f935222017-07-19 16:54:49 +08002827 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2828 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2829 set_bit(guest_offloads[i], &vi->guest_offloads);
2830
Jason Wang986a4f42012-12-07 07:04:56 +00002831 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2832 dev->name, max_queue_pairs);
2833
Rusty Russell296f96f2007-10-22 11:03:37 +10002834 return 0;
2835
wangyunjianf00e35e2016-05-31 11:52:43 +08002836free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302837 vi->vdev->config->reset(vdev);
2838
Rusty Russellb3369c12008-02-04 23:50:02 -05002839 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002840free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002841 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002842 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002843 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10002844free:
2845 free_netdev(dev);
2846 return err;
2847}
2848
Amit Shah04486ed2011-12-22 16:58:32 +05302849static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002850{
Amit Shah04486ed2011-12-22 16:58:32 +05302851 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002852
2853 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002854 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002855
Jason Wang986a4f42012-12-07 07:04:56 +00002856 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002857
Michael Daltonfb518792014-01-16 22:23:26 -08002858 free_receive_page_frags(vi);
2859
Jason Wang986a4f42012-12-07 07:04:56 +00002860 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302861}
2862
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002863static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302864{
2865 struct virtnet_info *vi = vdev->priv;
2866
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002867 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002868
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302869 /* Make sure no work handler is accessing the device. */
2870 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002871
Amit Shah04486ed2011-12-22 16:58:32 +05302872 unregister_netdev(vi->dev);
2873
2874 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002875
Rusty Russell74b25532007-11-19 11:20:42 -05002876 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002877}
2878
Arnd Bergmann67a75192017-07-25 17:35:50 +02002879static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302880{
2881 struct virtnet_info *vi = vdev->priv;
2882
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002883 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002884 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302885 remove_vq_common(vi);
2886
2887 return 0;
2888}
2889
Arnd Bergmann67a75192017-07-25 17:35:50 +02002890static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302891{
2892 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002893 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302894
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002895 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302896 if (err)
2897 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002898 virtnet_set_queues(vi, vi->curr_queue_pairs);
2899
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002900 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002901 if (err)
2902 return err;
2903
Amit Shah0741bcb2011-12-22 16:58:33 +05302904 return 0;
2905}
Amit Shah0741bcb2011-12-22 16:58:33 +05302906
Rusty Russell296f96f2007-10-22 11:03:37 +10002907static struct virtio_device_id id_table[] = {
2908 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2909 { 0 },
2910};
2911
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002912#define VIRTNET_FEATURES \
2913 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2914 VIRTIO_NET_F_MAC, \
2915 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2916 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2917 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2918 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2919 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2920 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2921 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05002922 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
2923 VIRTIO_NET_F_SPEED_DUPLEX
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002924
Rusty Russellc45a6812008-05-02 21:50:50 -05002925static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002926 VIRTNET_FEATURES,
2927};
2928
2929static unsigned int features_legacy[] = {
2930 VIRTNET_FEATURES,
2931 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302932 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002933};
2934
Uwe Kleine-König22402522009-11-05 01:32:44 -08002935static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002936 .feature_table = features,
2937 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002938 .feature_table_legacy = features_legacy,
2939 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002940 .driver.name = KBUILD_MODNAME,
2941 .driver.owner = THIS_MODULE,
2942 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002943 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002944 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002945 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002946 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302947#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302948 .freeze = virtnet_freeze,
2949 .restore = virtnet_restore,
2950#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002951};
2952
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002953static __init int virtio_net_driver_init(void)
2954{
2955 int ret;
2956
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002957 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002958 virtnet_cpu_online,
2959 virtnet_cpu_down_prep);
2960 if (ret < 0)
2961 goto out;
2962 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002963 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002964 NULL, virtnet_cpu_dead);
2965 if (ret)
2966 goto err_dead;
2967
2968 ret = register_virtio_driver(&virtio_net_driver);
2969 if (ret)
2970 goto err_virtio;
2971 return 0;
2972err_virtio:
2973 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2974err_dead:
2975 cpuhp_remove_multi_state(virtionet_online);
2976out:
2977 return ret;
2978}
2979module_init(virtio_net_driver_init);
2980
2981static __exit void virtio_net_driver_exit(void)
2982{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02002983 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002984 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2985 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002986}
2987module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002988
2989MODULE_DEVICE_TABLE(virtio, id_table);
2990MODULE_DESCRIPTION("Virtio network driver");
2991MODULE_LICENSE("GPL");