blob: abbd3bc83b628ab868be96ea9c7fa1f86abcb695 [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>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070033#include <linux/netdevice.h>
34#include <linux/pci.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020035#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010036#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070037#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100038
Amerigo Wangd34710e2013-05-09 19:50:51 +000039static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020040module_param(napi_weight, int, 0444);
41
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050043module_param(csum, bool, 0444);
44module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040045module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050046
Rusty Russell296f96f2007-10-22 11:03:37 +100047/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080048#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080049#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100050
Jason Wangf6b10202017-02-21 16:46:28 +080051#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
52
John Fastabend2de2f7f2017-02-02 19:16:29 -080053/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
54#define VIRTIO_XDP_HEADROOM 256
55
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020056/* Separating two types of XDP xmit */
57#define VIRTIO_XDP_TX BIT(0)
58#define VIRTIO_XDP_REDIR BIT(1)
59
Johannes Berg5377d7582015-08-19 09:48:40 +020060/* RX packet size EWMA. The average packet size is used to determine the packet
61 * buffer size when refilling RX rings. As the entire RX ring may be refilled
62 * at once, the weight is chosen so that the EWMA will be insensitive to short-
63 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080064 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010065DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080066
Rick Jones66846042011-11-14 14:17:08 +000067#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000068
Colin Ian King7acd4322017-08-12 22:45:53 +010069static const unsigned long guest_offloads[] = {
70 VIRTIO_NET_F_GUEST_TSO4,
71 VIRTIO_NET_F_GUEST_TSO6,
72 VIRTIO_NET_F_GUEST_ECN,
73 VIRTIO_NET_F_GUEST_UFO
74};
Jason Wang3f935222017-07-19 16:54:49 +080075
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090076struct virtnet_stat_desc {
77 char desc[ETH_GSTRING_LEN];
78 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000079};
80
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090081struct virtnet_sq_stats {
82 struct u64_stats_sync syncp;
83 u64 packets;
84 u64 bytes;
85};
86
87struct virtnet_rq_stats {
88 struct u64_stats_sync syncp;
89 u64 packets;
90 u64 bytes;
91};
92
93#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
94#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
95
96static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
97 { "packets", VIRTNET_SQ_STAT(packets) },
98 { "bytes", VIRTNET_SQ_STAT(bytes) },
99};
100
101static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
102 { "packets", VIRTNET_RQ_STAT(packets) },
103 { "bytes", VIRTNET_RQ_STAT(bytes) },
104};
105
106#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
107#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
108
Jason Wange9d74172012-12-07 07:04:55 +0000109/* Internal representation of a send virtqueue */
110struct send_queue {
111 /* Virtqueue associated with this send _queue */
112 struct virtqueue *vq;
113
114 /* TX: fragments + linear part + virtio header */
115 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000116
117 /* Name of the send queue: output.$index */
118 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400119
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900120 struct virtnet_sq_stats stats;
121
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400122 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000123};
124
125/* Internal representation of a receive virtqueue */
126struct receive_queue {
127 /* Virtqueue associated with this receive_queue */
128 struct virtqueue *vq;
129
Rusty Russell296f96f2007-10-22 11:03:37 +1000130 struct napi_struct napi;
131
John Fastabendf600b692016-12-15 12:13:24 -0800132 struct bpf_prog __rcu *xdp_prog;
133
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900134 struct virtnet_rq_stats stats;
135
Jason Wange9d74172012-12-07 07:04:55 +0000136 /* Chain pages by the private ptr. */
137 struct page *pages;
138
Michael Daltonab7db912014-01-16 22:23:27 -0800139 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200140 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800141
Michael Daltonfb518792014-01-16 22:23:26 -0800142 /* Page frag for packet buffer allocation. */
143 struct page_frag alloc_frag;
144
Jason Wange9d74172012-12-07 07:04:55 +0000145 /* RX: fragments + linear part + virtio header */
146 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000147
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200148 /* Min single buffer size for mergeable buffers case. */
149 unsigned int min_buf_len;
150
Jason Wang986a4f42012-12-07 07:04:56 +0000151 /* Name of this receive queue: input.$index */
152 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100153
154 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000155};
156
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300157/* Control VQ buffers: protected by the rtnl lock */
158struct control_buf {
159 struct virtio_net_ctrl_hdr hdr;
160 virtio_net_ctrl_ack status;
161 struct virtio_net_ctrl_mq mq;
162 u8 promisc;
163 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300164 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300165 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300166};
167
Jason Wange9d74172012-12-07 07:04:55 +0000168struct virtnet_info {
169 struct virtio_device *vdev;
170 struct virtqueue *cvq;
171 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000172 struct send_queue *sq;
173 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000174 unsigned int status;
175
Jason Wang986a4f42012-12-07 07:04:56 +0000176 /* Max # of queue pairs supported by the device */
177 u16 max_queue_pairs;
178
179 /* # of queue pairs currently used by the driver */
180 u16 curr_queue_pairs;
181
John Fastabend672aafd2016-12-15 12:13:49 -0800182 /* # of XDP queue pairs currently used by the driver */
183 u16 xdp_queue_pairs;
184
Herbert Xu97402b92008-04-18 11:24:27 +0800185 /* I like... big packets and I cannot lie! */
186 bool big_packets;
187
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800188 /* Host will merge rx buffers for big packets (shake it! shake it!) */
189 bool mergeable_rx_bufs;
190
Jason Wang986a4f42012-12-07 07:04:56 +0000191 /* Has control virtqueue */
192 bool has_cvq;
193
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930194 /* Host can handle any s/g split between our header and packet data */
195 bool any_header_sg;
196
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300197 /* Packet virtio header size */
198 u8 hdr_len;
199
Rusty Russell3161e452009-08-26 12:22:32 -0700200 /* Work struct for refilling if we run low on memory. */
201 struct delayed_work refill;
202
Jason Wang586d17c2012-04-11 20:43:52 +0000203 /* Work struct for config space updates */
204 struct work_struct config_work;
205
Jason Wang986a4f42012-12-07 07:04:56 +0000206 /* Does the affinity hint is set for virtqueues? */
207 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000208
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200209 /* CPU hotplug instances for online & dead */
210 struct hlist_node node;
211 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200212
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300213 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100214
215 /* Ethtool settings */
216 u8 duplex;
217 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800218
219 unsigned long guest_offloads;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700220
221 /* failover when STANDBY feature enabled */
222 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000223};
224
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000225struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300226 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000227 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300228 * hdr is in a separate sg buffer, and data sg buffer shares same page
229 * with this header sg. This padding makes next sg 16 byte aligned
230 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300232 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000233};
234
Jason Wang986a4f42012-12-07 07:04:56 +0000235/* Converting between virtqueue no. and kernel tx/rx queue no.
236 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
237 */
238static int vq2txq(struct virtqueue *vq)
239{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000240 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000241}
242
243static int txq2vq(int txq)
244{
245 return txq * 2 + 1;
246}
247
248static int vq2rxq(struct virtqueue *vq)
249{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000250 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000251}
252
253static int rxq2vq(int rxq)
254{
255 return rxq * 2;
256}
257
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300258static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000259{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300260 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000261}
262
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000263/*
264 * private is used to chain pages for big packets, put the whole
265 * most recent used list in the beginning for reuse
266 */
Jason Wange9d74172012-12-07 07:04:55 +0000267static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500268{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000269 struct page *end;
270
Jason Wange9d74172012-12-07 07:04:55 +0000271 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000272 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000273 end->private = (unsigned long)rq->pages;
274 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500275}
276
Jason Wange9d74172012-12-07 07:04:55 +0000277static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500278{
Jason Wange9d74172012-12-07 07:04:55 +0000279 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500280
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000281 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000282 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000283 /* clear private here, it is used to chain pages */
284 p->private = 0;
285 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500286 p = alloc_page(gfp_mask);
287 return p;
288}
289
Willem de Bruijne4e84522017-04-24 13:49:26 -0400290static void virtqueue_napi_schedule(struct napi_struct *napi,
291 struct virtqueue *vq)
292{
293 if (napi_schedule_prep(napi)) {
294 virtqueue_disable_cb(vq);
295 __napi_schedule(napi);
296 }
297}
298
299static void virtqueue_napi_complete(struct napi_struct *napi,
300 struct virtqueue *vq, int processed)
301{
302 int opaque;
303
304 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900305 if (napi_complete_done(napi, processed)) {
306 if (unlikely(virtqueue_poll(vq, opaque)))
307 virtqueue_napi_schedule(napi, vq);
308 } else {
309 virtqueue_disable_cb(vq);
310 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400311}
312
Jason Wange9d74172012-12-07 07:04:55 +0000313static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000314{
Jason Wange9d74172012-12-07 07:04:55 +0000315 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400316 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000317
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500318 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000319 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000320
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400321 if (napi->weight)
322 virtqueue_napi_schedule(napi, vq);
323 else
324 /* We were probably waiting for more output buffers. */
325 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000326}
327
Jason Wang28b39bc2017-07-19 16:54:46 +0800328#define MRG_CTX_HEADER_SHIFT 22
329static void *mergeable_len_to_ctx(unsigned int truesize,
330 unsigned int headroom)
331{
332 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
333}
334
335static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
336{
337 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
338}
339
340static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
341{
342 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
343}
344
Mike Waychison34646452012-01-04 12:52:32 +0000345/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300346static struct sk_buff *page_to_skb(struct virtnet_info *vi,
347 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700348 struct page *page, unsigned int offset,
349 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000350{
351 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300352 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700353 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000354 char *p;
355
Michael Dalton2613af02013-10-28 15:44:18 -0700356 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000357
358 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100359 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000360 if (unlikely(!skb))
361 return NULL;
362
363 hdr = skb_vnet_hdr(skb);
364
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300365 hdr_len = vi->hdr_len;
366 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700367 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300368 else
Michael Dalton2613af02013-10-28 15:44:18 -0700369 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000370
371 memcpy(hdr, p, hdr_len);
372
373 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700374 offset += hdr_padded_len;
375 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000376
377 copy = len;
378 if (copy > skb_tailroom(skb))
379 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200380 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000381
382 len -= copy;
383 offset += copy;
384
Michael Dalton2613af02013-10-28 15:44:18 -0700385 if (vi->mergeable_rx_bufs) {
386 if (len)
387 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
388 else
389 put_page(page);
390 return skb;
391 }
392
Sasha Levine878d782011-09-28 04:40:54 +0000393 /*
394 * Verify that we can indeed put this data into a skb.
395 * This is here to handle cases when the device erroneously
396 * tries to receive more than is possible. This is usually
397 * the case of a broken device.
398 */
399 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000400 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000401 dev_kfree_skb(skb);
402 return NULL;
403 }
Michael Dalton2613af02013-10-28 15:44:18 -0700404 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000405 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700406 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
407 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
408 frag_size, truesize);
409 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000410 page = (struct page *)page->private;
411 offset = 0;
412 }
413
414 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000415 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000416
417 return skb;
418}
419
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200420static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
421 struct send_queue *sq,
422 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800423{
John Fastabend56434a02016-12-15 12:14:13 -0800424 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800425 int err;
426
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200427 /* virtqueue want to use data area in-front of packet */
428 if (unlikely(xdpf->metasize > 0))
429 return -EOPNOTSUPP;
430
431 if (unlikely(xdpf->headroom < vi->hdr_len))
432 return -EOVERFLOW;
433
434 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
435 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800436 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200437 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800438 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200439 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800440
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200441 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800442
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200443 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100444 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200445 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800446
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200447 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800448}
449
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200450static int __virtnet_xdp_tx_xmit(struct virtnet_info *vi,
451 struct xdp_frame *xdpf)
452{
453 struct xdp_frame *xdpf_sent;
454 struct send_queue *sq;
455 unsigned int len;
456 unsigned int qp;
457
458 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
459 sq = &vi->sq[qp];
460
461 /* Free up any pending old buffers before queueing new ones. */
462 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
463 xdp_return_frame(xdpf_sent);
464
465 return __virtnet_xdp_xmit_one(vi, sq, xdpf);
466}
467
468static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200469 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800470{
471 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100472 struct receive_queue *rq = vi->rq;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200473 struct xdp_frame *xdpf_sent;
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100474 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200475 struct send_queue *sq;
476 unsigned int len;
477 unsigned int qp;
478 int drops = 0;
479 int err;
480 int i;
481
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200482 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200483 return -EINVAL;
484
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200485 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
486 sq = &vi->sq[qp];
Jason Wang186b3c92017-09-19 17:42:43 +0800487
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100488 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
489 * indicate XDP resources have been successfully allocated.
490 */
491 xdp_prog = rcu_dereference(rq->xdp_prog);
492 if (!xdp_prog)
493 return -ENXIO;
494
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200495 /* Free up any pending old buffers before queueing new ones. */
496 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
497 xdp_return_frame(xdpf_sent);
498
499 for (i = 0; i < n; i++) {
500 struct xdp_frame *xdpf = frames[i];
501
502 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
503 if (err) {
504 xdp_return_frame_rx_napi(xdpf);
505 drops++;
506 }
507 }
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200508
509 if (flags & XDP_XMIT_FLUSH)
510 virtqueue_kick(sq->vq);
511
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200512 return n - drops;
Jason Wang186b3c92017-09-19 17:42:43 +0800513}
514
Jason Wangf6b10202017-02-21 16:46:28 +0800515static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
516{
517 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
518}
519
Jason Wang4941d472017-07-19 16:54:48 +0800520/* We copy the packet for XDP in the following cases:
521 *
522 * 1) Packet is scattered across multiple rx buffers.
523 * 2) Headroom space is insufficient.
524 *
525 * This is inefficient but it's a temporary condition that
526 * we hit right after XDP is enabled and until queue is refilled
527 * with large buffers with sufficient headroom - so it should affect
528 * at most queue size packets.
529 * Afterwards, the conditions to enable
530 * XDP should preclude the underlying device from sending packets
531 * across multiple buffers (num_buf > 1), and we make sure buffers
532 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800533 */
534static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800535 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800536 struct page *p,
537 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800538 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800539 unsigned int *len)
540{
541 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800542
543 if (!page)
544 return NULL;
545
546 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
547 page_off += *len;
548
Jason Wang56a86f82016-12-23 22:37:26 +0800549 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800550 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800551 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800552 void *buf;
553 int off;
554
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200555 buf = virtqueue_get_buf(rq->vq, &buflen);
556 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800557 goto err_buf;
558
John Fastabend72979a62016-12-15 12:14:36 -0800559 p = virt_to_head_page(buf);
560 off = buf - page_address(p);
561
Jason Wang56a86f82016-12-23 22:37:26 +0800562 /* guard against a misconfigured or uncooperative backend that
563 * is sending packet larger than the MTU.
564 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800565 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800566 put_page(p);
567 goto err_buf;
568 }
569
John Fastabend72979a62016-12-15 12:14:36 -0800570 memcpy(page_address(page) + page_off,
571 page_address(p) + off, buflen);
572 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800573 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800574 }
575
John Fastabend2de2f7f2017-02-02 19:16:29 -0800576 /* Headroom does not contribute to packet length */
577 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800578 return page;
579err_buf:
580 __free_pages(page, 0);
581 return NULL;
582}
583
Jason Wang4941d472017-07-19 16:54:48 +0800584static struct sk_buff *receive_small(struct net_device *dev,
585 struct virtnet_info *vi,
586 struct receive_queue *rq,
587 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800588 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900589 unsigned int *xdp_xmit,
590 unsigned int *rbytes)
Jason Wang4941d472017-07-19 16:54:48 +0800591{
592 struct sk_buff *skb;
593 struct bpf_prog *xdp_prog;
594 unsigned int xdp_headroom = (unsigned long)ctx;
595 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
596 unsigned int headroom = vi->hdr_len + header_offset;
597 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
598 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
599 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100600 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800601 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100602 int err;
603
Jason Wang4941d472017-07-19 16:54:48 +0800604 len -= vi->hdr_len;
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900605 *rbytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800606
607 rcu_read_lock();
608 xdp_prog = rcu_dereference(rq->xdp_prog);
609 if (xdp_prog) {
610 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200611 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800612 struct xdp_buff xdp;
613 void *orig_data;
614 u32 act;
615
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100616 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800617 goto err_xdp;
618
619 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
620 int offset = buf - page_address(page) + header_offset;
621 unsigned int tlen = len + vi->hdr_len;
622 u16 num_buf = 1;
623
624 xdp_headroom = virtnet_get_headroom(vi);
625 header_offset = VIRTNET_RX_PAD + xdp_headroom;
626 headroom = vi->hdr_len + header_offset;
627 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
628 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
629 xdp_page = xdp_linearize_page(rq, &num_buf, page,
630 offset, header_offset,
631 &tlen);
632 if (!xdp_page)
633 goto err_xdp;
634
635 buf = page_address(xdp_page);
636 put_page(page);
637 page = xdp_page;
638 }
639
640 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
641 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200642 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800643 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100644 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800645 orig_data = xdp.data;
646 act = bpf_prog_run_xdp(xdp_prog, &xdp);
647
648 switch (act) {
649 case XDP_PASS:
650 /* Recalculate length in case bpf program changed it */
651 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700652 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800653 break;
654 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200655 xdpf = convert_to_xdp_frame(&xdp);
656 if (unlikely(!xdpf))
657 goto err_xdp;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200658 err = __virtnet_xdp_tx_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200659 if (unlikely(err)) {
Jason Wang4941d472017-07-19 16:54:48 +0800660 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100661 goto err_xdp;
662 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200663 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800664 rcu_read_unlock();
665 goto xdp_xmit;
666 case XDP_REDIRECT:
667 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100668 if (err)
669 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200670 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800671 rcu_read_unlock();
672 goto xdp_xmit;
673 default:
674 bpf_warn_invalid_xdp_action(act);
675 case XDP_ABORTED:
676 trace_xdp_exception(vi->dev, xdp_prog, act);
677 case XDP_DROP:
678 goto err_xdp;
679 }
680 }
681 rcu_read_unlock();
682
683 skb = build_skb(buf, buflen);
684 if (!skb) {
685 put_page(page);
686 goto err;
687 }
688 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700689 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800690 if (!delta) {
691 buf += header_offset;
692 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
693 } /* keep zeroed vnet hdr since packet was changed by bpf */
694
695err:
696 return skb;
697
698err_xdp:
699 rcu_read_unlock();
700 dev->stats.rx_dropped++;
701 put_page(page);
702xdp_xmit:
703 return NULL;
704}
705
706static struct sk_buff *receive_big(struct net_device *dev,
707 struct virtnet_info *vi,
708 struct receive_queue *rq,
709 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900710 unsigned int len,
711 unsigned int *rbytes)
Jason Wang4941d472017-07-19 16:54:48 +0800712{
713 struct page *page = buf;
714 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
715
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900716 *rbytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800717 if (unlikely(!skb))
718 goto err;
719
720 return skb;
721
722err:
723 dev->stats.rx_dropped++;
724 give_pages(rq, page);
725 return NULL;
726}
727
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200728static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200729 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200730 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200731 void *buf,
732 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800733 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900734 unsigned int *xdp_xmit,
735 unsigned int *rbytes)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000736{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300737 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
738 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200739 struct page *page = virt_to_head_page(buf);
740 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800741 struct sk_buff *head_skb, *curr_skb;
742 struct bpf_prog *xdp_prog;
743 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800744 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800745 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800746
John Fastabend56434a02016-12-15 12:14:13 -0800747 head_skb = NULL;
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900748 *rbytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800749
John Fastabendf600b692016-12-15 12:13:24 -0800750 rcu_read_lock();
751 xdp_prog = rcu_dereference(rq->xdp_prog);
752 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200753 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800754 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800755 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800756 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800757 u32 act;
758
Jason Wang3d62b2a2018-05-22 11:44:31 +0800759 /* Transient failure which in theory could occur if
760 * in-flight packets from before XDP was enabled reach
761 * the receive path after XDP is loaded.
762 */
763 if (unlikely(hdr->hdr.gso_type))
764 goto err_xdp;
765
Jason Wang3cc81a92018-03-02 17:29:14 +0800766 /* This happens when rx buffer size is underestimated
767 * or headroom is not enough because of the buffer
768 * was refilled before XDP is set. This should only
769 * happen for the first several packets, so we don't
770 * care much about its performance.
771 */
Jason Wang4941d472017-07-19 16:54:48 +0800772 if (unlikely(num_buf > 1 ||
773 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800774 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800775 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800776 page, offset,
777 VIRTIO_XDP_HEADROOM,
778 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800779 if (!xdp_page)
780 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800781 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800782 } else {
783 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800784 }
785
John Fastabend2de2f7f2017-02-02 19:16:29 -0800786 /* Allow consuming headroom but reserve enough space to push
787 * the descriptor on if we get an XDP_TX return code.
788 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800789 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800790 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800791 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200792 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800793 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100794 xdp.rxq = &rq->xdp_rxq;
795
John Fastabend0354e4d2017-02-02 19:15:01 -0800796 act = bpf_prog_run_xdp(xdp_prog, &xdp);
797
John Fastabend56434a02016-12-15 12:14:13 -0800798 switch (act) {
799 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800800 /* recalculate offset to account for any header
801 * adjustments. Note other cases do not build an
802 * skb and avoid using offset
803 */
804 offset = xdp.data -
805 page_address(xdp_page) - vi->hdr_len;
806
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700807 /* recalculate len if xdp.data or xdp.data_end were
808 * adjusted
809 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700810 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800811 /* We can only create skb based on xdp_page. */
812 if (unlikely(xdp_page != page)) {
813 rcu_read_unlock();
814 put_page(page);
815 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800816 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800817 return head_skb;
818 }
John Fastabend56434a02016-12-15 12:14:13 -0800819 break;
820 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200821 xdpf = convert_to_xdp_frame(&xdp);
822 if (unlikely(!xdpf))
823 goto err_xdp;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200824 err = __virtnet_xdp_tx_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200825 if (unlikely(err)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800826 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100827 if (unlikely(xdp_page != page))
828 put_page(xdp_page);
829 goto err_xdp;
830 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200831 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800832 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800833 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800834 rcu_read_unlock();
835 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800836 case XDP_REDIRECT:
837 err = xdp_do_redirect(dev, &xdp, xdp_prog);
838 if (err) {
839 if (unlikely(xdp_page != page))
840 put_page(xdp_page);
841 goto err_xdp;
842 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200843 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800844 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800845 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800846 rcu_read_unlock();
847 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800848 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800849 bpf_warn_invalid_xdp_action(act);
850 case XDP_ABORTED:
851 trace_xdp_exception(vi->dev, xdp_prog, act);
852 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800853 if (unlikely(xdp_page != page))
854 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800855 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800856 }
John Fastabendf600b692016-12-15 12:13:24 -0800857 }
858 rcu_read_unlock();
859
Jason Wang28b39bc2017-07-19 16:54:46 +0800860 truesize = mergeable_ctx_to_truesize(ctx);
861 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300862 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200863 dev->name, len, (unsigned long)ctx);
864 dev->stats.rx_length_errors++;
865 goto err_skb;
866 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800867
John Fastabendf600b692016-12-15 12:13:24 -0800868 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
869 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000870
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200871 if (unlikely(!curr_skb))
872 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000873 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200874 int num_skb_frags;
875
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200876 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800877 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200878 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200879 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300880 virtio16_to_cpu(vi->vdev,
881 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200882 dev->stats.rx_length_errors++;
883 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000884 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200885
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900886 *rbytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200887 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800888
889 truesize = mergeable_ctx_to_truesize(ctx);
890 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300891 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200892 dev->name, len, (unsigned long)ctx);
893 dev->stats.rx_length_errors++;
894 goto err_skb;
895 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200896
897 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700898 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
899 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200900
901 if (unlikely(!nskb))
902 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700903 if (curr_skb == head_skb)
904 skb_shinfo(curr_skb)->frag_list = nskb;
905 else
906 curr_skb->next = nskb;
907 curr_skb = nskb;
908 head_skb->truesize += nskb->truesize;
909 num_skb_frags = 0;
910 }
911 if (curr_skb != head_skb) {
912 head_skb->data_len += len;
913 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800914 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700915 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200916 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800917 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
918 put_page(page);
919 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800920 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800921 } else {
922 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800923 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800924 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200925 }
926
Johannes Berg5377d7582015-08-19 09:48:40 +0200927 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200928 return head_skb;
929
John Fastabendf600b692016-12-15 12:13:24 -0800930err_xdp:
931 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200932err_skb:
933 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800934 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200935 buf = virtqueue_get_buf(rq->vq, &len);
936 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200937 pr_debug("%s: rx error: %d buffers missing\n",
938 dev->name, num_buf);
939 dev->stats.rx_length_errors++;
940 break;
941 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900942 *rbytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200943 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200944 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000945 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200946err_buf:
947 dev->stats.rx_dropped++;
948 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800949xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200950 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000951}
952
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900953static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
954 void *buf, unsigned int len, void **ctx,
955 unsigned int *xdp_xmit, unsigned int *rbytes)
Rusty Russell296f96f2007-10-22 11:03:37 +1000956{
Jason Wange9d74172012-12-07 07:04:55 +0000957 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000958 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300959 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000960
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300961 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000962 pr_debug("%s: short packet %i\n", dev->name, len);
963 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800964 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200965 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800966 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800967 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800968 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800969 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800970 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900971 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000972 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000973
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200974 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900975 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
976 rbytes);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200977 else if (vi->big_packets)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900978 skb = receive_big(dev, vi, rq, buf, len, rbytes);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200979 else
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900980 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, rbytes);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200981
982 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900983 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800984
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000985 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000986
Mike Rapoporte858fae2016-06-08 16:09:21 +0300987 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000988 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000989
Mike Rapoporte858fae2016-06-08 16:09:21 +0300990 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
991 virtio_is_little_endian(vi->vdev))) {
992 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
993 dev->name, hdr->hdr.gso_type,
994 hdr->hdr.gso_size);
995 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000996 }
997
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300998 skb->protocol = eth_type_trans(skb, dev);
999 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1000 ntohs(skb->protocol), skb->len, skb->pkt_type);
1001
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001002 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001003 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001004
1005frame_err:
1006 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001007 dev_kfree_skb(skb);
1008}
1009
Jason Wang192f68c2017-07-19 16:54:47 +08001010/* Unlike mergeable buffers, all buffers are allocated to the
1011 * same size, except for the headroom. For this reason we do
1012 * not need to use mergeable_len_to_ctx here - it is enough
1013 * to store the headroom as the context ignoring the truesize.
1014 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001015static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1016 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001017{
Jason Wangf6b10202017-02-21 16:46:28 +08001018 struct page_frag *alloc_frag = &rq->alloc_frag;
1019 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001020 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001021 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001022 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001023 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001024
Jason Wangf6b10202017-02-21 16:46:28 +08001025 len = SKB_DATA_ALIGN(len) +
1026 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1027 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001028 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001029
Jason Wangf6b10202017-02-21 16:46:28 +08001030 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1031 get_page(alloc_frag->page);
1032 alloc_frag->offset += len;
1033 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1034 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001035 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001036 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001037 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001038 return err;
1039}
1040
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001041static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1042 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001043{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001044 struct page *first, *list = NULL;
1045 char *p;
1046 int i, err, offset;
1047
Rusty Russella5835442014-09-11 10:17:36 +09301048 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1049
Jason Wange9d74172012-12-07 07:04:55 +00001050 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001051 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001052 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001053 if (!first) {
1054 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001055 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001056 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001057 }
Jason Wange9d74172012-12-07 07:04:55 +00001058 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001059
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001060 /* chain new page in list head to match sg */
1061 first->private = (unsigned long)list;
1062 list = first;
1063 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001064
Jason Wange9d74172012-12-07 07:04:55 +00001065 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001066 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001067 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001068 return -ENOMEM;
1069 }
1070 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001071
Jason Wange9d74172012-12-07 07:04:55 +00001072 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001073 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1074 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001075
Jason Wange9d74172012-12-07 07:04:55 +00001076 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001077 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001078 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001079
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001080 /* chain first in list head */
1081 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301082 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1083 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001084 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001085 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001086
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001087 return err;
1088}
Herbert Xu97402b92008-04-18 11:24:27 +08001089
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001090static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001091 struct ewma_pkt_len *avg_pkt_len,
1092 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001093{
Michael Daltonab7db912014-01-16 22:23:27 -08001094 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001095 unsigned int len;
1096
Jason Wang3cc81a92018-03-02 17:29:14 +08001097 if (room)
1098 return PAGE_SIZE - room;
1099
1100 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001101 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001102
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001103 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001104}
1105
John Fastabend2de2f7f2017-02-02 19:16:29 -08001106static int add_recvbuf_mergeable(struct virtnet_info *vi,
1107 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001108{
Michael Daltonfb518792014-01-16 22:23:26 -08001109 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001110 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001111 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1112 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001113 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001114 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001115 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001116 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001117
Jason Wang3cc81a92018-03-02 17:29:14 +08001118 /* Extra tailroom is needed to satisfy XDP's assumption. This
1119 * means rx frags coalescing won't work, but consider we've
1120 * disabled GSO for XDP, it won't be a big issue.
1121 */
1122 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1123 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001124 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001125
Michael Daltonfb518792014-01-16 22:23:26 -08001126 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001127 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001128 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001129 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001130 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001131 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001132 /* To avoid internal fragmentation, if there is very likely not
1133 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001134 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001135 */
Michael Daltonfb518792014-01-16 22:23:26 -08001136 len += hole;
1137 alloc_frag->offset += hole;
1138 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001139
Michael Daltonfb518792014-01-16 22:23:26 -08001140 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001141 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001142 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001143 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001144 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001145
1146 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001147}
1148
Rusty Russellb2baed62011-12-29 00:42:38 +00001149/*
1150 * Returns false if we couldn't fill entirely (OOM).
1151 *
1152 * Normally run in the receive path, but can also be run from ndo_open
1153 * before we're receiving packets, or from refill_work which is
1154 * careful to disable receiving (using napi_disable).
1155 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001156static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1157 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001158{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001159 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001160 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001161
Amit Shah0aea51c2009-08-26 14:58:28 +05301162 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001163 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001164 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001165 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001166 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001167 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001168 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001169
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001170 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301171 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001172 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001173 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001174 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001175 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001176}
1177
Rusty Russell18445c42008-02-04 23:49:57 -05001178static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001179{
1180 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001181 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001182
Willem de Bruijne4e84522017-04-24 13:49:26 -04001183 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001184}
1185
Willem de Bruijne4e84522017-04-24 13:49:26 -04001186static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001187{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001188 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001189
1190 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001191 * won't get another interrupt, so process any outstanding packets now.
1192 * Call local_bh_enable after to trigger softIRQ processing.
1193 */
1194 local_bh_disable();
1195 virtqueue_napi_schedule(napi, vq);
1196 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001197}
1198
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001199static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1200 struct virtqueue *vq,
1201 struct napi_struct *napi)
1202{
1203 if (!napi->weight)
1204 return;
1205
1206 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1207 * enable the feature if this is likely affine with the transmit path.
1208 */
1209 if (!vi->affinity_hint_set) {
1210 napi->weight = 0;
1211 return;
1212 }
1213
1214 return virtnet_napi_enable(vq, napi);
1215}
1216
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001217static void virtnet_napi_tx_disable(struct napi_struct *napi)
1218{
1219 if (napi->weight)
1220 napi_disable(napi);
1221}
1222
Rusty Russell3161e452009-08-26 12:22:32 -07001223static void refill_work(struct work_struct *work)
1224{
Jason Wange9d74172012-12-07 07:04:55 +00001225 struct virtnet_info *vi =
1226 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001227 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001228 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001229
Sasha Levin55257d72013-04-29 12:00:08 +09301230 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001231 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001232
Jason Wang986a4f42012-12-07 07:04:56 +00001233 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001234 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001235 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001236
1237 /* In theory, this can happen: if we don't get any buffers in
1238 * we will *never* try to fill again.
1239 */
1240 if (still_empty)
1241 schedule_delayed_work(&vi->refill, HZ/2);
1242 }
Rusty Russell3161e452009-08-26 12:22:32 -07001243}
1244
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001245static int virtnet_receive(struct receive_queue *rq, int budget,
1246 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001247{
Jason Wange9d74172012-12-07 07:04:55 +00001248 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001249 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001250 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +10001251
Jason Wang192f68c2017-07-19 16:54:47 +08001252 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001253 void *ctx;
1254
1255 while (received < budget &&
1256 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001257 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &bytes);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001258 received++;
1259 }
1260 } else {
1261 while (received < budget &&
1262 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001263 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &bytes);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001264 received++;
1265 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001266 }
1267
Jason Wangbe121f42014-01-16 14:45:24 +08001268 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001269 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001270 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001271 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001272
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001273 u64_stats_update_begin(&rq->stats.syncp);
1274 rq->stats.bytes += bytes;
1275 rq->stats.packets += received;
1276 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001277
Jason Wang2ffa7592014-07-23 16:33:54 +08001278 return received;
1279}
1280
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001281static void free_old_xmit_skbs(struct send_queue *sq)
1282{
1283 struct sk_buff *skb;
1284 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001285 unsigned int packets = 0;
1286 unsigned int bytes = 0;
1287
1288 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1289 pr_debug("Sent skb %p\n", skb);
1290
1291 bytes += skb->len;
1292 packets++;
1293
Eric Dumazetdadc0732017-08-24 09:02:49 -07001294 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001295 }
1296
1297 /* Avoid overhead when no packets have been processed
1298 * happens when called speculatively from start_xmit.
1299 */
1300 if (!packets)
1301 return;
1302
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001303 u64_stats_update_begin(&sq->stats.syncp);
1304 sq->stats.bytes += bytes;
1305 sq->stats.packets += packets;
1306 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001307}
1308
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001309static void virtnet_poll_cleantx(struct receive_queue *rq)
1310{
1311 struct virtnet_info *vi = rq->vq->vdev->priv;
1312 unsigned int index = vq2rxq(rq->vq);
1313 struct send_queue *sq = &vi->sq[index];
1314 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1315
1316 if (!sq->napi.weight)
1317 return;
1318
1319 if (__netif_tx_trylock(txq)) {
1320 free_old_xmit_skbs(sq);
1321 __netif_tx_unlock(txq);
1322 }
1323
1324 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1325 netif_tx_wake_queue(txq);
1326}
1327
Jason Wang2ffa7592014-07-23 16:33:54 +08001328static int virtnet_poll(struct napi_struct *napi, int budget)
1329{
1330 struct receive_queue *rq =
1331 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001332 struct virtnet_info *vi = rq->vq->vdev->priv;
1333 struct send_queue *sq;
1334 unsigned int received, qp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001335 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001336
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001337 virtnet_poll_cleantx(rq);
1338
Jason Wang186b3c92017-09-19 17:42:43 +08001339 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001340
Rusty Russell8329d982007-11-19 11:20:43 -05001341 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001342 if (received < budget)
1343 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001344
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001345 if (xdp_xmit & VIRTIO_XDP_REDIR)
1346 xdp_do_flush_map();
1347
1348 if (xdp_xmit & VIRTIO_XDP_TX) {
Jason Wang9267c432018-04-13 14:58:25 +08001349 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs +
1350 smp_processor_id();
1351 sq = &vi->sq[qp];
1352 virtqueue_kick(sq->vq);
Jason Wang9267c432018-04-13 14:58:25 +08001353 }
Jason Wang186b3c92017-09-19 17:42:43 +08001354
Rusty Russell296f96f2007-10-22 11:03:37 +10001355 return received;
1356}
1357
Jason Wang986a4f42012-12-07 07:04:56 +00001358static int virtnet_open(struct net_device *dev)
1359{
1360 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001361 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001362
Jason Wange4166622013-05-21 20:03:58 +00001363 for (i = 0; i < vi->max_queue_pairs; i++) {
1364 if (i < vi->curr_queue_pairs)
1365 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001366 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001367 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001368
1369 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1370 if (err < 0)
1371 return err;
1372
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001373 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1374 MEM_TYPE_PAGE_SHARED, NULL);
1375 if (err < 0) {
1376 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1377 return err;
1378 }
1379
Willem de Bruijne4e84522017-04-24 13:49:26 -04001380 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001381 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001382 }
1383
1384 return 0;
1385}
1386
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001387static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1388{
1389 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1390 struct virtnet_info *vi = sq->vq->vdev->priv;
1391 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1392
1393 __netif_tx_lock(txq, raw_smp_processor_id());
1394 free_old_xmit_skbs(sq);
1395 __netif_tx_unlock(txq);
1396
1397 virtqueue_napi_complete(napi, sq->vq, 0);
1398
1399 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1400 netif_tx_wake_queue(txq);
1401
1402 return 0;
1403}
1404
Jason Wange9d74172012-12-07 07:04:55 +00001405static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001406{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001407 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001408 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001409 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001410 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001411 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301412 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001413
Johannes Berge1749612008-10-27 15:59:26 -07001414 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301415
1416 can_push = vi->any_header_sg &&
1417 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1418 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1419 /* Even if we can, don't push here yet as this would skew
1420 * csum_start offset below. */
1421 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001422 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301423 else
1424 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001425
Mike Rapoporte858fae2016-06-08 16:09:21 +03001426 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001427 virtio_is_little_endian(vi->vdev), false,
1428 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001429 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001430
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001431 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001432 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001433
Jason Wang547c8902015-08-27 14:53:06 +08001434 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301435 if (can_push) {
1436 __skb_push(skb, hdr_len);
1437 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001438 if (unlikely(num_sg < 0))
1439 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301440 /* Pull header back to avoid skew in tx bytes calculations. */
1441 __skb_pull(skb, hdr_len);
1442 } else {
1443 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001444 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1445 if (unlikely(num_sg < 0))
1446 return num_sg;
1447 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301448 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301449 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001450}
1451
Stephen Hemminger424efe92009-08-31 19:50:51 +00001452static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001453{
1454 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001455 int qnum = skb_get_queue_mapping(skb);
1456 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301457 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001458 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1459 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001460 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001461
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001462 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001463 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001464
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001465 if (use_napi && kick)
1466 virtqueue_enable_cb_delayed(sq->vq);
1467
Jacob Keller074c3582014-06-25 02:37:13 +00001468 /* timestamp packet in software */
1469 skb_tx_timestamp(skb);
1470
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001471 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001472 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001473
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301474 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001475 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301476 dev->stats.tx_fifo_errors++;
1477 if (net_ratelimit())
1478 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001479 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001480 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001481 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001482 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001483 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001484
Rusty Russell48925e32009-09-24 09:59:20 -06001485 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001486 if (!use_napi) {
1487 skb_orphan(skb);
1488 nf_reset(skb);
1489 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001490
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001491 /* If running out of space, stop queue to avoid getting packets that we
1492 * are then unable to transmit.
1493 * An alternative would be to force queuing layer to requeue the skb by
1494 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1495 * returned in a normal path of operation: it means that driver is not
1496 * maintaining the TX queue stop/start state properly, and causes
1497 * the stack to do a non-trivial amount of useless work.
1498 * Since most packets only take 1 or 2 ring slots, stopping the queue
1499 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001500 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001501 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001502 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001503 if (!use_napi &&
1504 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001505 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001506 free_old_xmit_skbs(sq);
1507 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001508 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001509 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001510 }
1511 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001512 }
Rusty Russell48925e32009-09-24 09:59:20 -06001513
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001514 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001515 virtqueue_kick(sq->vq);
1516
Rusty Russell48925e32009-09-24 09:59:20 -06001517 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001518}
1519
Amos Kong40cbfc32013-01-21 01:17:21 +00001520/*
1521 * Send command via the control virtqueue and check status. Commands
1522 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001523 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001524 */
1525static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001526 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001527{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301528 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001529 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001530
1531 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301532 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001533
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001534 vi->ctrl->status = ~0;
1535 vi->ctrl->hdr.class = class;
1536 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301537 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001538 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301539 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001540
Rusty Russellf7bc9592013-03-20 15:44:28 +10301541 if (out)
1542 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001543
Rusty Russellf7bc9592013-03-20 15:44:28 +10301544 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001545 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001546 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001547
stephen hemmingerd24bae32013-12-09 16:17:40 -08001548 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301549 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001550
Heinz Graalfs67975902013-10-29 09:40:02 +10301551 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001552 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001553
1554 /* Spin for a response, the kick causes an ioport write, trapping
1555 * into the hypervisor, so the request should be handled immediately.
1556 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301557 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1558 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001559 cpu_relax();
1560
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001561 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001562}
1563
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001564static int virtnet_set_mac_address(struct net_device *dev, void *p)
1565{
1566 struct virtnet_info *vi = netdev_priv(dev);
1567 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001568 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001569 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001570 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001571
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001572 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1573 return -EOPNOTSUPP;
1574
Shyam Saini801822d2016-12-24 00:44:58 +05301575 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001576 if (!addr)
1577 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001578
1579 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001580 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001581 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001582
Amos Kong7e58d5a2013-01-21 01:17:23 +00001583 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1584 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1585 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001586 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001587 dev_warn(&vdev->dev,
1588 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001589 ret = -EINVAL;
1590 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001591 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001592 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1593 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301594 unsigned int i;
1595
1596 /* Naturally, this has an atomicity problem. */
1597 for (i = 0; i < dev->addr_len; i++)
1598 virtio_cwrite8(vdev,
1599 offsetof(struct virtio_net_config, mac) +
1600 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001601 }
1602
1603 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001604 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001605
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001606out:
1607 kfree(addr);
1608 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001609}
1610
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001611static void virtnet_stats(struct net_device *dev,
1612 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001613{
1614 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001615 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001616 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001617
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001618 for (i = 0; i < vi->max_queue_pairs; i++) {
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001619 u64 tpackets, tbytes, rpackets, rbytes;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001620 struct receive_queue *rq = &vi->rq[i];
1621 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001622
1623 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001624 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1625 tpackets = sq->stats.packets;
1626 tbytes = sq->stats.bytes;
1627 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001628
1629 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001630 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1631 rpackets = rq->stats.packets;
1632 rbytes = rq->stats.bytes;
1633 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001634
1635 tot->rx_packets += rpackets;
1636 tot->tx_packets += tpackets;
1637 tot->rx_bytes += rbytes;
1638 tot->tx_bytes += tbytes;
1639 }
1640
1641 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001642 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001643 tot->rx_dropped = dev->stats.rx_dropped;
1644 tot->rx_length_errors = dev->stats.rx_length_errors;
1645 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001646}
1647
Amit Shahda74e892008-02-29 16:24:50 +05301648#ifdef CONFIG_NET_POLL_CONTROLLER
1649static void virtnet_netpoll(struct net_device *dev)
1650{
1651 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001652 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301653
Jason Wang986a4f42012-12-07 07:04:56 +00001654 for (i = 0; i < vi->curr_queue_pairs; i++)
1655 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301656}
1657#endif
1658
Jason Wang586d17c2012-04-11 20:43:52 +00001659static void virtnet_ack_link_announce(struct virtnet_info *vi)
1660{
1661 rtnl_lock();
1662 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001663 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001664 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1665 rtnl_unlock();
1666}
1667
John Fastabend473153292017-02-02 19:14:32 -08001668static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001669{
1670 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001671 struct net_device *dev = vi->dev;
1672
1673 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1674 return 0;
1675
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001676 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1677 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001678
1679 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001680 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001681 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1682 queue_pairs);
1683 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301684 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001685 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001686 /* virtnet_open() will refill when device is going to up. */
1687 if (dev->flags & IFF_UP)
1688 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301689 }
Jason Wang986a4f42012-12-07 07:04:56 +00001690
1691 return 0;
1692}
1693
John Fastabend473153292017-02-02 19:14:32 -08001694static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1695{
1696 int err;
1697
1698 rtnl_lock();
1699 err = _virtnet_set_queues(vi, queue_pairs);
1700 rtnl_unlock();
1701 return err;
1702}
1703
Rusty Russell296f96f2007-10-22 11:03:37 +10001704static int virtnet_close(struct net_device *dev)
1705{
1706 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001707 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001708
Rusty Russellb2baed62011-12-29 00:42:38 +00001709 /* Make sure refill_work doesn't re-enable napi! */
1710 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001711
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001712 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001713 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001714 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001715 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001716 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001717
Rusty Russell296f96f2007-10-22 11:03:37 +10001718 return 0;
1719}
1720
Alex Williamson2af76982009-02-04 09:02:40 +00001721static void virtnet_set_rx_mode(struct net_device *dev)
1722{
1723 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001724 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001725 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001726 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001727 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001728 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001729 void *buf;
1730 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001731
stephen hemminger788a8b62013-12-09 16:18:45 -08001732 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001733 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1734 return;
1735
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001736 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1737 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001738
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001739 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001740
1741 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001742 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001743 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001744 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001745
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001746 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001747
1748 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001749 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001750 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001751 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001752
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001753 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001754 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001755 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001756 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1757 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1758 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001759 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001760 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001761
Alex Williamson23e258e2009-05-01 17:27:56 +00001762 sg_init_table(sg, 2);
1763
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001764 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001765 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001766 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001767 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001768 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001769
1770 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001771 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001772
1773 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001774 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001775
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001776 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001777 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001778 netdev_for_each_mc_addr(ha, dev)
1779 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001780
1781 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001782 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001783
1784 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001785 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001786 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001787
1788 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001789}
1790
Patrick McHardy80d5c362013-04-19 02:04:28 +00001791static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1792 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001793{
1794 struct virtnet_info *vi = netdev_priv(dev);
1795 struct scatterlist sg;
1796
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001797 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001798 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001799
1800 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001801 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001802 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001803 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001804}
1805
Patrick McHardy80d5c362013-04-19 02:04:28 +00001806static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1807 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001808{
1809 struct virtnet_info *vi = netdev_priv(dev);
1810 struct scatterlist sg;
1811
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001812 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001813 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001814
1815 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001816 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001817 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001818 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001819}
1820
Wanlong Gao8898c212013-01-24 23:51:30 +00001821static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001822{
1823 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001824
1825 if (vi->affinity_hint_set) {
1826 for (i = 0; i < vi->max_queue_pairs; i++) {
1827 virtqueue_set_affinity(vi->rq[i].vq, -1);
1828 virtqueue_set_affinity(vi->sq[i].vq, -1);
1829 }
1830
1831 vi->affinity_hint_set = false;
1832 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001833}
1834
1835static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001836{
1837 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001838 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001839
1840 /* In multiqueue mode, when the number of cpu is equal to the number of
1841 * queue pairs, we let the queue pairs to be private to one cpu by
1842 * setting the affinity hint to eliminate the contention.
1843 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001844 if (vi->curr_queue_pairs == 1 ||
1845 vi->max_queue_pairs != num_online_cpus()) {
1846 virtnet_clean_affinity(vi, -1);
1847 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001848 }
1849
Wanlong Gao8898c212013-01-24 23:51:30 +00001850 i = 0;
1851 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001852 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1853 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001854 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001855 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001856 }
1857
Wanlong Gao8898c212013-01-24 23:51:30 +00001858 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001859}
1860
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001861static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001862{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001863 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1864 node);
1865 virtnet_set_affinity(vi);
1866 return 0;
1867}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001868
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001869static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1870{
1871 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1872 node_dead);
1873 virtnet_set_affinity(vi);
1874 return 0;
1875}
Jason Wang3ab098d2013-10-15 11:18:58 +08001876
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001877static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1878{
1879 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1880 node);
1881
1882 virtnet_clean_affinity(vi, cpu);
1883 return 0;
1884}
1885
1886static enum cpuhp_state virtionet_online;
1887
1888static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1889{
1890 int ret;
1891
1892 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1893 if (ret)
1894 return ret;
1895 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1896 &vi->node_dead);
1897 if (!ret)
1898 return ret;
1899 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1900 return ret;
1901}
1902
1903static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1904{
1905 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1906 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1907 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001908}
1909
Rick Jones8f9f4662011-10-19 08:10:59 +00001910static void virtnet_get_ringparam(struct net_device *dev,
1911 struct ethtool_ringparam *ring)
1912{
1913 struct virtnet_info *vi = netdev_priv(dev);
1914
Jason Wang986a4f42012-12-07 07:04:56 +00001915 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1916 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001917 ring->rx_pending = ring->rx_max_pending;
1918 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001919}
1920
Rick Jones66846042011-11-14 14:17:08 +00001921
1922static void virtnet_get_drvinfo(struct net_device *dev,
1923 struct ethtool_drvinfo *info)
1924{
1925 struct virtnet_info *vi = netdev_priv(dev);
1926 struct virtio_device *vdev = vi->vdev;
1927
1928 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1929 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1930 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1931
1932}
1933
Jason Wangd73bcd22012-12-07 07:04:57 +00001934/* TODO: Eliminate OOO packets during switching */
1935static int virtnet_set_channels(struct net_device *dev,
1936 struct ethtool_channels *channels)
1937{
1938 struct virtnet_info *vi = netdev_priv(dev);
1939 u16 queue_pairs = channels->combined_count;
1940 int err;
1941
1942 /* We don't support separate rx/tx channels.
1943 * We don't allow setting 'other' channels.
1944 */
1945 if (channels->rx_count || channels->tx_count || channels->other_count)
1946 return -EINVAL;
1947
Amos Kongc18e9cd2014-04-18 13:45:41 +08001948 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001949 return -EINVAL;
1950
John Fastabendf600b692016-12-15 12:13:24 -08001951 /* For now we don't support modifying channels while XDP is loaded
1952 * also when XDP is loaded all RX queues have XDP programs so we only
1953 * need to check a single RX queue.
1954 */
1955 if (vi->rq[0].xdp_prog)
1956 return -EINVAL;
1957
Wanlong Gao47be2472013-01-24 23:51:29 +00001958 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001959 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001960 if (!err) {
1961 netif_set_real_num_tx_queues(dev, queue_pairs);
1962 netif_set_real_num_rx_queues(dev, queue_pairs);
1963
Wanlong Gao8898c212013-01-24 23:51:30 +00001964 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001965 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001966 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001967
1968 return err;
1969}
1970
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001971static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1972{
1973 struct virtnet_info *vi = netdev_priv(dev);
1974 char *p = (char *)data;
1975 unsigned int i, j;
1976
1977 switch (stringset) {
1978 case ETH_SS_STATS:
1979 for (i = 0; i < vi->curr_queue_pairs; i++) {
1980 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1981 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
1982 i, virtnet_rq_stats_desc[j].desc);
1983 p += ETH_GSTRING_LEN;
1984 }
1985 }
1986
1987 for (i = 0; i < vi->curr_queue_pairs; i++) {
1988 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1989 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
1990 i, virtnet_sq_stats_desc[j].desc);
1991 p += ETH_GSTRING_LEN;
1992 }
1993 }
1994 break;
1995 }
1996}
1997
1998static int virtnet_get_sset_count(struct net_device *dev, int sset)
1999{
2000 struct virtnet_info *vi = netdev_priv(dev);
2001
2002 switch (sset) {
2003 case ETH_SS_STATS:
2004 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2005 VIRTNET_SQ_STATS_LEN);
2006 default:
2007 return -EOPNOTSUPP;
2008 }
2009}
2010
2011static void virtnet_get_ethtool_stats(struct net_device *dev,
2012 struct ethtool_stats *stats, u64 *data)
2013{
2014 struct virtnet_info *vi = netdev_priv(dev);
2015 unsigned int idx = 0, start, i, j;
2016 const u8 *stats_base;
2017 size_t offset;
2018
2019 for (i = 0; i < vi->curr_queue_pairs; i++) {
2020 struct receive_queue *rq = &vi->rq[i];
2021
2022 stats_base = (u8 *)&rq->stats;
2023 do {
2024 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2025 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2026 offset = virtnet_rq_stats_desc[j].offset;
2027 data[idx + j] = *(u64 *)(stats_base + offset);
2028 }
2029 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2030 idx += VIRTNET_RQ_STATS_LEN;
2031 }
2032
2033 for (i = 0; i < vi->curr_queue_pairs; i++) {
2034 struct send_queue *sq = &vi->sq[i];
2035
2036 stats_base = (u8 *)&sq->stats;
2037 do {
2038 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2039 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2040 offset = virtnet_sq_stats_desc[j].offset;
2041 data[idx + j] = *(u64 *)(stats_base + offset);
2042 }
2043 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2044 idx += VIRTNET_SQ_STATS_LEN;
2045 }
2046}
2047
Jason Wangd73bcd22012-12-07 07:04:57 +00002048static void virtnet_get_channels(struct net_device *dev,
2049 struct ethtool_channels *channels)
2050{
2051 struct virtnet_info *vi = netdev_priv(dev);
2052
2053 channels->combined_count = vi->curr_queue_pairs;
2054 channels->max_combined = vi->max_queue_pairs;
2055 channels->max_other = 0;
2056 channels->rx_count = 0;
2057 channels->tx_count = 0;
2058 channels->other_count = 0;
2059}
2060
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002061/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002062static bool
2063virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002064{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002065 struct ethtool_link_ksettings diff1 = *cmd;
2066 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002067
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002068 /* cmd is always set so we need to clear it, validate the port type
2069 * and also without autonegotiation we can ignore advertising
2070 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002071 diff1.base.speed = 0;
2072 diff2.base.port = PORT_OTHER;
2073 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2074 diff1.base.duplex = 0;
2075 diff1.base.cmd = 0;
2076 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002077
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002078 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2079 bitmap_empty(diff1.link_modes.supported,
2080 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2081 bitmap_empty(diff1.link_modes.advertising,
2082 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2083 bitmap_empty(diff1.link_modes.lp_advertising,
2084 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002085}
2086
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002087static int virtnet_set_link_ksettings(struct net_device *dev,
2088 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002089{
2090 struct virtnet_info *vi = netdev_priv(dev);
2091 u32 speed;
2092
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002093 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002094 /* don't allow custom speed and duplex */
2095 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002096 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002097 !virtnet_validate_ethtool_cmd(cmd))
2098 return -EINVAL;
2099 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002100 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002101
2102 return 0;
2103}
2104
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002105static int virtnet_get_link_ksettings(struct net_device *dev,
2106 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002107{
2108 struct virtnet_info *vi = netdev_priv(dev);
2109
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002110 cmd->base.speed = vi->speed;
2111 cmd->base.duplex = vi->duplex;
2112 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002113
2114 return 0;
2115}
2116
2117static void virtnet_init_settings(struct net_device *dev)
2118{
2119 struct virtnet_info *vi = netdev_priv(dev);
2120
2121 vi->speed = SPEED_UNKNOWN;
2122 vi->duplex = DUPLEX_UNKNOWN;
2123}
2124
Jason Baronfaa9b392018-01-05 17:44:54 -05002125static void virtnet_update_settings(struct virtnet_info *vi)
2126{
2127 u32 speed;
2128 u8 duplex;
2129
2130 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2131 return;
2132
2133 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2134 speed));
2135 if (ethtool_validate_speed(speed))
2136 vi->speed = speed;
2137 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2138 duplex));
2139 if (ethtool_validate_duplex(duplex))
2140 vi->duplex = duplex;
2141}
2142
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002143static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002144 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002145 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002146 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002147 .get_strings = virtnet_get_strings,
2148 .get_sset_count = virtnet_get_sset_count,
2149 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002150 .set_channels = virtnet_set_channels,
2151 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002152 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002153 .get_link_ksettings = virtnet_get_link_ksettings,
2154 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002155};
2156
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002157static void virtnet_freeze_down(struct virtio_device *vdev)
2158{
2159 struct virtnet_info *vi = vdev->priv;
2160 int i;
2161
2162 /* Make sure no work handler is accessing the device */
2163 flush_work(&vi->config_work);
2164
2165 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08002166 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002167 cancel_delayed_work_sync(&vi->refill);
2168
2169 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002170 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002171 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002172 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002173 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002174 }
2175}
2176
2177static int init_vqs(struct virtnet_info *vi);
2178
2179static int virtnet_restore_up(struct virtio_device *vdev)
2180{
2181 struct virtnet_info *vi = vdev->priv;
2182 int err, i;
2183
2184 err = init_vqs(vi);
2185 if (err)
2186 return err;
2187
2188 virtio_device_ready(vdev);
2189
2190 if (netif_running(vi->dev)) {
2191 for (i = 0; i < vi->curr_queue_pairs; i++)
2192 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2193 schedule_delayed_work(&vi->refill, 0);
2194
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002195 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002196 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002197 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2198 &vi->sq[i].napi);
2199 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002200 }
2201
2202 netif_device_attach(vi->dev);
2203 return err;
2204}
2205
Jason Wang3f935222017-07-19 16:54:49 +08002206static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2207{
2208 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002209 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002210
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002211 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002212
2213 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2214 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2215 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2216 return -EINVAL;
2217 }
2218
2219 return 0;
2220}
2221
2222static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2223{
2224 u64 offloads = 0;
2225
2226 if (!vi->guest_offloads)
2227 return 0;
2228
2229 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2230 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2231
2232 return virtnet_set_guest_offloads(vi, offloads);
2233}
2234
2235static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2236{
2237 u64 offloads = vi->guest_offloads;
2238
2239 if (!vi->guest_offloads)
2240 return 0;
2241 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2242 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2243
2244 return virtnet_set_guest_offloads(vi, offloads);
2245}
2246
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002247static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2248 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002249{
2250 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2251 struct virtnet_info *vi = netdev_priv(dev);
2252 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002253 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002254 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002255
Jason Wang3f935222017-07-19 16:54:49 +08002256 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2257 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2258 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2259 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2260 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002261 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 -08002262 return -EOPNOTSUPP;
2263 }
2264
2265 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002266 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002267 return -EINVAL;
2268 }
2269
2270 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002271 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002272 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2273 return -EINVAL;
2274 }
2275
John Fastabend672aafd2016-12-15 12:13:49 -08002276 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2277 if (prog)
2278 xdp_qp = nr_cpu_ids;
2279
2280 /* XDP requires extra queues for XDP_TX */
2281 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002282 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002283 netdev_warn(dev, "request %i queues but max is %i\n",
2284 curr_qp + xdp_qp, vi->max_queue_pairs);
2285 return -ENOMEM;
2286 }
2287
John Fastabend2de2f7f2017-02-02 19:16:29 -08002288 if (prog) {
2289 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2290 if (IS_ERR(prog))
2291 return PTR_ERR(prog);
2292 }
2293
Jason Wang4941d472017-07-19 16:54:48 +08002294 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002295 if (netif_running(dev))
2296 for (i = 0; i < vi->max_queue_pairs; i++)
2297 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002298
John Fastabend672aafd2016-12-15 12:13:49 -08002299 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002300 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2301 if (err)
2302 goto err;
2303 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002304
John Fastabendf600b692016-12-15 12:13:24 -08002305 for (i = 0; i < vi->max_queue_pairs; i++) {
2306 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2307 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002308 if (i == 0) {
2309 if (!old_prog)
2310 virtnet_clear_guest_offloads(vi);
2311 if (!prog)
2312 virtnet_restore_guest_offloads(vi);
2313 }
John Fastabendf600b692016-12-15 12:13:24 -08002314 if (old_prog)
2315 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002316 if (netif_running(dev))
2317 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002318 }
2319
2320 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002321
Jason Wang4941d472017-07-19 16:54:48 +08002322err:
2323 for (i = 0; i < vi->max_queue_pairs; i++)
2324 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002325 if (prog)
2326 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2327 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002328}
2329
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002330static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002331{
2332 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002333 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002334 int i;
2335
2336 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002337 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2338 if (xdp_prog)
2339 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002340 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002341 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002342}
2343
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002344static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002345{
2346 switch (xdp->command) {
2347 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002348 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002349 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002350 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002351 return 0;
2352 default:
2353 return -EINVAL;
2354 }
2355}
2356
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002357static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2358 size_t len)
2359{
2360 struct virtnet_info *vi = netdev_priv(dev);
2361 int ret;
2362
2363 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2364 return -EOPNOTSUPP;
2365
2366 ret = snprintf(buf, len, "sby");
2367 if (ret >= len)
2368 return -EOPNOTSUPP;
2369
2370 return 0;
2371}
2372
Stephen Hemminger76288b42009-01-06 10:44:22 -08002373static const struct net_device_ops virtnet_netdev = {
2374 .ndo_open = virtnet_open,
2375 .ndo_stop = virtnet_close,
2376 .ndo_start_xmit = start_xmit,
2377 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002378 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002379 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002380 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002381 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2382 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002383#ifdef CONFIG_NET_POLL_CONTROLLER
2384 .ndo_poll_controller = virtnet_netpoll,
2385#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002386 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002387 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002388 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002389 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002390};
2391
Jason Wang586d17c2012-04-11 20:43:52 +00002392static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002393{
Jason Wang586d17c2012-04-11 20:43:52 +00002394 struct virtnet_info *vi =
2395 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002396 u16 v;
2397
Rusty Russell855e0c52013-10-14 18:11:51 +10302398 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2399 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302400 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002401
2402 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002403 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002404 virtnet_ack_link_announce(vi);
2405 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002406
2407 /* Ignore unknown (future) status bits */
2408 v &= VIRTIO_NET_S_LINK_UP;
2409
2410 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302411 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002412
2413 vi->status = v;
2414
2415 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002416 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002417 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002418 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002419 } else {
2420 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002421 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002422 }
2423}
2424
2425static void virtnet_config_changed(struct virtio_device *vdev)
2426{
2427 struct virtnet_info *vi = vdev->priv;
2428
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002429 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002430}
2431
Jason Wang986a4f42012-12-07 07:04:56 +00002432static void virtnet_free_queues(struct virtnet_info *vi)
2433{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002434 int i;
2435
Jason Wangab3971b2015-03-12 13:57:44 +08002436 for (i = 0; i < vi->max_queue_pairs; i++) {
2437 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002438 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002439 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002440 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002441
Eric Dumazet963abe52016-11-15 22:24:12 -08002442 /* We called napi_hash_del() before netif_napi_del(),
2443 * we need to respect an RCU grace period before freeing vi->rq
2444 */
2445 synchronize_net();
2446
Jason Wang986a4f42012-12-07 07:04:56 +00002447 kfree(vi->rq);
2448 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002449 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002450}
2451
John Fastabend473153292017-02-02 19:14:32 -08002452static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002453{
John Fastabendf600b692016-12-15 12:13:24 -08002454 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002455 int i;
2456
2457 for (i = 0; i < vi->max_queue_pairs; i++) {
2458 while (vi->rq[i].pages)
2459 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002460
2461 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2462 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2463 if (old_prog)
2464 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002465 }
John Fastabend473153292017-02-02 19:14:32 -08002466}
2467
2468static void free_receive_bufs(struct virtnet_info *vi)
2469{
2470 rtnl_lock();
2471 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002472 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002473}
2474
Michael Daltonfb518792014-01-16 22:23:26 -08002475static void free_receive_page_frags(struct virtnet_info *vi)
2476{
2477 int i;
2478 for (i = 0; i < vi->max_queue_pairs; i++)
2479 if (vi->rq[i].alloc_frag.page)
2480 put_page(vi->rq[i].alloc_frag.page);
2481}
2482
John Fastabendb68df012017-01-25 18:22:48 -08002483static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002484{
2485 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2486 return false;
2487 else if (q < vi->curr_queue_pairs)
2488 return true;
2489 else
2490 return false;
2491}
2492
Jason Wang986a4f42012-12-07 07:04:56 +00002493static void free_unused_bufs(struct virtnet_info *vi)
2494{
2495 void *buf;
2496 int i;
2497
2498 for (i = 0; i < vi->max_queue_pairs; i++) {
2499 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002500 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002501 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002502 dev_kfree_skb(buf);
2503 else
2504 put_page(virt_to_head_page(buf));
2505 }
Jason Wang986a4f42012-12-07 07:04:56 +00002506 }
2507
2508 for (i = 0; i < vi->max_queue_pairs; i++) {
2509 struct virtqueue *vq = vi->rq[i].vq;
2510
2511 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002512 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002513 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002514 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002515 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002516 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002517 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002518 }
Jason Wang986a4f42012-12-07 07:04:56 +00002519 }
Jason Wang986a4f42012-12-07 07:04:56 +00002520 }
2521}
2522
Jason Wange9d74172012-12-07 07:04:55 +00002523static void virtnet_del_vqs(struct virtnet_info *vi)
2524{
2525 struct virtio_device *vdev = vi->vdev;
2526
Wanlong Gao8898c212013-01-24 23:51:30 +00002527 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002528
Jason Wange9d74172012-12-07 07:04:55 +00002529 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002530
2531 virtnet_free_queues(vi);
2532}
2533
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002534/* How large should a single buffer be so a queue full of these can fit at
2535 * least one full packet?
2536 * Logic below assumes the mergeable buffer header is used.
2537 */
2538static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2539{
2540 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2541 unsigned int rq_size = virtqueue_get_vring_size(vq);
2542 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2543 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2544 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2545
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002546 return max(max(min_buf_len, hdr_len) - hdr_len,
2547 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002548}
2549
Jason Wang986a4f42012-12-07 07:04:56 +00002550static int virtnet_find_vqs(struct virtnet_info *vi)
2551{
2552 vq_callback_t **callbacks;
2553 struct virtqueue **vqs;
2554 int ret = -ENOMEM;
2555 int i, total_vqs;
2556 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002557 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002558
2559 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2560 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2561 * possible control vq.
2562 */
2563 total_vqs = vi->max_queue_pairs * 2 +
2564 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2565
2566 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002567 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002568 if (!vqs)
2569 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002570 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002571 if (!callbacks)
2572 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002573 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002574 if (!names)
2575 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002576 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002577 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002578 if (!ctx)
2579 goto err_ctx;
2580 } else {
2581 ctx = NULL;
2582 }
Jason Wang986a4f42012-12-07 07:04:56 +00002583
2584 /* Parameters for control virtqueue, if any */
2585 if (vi->has_cvq) {
2586 callbacks[total_vqs - 1] = NULL;
2587 names[total_vqs - 1] = "control";
2588 }
2589
2590 /* Allocate/initialize parameters for send/receive virtqueues */
2591 for (i = 0; i < vi->max_queue_pairs; i++) {
2592 callbacks[rxq2vq(i)] = skb_recv_done;
2593 callbacks[txq2vq(i)] = skb_xmit_done;
2594 sprintf(vi->rq[i].name, "input.%d", i);
2595 sprintf(vi->sq[i].name, "output.%d", i);
2596 names[rxq2vq(i)] = vi->rq[i].name;
2597 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002598 if (ctx)
2599 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002600 }
2601
2602 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002603 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002604 if (ret)
2605 goto err_find;
2606
2607 if (vi->has_cvq) {
2608 vi->cvq = vqs[total_vqs - 1];
2609 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002610 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002611 }
2612
2613 for (i = 0; i < vi->max_queue_pairs; i++) {
2614 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002615 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002616 vi->sq[i].vq = vqs[txq2vq(i)];
2617 }
2618
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002619 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002620
Jason Wang986a4f42012-12-07 07:04:56 +00002621
2622err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002623 kfree(ctx);
2624err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002625 kfree(names);
2626err_names:
2627 kfree(callbacks);
2628err_callback:
2629 kfree(vqs);
2630err_vq:
2631 return ret;
2632}
2633
2634static int virtnet_alloc_queues(struct virtnet_info *vi)
2635{
2636 int i;
2637
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002638 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2639 if (!vi->ctrl)
2640 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002641 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002642 if (!vi->sq)
2643 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002644 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002645 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002646 goto err_rq;
2647
2648 INIT_DELAYED_WORK(&vi->refill, refill_work);
2649 for (i = 0; i < vi->max_queue_pairs; i++) {
2650 vi->rq[i].pages = NULL;
2651 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2652 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002653 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2654 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002655
2656 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002657 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002658 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002659
2660 u64_stats_init(&vi->rq[i].stats.syncp);
2661 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002662 }
2663
2664 return 0;
2665
2666err_rq:
2667 kfree(vi->sq);
2668err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002669 kfree(vi->ctrl);
2670err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002671 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002672}
2673
Amit Shah3f9c10b2011-12-22 16:58:31 +05302674static int init_vqs(struct virtnet_info *vi)
2675{
Jason Wang986a4f42012-12-07 07:04:56 +00002676 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302677
Jason Wang986a4f42012-12-07 07:04:56 +00002678 /* Allocate send & receive queues */
2679 ret = virtnet_alloc_queues(vi);
2680 if (ret)
2681 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302682
Jason Wang986a4f42012-12-07 07:04:56 +00002683 ret = virtnet_find_vqs(vi);
2684 if (ret)
2685 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302686
Wanlong Gao47be2472013-01-24 23:51:29 +00002687 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002688 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002689 put_online_cpus();
2690
Amit Shah3f9c10b2011-12-22 16:58:31 +05302691 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002692
2693err_free:
2694 virtnet_free_queues(vi);
2695err:
2696 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302697}
2698
Michael Daltonfbf28d72014-01-16 22:23:30 -08002699#ifdef CONFIG_SYSFS
2700static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002701 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002702{
2703 struct virtnet_info *vi = netdev_priv(queue->dev);
2704 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002705 unsigned int headroom = virtnet_get_headroom(vi);
2706 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002707 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002708
2709 BUG_ON(queue_index >= vi->max_queue_pairs);
2710 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002711 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002712 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2713 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002714}
2715
2716static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2717 __ATTR_RO(mergeable_rx_buffer_size);
2718
2719static struct attribute *virtio_net_mrg_rx_attrs[] = {
2720 &mergeable_rx_buffer_size_attribute.attr,
2721 NULL
2722};
2723
2724static const struct attribute_group virtio_net_mrg_rx_group = {
2725 .name = "virtio_net",
2726 .attrs = virtio_net_mrg_rx_attrs
2727};
2728#endif
2729
Jason Wang892d6eb2014-11-20 17:03:05 +08002730static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2731 unsigned int fbit,
2732 const char *fname, const char *dname)
2733{
2734 if (!virtio_has_feature(vdev, fbit))
2735 return false;
2736
2737 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2738 fname, dname);
2739
2740 return true;
2741}
2742
2743#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2744 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2745
2746static bool virtnet_validate_features(struct virtio_device *vdev)
2747{
2748 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2749 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2750 "VIRTIO_NET_F_CTRL_VQ") ||
2751 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2752 "VIRTIO_NET_F_CTRL_VQ") ||
2753 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2754 "VIRTIO_NET_F_CTRL_VQ") ||
2755 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2756 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2757 "VIRTIO_NET_F_CTRL_VQ"))) {
2758 return false;
2759 }
2760
2761 return true;
2762}
2763
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002764#define MIN_MTU ETH_MIN_MTU
2765#define MAX_MTU ETH_MAX_MTU
2766
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002767static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002768{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002769 if (!vdev->config->get) {
2770 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2771 __func__);
2772 return -EINVAL;
2773 }
2774
Jason Wang892d6eb2014-11-20 17:03:05 +08002775 if (!virtnet_validate_features(vdev))
2776 return -EINVAL;
2777
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002778 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2779 int mtu = virtio_cread16(vdev,
2780 offsetof(struct virtio_net_config,
2781 mtu));
2782 if (mtu < MIN_MTU)
2783 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2784 }
2785
2786 return 0;
2787}
2788
2789static int virtnet_probe(struct virtio_device *vdev)
2790{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002791 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002792 struct net_device *dev;
2793 struct virtnet_info *vi;
2794 u16 max_queue_pairs;
2795 int mtu;
2796
Jason Wang986a4f42012-12-07 07:04:56 +00002797 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302798 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2799 struct virtio_net_config,
2800 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002801
2802 /* We need at least 2 queue's */
2803 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2804 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2805 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2806 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002807
2808 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002809 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002810 if (!dev)
2811 return -ENOMEM;
2812
2813 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002814 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002815 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002816 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002817
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002818 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002819 SET_NETDEV_DEV(dev, &vdev->dev);
2820
2821 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002822 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002823 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002824 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002825 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002826 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002827
2828 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002829 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002830 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2831 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002832 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002833 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2834 dev->hw_features |= NETIF_F_TSO;
2835 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2836 dev->hw_features |= NETIF_F_TSO6;
2837 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2838 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002839
Jason Wang41f2f122014-12-24 11:03:52 +08002840 dev->features |= NETIF_F_GSO_ROBUST;
2841
Michał Mirosław98e778c2011-03-31 01:01:35 +00002842 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002843 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002844 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002845 }
Thomas Huth4f491292013-08-27 17:09:02 +02002846 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2847 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002848
Jason Wang4fda8302013-04-10 23:32:21 +00002849 dev->vlan_features = dev->features;
2850
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002851 /* MTU range: 68 - 65535 */
2852 dev->min_mtu = MIN_MTU;
2853 dev->max_mtu = MAX_MTU;
2854
Rusty Russell296f96f2007-10-22 11:03:37 +10002855 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302856 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2857 virtio_cread_bytes(vdev,
2858 offsetof(struct virtio_net_config, mac),
2859 dev->dev_addr, dev->addr_len);
2860 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002861 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002862
2863 /* Set up our device-specific information */
2864 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002865 vi->dev = dev;
2866 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002867 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002868
Jason Wang586d17c2012-04-11 20:43:52 +00002869 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002870
Herbert Xu97402b92008-04-18 11:24:27 +08002871 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002872 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2873 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002874 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2875 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002876 vi->big_packets = true;
2877
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002878 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2879 vi->mergeable_rx_bufs = true;
2880
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002881 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2882 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002883 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2884 else
2885 vi->hdr_len = sizeof(struct virtio_net_hdr);
2886
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002887 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2888 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302889 vi->any_header_sg = true;
2890
Jason Wang986a4f42012-12-07 07:04:56 +00002891 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2892 vi->has_cvq = true;
2893
Aaron Conole14de9d12016-06-03 16:57:12 -04002894 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2895 mtu = virtio_cread16(vdev,
2896 offsetof(struct virtio_net_config,
2897 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002898 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002899 /* Should never trigger: MTU was previously validated
2900 * in virtnet_validate.
2901 */
2902 dev_err(&vdev->dev, "device MTU appears to have changed "
2903 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002904 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04002905 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002906
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002907 dev->mtu = mtu;
2908 dev->max_mtu = mtu;
2909
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002910 /* TODO: size buffers correctly in this case. */
2911 if (dev->mtu > ETH_DATA_LEN)
2912 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002913 }
2914
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002915 if (vi->any_header_sg)
2916 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002917
Jason Wang44900012016-11-25 12:37:26 +08002918 /* Enable multiqueue by default */
2919 if (num_online_cpus() >= max_queue_pairs)
2920 vi->curr_queue_pairs = max_queue_pairs;
2921 else
2922 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002923 vi->max_queue_pairs = max_queue_pairs;
2924
2925 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302926 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002927 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002928 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002929
Michael Daltonfbf28d72014-01-16 22:23:30 -08002930#ifdef CONFIG_SYSFS
2931 if (vi->mergeable_rx_bufs)
2932 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2933#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002934 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2935 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002936
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002937 virtnet_init_settings(dev);
2938
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002939 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
2940 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00002941 if (IS_ERR(vi->failover)) {
2942 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002943 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00002944 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002945 }
2946
Rusty Russell296f96f2007-10-22 11:03:37 +10002947 err = register_netdev(dev);
2948 if (err) {
2949 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002950 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10002951 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002952
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302953 virtio_device_ready(vdev);
2954
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002955 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002956 if (err) {
2957 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002958 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002959 }
2960
Jason Wanga2208712016-12-13 14:23:05 +08002961 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002962
Jason Wang167c25e2010-11-10 14:45:41 +00002963 /* Assume link up if device can't report link status,
2964 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00002965 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00002966 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002967 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002968 } else {
2969 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05002970 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00002971 netif_carrier_on(dev);
2972 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002973
Jason Wang3f935222017-07-19 16:54:49 +08002974 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2975 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2976 set_bit(guest_offloads[i], &vi->guest_offloads);
2977
Jason Wang986a4f42012-12-07 07:04:56 +00002978 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2979 dev->name, max_queue_pairs);
2980
Rusty Russell296f96f2007-10-22 11:03:37 +10002981 return 0;
2982
wangyunjianf00e35e2016-05-31 11:52:43 +08002983free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302984 vi->vdev->config->reset(vdev);
2985
Rusty Russellb3369c12008-02-04 23:50:02 -05002986 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002987free_failover:
2988 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002989free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002990 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002991 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002992 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10002993free:
2994 free_netdev(dev);
2995 return err;
2996}
2997
Amit Shah04486ed2011-12-22 16:58:32 +05302998static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002999{
Amit Shah04486ed2011-12-22 16:58:32 +05303000 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003001
3002 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003003 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003004
Jason Wang986a4f42012-12-07 07:04:56 +00003005 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003006
Michael Daltonfb518792014-01-16 22:23:26 -08003007 free_receive_page_frags(vi);
3008
Jason Wang986a4f42012-12-07 07:04:56 +00003009 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303010}
3011
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003012static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303013{
3014 struct virtnet_info *vi = vdev->priv;
3015
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003016 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003017
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303018 /* Make sure no work handler is accessing the device. */
3019 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003020
Amit Shah04486ed2011-12-22 16:58:32 +05303021 unregister_netdev(vi->dev);
3022
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003023 net_failover_destroy(vi->failover);
3024
Amit Shah04486ed2011-12-22 16:58:32 +05303025 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003026
Rusty Russell74b25532007-11-19 11:20:42 -05003027 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003028}
3029
Arnd Bergmann67a75192017-07-25 17:35:50 +02003030static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303031{
3032 struct virtnet_info *vi = vdev->priv;
3033
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003034 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003035 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303036 remove_vq_common(vi);
3037
3038 return 0;
3039}
3040
Arnd Bergmann67a75192017-07-25 17:35:50 +02003041static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303042{
3043 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003044 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303045
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003046 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303047 if (err)
3048 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003049 virtnet_set_queues(vi, vi->curr_queue_pairs);
3050
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003051 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003052 if (err)
3053 return err;
3054
Amit Shah0741bcb2011-12-22 16:58:33 +05303055 return 0;
3056}
Amit Shah0741bcb2011-12-22 16:58:33 +05303057
Rusty Russell296f96f2007-10-22 11:03:37 +10003058static struct virtio_device_id id_table[] = {
3059 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3060 { 0 },
3061};
3062
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003063#define VIRTNET_FEATURES \
3064 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3065 VIRTIO_NET_F_MAC, \
3066 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3067 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3068 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3069 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3070 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3071 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3072 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003073 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003074 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003075
Rusty Russellc45a6812008-05-02 21:50:50 -05003076static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003077 VIRTNET_FEATURES,
3078};
3079
3080static unsigned int features_legacy[] = {
3081 VIRTNET_FEATURES,
3082 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303083 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003084};
3085
Uwe Kleine-König22402522009-11-05 01:32:44 -08003086static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003087 .feature_table = features,
3088 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003089 .feature_table_legacy = features_legacy,
3090 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003091 .driver.name = KBUILD_MODNAME,
3092 .driver.owner = THIS_MODULE,
3093 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003094 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003095 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003096 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003097 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303098#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303099 .freeze = virtnet_freeze,
3100 .restore = virtnet_restore,
3101#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003102};
3103
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003104static __init int virtio_net_driver_init(void)
3105{
3106 int ret;
3107
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003108 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003109 virtnet_cpu_online,
3110 virtnet_cpu_down_prep);
3111 if (ret < 0)
3112 goto out;
3113 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003114 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003115 NULL, virtnet_cpu_dead);
3116 if (ret)
3117 goto err_dead;
3118
3119 ret = register_virtio_driver(&virtio_net_driver);
3120 if (ret)
3121 goto err_virtio;
3122 return 0;
3123err_virtio:
3124 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3125err_dead:
3126 cpuhp_remove_multi_state(virtionet_online);
3127out:
3128 return ret;
3129}
3130module_init(virtio_net_driver_init);
3131
3132static __exit void virtio_net_driver_exit(void)
3133{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003134 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003135 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3136 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003137}
3138module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003139
3140MODULE_DEVICE_TABLE(virtio, id_table);
3141MODULE_DESCRIPTION("Virtio network driver");
3142MODULE_LICENSE("GPL");