blob: f34794a76c4df71767edf5428d81d6187929d953 [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020033#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010034#include <net/xdp.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100035
Amerigo Wangd34710e2013-05-09 19:50:51 +000036static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020037module_param(napi_weight, int, 0444);
38
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040039static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050040module_param(csum, bool, 0444);
41module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050043
Rusty Russell296f96f2007-10-22 11:03:37 +100044/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080045#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080046#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100047
Jason Wangf6b10202017-02-21 16:46:28 +080048#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
49
John Fastabend2de2f7f2017-02-02 19:16:29 -080050/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
51#define VIRTIO_XDP_HEADROOM 256
52
Johannes Berg5377d7582015-08-19 09:48:40 +020053/* RX packet size EWMA. The average packet size is used to determine the packet
54 * buffer size when refilling RX rings. As the entire RX ring may be refilled
55 * at once, the weight is chosen so that the EWMA will be insensitive to short-
56 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080057 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010058DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080059
Rick Jones66846042011-11-14 14:17:08 +000060#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000061
Colin Ian King7acd4322017-08-12 22:45:53 +010062static const unsigned long guest_offloads[] = {
63 VIRTIO_NET_F_GUEST_TSO4,
64 VIRTIO_NET_F_GUEST_TSO6,
65 VIRTIO_NET_F_GUEST_ECN,
66 VIRTIO_NET_F_GUEST_UFO
67};
Jason Wang3f935222017-07-19 16:54:49 +080068
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090069struct virtnet_stat_desc {
70 char desc[ETH_GSTRING_LEN];
71 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000072};
73
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090074struct virtnet_sq_stats {
75 struct u64_stats_sync syncp;
76 u64 packets;
77 u64 bytes;
78};
79
80struct virtnet_rq_stats {
81 struct u64_stats_sync syncp;
82 u64 packets;
83 u64 bytes;
84};
85
86#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
87#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
88
89static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
90 { "packets", VIRTNET_SQ_STAT(packets) },
91 { "bytes", VIRTNET_SQ_STAT(bytes) },
92};
93
94static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
95 { "packets", VIRTNET_RQ_STAT(packets) },
96 { "bytes", VIRTNET_RQ_STAT(bytes) },
97};
98
99#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
100#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
101
Jason Wange9d74172012-12-07 07:04:55 +0000102/* Internal representation of a send virtqueue */
103struct send_queue {
104 /* Virtqueue associated with this send _queue */
105 struct virtqueue *vq;
106
107 /* TX: fragments + linear part + virtio header */
108 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000109
110 /* Name of the send queue: output.$index */
111 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400112
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900113 struct virtnet_sq_stats stats;
114
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400115 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000116};
117
118/* Internal representation of a receive virtqueue */
119struct receive_queue {
120 /* Virtqueue associated with this receive_queue */
121 struct virtqueue *vq;
122
Rusty Russell296f96f2007-10-22 11:03:37 +1000123 struct napi_struct napi;
124
John Fastabendf600b692016-12-15 12:13:24 -0800125 struct bpf_prog __rcu *xdp_prog;
126
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900127 struct virtnet_rq_stats stats;
128
Jason Wange9d74172012-12-07 07:04:55 +0000129 /* Chain pages by the private ptr. */
130 struct page *pages;
131
Michael Daltonab7db912014-01-16 22:23:27 -0800132 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200133 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800134
Michael Daltonfb518792014-01-16 22:23:26 -0800135 /* Page frag for packet buffer allocation. */
136 struct page_frag alloc_frag;
137
Jason Wange9d74172012-12-07 07:04:55 +0000138 /* RX: fragments + linear part + virtio header */
139 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000140
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200141 /* Min single buffer size for mergeable buffers case. */
142 unsigned int min_buf_len;
143
Jason Wang986a4f42012-12-07 07:04:56 +0000144 /* Name of this receive queue: input.$index */
145 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100146
147 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000148};
149
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300150/* Control VQ buffers: protected by the rtnl lock */
151struct control_buf {
152 struct virtio_net_ctrl_hdr hdr;
153 virtio_net_ctrl_ack status;
154 struct virtio_net_ctrl_mq mq;
155 u8 promisc;
156 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300157 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300158 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300159};
160
Jason Wange9d74172012-12-07 07:04:55 +0000161struct virtnet_info {
162 struct virtio_device *vdev;
163 struct virtqueue *cvq;
164 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000165 struct send_queue *sq;
166 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000167 unsigned int status;
168
Jason Wang986a4f42012-12-07 07:04:56 +0000169 /* Max # of queue pairs supported by the device */
170 u16 max_queue_pairs;
171
172 /* # of queue pairs currently used by the driver */
173 u16 curr_queue_pairs;
174
John Fastabend672aafd2016-12-15 12:13:49 -0800175 /* # of XDP queue pairs currently used by the driver */
176 u16 xdp_queue_pairs;
177
Herbert Xu97402b92008-04-18 11:24:27 +0800178 /* I like... big packets and I cannot lie! */
179 bool big_packets;
180
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800181 /* Host will merge rx buffers for big packets (shake it! shake it!) */
182 bool mergeable_rx_bufs;
183
Jason Wang986a4f42012-12-07 07:04:56 +0000184 /* Has control virtqueue */
185 bool has_cvq;
186
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930187 /* Host can handle any s/g split between our header and packet data */
188 bool any_header_sg;
189
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300190 /* Packet virtio header size */
191 u8 hdr_len;
192
Rusty Russell3161e452009-08-26 12:22:32 -0700193 /* Work struct for refilling if we run low on memory. */
194 struct delayed_work refill;
195
Jason Wang586d17c2012-04-11 20:43:52 +0000196 /* Work struct for config space updates */
197 struct work_struct config_work;
198
Jason Wang986a4f42012-12-07 07:04:56 +0000199 /* Does the affinity hint is set for virtqueues? */
200 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000201
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200202 /* CPU hotplug instances for online & dead */
203 struct hlist_node node;
204 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200205
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300206 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100207
208 /* Ethtool settings */
209 u8 duplex;
210 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800211
212 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000213};
214
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000215struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300216 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000217 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300218 * hdr is in a separate sg buffer, and data sg buffer shares same page
219 * with this header sg. This padding makes next sg 16 byte aligned
220 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000221 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300222 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000223};
224
Jason Wang986a4f42012-12-07 07:04:56 +0000225/* Converting between virtqueue no. and kernel tx/rx queue no.
226 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
227 */
228static int vq2txq(struct virtqueue *vq)
229{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000230 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000231}
232
233static int txq2vq(int txq)
234{
235 return txq * 2 + 1;
236}
237
238static int vq2rxq(struct virtqueue *vq)
239{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000240 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000241}
242
243static int rxq2vq(int rxq)
244{
245 return rxq * 2;
246}
247
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300248static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000249{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300250 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000251}
252
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000253/*
254 * private is used to chain pages for big packets, put the whole
255 * most recent used list in the beginning for reuse
256 */
Jason Wange9d74172012-12-07 07:04:55 +0000257static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500258{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000259 struct page *end;
260
Jason Wange9d74172012-12-07 07:04:55 +0000261 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000262 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000263 end->private = (unsigned long)rq->pages;
264 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500265}
266
Jason Wange9d74172012-12-07 07:04:55 +0000267static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500268{
Jason Wange9d74172012-12-07 07:04:55 +0000269 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500270
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000271 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000272 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000273 /* clear private here, it is used to chain pages */
274 p->private = 0;
275 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500276 p = alloc_page(gfp_mask);
277 return p;
278}
279
Willem de Bruijne4e84522017-04-24 13:49:26 -0400280static void virtqueue_napi_schedule(struct napi_struct *napi,
281 struct virtqueue *vq)
282{
283 if (napi_schedule_prep(napi)) {
284 virtqueue_disable_cb(vq);
285 __napi_schedule(napi);
286 }
287}
288
289static void virtqueue_napi_complete(struct napi_struct *napi,
290 struct virtqueue *vq, int processed)
291{
292 int opaque;
293
294 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900295 if (napi_complete_done(napi, processed)) {
296 if (unlikely(virtqueue_poll(vq, opaque)))
297 virtqueue_napi_schedule(napi, vq);
298 } else {
299 virtqueue_disable_cb(vq);
300 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400301}
302
Jason Wange9d74172012-12-07 07:04:55 +0000303static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000304{
Jason Wange9d74172012-12-07 07:04:55 +0000305 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400306 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000307
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500308 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000309 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000310
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400311 if (napi->weight)
312 virtqueue_napi_schedule(napi, vq);
313 else
314 /* We were probably waiting for more output buffers. */
315 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000316}
317
Jason Wang28b39bc2017-07-19 16:54:46 +0800318#define MRG_CTX_HEADER_SHIFT 22
319static void *mergeable_len_to_ctx(unsigned int truesize,
320 unsigned int headroom)
321{
322 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
323}
324
325static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
326{
327 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
328}
329
330static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
331{
332 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
333}
334
Mike Waychison34646452012-01-04 12:52:32 +0000335/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300336static struct sk_buff *page_to_skb(struct virtnet_info *vi,
337 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700338 struct page *page, unsigned int offset,
339 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000340{
341 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300342 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700343 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000344 char *p;
345
Michael Dalton2613af02013-10-28 15:44:18 -0700346 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000347
348 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100349 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000350 if (unlikely(!skb))
351 return NULL;
352
353 hdr = skb_vnet_hdr(skb);
354
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300355 hdr_len = vi->hdr_len;
356 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700357 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300358 else
Michael Dalton2613af02013-10-28 15:44:18 -0700359 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000360
361 memcpy(hdr, p, hdr_len);
362
363 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700364 offset += hdr_padded_len;
365 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000366
367 copy = len;
368 if (copy > skb_tailroom(skb))
369 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200370 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000371
372 len -= copy;
373 offset += copy;
374
Michael Dalton2613af02013-10-28 15:44:18 -0700375 if (vi->mergeable_rx_bufs) {
376 if (len)
377 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
378 else
379 put_page(page);
380 return skb;
381 }
382
Sasha Levine878d782011-09-28 04:40:54 +0000383 /*
384 * Verify that we can indeed put this data into a skb.
385 * This is here to handle cases when the device erroneously
386 * tries to receive more than is possible. This is usually
387 * the case of a broken device.
388 */
389 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000390 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000391 dev_kfree_skb(skb);
392 return NULL;
393 }
Michael Dalton2613af02013-10-28 15:44:18 -0700394 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000395 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700396 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
397 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
398 frag_size, truesize);
399 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000400 page = (struct page *)page->private;
401 offset = 0;
402 }
403
404 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000405 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000406
407 return skb;
408}
409
Jason Wang186b3c92017-09-19 17:42:43 +0800410static void virtnet_xdp_flush(struct net_device *dev)
411{
412 struct virtnet_info *vi = netdev_priv(dev);
413 struct send_queue *sq;
414 unsigned int qp;
415
416 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
417 sq = &vi->sq[qp];
418
419 virtqueue_kick(sq->vq);
420}
421
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200422static int __virtnet_xdp_xmit(struct virtnet_info *vi,
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200423 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800424{
John Fastabend56434a02016-12-15 12:14:13 -0800425 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200426 struct xdp_frame *xdpf_sent;
John Fastabend722d8282017-02-02 19:15:32 -0800427 struct send_queue *sq;
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200428 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800429 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800430 int err;
431
John Fastabend722d8282017-02-02 19:15:32 -0800432 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
433 sq = &vi->sq[qp];
434
John Fastabend56434a02016-12-15 12:14:13 -0800435 /* Free up any pending old buffers before queueing new ones. */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200436 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
Jesper Dangaard Brouer03993092018-04-17 16:46:32 +0200437 xdp_return_frame(xdpf_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800438
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200439 /* virtqueue want to use data area in-front of packet */
440 if (unlikely(xdpf->metasize > 0))
441 return -EOPNOTSUPP;
442
443 if (unlikely(xdpf->headroom < vi->hdr_len))
444 return -EOVERFLOW;
445
446 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
447 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800448 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200449 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800450 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200451 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800452
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200453 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800454
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200455 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100456 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200457 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800458
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200459 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800460}
461
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200462static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_frame *xdpf)
Jason Wang186b3c92017-09-19 17:42:43 +0800463{
464 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100465 struct receive_queue *rq = vi->rq;
466 struct bpf_prog *xdp_prog;
Jason Wang186b3c92017-09-19 17:42:43 +0800467
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100468 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
469 * indicate XDP resources have been successfully allocated.
470 */
471 xdp_prog = rcu_dereference(rq->xdp_prog);
472 if (!xdp_prog)
473 return -ENXIO;
474
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200475 return __virtnet_xdp_xmit(vi, xdpf);
Jason Wang186b3c92017-09-19 17:42:43 +0800476}
477
Jason Wangf6b10202017-02-21 16:46:28 +0800478static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
479{
480 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
481}
482
Jason Wang4941d472017-07-19 16:54:48 +0800483/* We copy the packet for XDP in the following cases:
484 *
485 * 1) Packet is scattered across multiple rx buffers.
486 * 2) Headroom space is insufficient.
487 *
488 * This is inefficient but it's a temporary condition that
489 * we hit right after XDP is enabled and until queue is refilled
490 * with large buffers with sufficient headroom - so it should affect
491 * at most queue size packets.
492 * Afterwards, the conditions to enable
493 * XDP should preclude the underlying device from sending packets
494 * across multiple buffers (num_buf > 1), and we make sure buffers
495 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800496 */
497static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800498 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800499 struct page *p,
500 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800501 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800502 unsigned int *len)
503{
504 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800505
506 if (!page)
507 return NULL;
508
509 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
510 page_off += *len;
511
Jason Wang56a86f82016-12-23 22:37:26 +0800512 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800513 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800514 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800515 void *buf;
516 int off;
517
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200518 buf = virtqueue_get_buf(rq->vq, &buflen);
519 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800520 goto err_buf;
521
John Fastabend72979a62016-12-15 12:14:36 -0800522 p = virt_to_head_page(buf);
523 off = buf - page_address(p);
524
Jason Wang56a86f82016-12-23 22:37:26 +0800525 /* guard against a misconfigured or uncooperative backend that
526 * is sending packet larger than the MTU.
527 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800528 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800529 put_page(p);
530 goto err_buf;
531 }
532
John Fastabend72979a62016-12-15 12:14:36 -0800533 memcpy(page_address(page) + page_off,
534 page_address(p) + off, buflen);
535 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800536 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800537 }
538
John Fastabend2de2f7f2017-02-02 19:16:29 -0800539 /* Headroom does not contribute to packet length */
540 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800541 return page;
542err_buf:
543 __free_pages(page, 0);
544 return NULL;
545}
546
Jason Wang4941d472017-07-19 16:54:48 +0800547static struct sk_buff *receive_small(struct net_device *dev,
548 struct virtnet_info *vi,
549 struct receive_queue *rq,
550 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800551 unsigned int len,
552 bool *xdp_xmit)
Jason Wang4941d472017-07-19 16:54:48 +0800553{
554 struct sk_buff *skb;
555 struct bpf_prog *xdp_prog;
556 unsigned int xdp_headroom = (unsigned long)ctx;
557 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
558 unsigned int headroom = vi->hdr_len + header_offset;
559 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
560 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
561 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100562 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800563 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100564 int err;
565
Jason Wang4941d472017-07-19 16:54:48 +0800566 len -= vi->hdr_len;
567
568 rcu_read_lock();
569 xdp_prog = rcu_dereference(rq->xdp_prog);
570 if (xdp_prog) {
571 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200572 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800573 struct xdp_buff xdp;
574 void *orig_data;
575 u32 act;
576
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100577 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800578 goto err_xdp;
579
580 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
581 int offset = buf - page_address(page) + header_offset;
582 unsigned int tlen = len + vi->hdr_len;
583 u16 num_buf = 1;
584
585 xdp_headroom = virtnet_get_headroom(vi);
586 header_offset = VIRTNET_RX_PAD + xdp_headroom;
587 headroom = vi->hdr_len + header_offset;
588 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
589 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
590 xdp_page = xdp_linearize_page(rq, &num_buf, page,
591 offset, header_offset,
592 &tlen);
593 if (!xdp_page)
594 goto err_xdp;
595
596 buf = page_address(xdp_page);
597 put_page(page);
598 page = xdp_page;
599 }
600
601 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
602 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200603 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800604 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100605 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800606 orig_data = xdp.data;
607 act = bpf_prog_run_xdp(xdp_prog, &xdp);
608
609 switch (act) {
610 case XDP_PASS:
611 /* Recalculate length in case bpf program changed it */
612 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700613 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800614 break;
615 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200616 xdpf = convert_to_xdp_frame(&xdp);
617 if (unlikely(!xdpf))
618 goto err_xdp;
619 err = __virtnet_xdp_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200620 if (unlikely(err)) {
Jason Wang4941d472017-07-19 16:54:48 +0800621 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100622 goto err_xdp;
623 }
624 *xdp_xmit = true;
Jason Wang186b3c92017-09-19 17:42:43 +0800625 rcu_read_unlock();
626 goto xdp_xmit;
627 case XDP_REDIRECT:
628 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100629 if (err)
630 goto err_xdp;
631 *xdp_xmit = true;
Jason Wang4941d472017-07-19 16:54:48 +0800632 rcu_read_unlock();
633 goto xdp_xmit;
634 default:
635 bpf_warn_invalid_xdp_action(act);
636 case XDP_ABORTED:
637 trace_xdp_exception(vi->dev, xdp_prog, act);
638 case XDP_DROP:
639 goto err_xdp;
640 }
641 }
642 rcu_read_unlock();
643
644 skb = build_skb(buf, buflen);
645 if (!skb) {
646 put_page(page);
647 goto err;
648 }
649 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700650 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800651 if (!delta) {
652 buf += header_offset;
653 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
654 } /* keep zeroed vnet hdr since packet was changed by bpf */
655
656err:
657 return skb;
658
659err_xdp:
660 rcu_read_unlock();
661 dev->stats.rx_dropped++;
662 put_page(page);
663xdp_xmit:
664 return NULL;
665}
666
667static struct sk_buff *receive_big(struct net_device *dev,
668 struct virtnet_info *vi,
669 struct receive_queue *rq,
670 void *buf,
671 unsigned int len)
672{
673 struct page *page = buf;
674 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
675
676 if (unlikely(!skb))
677 goto err;
678
679 return skb;
680
681err:
682 dev->stats.rx_dropped++;
683 give_pages(rq, page);
684 return NULL;
685}
686
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200687static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200688 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200689 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200690 void *buf,
691 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800692 unsigned int len,
693 bool *xdp_xmit)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000694{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300695 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
696 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200697 struct page *page = virt_to_head_page(buf);
698 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800699 struct sk_buff *head_skb, *curr_skb;
700 struct bpf_prog *xdp_prog;
701 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800702 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800703 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800704
John Fastabend56434a02016-12-15 12:14:13 -0800705 head_skb = NULL;
706
John Fastabendf600b692016-12-15 12:13:24 -0800707 rcu_read_lock();
708 xdp_prog = rcu_dereference(rq->xdp_prog);
709 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200710 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800711 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800712 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800713 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800714 u32 act;
715
Jason Wang3cc81a92018-03-02 17:29:14 +0800716 /* This happens when rx buffer size is underestimated
717 * or headroom is not enough because of the buffer
718 * was refilled before XDP is set. This should only
719 * happen for the first several packets, so we don't
720 * care much about its performance.
721 */
Jason Wang4941d472017-07-19 16:54:48 +0800722 if (unlikely(num_buf > 1 ||
723 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800724 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800725 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800726 page, offset,
727 VIRTIO_XDP_HEADROOM,
728 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800729 if (!xdp_page)
730 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800731 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800732 } else {
733 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800734 }
735
736 /* Transient failure which in theory could occur if
737 * in-flight packets from before XDP was enabled reach
738 * the receive path after XDP is loaded. In practice I
739 * was not able to create this condition.
740 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800741 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800742 goto err_xdp;
743
John Fastabend2de2f7f2017-02-02 19:16:29 -0800744 /* Allow consuming headroom but reserve enough space to push
745 * the descriptor on if we get an XDP_TX return code.
746 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800747 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800748 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800749 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200750 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800751 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100752 xdp.rxq = &rq->xdp_rxq;
753
John Fastabend0354e4d2017-02-02 19:15:01 -0800754 act = bpf_prog_run_xdp(xdp_prog, &xdp);
755
John Fastabend56434a02016-12-15 12:14:13 -0800756 switch (act) {
757 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800758 /* recalculate offset to account for any header
759 * adjustments. Note other cases do not build an
760 * skb and avoid using offset
761 */
762 offset = xdp.data -
763 page_address(xdp_page) - vi->hdr_len;
764
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700765 /* recalculate len if xdp.data or xdp.data_end were
766 * adjusted
767 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700768 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800769 /* We can only create skb based on xdp_page. */
770 if (unlikely(xdp_page != page)) {
771 rcu_read_unlock();
772 put_page(page);
773 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800774 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800775 return head_skb;
776 }
John Fastabend56434a02016-12-15 12:14:13 -0800777 break;
778 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200779 xdpf = convert_to_xdp_frame(&xdp);
780 if (unlikely(!xdpf))
781 goto err_xdp;
782 err = __virtnet_xdp_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200783 if (unlikely(err)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800784 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100785 if (unlikely(xdp_page != page))
786 put_page(xdp_page);
787 goto err_xdp;
788 }
789 *xdp_xmit = true;
John Fastabend72979a62016-12-15 12:14:36 -0800790 if (unlikely(xdp_page != page))
791 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800792 rcu_read_unlock();
793 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800794 case XDP_REDIRECT:
795 err = xdp_do_redirect(dev, &xdp, xdp_prog);
796 if (err) {
797 if (unlikely(xdp_page != page))
798 put_page(xdp_page);
799 goto err_xdp;
800 }
801 *xdp_xmit = true;
802 if (unlikely(xdp_page != page))
803 goto err_xdp;
804 rcu_read_unlock();
805 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800806 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800807 bpf_warn_invalid_xdp_action(act);
808 case XDP_ABORTED:
809 trace_xdp_exception(vi->dev, xdp_prog, act);
810 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800811 if (unlikely(xdp_page != page))
812 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800813 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800814 }
John Fastabendf600b692016-12-15 12:13:24 -0800815 }
816 rcu_read_unlock();
817
Jason Wang28b39bc2017-07-19 16:54:46 +0800818 truesize = mergeable_ctx_to_truesize(ctx);
819 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300820 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200821 dev->name, len, (unsigned long)ctx);
822 dev->stats.rx_length_errors++;
823 goto err_skb;
824 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800825
John Fastabendf600b692016-12-15 12:13:24 -0800826 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
827 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000828
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200829 if (unlikely(!curr_skb))
830 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000831 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200832 int num_skb_frags;
833
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200834 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800835 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200836 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200837 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300838 virtio16_to_cpu(vi->vdev,
839 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200840 dev->stats.rx_length_errors++;
841 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000842 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200843
844 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800845
846 truesize = mergeable_ctx_to_truesize(ctx);
847 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300848 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200849 dev->name, len, (unsigned long)ctx);
850 dev->stats.rx_length_errors++;
851 goto err_skb;
852 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200853
854 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700855 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
856 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200857
858 if (unlikely(!nskb))
859 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700860 if (curr_skb == head_skb)
861 skb_shinfo(curr_skb)->frag_list = nskb;
862 else
863 curr_skb->next = nskb;
864 curr_skb = nskb;
865 head_skb->truesize += nskb->truesize;
866 num_skb_frags = 0;
867 }
868 if (curr_skb != head_skb) {
869 head_skb->data_len += len;
870 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800871 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700872 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200873 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800874 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
875 put_page(page);
876 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800877 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800878 } else {
879 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800880 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800881 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200882 }
883
Johannes Berg5377d7582015-08-19 09:48:40 +0200884 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200885 return head_skb;
886
John Fastabendf600b692016-12-15 12:13:24 -0800887err_xdp:
888 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200889err_skb:
890 put_page(page);
891 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200892 buf = virtqueue_get_buf(rq->vq, &len);
893 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200894 pr_debug("%s: rx error: %d buffers missing\n",
895 dev->name, num_buf);
896 dev->stats.rx_length_errors++;
897 break;
898 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200899 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200900 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000901 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200902err_buf:
903 dev->stats.rx_dropped++;
904 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800905xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200906 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000907}
908
Jason Wang61845d22017-02-17 11:33:09 +0800909static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Jason Wang186b3c92017-09-19 17:42:43 +0800910 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +1000911{
Jason Wange9d74172012-12-07 07:04:55 +0000912 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000913 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300914 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800915 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000916
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300917 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000918 pr_debug("%s: short packet %i\n", dev->name, len);
919 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800920 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200921 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800922 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800923 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800924 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800925 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800926 }
Jason Wang61845d22017-02-17 11:33:09 +0800927 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000928 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000929
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200930 if (vi->mergeable_rx_bufs)
Jason Wang186b3c92017-09-19 17:42:43 +0800931 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200932 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300933 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200934 else
Jason Wang186b3c92017-09-19 17:42:43 +0800935 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200936
937 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800938 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800939
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000940 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000941
Jason Wang61845d22017-02-17 11:33:09 +0800942 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000943
Mike Rapoporte858fae2016-06-08 16:09:21 +0300944 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000945 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000946
Mike Rapoporte858fae2016-06-08 16:09:21 +0300947 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
948 virtio_is_little_endian(vi->vdev))) {
949 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
950 dev->name, hdr->hdr.gso_type,
951 hdr->hdr.gso_size);
952 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000953 }
954
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300955 skb->protocol = eth_type_trans(skb, dev);
956 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
957 ntohs(skb->protocol), skb->len, skb->pkt_type);
958
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200959 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800960 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000961
962frame_err:
963 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000964 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800965 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000966}
967
Jason Wang192f68c2017-07-19 16:54:47 +0800968/* Unlike mergeable buffers, all buffers are allocated to the
969 * same size, except for the headroom. For this reason we do
970 * not need to use mergeable_len_to_ctx here - it is enough
971 * to store the headroom as the context ignoring the truesize.
972 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300973static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
974 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000975{
Jason Wangf6b10202017-02-21 16:46:28 +0800976 struct page_frag *alloc_frag = &rq->alloc_frag;
977 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800978 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800979 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800980 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000981 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000982
Jason Wangf6b10202017-02-21 16:46:28 +0800983 len = SKB_DATA_ALIGN(len) +
984 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
985 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000986 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800987
Jason Wangf6b10202017-02-21 16:46:28 +0800988 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
989 get_page(alloc_frag->page);
990 alloc_frag->offset += len;
991 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
992 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800993 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000994 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800995 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000996 return err;
997}
998
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300999static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1000 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001001{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001002 struct page *first, *list = NULL;
1003 char *p;
1004 int i, err, offset;
1005
Rusty Russella5835442014-09-11 10:17:36 +09301006 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1007
Jason Wange9d74172012-12-07 07:04:55 +00001008 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001009 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001010 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001011 if (!first) {
1012 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001013 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001014 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001015 }
Jason Wange9d74172012-12-07 07:04:55 +00001016 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001017
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001018 /* chain new page in list head to match sg */
1019 first->private = (unsigned long)list;
1020 list = first;
1021 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001022
Jason Wange9d74172012-12-07 07:04:55 +00001023 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001024 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001025 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001026 return -ENOMEM;
1027 }
1028 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001029
Jason Wange9d74172012-12-07 07:04:55 +00001030 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001031 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1032 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001033
Jason Wange9d74172012-12-07 07:04:55 +00001034 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001035 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001036 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001037
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001038 /* chain first in list head */
1039 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301040 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1041 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001042 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001043 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001044
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001045 return err;
1046}
Herbert Xu97402b92008-04-18 11:24:27 +08001047
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001048static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001049 struct ewma_pkt_len *avg_pkt_len,
1050 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001051{
Michael Daltonab7db912014-01-16 22:23:27 -08001052 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001053 unsigned int len;
1054
Jason Wang3cc81a92018-03-02 17:29:14 +08001055 if (room)
1056 return PAGE_SIZE - room;
1057
1058 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001059 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001060
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001061 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001062}
1063
John Fastabend2de2f7f2017-02-02 19:16:29 -08001064static int add_recvbuf_mergeable(struct virtnet_info *vi,
1065 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001066{
Michael Daltonfb518792014-01-16 22:23:26 -08001067 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001068 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001069 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1070 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001071 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001072 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001073 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001074 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001075
Jason Wang3cc81a92018-03-02 17:29:14 +08001076 /* Extra tailroom is needed to satisfy XDP's assumption. This
1077 * means rx frags coalescing won't work, but consider we've
1078 * disabled GSO for XDP, it won't be a big issue.
1079 */
1080 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1081 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001082 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001083
Michael Daltonfb518792014-01-16 22:23:26 -08001084 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001085 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001086 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001087 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001088 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001089 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001090 /* To avoid internal fragmentation, if there is very likely not
1091 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001092 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001093 */
Michael Daltonfb518792014-01-16 22:23:26 -08001094 len += hole;
1095 alloc_frag->offset += hole;
1096 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001097
Michael Daltonfb518792014-01-16 22:23:26 -08001098 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001099 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001100 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001101 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001102 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001103
1104 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001105}
1106
Rusty Russellb2baed62011-12-29 00:42:38 +00001107/*
1108 * Returns false if we couldn't fill entirely (OOM).
1109 *
1110 * Normally run in the receive path, but can also be run from ndo_open
1111 * before we're receiving packets, or from refill_work which is
1112 * careful to disable receiving (using napi_disable).
1113 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001114static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1115 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001116{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001117 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001118 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001119
Amit Shah0aea51c2009-08-26 14:58:28 +05301120 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001121 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001122 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001123 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001124 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001125 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001126 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001127
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001128 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301129 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001130 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001131 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001132 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001133 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001134}
1135
Rusty Russell18445c42008-02-04 23:49:57 -05001136static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001137{
1138 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001139 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001140
Willem de Bruijne4e84522017-04-24 13:49:26 -04001141 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001142}
1143
Willem de Bruijne4e84522017-04-24 13:49:26 -04001144static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001145{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001146 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001147
1148 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001149 * won't get another interrupt, so process any outstanding packets now.
1150 * Call local_bh_enable after to trigger softIRQ processing.
1151 */
1152 local_bh_disable();
1153 virtqueue_napi_schedule(napi, vq);
1154 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001155}
1156
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001157static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1158 struct virtqueue *vq,
1159 struct napi_struct *napi)
1160{
1161 if (!napi->weight)
1162 return;
1163
1164 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1165 * enable the feature if this is likely affine with the transmit path.
1166 */
1167 if (!vi->affinity_hint_set) {
1168 napi->weight = 0;
1169 return;
1170 }
1171
1172 return virtnet_napi_enable(vq, napi);
1173}
1174
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001175static void virtnet_napi_tx_disable(struct napi_struct *napi)
1176{
1177 if (napi->weight)
1178 napi_disable(napi);
1179}
1180
Rusty Russell3161e452009-08-26 12:22:32 -07001181static void refill_work(struct work_struct *work)
1182{
Jason Wange9d74172012-12-07 07:04:55 +00001183 struct virtnet_info *vi =
1184 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001185 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001186 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001187
Sasha Levin55257d72013-04-29 12:00:08 +09301188 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001189 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001190
Jason Wang986a4f42012-12-07 07:04:56 +00001191 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001192 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001193 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001194
1195 /* In theory, this can happen: if we don't get any buffers in
1196 * we will *never* try to fill again.
1197 */
1198 if (still_empty)
1199 schedule_delayed_work(&vi->refill, HZ/2);
1200 }
Rusty Russell3161e452009-08-26 12:22:32 -07001201}
1202
Jason Wang186b3c92017-09-19 17:42:43 +08001203static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001204{
Jason Wange9d74172012-12-07 07:04:55 +00001205 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001206 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001207 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +10001208
Jason Wang192f68c2017-07-19 16:54:47 +08001209 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001210 void *ctx;
1211
1212 while (received < budget &&
1213 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Jason Wang186b3c92017-09-19 17:42:43 +08001214 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001215 received++;
1216 }
1217 } else {
1218 while (received < budget &&
1219 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang186b3c92017-09-19 17:42:43 +08001220 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001221 received++;
1222 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001223 }
1224
Jason Wangbe121f42014-01-16 14:45:24 +08001225 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001226 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001227 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001228 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001229
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001230 u64_stats_update_begin(&rq->stats.syncp);
1231 rq->stats.bytes += bytes;
1232 rq->stats.packets += received;
1233 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001234
Jason Wang2ffa7592014-07-23 16:33:54 +08001235 return received;
1236}
1237
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001238static void free_old_xmit_skbs(struct send_queue *sq)
1239{
1240 struct sk_buff *skb;
1241 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001242 unsigned int packets = 0;
1243 unsigned int bytes = 0;
1244
1245 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1246 pr_debug("Sent skb %p\n", skb);
1247
1248 bytes += skb->len;
1249 packets++;
1250
Eric Dumazetdadc0732017-08-24 09:02:49 -07001251 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001252 }
1253
1254 /* Avoid overhead when no packets have been processed
1255 * happens when called speculatively from start_xmit.
1256 */
1257 if (!packets)
1258 return;
1259
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001260 u64_stats_update_begin(&sq->stats.syncp);
1261 sq->stats.bytes += bytes;
1262 sq->stats.packets += packets;
1263 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001264}
1265
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001266static void virtnet_poll_cleantx(struct receive_queue *rq)
1267{
1268 struct virtnet_info *vi = rq->vq->vdev->priv;
1269 unsigned int index = vq2rxq(rq->vq);
1270 struct send_queue *sq = &vi->sq[index];
1271 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1272
1273 if (!sq->napi.weight)
1274 return;
1275
1276 if (__netif_tx_trylock(txq)) {
1277 free_old_xmit_skbs(sq);
1278 __netif_tx_unlock(txq);
1279 }
1280
1281 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1282 netif_tx_wake_queue(txq);
1283}
1284
Jason Wang2ffa7592014-07-23 16:33:54 +08001285static int virtnet_poll(struct napi_struct *napi, int budget)
1286{
1287 struct receive_queue *rq =
1288 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001289 struct virtnet_info *vi = rq->vq->vdev->priv;
1290 struct send_queue *sq;
1291 unsigned int received, qp;
Jason Wang186b3c92017-09-19 17:42:43 +08001292 bool xdp_xmit = false;
Jason Wang2ffa7592014-07-23 16:33:54 +08001293
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001294 virtnet_poll_cleantx(rq);
1295
Jason Wang186b3c92017-09-19 17:42:43 +08001296 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001297
Rusty Russell8329d982007-11-19 11:20:43 -05001298 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001299 if (received < budget)
1300 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001301
Jason Wang9267c432018-04-13 14:58:25 +08001302 if (xdp_xmit) {
1303 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs +
1304 smp_processor_id();
1305 sq = &vi->sq[qp];
1306 virtqueue_kick(sq->vq);
Jason Wang186b3c92017-09-19 17:42:43 +08001307 xdp_do_flush_map();
Jason Wang9267c432018-04-13 14:58:25 +08001308 }
Jason Wang186b3c92017-09-19 17:42:43 +08001309
Rusty Russell296f96f2007-10-22 11:03:37 +10001310 return received;
1311}
1312
Jason Wang986a4f42012-12-07 07:04:56 +00001313static int virtnet_open(struct net_device *dev)
1314{
1315 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001316 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001317
Jason Wange4166622013-05-21 20:03:58 +00001318 for (i = 0; i < vi->max_queue_pairs; i++) {
1319 if (i < vi->curr_queue_pairs)
1320 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001321 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001322 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001323
1324 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1325 if (err < 0)
1326 return err;
1327
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001328 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1329 MEM_TYPE_PAGE_SHARED, NULL);
1330 if (err < 0) {
1331 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1332 return err;
1333 }
1334
Willem de Bruijne4e84522017-04-24 13:49:26 -04001335 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001336 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001337 }
1338
1339 return 0;
1340}
1341
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001342static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1343{
1344 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1345 struct virtnet_info *vi = sq->vq->vdev->priv;
1346 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1347
1348 __netif_tx_lock(txq, raw_smp_processor_id());
1349 free_old_xmit_skbs(sq);
1350 __netif_tx_unlock(txq);
1351
1352 virtqueue_napi_complete(napi, sq->vq, 0);
1353
1354 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1355 netif_tx_wake_queue(txq);
1356
1357 return 0;
1358}
1359
Jason Wange9d74172012-12-07 07:04:55 +00001360static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001361{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001362 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001363 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001364 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001365 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001366 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301367 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001368
Johannes Berge1749612008-10-27 15:59:26 -07001369 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301370
1371 can_push = vi->any_header_sg &&
1372 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1373 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1374 /* Even if we can, don't push here yet as this would skew
1375 * csum_start offset below. */
1376 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001377 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301378 else
1379 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001380
Mike Rapoporte858fae2016-06-08 16:09:21 +03001381 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001382 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001383 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001384
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001385 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001386 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001387
Jason Wang547c8902015-08-27 14:53:06 +08001388 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301389 if (can_push) {
1390 __skb_push(skb, hdr_len);
1391 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001392 if (unlikely(num_sg < 0))
1393 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301394 /* Pull header back to avoid skew in tx bytes calculations. */
1395 __skb_pull(skb, hdr_len);
1396 } else {
1397 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001398 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1399 if (unlikely(num_sg < 0))
1400 return num_sg;
1401 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301402 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301403 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001404}
1405
Stephen Hemminger424efe92009-08-31 19:50:51 +00001406static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001407{
1408 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001409 int qnum = skb_get_queue_mapping(skb);
1410 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301411 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001412 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1413 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001414 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001415
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001416 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001417 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001418
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001419 if (use_napi && kick)
1420 virtqueue_enable_cb_delayed(sq->vq);
1421
Jacob Keller074c3582014-06-25 02:37:13 +00001422 /* timestamp packet in software */
1423 skb_tx_timestamp(skb);
1424
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001425 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001426 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001427
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301428 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001429 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301430 dev->stats.tx_fifo_errors++;
1431 if (net_ratelimit())
1432 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001433 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001434 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001435 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001436 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001437 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001438
Rusty Russell48925e32009-09-24 09:59:20 -06001439 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001440 if (!use_napi) {
1441 skb_orphan(skb);
1442 nf_reset(skb);
1443 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001444
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001445 /* If running out of space, stop queue to avoid getting packets that we
1446 * are then unable to transmit.
1447 * An alternative would be to force queuing layer to requeue the skb by
1448 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1449 * returned in a normal path of operation: it means that driver is not
1450 * maintaining the TX queue stop/start state properly, and causes
1451 * the stack to do a non-trivial amount of useless work.
1452 * Since most packets only take 1 or 2 ring slots, stopping the queue
1453 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001454 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001455 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001456 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001457 if (!use_napi &&
1458 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001459 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001460 free_old_xmit_skbs(sq);
1461 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001462 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001463 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001464 }
1465 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001466 }
Rusty Russell48925e32009-09-24 09:59:20 -06001467
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001468 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001469 virtqueue_kick(sq->vq);
1470
Rusty Russell48925e32009-09-24 09:59:20 -06001471 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001472}
1473
Amos Kong40cbfc32013-01-21 01:17:21 +00001474/*
1475 * Send command via the control virtqueue and check status. Commands
1476 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001477 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001478 */
1479static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001480 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001481{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301482 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001483 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001484
1485 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301486 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001487
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001488 vi->ctrl->status = ~0;
1489 vi->ctrl->hdr.class = class;
1490 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301491 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001492 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301493 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001494
Rusty Russellf7bc9592013-03-20 15:44:28 +10301495 if (out)
1496 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001497
Rusty Russellf7bc9592013-03-20 15:44:28 +10301498 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001499 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001500 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001501
stephen hemmingerd24bae32013-12-09 16:17:40 -08001502 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301503 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001504
Heinz Graalfs67975902013-10-29 09:40:02 +10301505 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001506 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001507
1508 /* Spin for a response, the kick causes an ioport write, trapping
1509 * into the hypervisor, so the request should be handled immediately.
1510 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301511 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1512 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001513 cpu_relax();
1514
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001515 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001516}
1517
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001518static int virtnet_set_mac_address(struct net_device *dev, void *p)
1519{
1520 struct virtnet_info *vi = netdev_priv(dev);
1521 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001522 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001523 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001524 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001525
Shyam Saini801822d2016-12-24 00:44:58 +05301526 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001527 if (!addr)
1528 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001529
1530 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001531 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001532 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001533
Amos Kong7e58d5a2013-01-21 01:17:23 +00001534 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1535 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1536 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001537 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001538 dev_warn(&vdev->dev,
1539 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001540 ret = -EINVAL;
1541 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001542 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001543 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1544 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301545 unsigned int i;
1546
1547 /* Naturally, this has an atomicity problem. */
1548 for (i = 0; i < dev->addr_len; i++)
1549 virtio_cwrite8(vdev,
1550 offsetof(struct virtio_net_config, mac) +
1551 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001552 }
1553
1554 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001555 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001556
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001557out:
1558 kfree(addr);
1559 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001560}
1561
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001562static void virtnet_stats(struct net_device *dev,
1563 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001564{
1565 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001566 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001567 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001568
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001569 for (i = 0; i < vi->max_queue_pairs; i++) {
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001570 u64 tpackets, tbytes, rpackets, rbytes;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001571 struct receive_queue *rq = &vi->rq[i];
1572 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001573
1574 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001575 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1576 tpackets = sq->stats.packets;
1577 tbytes = sq->stats.bytes;
1578 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001579
1580 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001581 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1582 rpackets = rq->stats.packets;
1583 rbytes = rq->stats.bytes;
1584 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001585
1586 tot->rx_packets += rpackets;
1587 tot->tx_packets += tpackets;
1588 tot->rx_bytes += rbytes;
1589 tot->tx_bytes += tbytes;
1590 }
1591
1592 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001593 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001594 tot->rx_dropped = dev->stats.rx_dropped;
1595 tot->rx_length_errors = dev->stats.rx_length_errors;
1596 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001597}
1598
Amit Shahda74e892008-02-29 16:24:50 +05301599#ifdef CONFIG_NET_POLL_CONTROLLER
1600static void virtnet_netpoll(struct net_device *dev)
1601{
1602 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001603 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301604
Jason Wang986a4f42012-12-07 07:04:56 +00001605 for (i = 0; i < vi->curr_queue_pairs; i++)
1606 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301607}
1608#endif
1609
Jason Wang586d17c2012-04-11 20:43:52 +00001610static void virtnet_ack_link_announce(struct virtnet_info *vi)
1611{
1612 rtnl_lock();
1613 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001614 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001615 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1616 rtnl_unlock();
1617}
1618
John Fastabend473153292017-02-02 19:14:32 -08001619static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001620{
1621 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001622 struct net_device *dev = vi->dev;
1623
1624 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1625 return 0;
1626
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001627 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1628 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001629
1630 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001631 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001632 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1633 queue_pairs);
1634 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301635 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001636 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001637 /* virtnet_open() will refill when device is going to up. */
1638 if (dev->flags & IFF_UP)
1639 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301640 }
Jason Wang986a4f42012-12-07 07:04:56 +00001641
1642 return 0;
1643}
1644
John Fastabend473153292017-02-02 19:14:32 -08001645static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1646{
1647 int err;
1648
1649 rtnl_lock();
1650 err = _virtnet_set_queues(vi, queue_pairs);
1651 rtnl_unlock();
1652 return err;
1653}
1654
Rusty Russell296f96f2007-10-22 11:03:37 +10001655static int virtnet_close(struct net_device *dev)
1656{
1657 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001658 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001659
Rusty Russellb2baed62011-12-29 00:42:38 +00001660 /* Make sure refill_work doesn't re-enable napi! */
1661 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001662
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001663 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001664 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001665 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001666 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001667 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001668
Rusty Russell296f96f2007-10-22 11:03:37 +10001669 return 0;
1670}
1671
Alex Williamson2af76982009-02-04 09:02:40 +00001672static void virtnet_set_rx_mode(struct net_device *dev)
1673{
1674 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001675 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001676 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001677 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001678 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001679 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001680 void *buf;
1681 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001682
stephen hemminger788a8b62013-12-09 16:18:45 -08001683 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001684 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1685 return;
1686
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001687 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1688 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001689
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001690 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001691
1692 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001693 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001694 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001695 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001696
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001697 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001698
1699 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001700 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001701 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001702 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001703
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001704 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001705 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001706 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001707 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1708 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1709 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001710 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001711 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001712
Alex Williamson23e258e2009-05-01 17:27:56 +00001713 sg_init_table(sg, 2);
1714
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001715 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001716 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001717 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001718 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001719 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001720
1721 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001722 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001723
1724 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001725 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001726
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001727 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001728 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001729 netdev_for_each_mc_addr(ha, dev)
1730 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001731
1732 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001733 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001734
1735 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001736 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001737 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001738
1739 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001740}
1741
Patrick McHardy80d5c362013-04-19 02:04:28 +00001742static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1743 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001744{
1745 struct virtnet_info *vi = netdev_priv(dev);
1746 struct scatterlist sg;
1747
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001748 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001749 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001750
1751 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001752 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001753 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001754 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001755}
1756
Patrick McHardy80d5c362013-04-19 02:04:28 +00001757static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1758 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001759{
1760 struct virtnet_info *vi = netdev_priv(dev);
1761 struct scatterlist sg;
1762
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001763 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001764 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001765
1766 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001767 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001768 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001769 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001770}
1771
Wanlong Gao8898c212013-01-24 23:51:30 +00001772static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001773{
1774 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001775
1776 if (vi->affinity_hint_set) {
1777 for (i = 0; i < vi->max_queue_pairs; i++) {
1778 virtqueue_set_affinity(vi->rq[i].vq, -1);
1779 virtqueue_set_affinity(vi->sq[i].vq, -1);
1780 }
1781
1782 vi->affinity_hint_set = false;
1783 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001784}
1785
1786static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001787{
1788 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001789 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001790
1791 /* In multiqueue mode, when the number of cpu is equal to the number of
1792 * queue pairs, we let the queue pairs to be private to one cpu by
1793 * setting the affinity hint to eliminate the contention.
1794 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001795 if (vi->curr_queue_pairs == 1 ||
1796 vi->max_queue_pairs != num_online_cpus()) {
1797 virtnet_clean_affinity(vi, -1);
1798 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001799 }
1800
Wanlong Gao8898c212013-01-24 23:51:30 +00001801 i = 0;
1802 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001803 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1804 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001805 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001806 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001807 }
1808
Wanlong Gao8898c212013-01-24 23:51:30 +00001809 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001810}
1811
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001812static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001813{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001814 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1815 node);
1816 virtnet_set_affinity(vi);
1817 return 0;
1818}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001819
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001820static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1821{
1822 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1823 node_dead);
1824 virtnet_set_affinity(vi);
1825 return 0;
1826}
Jason Wang3ab098d2013-10-15 11:18:58 +08001827
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001828static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1829{
1830 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1831 node);
1832
1833 virtnet_clean_affinity(vi, cpu);
1834 return 0;
1835}
1836
1837static enum cpuhp_state virtionet_online;
1838
1839static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1840{
1841 int ret;
1842
1843 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1844 if (ret)
1845 return ret;
1846 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1847 &vi->node_dead);
1848 if (!ret)
1849 return ret;
1850 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1851 return ret;
1852}
1853
1854static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1855{
1856 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1857 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1858 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001859}
1860
Rick Jones8f9f4662011-10-19 08:10:59 +00001861static void virtnet_get_ringparam(struct net_device *dev,
1862 struct ethtool_ringparam *ring)
1863{
1864 struct virtnet_info *vi = netdev_priv(dev);
1865
Jason Wang986a4f42012-12-07 07:04:56 +00001866 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1867 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001868 ring->rx_pending = ring->rx_max_pending;
1869 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001870}
1871
Rick Jones66846042011-11-14 14:17:08 +00001872
1873static void virtnet_get_drvinfo(struct net_device *dev,
1874 struct ethtool_drvinfo *info)
1875{
1876 struct virtnet_info *vi = netdev_priv(dev);
1877 struct virtio_device *vdev = vi->vdev;
1878
1879 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1880 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1881 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1882
1883}
1884
Jason Wangd73bcd22012-12-07 07:04:57 +00001885/* TODO: Eliminate OOO packets during switching */
1886static int virtnet_set_channels(struct net_device *dev,
1887 struct ethtool_channels *channels)
1888{
1889 struct virtnet_info *vi = netdev_priv(dev);
1890 u16 queue_pairs = channels->combined_count;
1891 int err;
1892
1893 /* We don't support separate rx/tx channels.
1894 * We don't allow setting 'other' channels.
1895 */
1896 if (channels->rx_count || channels->tx_count || channels->other_count)
1897 return -EINVAL;
1898
Amos Kongc18e9cd2014-04-18 13:45:41 +08001899 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001900 return -EINVAL;
1901
John Fastabendf600b692016-12-15 12:13:24 -08001902 /* For now we don't support modifying channels while XDP is loaded
1903 * also when XDP is loaded all RX queues have XDP programs so we only
1904 * need to check a single RX queue.
1905 */
1906 if (vi->rq[0].xdp_prog)
1907 return -EINVAL;
1908
Wanlong Gao47be2472013-01-24 23:51:29 +00001909 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001910 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001911 if (!err) {
1912 netif_set_real_num_tx_queues(dev, queue_pairs);
1913 netif_set_real_num_rx_queues(dev, queue_pairs);
1914
Wanlong Gao8898c212013-01-24 23:51:30 +00001915 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001916 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001917 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001918
1919 return err;
1920}
1921
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001922static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1923{
1924 struct virtnet_info *vi = netdev_priv(dev);
1925 char *p = (char *)data;
1926 unsigned int i, j;
1927
1928 switch (stringset) {
1929 case ETH_SS_STATS:
1930 for (i = 0; i < vi->curr_queue_pairs; i++) {
1931 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1932 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
1933 i, virtnet_rq_stats_desc[j].desc);
1934 p += ETH_GSTRING_LEN;
1935 }
1936 }
1937
1938 for (i = 0; i < vi->curr_queue_pairs; i++) {
1939 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1940 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
1941 i, virtnet_sq_stats_desc[j].desc);
1942 p += ETH_GSTRING_LEN;
1943 }
1944 }
1945 break;
1946 }
1947}
1948
1949static int virtnet_get_sset_count(struct net_device *dev, int sset)
1950{
1951 struct virtnet_info *vi = netdev_priv(dev);
1952
1953 switch (sset) {
1954 case ETH_SS_STATS:
1955 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
1956 VIRTNET_SQ_STATS_LEN);
1957 default:
1958 return -EOPNOTSUPP;
1959 }
1960}
1961
1962static void virtnet_get_ethtool_stats(struct net_device *dev,
1963 struct ethtool_stats *stats, u64 *data)
1964{
1965 struct virtnet_info *vi = netdev_priv(dev);
1966 unsigned int idx = 0, start, i, j;
1967 const u8 *stats_base;
1968 size_t offset;
1969
1970 for (i = 0; i < vi->curr_queue_pairs; i++) {
1971 struct receive_queue *rq = &vi->rq[i];
1972
1973 stats_base = (u8 *)&rq->stats;
1974 do {
1975 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1976 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1977 offset = virtnet_rq_stats_desc[j].offset;
1978 data[idx + j] = *(u64 *)(stats_base + offset);
1979 }
1980 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
1981 idx += VIRTNET_RQ_STATS_LEN;
1982 }
1983
1984 for (i = 0; i < vi->curr_queue_pairs; i++) {
1985 struct send_queue *sq = &vi->sq[i];
1986
1987 stats_base = (u8 *)&sq->stats;
1988 do {
1989 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1990 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1991 offset = virtnet_sq_stats_desc[j].offset;
1992 data[idx + j] = *(u64 *)(stats_base + offset);
1993 }
1994 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
1995 idx += VIRTNET_SQ_STATS_LEN;
1996 }
1997}
1998
Jason Wangd73bcd22012-12-07 07:04:57 +00001999static void virtnet_get_channels(struct net_device *dev,
2000 struct ethtool_channels *channels)
2001{
2002 struct virtnet_info *vi = netdev_priv(dev);
2003
2004 channels->combined_count = vi->curr_queue_pairs;
2005 channels->max_combined = vi->max_queue_pairs;
2006 channels->max_other = 0;
2007 channels->rx_count = 0;
2008 channels->tx_count = 0;
2009 channels->other_count = 0;
2010}
2011
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002012/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002013static bool
2014virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002015{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002016 struct ethtool_link_ksettings diff1 = *cmd;
2017 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002018
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002019 /* cmd is always set so we need to clear it, validate the port type
2020 * and also without autonegotiation we can ignore advertising
2021 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002022 diff1.base.speed = 0;
2023 diff2.base.port = PORT_OTHER;
2024 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2025 diff1.base.duplex = 0;
2026 diff1.base.cmd = 0;
2027 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002028
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002029 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2030 bitmap_empty(diff1.link_modes.supported,
2031 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2032 bitmap_empty(diff1.link_modes.advertising,
2033 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2034 bitmap_empty(diff1.link_modes.lp_advertising,
2035 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002036}
2037
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002038static int virtnet_set_link_ksettings(struct net_device *dev,
2039 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002040{
2041 struct virtnet_info *vi = netdev_priv(dev);
2042 u32 speed;
2043
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002044 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002045 /* don't allow custom speed and duplex */
2046 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002047 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002048 !virtnet_validate_ethtool_cmd(cmd))
2049 return -EINVAL;
2050 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002051 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002052
2053 return 0;
2054}
2055
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002056static int virtnet_get_link_ksettings(struct net_device *dev,
2057 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002058{
2059 struct virtnet_info *vi = netdev_priv(dev);
2060
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002061 cmd->base.speed = vi->speed;
2062 cmd->base.duplex = vi->duplex;
2063 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002064
2065 return 0;
2066}
2067
2068static void virtnet_init_settings(struct net_device *dev)
2069{
2070 struct virtnet_info *vi = netdev_priv(dev);
2071
2072 vi->speed = SPEED_UNKNOWN;
2073 vi->duplex = DUPLEX_UNKNOWN;
2074}
2075
Jason Baronfaa9b392018-01-05 17:44:54 -05002076static void virtnet_update_settings(struct virtnet_info *vi)
2077{
2078 u32 speed;
2079 u8 duplex;
2080
2081 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2082 return;
2083
2084 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2085 speed));
2086 if (ethtool_validate_speed(speed))
2087 vi->speed = speed;
2088 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2089 duplex));
2090 if (ethtool_validate_duplex(duplex))
2091 vi->duplex = duplex;
2092}
2093
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002094static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002095 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002096 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002097 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002098 .get_strings = virtnet_get_strings,
2099 .get_sset_count = virtnet_get_sset_count,
2100 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002101 .set_channels = virtnet_set_channels,
2102 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002103 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002104 .get_link_ksettings = virtnet_get_link_ksettings,
2105 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002106};
2107
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002108static void virtnet_freeze_down(struct virtio_device *vdev)
2109{
2110 struct virtnet_info *vi = vdev->priv;
2111 int i;
2112
2113 /* Make sure no work handler is accessing the device */
2114 flush_work(&vi->config_work);
2115
2116 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08002117 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002118 cancel_delayed_work_sync(&vi->refill);
2119
2120 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002121 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002122 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002123 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002124 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002125 }
2126}
2127
2128static int init_vqs(struct virtnet_info *vi);
2129
2130static int virtnet_restore_up(struct virtio_device *vdev)
2131{
2132 struct virtnet_info *vi = vdev->priv;
2133 int err, i;
2134
2135 err = init_vqs(vi);
2136 if (err)
2137 return err;
2138
2139 virtio_device_ready(vdev);
2140
2141 if (netif_running(vi->dev)) {
2142 for (i = 0; i < vi->curr_queue_pairs; i++)
2143 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2144 schedule_delayed_work(&vi->refill, 0);
2145
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002146 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002147 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002148 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2149 &vi->sq[i].napi);
2150 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002151 }
2152
2153 netif_device_attach(vi->dev);
2154 return err;
2155}
2156
Jason Wang3f935222017-07-19 16:54:49 +08002157static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2158{
2159 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002160 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002161
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002162 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002163
2164 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2165 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2166 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2167 return -EINVAL;
2168 }
2169
2170 return 0;
2171}
2172
2173static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2174{
2175 u64 offloads = 0;
2176
2177 if (!vi->guest_offloads)
2178 return 0;
2179
2180 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2181 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2182
2183 return virtnet_set_guest_offloads(vi, offloads);
2184}
2185
2186static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2187{
2188 u64 offloads = vi->guest_offloads;
2189
2190 if (!vi->guest_offloads)
2191 return 0;
2192 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2193 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2194
2195 return virtnet_set_guest_offloads(vi, offloads);
2196}
2197
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002198static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2199 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002200{
2201 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2202 struct virtnet_info *vi = netdev_priv(dev);
2203 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002204 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002205 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002206
Jason Wang3f935222017-07-19 16:54:49 +08002207 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2208 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2209 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2210 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2211 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002212 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 -08002213 return -EOPNOTSUPP;
2214 }
2215
2216 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002217 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002218 return -EINVAL;
2219 }
2220
2221 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002222 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002223 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2224 return -EINVAL;
2225 }
2226
John Fastabend672aafd2016-12-15 12:13:49 -08002227 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2228 if (prog)
2229 xdp_qp = nr_cpu_ids;
2230
2231 /* XDP requires extra queues for XDP_TX */
2232 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002233 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002234 netdev_warn(dev, "request %i queues but max is %i\n",
2235 curr_qp + xdp_qp, vi->max_queue_pairs);
2236 return -ENOMEM;
2237 }
2238
John Fastabend2de2f7f2017-02-02 19:16:29 -08002239 if (prog) {
2240 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2241 if (IS_ERR(prog))
2242 return PTR_ERR(prog);
2243 }
2244
Jason Wang4941d472017-07-19 16:54:48 +08002245 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002246 if (netif_running(dev))
2247 for (i = 0; i < vi->max_queue_pairs; i++)
2248 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002249
John Fastabend672aafd2016-12-15 12:13:49 -08002250 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002251 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2252 if (err)
2253 goto err;
2254 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002255
John Fastabendf600b692016-12-15 12:13:24 -08002256 for (i = 0; i < vi->max_queue_pairs; i++) {
2257 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2258 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002259 if (i == 0) {
2260 if (!old_prog)
2261 virtnet_clear_guest_offloads(vi);
2262 if (!prog)
2263 virtnet_restore_guest_offloads(vi);
2264 }
John Fastabendf600b692016-12-15 12:13:24 -08002265 if (old_prog)
2266 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002267 if (netif_running(dev))
2268 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002269 }
2270
2271 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002272
Jason Wang4941d472017-07-19 16:54:48 +08002273err:
2274 for (i = 0; i < vi->max_queue_pairs; i++)
2275 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002276 if (prog)
2277 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2278 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002279}
2280
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002281static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002282{
2283 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002284 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002285 int i;
2286
2287 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002288 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2289 if (xdp_prog)
2290 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002291 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002292 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002293}
2294
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002295static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002296{
2297 switch (xdp->command) {
2298 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002299 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002300 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002301 xdp->prog_id = virtnet_xdp_query(dev);
2302 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002303 return 0;
2304 default:
2305 return -EINVAL;
2306 }
2307}
2308
Stephen Hemminger76288b42009-01-06 10:44:22 -08002309static const struct net_device_ops virtnet_netdev = {
2310 .ndo_open = virtnet_open,
2311 .ndo_stop = virtnet_close,
2312 .ndo_start_xmit = start_xmit,
2313 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002314 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002315 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002316 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002317 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2318 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002319#ifdef CONFIG_NET_POLL_CONTROLLER
2320 .ndo_poll_controller = virtnet_netpoll,
2321#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002322 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002323 .ndo_xdp_xmit = virtnet_xdp_xmit,
2324 .ndo_xdp_flush = virtnet_xdp_flush,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002325 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002326};
2327
Jason Wang586d17c2012-04-11 20:43:52 +00002328static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002329{
Jason Wang586d17c2012-04-11 20:43:52 +00002330 struct virtnet_info *vi =
2331 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002332 u16 v;
2333
Rusty Russell855e0c52013-10-14 18:11:51 +10302334 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2335 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302336 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002337
2338 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002339 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002340 virtnet_ack_link_announce(vi);
2341 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002342
2343 /* Ignore unknown (future) status bits */
2344 v &= VIRTIO_NET_S_LINK_UP;
2345
2346 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302347 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002348
2349 vi->status = v;
2350
2351 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002352 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002353 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002354 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002355 } else {
2356 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002357 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002358 }
2359}
2360
2361static void virtnet_config_changed(struct virtio_device *vdev)
2362{
2363 struct virtnet_info *vi = vdev->priv;
2364
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002365 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002366}
2367
Jason Wang986a4f42012-12-07 07:04:56 +00002368static void virtnet_free_queues(struct virtnet_info *vi)
2369{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002370 int i;
2371
Jason Wangab3971b2015-03-12 13:57:44 +08002372 for (i = 0; i < vi->max_queue_pairs; i++) {
2373 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002374 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002375 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002376 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002377
Eric Dumazet963abe52016-11-15 22:24:12 -08002378 /* We called napi_hash_del() before netif_napi_del(),
2379 * we need to respect an RCU grace period before freeing vi->rq
2380 */
2381 synchronize_net();
2382
Jason Wang986a4f42012-12-07 07:04:56 +00002383 kfree(vi->rq);
2384 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002385 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002386}
2387
John Fastabend473153292017-02-02 19:14:32 -08002388static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002389{
John Fastabendf600b692016-12-15 12:13:24 -08002390 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002391 int i;
2392
2393 for (i = 0; i < vi->max_queue_pairs; i++) {
2394 while (vi->rq[i].pages)
2395 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002396
2397 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2398 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2399 if (old_prog)
2400 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002401 }
John Fastabend473153292017-02-02 19:14:32 -08002402}
2403
2404static void free_receive_bufs(struct virtnet_info *vi)
2405{
2406 rtnl_lock();
2407 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002408 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002409}
2410
Michael Daltonfb518792014-01-16 22:23:26 -08002411static void free_receive_page_frags(struct virtnet_info *vi)
2412{
2413 int i;
2414 for (i = 0; i < vi->max_queue_pairs; i++)
2415 if (vi->rq[i].alloc_frag.page)
2416 put_page(vi->rq[i].alloc_frag.page);
2417}
2418
John Fastabendb68df012017-01-25 18:22:48 -08002419static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002420{
2421 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2422 return false;
2423 else if (q < vi->curr_queue_pairs)
2424 return true;
2425 else
2426 return false;
2427}
2428
Jason Wang986a4f42012-12-07 07:04:56 +00002429static void free_unused_bufs(struct virtnet_info *vi)
2430{
2431 void *buf;
2432 int i;
2433
2434 for (i = 0; i < vi->max_queue_pairs; i++) {
2435 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002436 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002437 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002438 dev_kfree_skb(buf);
2439 else
2440 put_page(virt_to_head_page(buf));
2441 }
Jason Wang986a4f42012-12-07 07:04:56 +00002442 }
2443
2444 for (i = 0; i < vi->max_queue_pairs; i++) {
2445 struct virtqueue *vq = vi->rq[i].vq;
2446
2447 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002448 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002449 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002450 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002451 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002452 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002453 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002454 }
Jason Wang986a4f42012-12-07 07:04:56 +00002455 }
Jason Wang986a4f42012-12-07 07:04:56 +00002456 }
2457}
2458
Jason Wange9d74172012-12-07 07:04:55 +00002459static void virtnet_del_vqs(struct virtnet_info *vi)
2460{
2461 struct virtio_device *vdev = vi->vdev;
2462
Wanlong Gao8898c212013-01-24 23:51:30 +00002463 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002464
Jason Wange9d74172012-12-07 07:04:55 +00002465 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002466
2467 virtnet_free_queues(vi);
2468}
2469
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002470/* How large should a single buffer be so a queue full of these can fit at
2471 * least one full packet?
2472 * Logic below assumes the mergeable buffer header is used.
2473 */
2474static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2475{
2476 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2477 unsigned int rq_size = virtqueue_get_vring_size(vq);
2478 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2479 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2480 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2481
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002482 return max(max(min_buf_len, hdr_len) - hdr_len,
2483 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002484}
2485
Jason Wang986a4f42012-12-07 07:04:56 +00002486static int virtnet_find_vqs(struct virtnet_info *vi)
2487{
2488 vq_callback_t **callbacks;
2489 struct virtqueue **vqs;
2490 int ret = -ENOMEM;
2491 int i, total_vqs;
2492 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002493 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002494
2495 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2496 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2497 * possible control vq.
2498 */
2499 total_vqs = vi->max_queue_pairs * 2 +
2500 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2501
2502 /* Allocate space for find_vqs parameters */
2503 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2504 if (!vqs)
2505 goto err_vq;
2506 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2507 if (!callbacks)
2508 goto err_callback;
2509 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2510 if (!names)
2511 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002512 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002513 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2514 if (!ctx)
2515 goto err_ctx;
2516 } else {
2517 ctx = NULL;
2518 }
Jason Wang986a4f42012-12-07 07:04:56 +00002519
2520 /* Parameters for control virtqueue, if any */
2521 if (vi->has_cvq) {
2522 callbacks[total_vqs - 1] = NULL;
2523 names[total_vqs - 1] = "control";
2524 }
2525
2526 /* Allocate/initialize parameters for send/receive virtqueues */
2527 for (i = 0; i < vi->max_queue_pairs; i++) {
2528 callbacks[rxq2vq(i)] = skb_recv_done;
2529 callbacks[txq2vq(i)] = skb_xmit_done;
2530 sprintf(vi->rq[i].name, "input.%d", i);
2531 sprintf(vi->sq[i].name, "output.%d", i);
2532 names[rxq2vq(i)] = vi->rq[i].name;
2533 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002534 if (ctx)
2535 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002536 }
2537
2538 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002539 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002540 if (ret)
2541 goto err_find;
2542
2543 if (vi->has_cvq) {
2544 vi->cvq = vqs[total_vqs - 1];
2545 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002546 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002547 }
2548
2549 for (i = 0; i < vi->max_queue_pairs; i++) {
2550 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002551 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002552 vi->sq[i].vq = vqs[txq2vq(i)];
2553 }
2554
2555 kfree(names);
2556 kfree(callbacks);
2557 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002558 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002559
2560 return 0;
2561
2562err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002563 kfree(ctx);
2564err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002565 kfree(names);
2566err_names:
2567 kfree(callbacks);
2568err_callback:
2569 kfree(vqs);
2570err_vq:
2571 return ret;
2572}
2573
2574static int virtnet_alloc_queues(struct virtnet_info *vi)
2575{
2576 int i;
2577
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002578 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2579 if (!vi->ctrl)
2580 goto err_ctrl;
Jason Wang986a4f42012-12-07 07:04:56 +00002581 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2582 if (!vi->sq)
2583 goto err_sq;
2584 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002585 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002586 goto err_rq;
2587
2588 INIT_DELAYED_WORK(&vi->refill, refill_work);
2589 for (i = 0; i < vi->max_queue_pairs; i++) {
2590 vi->rq[i].pages = NULL;
2591 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2592 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002593 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2594 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002595
2596 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002597 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002598 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002599
2600 u64_stats_init(&vi->rq[i].stats.syncp);
2601 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002602 }
2603
2604 return 0;
2605
2606err_rq:
2607 kfree(vi->sq);
2608err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002609 kfree(vi->ctrl);
2610err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002611 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002612}
2613
Amit Shah3f9c10b2011-12-22 16:58:31 +05302614static int init_vqs(struct virtnet_info *vi)
2615{
Jason Wang986a4f42012-12-07 07:04:56 +00002616 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302617
Jason Wang986a4f42012-12-07 07:04:56 +00002618 /* Allocate send & receive queues */
2619 ret = virtnet_alloc_queues(vi);
2620 if (ret)
2621 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302622
Jason Wang986a4f42012-12-07 07:04:56 +00002623 ret = virtnet_find_vqs(vi);
2624 if (ret)
2625 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302626
Wanlong Gao47be2472013-01-24 23:51:29 +00002627 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002628 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002629 put_online_cpus();
2630
Amit Shah3f9c10b2011-12-22 16:58:31 +05302631 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002632
2633err_free:
2634 virtnet_free_queues(vi);
2635err:
2636 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302637}
2638
Michael Daltonfbf28d72014-01-16 22:23:30 -08002639#ifdef CONFIG_SYSFS
2640static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002641 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002642{
2643 struct virtnet_info *vi = netdev_priv(queue->dev);
2644 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002645 unsigned int headroom = virtnet_get_headroom(vi);
2646 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002647 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002648
2649 BUG_ON(queue_index >= vi->max_queue_pairs);
2650 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002651 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002652 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2653 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002654}
2655
2656static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2657 __ATTR_RO(mergeable_rx_buffer_size);
2658
2659static struct attribute *virtio_net_mrg_rx_attrs[] = {
2660 &mergeable_rx_buffer_size_attribute.attr,
2661 NULL
2662};
2663
2664static const struct attribute_group virtio_net_mrg_rx_group = {
2665 .name = "virtio_net",
2666 .attrs = virtio_net_mrg_rx_attrs
2667};
2668#endif
2669
Jason Wang892d6eb2014-11-20 17:03:05 +08002670static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2671 unsigned int fbit,
2672 const char *fname, const char *dname)
2673{
2674 if (!virtio_has_feature(vdev, fbit))
2675 return false;
2676
2677 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2678 fname, dname);
2679
2680 return true;
2681}
2682
2683#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2684 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2685
2686static bool virtnet_validate_features(struct virtio_device *vdev)
2687{
2688 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2689 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2690 "VIRTIO_NET_F_CTRL_VQ") ||
2691 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2692 "VIRTIO_NET_F_CTRL_VQ") ||
2693 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2694 "VIRTIO_NET_F_CTRL_VQ") ||
2695 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2696 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2697 "VIRTIO_NET_F_CTRL_VQ"))) {
2698 return false;
2699 }
2700
2701 return true;
2702}
2703
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002704#define MIN_MTU ETH_MIN_MTU
2705#define MAX_MTU ETH_MAX_MTU
2706
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002707static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002708{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002709 if (!vdev->config->get) {
2710 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2711 __func__);
2712 return -EINVAL;
2713 }
2714
Jason Wang892d6eb2014-11-20 17:03:05 +08002715 if (!virtnet_validate_features(vdev))
2716 return -EINVAL;
2717
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002718 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2719 int mtu = virtio_cread16(vdev,
2720 offsetof(struct virtio_net_config,
2721 mtu));
2722 if (mtu < MIN_MTU)
2723 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2724 }
2725
2726 return 0;
2727}
2728
2729static int virtnet_probe(struct virtio_device *vdev)
2730{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002731 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002732 struct net_device *dev;
2733 struct virtnet_info *vi;
2734 u16 max_queue_pairs;
2735 int mtu;
2736
Jason Wang986a4f42012-12-07 07:04:56 +00002737 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302738 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2739 struct virtio_net_config,
2740 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002741
2742 /* We need at least 2 queue's */
2743 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2744 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2745 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2746 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002747
2748 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002749 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002750 if (!dev)
2751 return -ENOMEM;
2752
2753 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002754 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002755 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002756 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002757
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002758 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002759 SET_NETDEV_DEV(dev, &vdev->dev);
2760
2761 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002762 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002763 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002764 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002765 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002766 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002767
2768 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002769 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002770 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2771 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002772 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002773 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2774 dev->hw_features |= NETIF_F_TSO;
2775 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2776 dev->hw_features |= NETIF_F_TSO6;
2777 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2778 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002779
Jason Wang41f2f122014-12-24 11:03:52 +08002780 dev->features |= NETIF_F_GSO_ROBUST;
2781
Michał Mirosław98e778c2011-03-31 01:01:35 +00002782 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002783 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002784 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002785 }
Thomas Huth4f491292013-08-27 17:09:02 +02002786 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2787 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002788
Jason Wang4fda8302013-04-10 23:32:21 +00002789 dev->vlan_features = dev->features;
2790
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002791 /* MTU range: 68 - 65535 */
2792 dev->min_mtu = MIN_MTU;
2793 dev->max_mtu = MAX_MTU;
2794
Rusty Russell296f96f2007-10-22 11:03:37 +10002795 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302796 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2797 virtio_cread_bytes(vdev,
2798 offsetof(struct virtio_net_config, mac),
2799 dev->dev_addr, dev->addr_len);
2800 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002801 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002802
2803 /* Set up our device-specific information */
2804 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002805 vi->dev = dev;
2806 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002807 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002808
Jason Wang586d17c2012-04-11 20:43:52 +00002809 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002810
Herbert Xu97402b92008-04-18 11:24:27 +08002811 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002812 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2813 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002814 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2815 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002816 vi->big_packets = true;
2817
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002818 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2819 vi->mergeable_rx_bufs = true;
2820
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002821 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2822 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002823 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2824 else
2825 vi->hdr_len = sizeof(struct virtio_net_hdr);
2826
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002827 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2828 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302829 vi->any_header_sg = true;
2830
Jason Wang986a4f42012-12-07 07:04:56 +00002831 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2832 vi->has_cvq = true;
2833
Aaron Conole14de9d12016-06-03 16:57:12 -04002834 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2835 mtu = virtio_cread16(vdev,
2836 offsetof(struct virtio_net_config,
2837 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002838 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002839 /* Should never trigger: MTU was previously validated
2840 * in virtnet_validate.
2841 */
2842 dev_err(&vdev->dev, "device MTU appears to have changed "
2843 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002844 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04002845 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002846
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002847 dev->mtu = mtu;
2848 dev->max_mtu = mtu;
2849
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002850 /* TODO: size buffers correctly in this case. */
2851 if (dev->mtu > ETH_DATA_LEN)
2852 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002853 }
2854
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002855 if (vi->any_header_sg)
2856 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002857
Jason Wang44900012016-11-25 12:37:26 +08002858 /* Enable multiqueue by default */
2859 if (num_online_cpus() >= max_queue_pairs)
2860 vi->curr_queue_pairs = max_queue_pairs;
2861 else
2862 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002863 vi->max_queue_pairs = max_queue_pairs;
2864
2865 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302866 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002867 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002868 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002869
Michael Daltonfbf28d72014-01-16 22:23:30 -08002870#ifdef CONFIG_SYSFS
2871 if (vi->mergeable_rx_bufs)
2872 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2873#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002874 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2875 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002876
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002877 virtnet_init_settings(dev);
2878
Rusty Russell296f96f2007-10-22 11:03:37 +10002879 err = register_netdev(dev);
2880 if (err) {
2881 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002882 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002883 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002884
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302885 virtio_device_ready(vdev);
2886
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002887 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002888 if (err) {
2889 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002890 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002891 }
2892
Jason Wanga2208712016-12-13 14:23:05 +08002893 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002894
Jason Wang167c25e2010-11-10 14:45:41 +00002895 /* Assume link up if device can't report link status,
2896 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00002897 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00002898 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002899 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002900 } else {
2901 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05002902 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00002903 netif_carrier_on(dev);
2904 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002905
Jason Wang3f935222017-07-19 16:54:49 +08002906 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2907 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2908 set_bit(guest_offloads[i], &vi->guest_offloads);
2909
Jason Wang986a4f42012-12-07 07:04:56 +00002910 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2911 dev->name, max_queue_pairs);
2912
Rusty Russell296f96f2007-10-22 11:03:37 +10002913 return 0;
2914
wangyunjianf00e35e2016-05-31 11:52:43 +08002915free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302916 vi->vdev->config->reset(vdev);
2917
Rusty Russellb3369c12008-02-04 23:50:02 -05002918 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002919free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002920 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002921 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002922 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10002923free:
2924 free_netdev(dev);
2925 return err;
2926}
2927
Amit Shah04486ed2011-12-22 16:58:32 +05302928static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002929{
Amit Shah04486ed2011-12-22 16:58:32 +05302930 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002931
2932 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002933 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002934
Jason Wang986a4f42012-12-07 07:04:56 +00002935 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002936
Michael Daltonfb518792014-01-16 22:23:26 -08002937 free_receive_page_frags(vi);
2938
Jason Wang986a4f42012-12-07 07:04:56 +00002939 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302940}
2941
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002942static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302943{
2944 struct virtnet_info *vi = vdev->priv;
2945
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002946 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002947
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302948 /* Make sure no work handler is accessing the device. */
2949 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002950
Amit Shah04486ed2011-12-22 16:58:32 +05302951 unregister_netdev(vi->dev);
2952
2953 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002954
Rusty Russell74b25532007-11-19 11:20:42 -05002955 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002956}
2957
Arnd Bergmann67a75192017-07-25 17:35:50 +02002958static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302959{
2960 struct virtnet_info *vi = vdev->priv;
2961
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002962 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002963 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302964 remove_vq_common(vi);
2965
2966 return 0;
2967}
2968
Arnd Bergmann67a75192017-07-25 17:35:50 +02002969static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302970{
2971 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002972 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302973
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002974 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302975 if (err)
2976 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002977 virtnet_set_queues(vi, vi->curr_queue_pairs);
2978
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002979 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002980 if (err)
2981 return err;
2982
Amit Shah0741bcb2011-12-22 16:58:33 +05302983 return 0;
2984}
Amit Shah0741bcb2011-12-22 16:58:33 +05302985
Rusty Russell296f96f2007-10-22 11:03:37 +10002986static struct virtio_device_id id_table[] = {
2987 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2988 { 0 },
2989};
2990
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002991#define VIRTNET_FEATURES \
2992 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2993 VIRTIO_NET_F_MAC, \
2994 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2995 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2996 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2997 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2998 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2999 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3000 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003001 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
3002 VIRTIO_NET_F_SPEED_DUPLEX
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003003
Rusty Russellc45a6812008-05-02 21:50:50 -05003004static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003005 VIRTNET_FEATURES,
3006};
3007
3008static unsigned int features_legacy[] = {
3009 VIRTNET_FEATURES,
3010 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303011 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003012};
3013
Uwe Kleine-König22402522009-11-05 01:32:44 -08003014static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003015 .feature_table = features,
3016 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003017 .feature_table_legacy = features_legacy,
3018 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003019 .driver.name = KBUILD_MODNAME,
3020 .driver.owner = THIS_MODULE,
3021 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003022 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003023 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003024 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003025 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303026#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303027 .freeze = virtnet_freeze,
3028 .restore = virtnet_restore,
3029#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003030};
3031
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003032static __init int virtio_net_driver_init(void)
3033{
3034 int ret;
3035
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003036 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003037 virtnet_cpu_online,
3038 virtnet_cpu_down_prep);
3039 if (ret < 0)
3040 goto out;
3041 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003042 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003043 NULL, virtnet_cpu_dead);
3044 if (ret)
3045 goto err_dead;
3046
3047 ret = register_virtio_driver(&virtio_net_driver);
3048 if (ret)
3049 goto err_virtio;
3050 return 0;
3051err_virtio:
3052 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3053err_dead:
3054 cpuhp_remove_multi_state(virtionet_online);
3055out:
3056 return ret;
3057}
3058module_init(virtio_net_driver_init);
3059
3060static __exit void virtio_net_driver_exit(void)
3061{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003062 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003063 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3064 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003065}
3066module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003067
3068MODULE_DEVICE_TABLE(virtio, id_table);
3069MODULE_DESCRIPTION("Virtio network driver");
3070MODULE_LICENSE("GPL");