blob: fc059f193e7dca57f54a67aa55cbcf4251fe9297 [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>
Rusty Russell296f96f2007-10-22 11:03:37 +100034
Amerigo Wangd34710e2013-05-09 19:50:51 +000035static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020036module_param(napi_weight, int, 0444);
37
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040038static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050039module_param(csum, bool, 0444);
40module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040041module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050042
Rusty Russell296f96f2007-10-22 11:03:37 +100043/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080044#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080045#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100046
Jason Wangf6b10202017-02-21 16:46:28 +080047#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
48
John Fastabend2de2f7f2017-02-02 19:16:29 -080049/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
50#define VIRTIO_XDP_HEADROOM 256
51
Johannes Berg5377d7582015-08-19 09:48:40 +020052/* RX packet size EWMA. The average packet size is used to determine the packet
53 * buffer size when refilling RX rings. As the entire RX ring may be refilled
54 * at once, the weight is chosen so that the EWMA will be insensitive to short-
55 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080056 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010057DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080058
Rick Jones66846042011-11-14 14:17:08 +000059#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000060
Colin Ian King7acd4322017-08-12 22:45:53 +010061static const unsigned long guest_offloads[] = {
62 VIRTIO_NET_F_GUEST_TSO4,
63 VIRTIO_NET_F_GUEST_TSO6,
64 VIRTIO_NET_F_GUEST_ECN,
65 VIRTIO_NET_F_GUEST_UFO
66};
Jason Wang3f935222017-07-19 16:54:49 +080067
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000068struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000069 struct u64_stats_sync tx_syncp;
70 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000071 u64 tx_bytes;
72 u64 tx_packets;
73
74 u64 rx_bytes;
75 u64 rx_packets;
76};
77
Jason Wange9d74172012-12-07 07:04:55 +000078/* Internal representation of a send virtqueue */
79struct send_queue {
80 /* Virtqueue associated with this send _queue */
81 struct virtqueue *vq;
82
83 /* TX: fragments + linear part + virtio header */
84 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000085
86 /* Name of the send queue: output.$index */
87 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040088
89 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +000090};
91
92/* Internal representation of a receive virtqueue */
93struct receive_queue {
94 /* Virtqueue associated with this receive_queue */
95 struct virtqueue *vq;
96
Rusty Russell296f96f2007-10-22 11:03:37 +100097 struct napi_struct napi;
98
John Fastabendf600b692016-12-15 12:13:24 -080099 struct bpf_prog __rcu *xdp_prog;
100
Jason Wange9d74172012-12-07 07:04:55 +0000101 /* Chain pages by the private ptr. */
102 struct page *pages;
103
Michael Daltonab7db912014-01-16 22:23:27 -0800104 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200105 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800106
Michael Daltonfb518792014-01-16 22:23:26 -0800107 /* Page frag for packet buffer allocation. */
108 struct page_frag alloc_frag;
109
Jason Wange9d74172012-12-07 07:04:55 +0000110 /* RX: fragments + linear part + virtio header */
111 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000112
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200113 /* Min single buffer size for mergeable buffers case. */
114 unsigned int min_buf_len;
115
Jason Wang986a4f42012-12-07 07:04:56 +0000116 /* Name of this receive queue: input.$index */
117 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000118};
119
120struct virtnet_info {
121 struct virtio_device *vdev;
122 struct virtqueue *cvq;
123 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000124 struct send_queue *sq;
125 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000126 unsigned int status;
127
Jason Wang986a4f42012-12-07 07:04:56 +0000128 /* Max # of queue pairs supported by the device */
129 u16 max_queue_pairs;
130
131 /* # of queue pairs currently used by the driver */
132 u16 curr_queue_pairs;
133
John Fastabend672aafd2016-12-15 12:13:49 -0800134 /* # of XDP queue pairs currently used by the driver */
135 u16 xdp_queue_pairs;
136
Herbert Xu97402b92008-04-18 11:24:27 +0800137 /* I like... big packets and I cannot lie! */
138 bool big_packets;
139
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800140 /* Host will merge rx buffers for big packets (shake it! shake it!) */
141 bool mergeable_rx_bufs;
142
Jason Wang986a4f42012-12-07 07:04:56 +0000143 /* Has control virtqueue */
144 bool has_cvq;
145
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930146 /* Host can handle any s/g split between our header and packet data */
147 bool any_header_sg;
148
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300149 /* Packet virtio header size */
150 u8 hdr_len;
151
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000152 /* Active statistics */
153 struct virtnet_stats __percpu *stats;
154
Rusty Russell3161e452009-08-26 12:22:32 -0700155 /* Work struct for refilling if we run low on memory. */
156 struct delayed_work refill;
157
Jason Wang586d17c2012-04-11 20:43:52 +0000158 /* Work struct for config space updates */
159 struct work_struct config_work;
160
Jason Wang986a4f42012-12-07 07:04:56 +0000161 /* Does the affinity hint is set for virtqueues? */
162 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000163
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200164 /* CPU hotplug instances for online & dead */
165 struct hlist_node node;
166 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200167
168 /* Control VQ buffers: protected by the rtnl lock */
169 struct virtio_net_ctrl_hdr ctrl_hdr;
170 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700171 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200172 u8 ctrl_promisc;
173 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700174 u16 ctrl_vid;
Jason Wang3f935222017-07-19 16:54:49 +0800175 u64 ctrl_offloads;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100176
177 /* Ethtool settings */
178 u8 duplex;
179 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800180
181 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000182};
183
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000184struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300185 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000186 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300187 * hdr is in a separate sg buffer, and data sg buffer shares same page
188 * with this header sg. This padding makes next sg 16 byte aligned
189 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000190 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300191 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000192};
193
Jason Wang986a4f42012-12-07 07:04:56 +0000194/* Converting between virtqueue no. and kernel tx/rx queue no.
195 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
196 */
197static int vq2txq(struct virtqueue *vq)
198{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000199 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000200}
201
202static int txq2vq(int txq)
203{
204 return txq * 2 + 1;
205}
206
207static int vq2rxq(struct virtqueue *vq)
208{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000209 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000210}
211
212static int rxq2vq(int rxq)
213{
214 return rxq * 2;
215}
216
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300217static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000218{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300219 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000220}
221
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000222/*
223 * private is used to chain pages for big packets, put the whole
224 * most recent used list in the beginning for reuse
225 */
Jason Wange9d74172012-12-07 07:04:55 +0000226static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500227{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000228 struct page *end;
229
Jason Wange9d74172012-12-07 07:04:55 +0000230 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000232 end->private = (unsigned long)rq->pages;
233 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500234}
235
Jason Wange9d74172012-12-07 07:04:55 +0000236static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500237{
Jason Wange9d74172012-12-07 07:04:55 +0000238 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500239
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000240 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000241 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000242 /* clear private here, it is used to chain pages */
243 p->private = 0;
244 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500245 p = alloc_page(gfp_mask);
246 return p;
247}
248
Willem de Bruijne4e84522017-04-24 13:49:26 -0400249static void virtqueue_napi_schedule(struct napi_struct *napi,
250 struct virtqueue *vq)
251{
252 if (napi_schedule_prep(napi)) {
253 virtqueue_disable_cb(vq);
254 __napi_schedule(napi);
255 }
256}
257
258static void virtqueue_napi_complete(struct napi_struct *napi,
259 struct virtqueue *vq, int processed)
260{
261 int opaque;
262
263 opaque = virtqueue_enable_cb_prepare(vq);
264 if (napi_complete_done(napi, processed) &&
265 unlikely(virtqueue_poll(vq, opaque)))
266 virtqueue_napi_schedule(napi, vq);
267}
268
Jason Wange9d74172012-12-07 07:04:55 +0000269static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000270{
Jason Wange9d74172012-12-07 07:04:55 +0000271 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400272 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000273
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500274 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000275 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000276
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400277 if (napi->weight)
278 virtqueue_napi_schedule(napi, vq);
279 else
280 /* We were probably waiting for more output buffers. */
281 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000282}
283
Jason Wang28b39bc2017-07-19 16:54:46 +0800284#define MRG_CTX_HEADER_SHIFT 22
285static void *mergeable_len_to_ctx(unsigned int truesize,
286 unsigned int headroom)
287{
288 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
289}
290
291static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
292{
293 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
294}
295
296static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
297{
298 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
299}
300
Mike Waychison34646452012-01-04 12:52:32 +0000301/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300302static struct sk_buff *page_to_skb(struct virtnet_info *vi,
303 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700304 struct page *page, unsigned int offset,
305 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000306{
307 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300308 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700309 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000310 char *p;
311
Michael Dalton2613af02013-10-28 15:44:18 -0700312 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000313
314 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100315 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000316 if (unlikely(!skb))
317 return NULL;
318
319 hdr = skb_vnet_hdr(skb);
320
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300321 hdr_len = vi->hdr_len;
322 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700323 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300324 else
Michael Dalton2613af02013-10-28 15:44:18 -0700325 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000326
327 memcpy(hdr, p, hdr_len);
328
329 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700330 offset += hdr_padded_len;
331 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000332
333 copy = len;
334 if (copy > skb_tailroom(skb))
335 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200336 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000337
338 len -= copy;
339 offset += copy;
340
Michael Dalton2613af02013-10-28 15:44:18 -0700341 if (vi->mergeable_rx_bufs) {
342 if (len)
343 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
344 else
345 put_page(page);
346 return skb;
347 }
348
Sasha Levine878d782011-09-28 04:40:54 +0000349 /*
350 * Verify that we can indeed put this data into a skb.
351 * This is here to handle cases when the device erroneously
352 * tries to receive more than is possible. This is usually
353 * the case of a broken device.
354 */
355 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000356 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000357 dev_kfree_skb(skb);
358 return NULL;
359 }
Michael Dalton2613af02013-10-28 15:44:18 -0700360 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000361 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700362 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
363 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
364 frag_size, truesize);
365 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000366 page = (struct page *)page->private;
367 offset = 0;
368 }
369
370 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000371 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000372
373 return skb;
374}
375
Jason Wang186b3c92017-09-19 17:42:43 +0800376static void virtnet_xdp_flush(struct net_device *dev)
377{
378 struct virtnet_info *vi = netdev_priv(dev);
379 struct send_queue *sq;
380 unsigned int qp;
381
382 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
383 sq = &vi->sq[qp];
384
385 virtqueue_kick(sq->vq);
386}
387
388static bool __virtnet_xdp_xmit(struct virtnet_info *vi,
389 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800390{
John Fastabend56434a02016-12-15 12:14:13 -0800391 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800392 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800393 struct send_queue *sq;
394 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800395 void *xdp_sent;
396 int err;
397
John Fastabend722d8282017-02-02 19:15:32 -0800398 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
399 sq = &vi->sq[qp];
400
John Fastabend56434a02016-12-15 12:14:13 -0800401 /* Free up any pending old buffers before queueing new ones. */
402 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800403 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800404
Jason Wangf6b10202017-02-21 16:46:28 +0800405 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800406 }
407
Jason Wangf6b10202017-02-21 16:46:28 +0800408 xdp->data -= vi->hdr_len;
409 /* Zero header and leave csum up to XDP layers */
410 hdr = xdp->data;
411 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800412
Jason Wangf6b10202017-02-21 16:46:28 +0800413 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800414
Jason Wangf6b10202017-02-21 16:46:28 +0800415 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800416 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800417 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800418
Jason Wangf6b10202017-02-21 16:46:28 +0800419 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100420 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800421 }
422
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100423 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800424}
425
Jason Wang186b3c92017-09-19 17:42:43 +0800426static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
427{
428 struct virtnet_info *vi = netdev_priv(dev);
429 bool sent = __virtnet_xdp_xmit(vi, xdp);
430
431 if (!sent)
432 return -ENOSPC;
433 return 0;
434}
435
Jason Wangf6b10202017-02-21 16:46:28 +0800436static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
437{
438 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
439}
440
Jason Wang4941d472017-07-19 16:54:48 +0800441/* We copy the packet for XDP in the following cases:
442 *
443 * 1) Packet is scattered across multiple rx buffers.
444 * 2) Headroom space is insufficient.
445 *
446 * This is inefficient but it's a temporary condition that
447 * we hit right after XDP is enabled and until queue is refilled
448 * with large buffers with sufficient headroom - so it should affect
449 * at most queue size packets.
450 * Afterwards, the conditions to enable
451 * XDP should preclude the underlying device from sending packets
452 * across multiple buffers (num_buf > 1), and we make sure buffers
453 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800454 */
455static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800456 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800457 struct page *p,
458 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800459 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800460 unsigned int *len)
461{
462 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800463
464 if (!page)
465 return NULL;
466
467 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
468 page_off += *len;
469
Jason Wang56a86f82016-12-23 22:37:26 +0800470 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800471 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800472 void *buf;
473 int off;
474
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200475 buf = virtqueue_get_buf(rq->vq, &buflen);
476 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800477 goto err_buf;
478
John Fastabend72979a62016-12-15 12:14:36 -0800479 p = virt_to_head_page(buf);
480 off = buf - page_address(p);
481
Jason Wang56a86f82016-12-23 22:37:26 +0800482 /* guard against a misconfigured or uncooperative backend that
483 * is sending packet larger than the MTU.
484 */
485 if ((page_off + buflen) > PAGE_SIZE) {
486 put_page(p);
487 goto err_buf;
488 }
489
John Fastabend72979a62016-12-15 12:14:36 -0800490 memcpy(page_address(page) + page_off,
491 page_address(p) + off, buflen);
492 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800493 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800494 }
495
John Fastabend2de2f7f2017-02-02 19:16:29 -0800496 /* Headroom does not contribute to packet length */
497 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800498 return page;
499err_buf:
500 __free_pages(page, 0);
501 return NULL;
502}
503
Jason Wang4941d472017-07-19 16:54:48 +0800504static struct sk_buff *receive_small(struct net_device *dev,
505 struct virtnet_info *vi,
506 struct receive_queue *rq,
507 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800508 unsigned int len,
509 bool *xdp_xmit)
Jason Wang4941d472017-07-19 16:54:48 +0800510{
511 struct sk_buff *skb;
512 struct bpf_prog *xdp_prog;
513 unsigned int xdp_headroom = (unsigned long)ctx;
514 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
515 unsigned int headroom = vi->hdr_len + header_offset;
516 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
517 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
518 struct page *page = virt_to_head_page(buf);
Jason Wang186b3c92017-09-19 17:42:43 +0800519 unsigned int delta = 0, err;
Jason Wang4941d472017-07-19 16:54:48 +0800520 struct page *xdp_page;
521 len -= vi->hdr_len;
522
523 rcu_read_lock();
524 xdp_prog = rcu_dereference(rq->xdp_prog);
525 if (xdp_prog) {
526 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
527 struct xdp_buff xdp;
528 void *orig_data;
529 u32 act;
530
531 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
532 goto err_xdp;
533
534 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
535 int offset = buf - page_address(page) + header_offset;
536 unsigned int tlen = len + vi->hdr_len;
537 u16 num_buf = 1;
538
539 xdp_headroom = virtnet_get_headroom(vi);
540 header_offset = VIRTNET_RX_PAD + xdp_headroom;
541 headroom = vi->hdr_len + header_offset;
542 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
543 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
544 xdp_page = xdp_linearize_page(rq, &num_buf, page,
545 offset, header_offset,
546 &tlen);
547 if (!xdp_page)
548 goto err_xdp;
549
550 buf = page_address(xdp_page);
551 put_page(page);
552 page = xdp_page;
553 }
554
555 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
556 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200557 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800558 xdp.data_end = xdp.data + len;
559 orig_data = xdp.data;
560 act = bpf_prog_run_xdp(xdp_prog, &xdp);
561
562 switch (act) {
563 case XDP_PASS:
564 /* Recalculate length in case bpf program changed it */
565 delta = orig_data - xdp.data;
566 break;
567 case XDP_TX:
Jason Wang186b3c92017-09-19 17:42:43 +0800568 if (unlikely(!__virtnet_xdp_xmit(vi, &xdp)))
Jason Wang4941d472017-07-19 16:54:48 +0800569 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang186b3c92017-09-19 17:42:43 +0800570 else
571 *xdp_xmit = true;
572 rcu_read_unlock();
573 goto xdp_xmit;
574 case XDP_REDIRECT:
575 err = xdp_do_redirect(dev, &xdp, xdp_prog);
576 if (!err)
577 *xdp_xmit = true;
Jason Wang4941d472017-07-19 16:54:48 +0800578 rcu_read_unlock();
579 goto xdp_xmit;
580 default:
581 bpf_warn_invalid_xdp_action(act);
582 case XDP_ABORTED:
583 trace_xdp_exception(vi->dev, xdp_prog, act);
584 case XDP_DROP:
585 goto err_xdp;
586 }
587 }
588 rcu_read_unlock();
589
590 skb = build_skb(buf, buflen);
591 if (!skb) {
592 put_page(page);
593 goto err;
594 }
595 skb_reserve(skb, headroom - delta);
596 skb_put(skb, len + delta);
597 if (!delta) {
598 buf += header_offset;
599 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
600 } /* keep zeroed vnet hdr since packet was changed by bpf */
601
602err:
603 return skb;
604
605err_xdp:
606 rcu_read_unlock();
607 dev->stats.rx_dropped++;
608 put_page(page);
609xdp_xmit:
610 return NULL;
611}
612
613static struct sk_buff *receive_big(struct net_device *dev,
614 struct virtnet_info *vi,
615 struct receive_queue *rq,
616 void *buf,
617 unsigned int len)
618{
619 struct page *page = buf;
620 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
621
622 if (unlikely(!skb))
623 goto err;
624
625 return skb;
626
627err:
628 dev->stats.rx_dropped++;
629 give_pages(rq, page);
630 return NULL;
631}
632
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200633static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200634 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200635 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200636 void *buf,
637 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800638 unsigned int len,
639 bool *xdp_xmit)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000640{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300641 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
642 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200643 struct page *page = virt_to_head_page(buf);
644 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800645 struct sk_buff *head_skb, *curr_skb;
646 struct bpf_prog *xdp_prog;
647 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800648 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang186b3c92017-09-19 17:42:43 +0800649 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800650
John Fastabend56434a02016-12-15 12:14:13 -0800651 head_skb = NULL;
652
John Fastabendf600b692016-12-15 12:13:24 -0800653 rcu_read_lock();
654 xdp_prog = rcu_dereference(rq->xdp_prog);
655 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800656 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800657 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800658 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800659 u32 act;
660
Jason Wang73b62bd2016-12-23 22:37:24 +0800661 /* This happens when rx buffer size is underestimated */
Jason Wang4941d472017-07-19 16:54:48 +0800662 if (unlikely(num_buf > 1 ||
663 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800664 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800665 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800666 page, offset,
667 VIRTIO_XDP_HEADROOM,
668 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800669 if (!xdp_page)
670 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800671 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800672 } else {
673 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800674 }
675
676 /* Transient failure which in theory could occur if
677 * in-flight packets from before XDP was enabled reach
678 * the receive path after XDP is loaded. In practice I
679 * was not able to create this condition.
680 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800681 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800682 goto err_xdp;
683
John Fastabend2de2f7f2017-02-02 19:16:29 -0800684 /* Allow consuming headroom but reserve enough space to push
685 * the descriptor on if we get an XDP_TX return code.
686 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800687 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800688 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800689 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200690 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800691 xdp.data_end = xdp.data + (len - vi->hdr_len);
692 act = bpf_prog_run_xdp(xdp_prog, &xdp);
693
Jason Wang31240342017-09-19 17:42:42 +0800694 if (act != XDP_PASS)
695 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
696
John Fastabend56434a02016-12-15 12:14:13 -0800697 switch (act) {
698 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800699 /* recalculate offset to account for any header
700 * adjustments. Note other cases do not build an
701 * skb and avoid using offset
702 */
703 offset = xdp.data -
704 page_address(xdp_page) - vi->hdr_len;
705
Jason Wang1830f892016-12-23 22:37:27 +0800706 /* We can only create skb based on xdp_page. */
707 if (unlikely(xdp_page != page)) {
708 rcu_read_unlock();
709 put_page(page);
710 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800711 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800712 return head_skb;
713 }
John Fastabend56434a02016-12-15 12:14:13 -0800714 break;
715 case XDP_TX:
Jason Wang186b3c92017-09-19 17:42:43 +0800716 if (unlikely(!__virtnet_xdp_xmit(vi, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800717 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang186b3c92017-09-19 17:42:43 +0800718 else
719 *xdp_xmit = true;
John Fastabend72979a62016-12-15 12:14:36 -0800720 if (unlikely(xdp_page != page))
721 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800722 rcu_read_unlock();
723 goto xdp_xmit;
Jason Wang186b3c92017-09-19 17:42:43 +0800724 case XDP_REDIRECT:
725 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jason Wangdd543792017-09-22 14:38:58 +0800726 if (!err)
Jason Wang186b3c92017-09-19 17:42:43 +0800727 *xdp_xmit = true;
728 rcu_read_unlock();
729 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800730 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800731 bpf_warn_invalid_xdp_action(act);
732 case XDP_ABORTED:
733 trace_xdp_exception(vi->dev, xdp_prog, act);
734 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800735 if (unlikely(xdp_page != page))
736 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800737 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800738 }
John Fastabendf600b692016-12-15 12:13:24 -0800739 }
740 rcu_read_unlock();
741
Jason Wang28b39bc2017-07-19 16:54:46 +0800742 truesize = mergeable_ctx_to_truesize(ctx);
743 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300744 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200745 dev->name, len, (unsigned long)ctx);
746 dev->stats.rx_length_errors++;
747 goto err_skb;
748 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800749
John Fastabendf600b692016-12-15 12:13:24 -0800750 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
751 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000752
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200753 if (unlikely(!curr_skb))
754 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000755 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200756 int num_skb_frags;
757
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200758 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800759 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200760 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200761 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300762 virtio16_to_cpu(vi->vdev,
763 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200764 dev->stats.rx_length_errors++;
765 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000766 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200767
768 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800769
770 truesize = mergeable_ctx_to_truesize(ctx);
771 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300772 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200773 dev->name, len, (unsigned long)ctx);
774 dev->stats.rx_length_errors++;
775 goto err_skb;
776 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200777
778 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700779 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
780 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200781
782 if (unlikely(!nskb))
783 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700784 if (curr_skb == head_skb)
785 skb_shinfo(curr_skb)->frag_list = nskb;
786 else
787 curr_skb->next = nskb;
788 curr_skb = nskb;
789 head_skb->truesize += nskb->truesize;
790 num_skb_frags = 0;
791 }
792 if (curr_skb != head_skb) {
793 head_skb->data_len += len;
794 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800795 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700796 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200797 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800798 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
799 put_page(page);
800 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800801 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800802 } else {
803 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800804 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800805 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200806 }
807
Johannes Berg5377d7582015-08-19 09:48:40 +0200808 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200809 return head_skb;
810
John Fastabendf600b692016-12-15 12:13:24 -0800811err_xdp:
812 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200813err_skb:
814 put_page(page);
815 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200816 buf = virtqueue_get_buf(rq->vq, &len);
817 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200818 pr_debug("%s: rx error: %d buffers missing\n",
819 dev->name, num_buf);
820 dev->stats.rx_length_errors++;
821 break;
822 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200823 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200824 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000825 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200826err_buf:
827 dev->stats.rx_dropped++;
828 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800829xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200830 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000831}
832
Jason Wang61845d22017-02-17 11:33:09 +0800833static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Jason Wang186b3c92017-09-19 17:42:43 +0800834 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +1000835{
Jason Wange9d74172012-12-07 07:04:55 +0000836 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000837 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300838 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800839 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000840
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300841 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000842 pr_debug("%s: short packet %i\n", dev->name, len);
843 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800844 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200845 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800846 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800847 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800848 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800849 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800850 }
Jason Wang61845d22017-02-17 11:33:09 +0800851 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000852 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000853
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200854 if (vi->mergeable_rx_bufs)
Jason Wang186b3c92017-09-19 17:42:43 +0800855 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200856 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300857 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200858 else
Jason Wang186b3c92017-09-19 17:42:43 +0800859 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200860
861 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800862 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800863
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000864 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000865
Jason Wang61845d22017-02-17 11:33:09 +0800866 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000867
Mike Rapoporte858fae2016-06-08 16:09:21 +0300868 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000869 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000870
Mike Rapoporte858fae2016-06-08 16:09:21 +0300871 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
872 virtio_is_little_endian(vi->vdev))) {
873 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
874 dev->name, hdr->hdr.gso_type,
875 hdr->hdr.gso_size);
876 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000877 }
878
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300879 skb->protocol = eth_type_trans(skb, dev);
880 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
881 ntohs(skb->protocol), skb->len, skb->pkt_type);
882
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200883 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800884 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000885
886frame_err:
887 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000888 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800889 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000890}
891
Jason Wang192f68c2017-07-19 16:54:47 +0800892/* Unlike mergeable buffers, all buffers are allocated to the
893 * same size, except for the headroom. For this reason we do
894 * not need to use mergeable_len_to_ctx here - it is enough
895 * to store the headroom as the context ignoring the truesize.
896 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300897static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
898 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000899{
Jason Wangf6b10202017-02-21 16:46:28 +0800900 struct page_frag *alloc_frag = &rq->alloc_frag;
901 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800902 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800903 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800904 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000906
Jason Wangf6b10202017-02-21 16:46:28 +0800907 len = SKB_DATA_ALIGN(len) +
908 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
909 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000910 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800911
Jason Wangf6b10202017-02-21 16:46:28 +0800912 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
913 get_page(alloc_frag->page);
914 alloc_frag->offset += len;
915 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
916 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800917 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000918 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800919 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000920 return err;
921}
922
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300923static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
924 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000925{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000926 struct page *first, *list = NULL;
927 char *p;
928 int i, err, offset;
929
Rusty Russella5835442014-09-11 10:17:36 +0930930 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
931
Jason Wange9d74172012-12-07 07:04:55 +0000932 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000933 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000934 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000935 if (!first) {
936 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000937 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000938 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700939 }
Jason Wange9d74172012-12-07 07:04:55 +0000940 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000941
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000942 /* chain new page in list head to match sg */
943 first->private = (unsigned long)list;
944 list = first;
945 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800946
Jason Wange9d74172012-12-07 07:04:55 +0000947 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000948 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000949 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000950 return -ENOMEM;
951 }
952 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800953
Jason Wange9d74172012-12-07 07:04:55 +0000954 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300955 /* a separated rq->sg[0] for header - required in case !any_header_sg */
956 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800957
Jason Wange9d74172012-12-07 07:04:55 +0000958 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000959 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000960 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800961
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000962 /* chain first in list head */
963 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030964 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
965 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000966 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000967 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800968
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000969 return err;
970}
Herbert Xu97402b92008-04-18 11:24:27 +0800971
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200972static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
973 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000974{
Michael Daltonab7db912014-01-16 22:23:27 -0800975 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800976 unsigned int len;
977
Johannes Berg5377d7582015-08-19 09:48:40 +0200978 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +0300979 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +0200980 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800981}
982
John Fastabend2de2f7f2017-02-02 19:16:29 -0800983static int add_recvbuf_mergeable(struct virtnet_info *vi,
984 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800985{
Michael Daltonfb518792014-01-16 22:23:26 -0800986 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800987 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800988 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200989 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000990 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800991 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000992
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200993 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800994 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000995 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800996
Michael Daltonfb518792014-01-16 22:23:26 -0800997 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800998 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -0800999 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001000 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -08001001 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001002 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -08001003 /* To avoid internal fragmentation, if there is very likely not
1004 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001005 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001006 */
Michael Daltonfb518792014-01-16 22:23:26 -08001007 len += hole;
1008 alloc_frag->offset += hole;
1009 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001010
Michael Daltonfb518792014-01-16 22:23:26 -08001011 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001012 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001013 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001014 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001015 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001016
1017 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001018}
1019
Rusty Russellb2baed62011-12-29 00:42:38 +00001020/*
1021 * Returns false if we couldn't fill entirely (OOM).
1022 *
1023 * Normally run in the receive path, but can also be run from ndo_open
1024 * before we're receiving packets, or from refill_work which is
1025 * careful to disable receiving (using napi_disable).
1026 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001027static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1028 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001029{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001030 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001031 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001032
Michael Daltonfb518792014-01-16 22:23:26 -08001033 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +05301034 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001035 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001036 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001037 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001038 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001039 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001040 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001041
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001042 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301043 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001044 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001045 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001046 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001047 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001048}
1049
Rusty Russell18445c42008-02-04 23:49:57 -05001050static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001051{
1052 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001053 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001054
Willem de Bruijne4e84522017-04-24 13:49:26 -04001055 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001056}
1057
Willem de Bruijne4e84522017-04-24 13:49:26 -04001058static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001059{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001060 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001061
1062 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001063 * won't get another interrupt, so process any outstanding packets now.
1064 * Call local_bh_enable after to trigger softIRQ processing.
1065 */
1066 local_bh_disable();
1067 virtqueue_napi_schedule(napi, vq);
1068 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001069}
1070
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001071static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1072 struct virtqueue *vq,
1073 struct napi_struct *napi)
1074{
1075 if (!napi->weight)
1076 return;
1077
1078 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1079 * enable the feature if this is likely affine with the transmit path.
1080 */
1081 if (!vi->affinity_hint_set) {
1082 napi->weight = 0;
1083 return;
1084 }
1085
1086 return virtnet_napi_enable(vq, napi);
1087}
1088
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001089static void virtnet_napi_tx_disable(struct napi_struct *napi)
1090{
1091 if (napi->weight)
1092 napi_disable(napi);
1093}
1094
Rusty Russell3161e452009-08-26 12:22:32 -07001095static void refill_work(struct work_struct *work)
1096{
Jason Wange9d74172012-12-07 07:04:55 +00001097 struct virtnet_info *vi =
1098 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001099 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001100 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001101
Sasha Levin55257d72013-04-29 12:00:08 +09301102 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001103 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001104
Jason Wang986a4f42012-12-07 07:04:56 +00001105 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001106 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001107 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001108
1109 /* In theory, this can happen: if we don't get any buffers in
1110 * we will *never* try to fill again.
1111 */
1112 if (still_empty)
1113 schedule_delayed_work(&vi->refill, HZ/2);
1114 }
Rusty Russell3161e452009-08-26 12:22:32 -07001115}
1116
Jason Wang186b3c92017-09-19 17:42:43 +08001117static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001118{
Jason Wange9d74172012-12-07 07:04:55 +00001119 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001120 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001121 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001122 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001123
Jason Wang192f68c2017-07-19 16:54:47 +08001124 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001125 void *ctx;
1126
1127 while (received < budget &&
1128 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Jason Wang186b3c92017-09-19 17:42:43 +08001129 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001130 received++;
1131 }
1132 } else {
1133 while (received < budget &&
1134 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang186b3c92017-09-19 17:42:43 +08001135 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001136 received++;
1137 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001138 }
1139
Jason Wangbe121f42014-01-16 14:45:24 +08001140 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001141 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001142 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001143 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001144
Jason Wang61845d22017-02-17 11:33:09 +08001145 u64_stats_update_begin(&stats->rx_syncp);
1146 stats->rx_bytes += bytes;
1147 stats->rx_packets += received;
1148 u64_stats_update_end(&stats->rx_syncp);
1149
Jason Wang2ffa7592014-07-23 16:33:54 +08001150 return received;
1151}
1152
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001153static void free_old_xmit_skbs(struct send_queue *sq)
1154{
1155 struct sk_buff *skb;
1156 unsigned int len;
1157 struct virtnet_info *vi = sq->vq->vdev->priv;
1158 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1159 unsigned int packets = 0;
1160 unsigned int bytes = 0;
1161
1162 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1163 pr_debug("Sent skb %p\n", skb);
1164
1165 bytes += skb->len;
1166 packets++;
1167
Eric Dumazetdadc0732017-08-24 09:02:49 -07001168 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001169 }
1170
1171 /* Avoid overhead when no packets have been processed
1172 * happens when called speculatively from start_xmit.
1173 */
1174 if (!packets)
1175 return;
1176
1177 u64_stats_update_begin(&stats->tx_syncp);
1178 stats->tx_bytes += bytes;
1179 stats->tx_packets += packets;
1180 u64_stats_update_end(&stats->tx_syncp);
1181}
1182
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001183static void virtnet_poll_cleantx(struct receive_queue *rq)
1184{
1185 struct virtnet_info *vi = rq->vq->vdev->priv;
1186 unsigned int index = vq2rxq(rq->vq);
1187 struct send_queue *sq = &vi->sq[index];
1188 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1189
1190 if (!sq->napi.weight)
1191 return;
1192
1193 if (__netif_tx_trylock(txq)) {
1194 free_old_xmit_skbs(sq);
1195 __netif_tx_unlock(txq);
1196 }
1197
1198 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1199 netif_tx_wake_queue(txq);
1200}
1201
Jason Wang2ffa7592014-07-23 16:33:54 +08001202static int virtnet_poll(struct napi_struct *napi, int budget)
1203{
1204 struct receive_queue *rq =
1205 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001206 unsigned int received;
Jason Wang186b3c92017-09-19 17:42:43 +08001207 bool xdp_xmit = false;
Jason Wang2ffa7592014-07-23 16:33:54 +08001208
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001209 virtnet_poll_cleantx(rq);
1210
Jason Wang186b3c92017-09-19 17:42:43 +08001211 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001212
Rusty Russell8329d982007-11-19 11:20:43 -05001213 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001214 if (received < budget)
1215 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001216
Jason Wang186b3c92017-09-19 17:42:43 +08001217 if (xdp_xmit)
1218 xdp_do_flush_map();
1219
Rusty Russell296f96f2007-10-22 11:03:37 +10001220 return received;
1221}
1222
Jason Wang986a4f42012-12-07 07:04:56 +00001223static int virtnet_open(struct net_device *dev)
1224{
1225 struct virtnet_info *vi = netdev_priv(dev);
1226 int i;
1227
Jason Wange4166622013-05-21 20:03:58 +00001228 for (i = 0; i < vi->max_queue_pairs; i++) {
1229 if (i < vi->curr_queue_pairs)
1230 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001231 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001232 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001233 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001234 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001235 }
1236
1237 return 0;
1238}
1239
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001240static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1241{
1242 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1243 struct virtnet_info *vi = sq->vq->vdev->priv;
1244 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1245
1246 __netif_tx_lock(txq, raw_smp_processor_id());
1247 free_old_xmit_skbs(sq);
1248 __netif_tx_unlock(txq);
1249
1250 virtqueue_napi_complete(napi, sq->vq, 0);
1251
1252 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1253 netif_tx_wake_queue(txq);
1254
1255 return 0;
1256}
1257
Jason Wange9d74172012-12-07 07:04:55 +00001258static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001259{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001260 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001261 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001262 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001263 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001264 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301265 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001266
Johannes Berge1749612008-10-27 15:59:26 -07001267 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301268
1269 can_push = vi->any_header_sg &&
1270 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1271 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1272 /* Even if we can, don't push here yet as this would skew
1273 * csum_start offset below. */
1274 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001275 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301276 else
1277 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001278
Mike Rapoporte858fae2016-06-08 16:09:21 +03001279 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001280 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001281 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001282
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001283 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001284 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001285
Jason Wang547c8902015-08-27 14:53:06 +08001286 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301287 if (can_push) {
1288 __skb_push(skb, hdr_len);
1289 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001290 if (unlikely(num_sg < 0))
1291 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301292 /* Pull header back to avoid skew in tx bytes calculations. */
1293 __skb_pull(skb, hdr_len);
1294 } else {
1295 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001296 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1297 if (unlikely(num_sg < 0))
1298 return num_sg;
1299 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301300 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301301 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001302}
1303
Stephen Hemminger424efe92009-08-31 19:50:51 +00001304static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001305{
1306 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001307 int qnum = skb_get_queue_mapping(skb);
1308 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301309 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001310 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1311 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001312 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001313
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001314 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001315 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001316
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001317 if (use_napi && kick)
1318 virtqueue_enable_cb_delayed(sq->vq);
1319
Jacob Keller074c3582014-06-25 02:37:13 +00001320 /* timestamp packet in software */
1321 skb_tx_timestamp(skb);
1322
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001323 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001324 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001325
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301326 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001327 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301328 dev->stats.tx_fifo_errors++;
1329 if (net_ratelimit())
1330 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001331 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001332 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001333 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001334 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001335 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001336
Rusty Russell48925e32009-09-24 09:59:20 -06001337 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001338 if (!use_napi) {
1339 skb_orphan(skb);
1340 nf_reset(skb);
1341 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001342
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001343 /* If running out of space, stop queue to avoid getting packets that we
1344 * are then unable to transmit.
1345 * An alternative would be to force queuing layer to requeue the skb by
1346 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1347 * returned in a normal path of operation: it means that driver is not
1348 * maintaining the TX queue stop/start state properly, and causes
1349 * the stack to do a non-trivial amount of useless work.
1350 * Since most packets only take 1 or 2 ring slots, stopping the queue
1351 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001352 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001353 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001354 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001355 if (!use_napi &&
1356 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001357 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001358 free_old_xmit_skbs(sq);
1359 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001360 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001361 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001362 }
1363 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001364 }
Rusty Russell48925e32009-09-24 09:59:20 -06001365
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001366 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001367 virtqueue_kick(sq->vq);
1368
Rusty Russell48925e32009-09-24 09:59:20 -06001369 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001370}
1371
Amos Kong40cbfc32013-01-21 01:17:21 +00001372/*
1373 * Send command via the control virtqueue and check status. Commands
1374 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001375 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001376 */
1377static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001378 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001379{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301380 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001381 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001382
1383 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301384 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001385
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001386 vi->ctrl_status = ~0;
1387 vi->ctrl_hdr.class = class;
1388 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301389 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001390 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301391 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001392
Rusty Russellf7bc9592013-03-20 15:44:28 +10301393 if (out)
1394 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001395
Rusty Russellf7bc9592013-03-20 15:44:28 +10301396 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001397 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001398 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001399
stephen hemmingerd24bae32013-12-09 16:17:40 -08001400 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301401 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001402
Heinz Graalfs67975902013-10-29 09:40:02 +10301403 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001404 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001405
1406 /* Spin for a response, the kick causes an ioport write, trapping
1407 * into the hypervisor, so the request should be handled immediately.
1408 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301409 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1410 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001411 cpu_relax();
1412
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001413 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001414}
1415
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001416static int virtnet_set_mac_address(struct net_device *dev, void *p)
1417{
1418 struct virtnet_info *vi = netdev_priv(dev);
1419 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001420 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001421 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001422 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001423
Shyam Saini801822d2016-12-24 00:44:58 +05301424 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001425 if (!addr)
1426 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001427
1428 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001429 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001430 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001431
Amos Kong7e58d5a2013-01-21 01:17:23 +00001432 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1433 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1434 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001435 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001436 dev_warn(&vdev->dev,
1437 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001438 ret = -EINVAL;
1439 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001440 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001441 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1442 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301443 unsigned int i;
1444
1445 /* Naturally, this has an atomicity problem. */
1446 for (i = 0; i < dev->addr_len; i++)
1447 virtio_cwrite8(vdev,
1448 offsetof(struct virtio_net_config, mac) +
1449 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001450 }
1451
1452 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001453 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001454
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001455out:
1456 kfree(addr);
1457 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001458}
1459
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001460static void virtnet_stats(struct net_device *dev,
1461 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001462{
1463 struct virtnet_info *vi = netdev_priv(dev);
1464 int cpu;
1465 unsigned int start;
1466
1467 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001468 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001469 u64 tpackets, tbytes, rpackets, rbytes;
1470
1471 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001472 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001473 tpackets = stats->tx_packets;
1474 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001475 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001476
1477 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001478 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001479 rpackets = stats->rx_packets;
1480 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001481 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001482
1483 tot->rx_packets += rpackets;
1484 tot->tx_packets += tpackets;
1485 tot->rx_bytes += rbytes;
1486 tot->tx_bytes += tbytes;
1487 }
1488
1489 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001490 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001491 tot->rx_dropped = dev->stats.rx_dropped;
1492 tot->rx_length_errors = dev->stats.rx_length_errors;
1493 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001494}
1495
Amit Shahda74e892008-02-29 16:24:50 +05301496#ifdef CONFIG_NET_POLL_CONTROLLER
1497static void virtnet_netpoll(struct net_device *dev)
1498{
1499 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001500 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301501
Jason Wang986a4f42012-12-07 07:04:56 +00001502 for (i = 0; i < vi->curr_queue_pairs; i++)
1503 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301504}
1505#endif
1506
Jason Wang586d17c2012-04-11 20:43:52 +00001507static void virtnet_ack_link_announce(struct virtnet_info *vi)
1508{
1509 rtnl_lock();
1510 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001511 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001512 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1513 rtnl_unlock();
1514}
1515
John Fastabend473153292017-02-02 19:14:32 -08001516static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001517{
1518 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001519 struct net_device *dev = vi->dev;
1520
1521 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1522 return 0;
1523
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001524 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1525 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001526
1527 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001528 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001529 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1530 queue_pairs);
1531 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301532 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001533 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001534 /* virtnet_open() will refill when device is going to up. */
1535 if (dev->flags & IFF_UP)
1536 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301537 }
Jason Wang986a4f42012-12-07 07:04:56 +00001538
1539 return 0;
1540}
1541
John Fastabend473153292017-02-02 19:14:32 -08001542static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1543{
1544 int err;
1545
1546 rtnl_lock();
1547 err = _virtnet_set_queues(vi, queue_pairs);
1548 rtnl_unlock();
1549 return err;
1550}
1551
Rusty Russell296f96f2007-10-22 11:03:37 +10001552static int virtnet_close(struct net_device *dev)
1553{
1554 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001555 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001556
Rusty Russellb2baed62011-12-29 00:42:38 +00001557 /* Make sure refill_work doesn't re-enable napi! */
1558 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001559
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001560 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001561 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001562 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001563 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001564
Rusty Russell296f96f2007-10-22 11:03:37 +10001565 return 0;
1566}
1567
Alex Williamson2af76982009-02-04 09:02:40 +00001568static void virtnet_set_rx_mode(struct net_device *dev)
1569{
1570 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001571 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001572 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001573 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001574 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001575 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001576 void *buf;
1577 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001578
stephen hemminger788a8b62013-12-09 16:18:45 -08001579 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001580 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1581 return;
1582
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001583 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1584 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001585
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001586 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001587
1588 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001589 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001590 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001591 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001592
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001593 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001594
1595 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001596 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001597 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001598 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001599
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001600 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001601 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001602 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001603 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1604 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1605 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001606 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001607 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001608
Alex Williamson23e258e2009-05-01 17:27:56 +00001609 sg_init_table(sg, 2);
1610
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001611 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001612 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001613 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001614 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001615 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001616
1617 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001618 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001619
1620 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001621 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001622
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001623 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001624 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001625 netdev_for_each_mc_addr(ha, dev)
1626 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001627
1628 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001629 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001630
1631 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001632 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001633 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001634
1635 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001636}
1637
Patrick McHardy80d5c362013-04-19 02:04:28 +00001638static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1639 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001640{
1641 struct virtnet_info *vi = netdev_priv(dev);
1642 struct scatterlist sg;
1643
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001644 vi->ctrl_vid = vid;
1645 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001646
1647 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001648 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001649 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001650 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001651}
1652
Patrick McHardy80d5c362013-04-19 02:04:28 +00001653static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1654 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001655{
1656 struct virtnet_info *vi = netdev_priv(dev);
1657 struct scatterlist sg;
1658
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001659 vi->ctrl_vid = vid;
1660 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001661
1662 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001663 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001664 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001665 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001666}
1667
Wanlong Gao8898c212013-01-24 23:51:30 +00001668static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001669{
1670 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001671
1672 if (vi->affinity_hint_set) {
1673 for (i = 0; i < vi->max_queue_pairs; i++) {
1674 virtqueue_set_affinity(vi->rq[i].vq, -1);
1675 virtqueue_set_affinity(vi->sq[i].vq, -1);
1676 }
1677
1678 vi->affinity_hint_set = false;
1679 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001680}
1681
1682static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001683{
1684 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001685 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001686
1687 /* In multiqueue mode, when the number of cpu is equal to the number of
1688 * queue pairs, we let the queue pairs to be private to one cpu by
1689 * setting the affinity hint to eliminate the contention.
1690 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001691 if (vi->curr_queue_pairs == 1 ||
1692 vi->max_queue_pairs != num_online_cpus()) {
1693 virtnet_clean_affinity(vi, -1);
1694 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001695 }
1696
Wanlong Gao8898c212013-01-24 23:51:30 +00001697 i = 0;
1698 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001699 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1700 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001701 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001702 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001703 }
1704
Wanlong Gao8898c212013-01-24 23:51:30 +00001705 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001706}
1707
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001708static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001709{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001710 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1711 node);
1712 virtnet_set_affinity(vi);
1713 return 0;
1714}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001715
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001716static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1717{
1718 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1719 node_dead);
1720 virtnet_set_affinity(vi);
1721 return 0;
1722}
Jason Wang3ab098d2013-10-15 11:18:58 +08001723
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001724static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1725{
1726 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1727 node);
1728
1729 virtnet_clean_affinity(vi, cpu);
1730 return 0;
1731}
1732
1733static enum cpuhp_state virtionet_online;
1734
1735static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1736{
1737 int ret;
1738
1739 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1740 if (ret)
1741 return ret;
1742 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1743 &vi->node_dead);
1744 if (!ret)
1745 return ret;
1746 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1747 return ret;
1748}
1749
1750static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1751{
1752 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1753 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1754 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001755}
1756
Rick Jones8f9f4662011-10-19 08:10:59 +00001757static void virtnet_get_ringparam(struct net_device *dev,
1758 struct ethtool_ringparam *ring)
1759{
1760 struct virtnet_info *vi = netdev_priv(dev);
1761
Jason Wang986a4f42012-12-07 07:04:56 +00001762 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1763 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001764 ring->rx_pending = ring->rx_max_pending;
1765 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001766}
1767
Rick Jones66846042011-11-14 14:17:08 +00001768
1769static void virtnet_get_drvinfo(struct net_device *dev,
1770 struct ethtool_drvinfo *info)
1771{
1772 struct virtnet_info *vi = netdev_priv(dev);
1773 struct virtio_device *vdev = vi->vdev;
1774
1775 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1776 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1777 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1778
1779}
1780
Jason Wangd73bcd22012-12-07 07:04:57 +00001781/* TODO: Eliminate OOO packets during switching */
1782static int virtnet_set_channels(struct net_device *dev,
1783 struct ethtool_channels *channels)
1784{
1785 struct virtnet_info *vi = netdev_priv(dev);
1786 u16 queue_pairs = channels->combined_count;
1787 int err;
1788
1789 /* We don't support separate rx/tx channels.
1790 * We don't allow setting 'other' channels.
1791 */
1792 if (channels->rx_count || channels->tx_count || channels->other_count)
1793 return -EINVAL;
1794
Amos Kongc18e9cd2014-04-18 13:45:41 +08001795 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001796 return -EINVAL;
1797
John Fastabendf600b692016-12-15 12:13:24 -08001798 /* For now we don't support modifying channels while XDP is loaded
1799 * also when XDP is loaded all RX queues have XDP programs so we only
1800 * need to check a single RX queue.
1801 */
1802 if (vi->rq[0].xdp_prog)
1803 return -EINVAL;
1804
Wanlong Gao47be2472013-01-24 23:51:29 +00001805 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001806 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001807 if (!err) {
1808 netif_set_real_num_tx_queues(dev, queue_pairs);
1809 netif_set_real_num_rx_queues(dev, queue_pairs);
1810
Wanlong Gao8898c212013-01-24 23:51:30 +00001811 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001812 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001813 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001814
1815 return err;
1816}
1817
1818static void virtnet_get_channels(struct net_device *dev,
1819 struct ethtool_channels *channels)
1820{
1821 struct virtnet_info *vi = netdev_priv(dev);
1822
1823 channels->combined_count = vi->curr_queue_pairs;
1824 channels->max_combined = vi->max_queue_pairs;
1825 channels->max_other = 0;
1826 channels->rx_count = 0;
1827 channels->tx_count = 0;
1828 channels->other_count = 0;
1829}
1830
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001831/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001832static bool
1833virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001834{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001835 struct ethtool_link_ksettings diff1 = *cmd;
1836 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001837
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001838 /* cmd is always set so we need to clear it, validate the port type
1839 * and also without autonegotiation we can ignore advertising
1840 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001841 diff1.base.speed = 0;
1842 diff2.base.port = PORT_OTHER;
1843 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1844 diff1.base.duplex = 0;
1845 diff1.base.cmd = 0;
1846 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001847
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001848 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1849 bitmap_empty(diff1.link_modes.supported,
1850 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1851 bitmap_empty(diff1.link_modes.advertising,
1852 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1853 bitmap_empty(diff1.link_modes.lp_advertising,
1854 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001855}
1856
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001857static int virtnet_set_link_ksettings(struct net_device *dev,
1858 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001859{
1860 struct virtnet_info *vi = netdev_priv(dev);
1861 u32 speed;
1862
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001863 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001864 /* don't allow custom speed and duplex */
1865 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001866 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001867 !virtnet_validate_ethtool_cmd(cmd))
1868 return -EINVAL;
1869 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001870 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001871
1872 return 0;
1873}
1874
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001875static int virtnet_get_link_ksettings(struct net_device *dev,
1876 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001877{
1878 struct virtnet_info *vi = netdev_priv(dev);
1879
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001880 cmd->base.speed = vi->speed;
1881 cmd->base.duplex = vi->duplex;
1882 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001883
1884 return 0;
1885}
1886
1887static void virtnet_init_settings(struct net_device *dev)
1888{
1889 struct virtnet_info *vi = netdev_priv(dev);
1890
1891 vi->speed = SPEED_UNKNOWN;
1892 vi->duplex = DUPLEX_UNKNOWN;
1893}
1894
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001895static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001896 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001897 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001898 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001899 .set_channels = virtnet_set_channels,
1900 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001901 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001902 .get_link_ksettings = virtnet_get_link_ksettings,
1903 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001904};
1905
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001906static void virtnet_freeze_down(struct virtio_device *vdev)
1907{
1908 struct virtnet_info *vi = vdev->priv;
1909 int i;
1910
1911 /* Make sure no work handler is accessing the device */
1912 flush_work(&vi->config_work);
1913
1914 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08001915 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001916 cancel_delayed_work_sync(&vi->refill);
1917
1918 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001919 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001920 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001921 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001922 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001923 }
1924}
1925
1926static int init_vqs(struct virtnet_info *vi);
1927
1928static int virtnet_restore_up(struct virtio_device *vdev)
1929{
1930 struct virtnet_info *vi = vdev->priv;
1931 int err, i;
1932
1933 err = init_vqs(vi);
1934 if (err)
1935 return err;
1936
1937 virtio_device_ready(vdev);
1938
1939 if (netif_running(vi->dev)) {
1940 for (i = 0; i < vi->curr_queue_pairs; i++)
1941 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1942 schedule_delayed_work(&vi->refill, 0);
1943
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001944 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001945 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001946 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1947 &vi->sq[i].napi);
1948 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001949 }
1950
1951 netif_device_attach(vi->dev);
1952 return err;
1953}
1954
Jason Wang3f935222017-07-19 16:54:49 +08001955static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
1956{
1957 struct scatterlist sg;
1958 vi->ctrl_offloads = cpu_to_virtio64(vi->vdev, offloads);
1959
1960 sg_init_one(&sg, &vi->ctrl_offloads, sizeof(vi->ctrl_offloads));
1961
1962 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
1963 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
1964 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
1965 return -EINVAL;
1966 }
1967
1968 return 0;
1969}
1970
1971static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
1972{
1973 u64 offloads = 0;
1974
1975 if (!vi->guest_offloads)
1976 return 0;
1977
1978 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1979 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1980
1981 return virtnet_set_guest_offloads(vi, offloads);
1982}
1983
1984static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
1985{
1986 u64 offloads = vi->guest_offloads;
1987
1988 if (!vi->guest_offloads)
1989 return 0;
1990 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1991 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1992
1993 return virtnet_set_guest_offloads(vi, offloads);
1994}
1995
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001996static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1997 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08001998{
1999 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2000 struct virtnet_info *vi = netdev_priv(dev);
2001 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002002 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002003 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002004
Jason Wang3f935222017-07-19 16:54:49 +08002005 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2006 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2007 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2008 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2009 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002010 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 -08002011 return -EOPNOTSUPP;
2012 }
2013
2014 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002015 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002016 return -EINVAL;
2017 }
2018
2019 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002020 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002021 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2022 return -EINVAL;
2023 }
2024
John Fastabend672aafd2016-12-15 12:13:49 -08002025 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2026 if (prog)
2027 xdp_qp = nr_cpu_ids;
2028
2029 /* XDP requires extra queues for XDP_TX */
2030 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002031 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002032 netdev_warn(dev, "request %i queues but max is %i\n",
2033 curr_qp + xdp_qp, vi->max_queue_pairs);
2034 return -ENOMEM;
2035 }
2036
John Fastabend2de2f7f2017-02-02 19:16:29 -08002037 if (prog) {
2038 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2039 if (IS_ERR(prog))
2040 return PTR_ERR(prog);
2041 }
2042
Jason Wang4941d472017-07-19 16:54:48 +08002043 /* Make sure NAPI is not using any XDP TX queues for RX. */
2044 for (i = 0; i < vi->max_queue_pairs; i++)
2045 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002046
John Fastabend672aafd2016-12-15 12:13:49 -08002047 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002048 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2049 if (err)
2050 goto err;
2051 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002052
John Fastabendf600b692016-12-15 12:13:24 -08002053 for (i = 0; i < vi->max_queue_pairs; i++) {
2054 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2055 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002056 if (i == 0) {
2057 if (!old_prog)
2058 virtnet_clear_guest_offloads(vi);
2059 if (!prog)
2060 virtnet_restore_guest_offloads(vi);
2061 }
John Fastabendf600b692016-12-15 12:13:24 -08002062 if (old_prog)
2063 bpf_prog_put(old_prog);
Jason Wang4941d472017-07-19 16:54:48 +08002064 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002065 }
2066
2067 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002068
Jason Wang4941d472017-07-19 16:54:48 +08002069err:
2070 for (i = 0; i < vi->max_queue_pairs; i++)
2071 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002072 if (prog)
2073 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2074 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002075}
2076
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002077static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002078{
2079 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002080 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002081 int i;
2082
2083 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002084 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2085 if (xdp_prog)
2086 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002087 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002088 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002089}
2090
2091static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
2092{
2093 switch (xdp->command) {
2094 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002095 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002096 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002097 xdp->prog_id = virtnet_xdp_query(dev);
2098 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002099 return 0;
2100 default:
2101 return -EINVAL;
2102 }
2103}
2104
Stephen Hemminger76288b42009-01-06 10:44:22 -08002105static const struct net_device_ops virtnet_netdev = {
2106 .ndo_open = virtnet_open,
2107 .ndo_stop = virtnet_close,
2108 .ndo_start_xmit = start_xmit,
2109 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002110 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002111 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002112 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002113 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2114 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002115#ifdef CONFIG_NET_POLL_CONTROLLER
2116 .ndo_poll_controller = virtnet_netpoll,
2117#endif
John Fastabendf600b692016-12-15 12:13:24 -08002118 .ndo_xdp = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002119 .ndo_xdp_xmit = virtnet_xdp_xmit,
2120 .ndo_xdp_flush = virtnet_xdp_flush,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002121 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002122};
2123
Jason Wang586d17c2012-04-11 20:43:52 +00002124static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002125{
Jason Wang586d17c2012-04-11 20:43:52 +00002126 struct virtnet_info *vi =
2127 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002128 u16 v;
2129
Rusty Russell855e0c52013-10-14 18:11:51 +10302130 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2131 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302132 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002133
2134 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002135 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002136 virtnet_ack_link_announce(vi);
2137 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002138
2139 /* Ignore unknown (future) status bits */
2140 v &= VIRTIO_NET_S_LINK_UP;
2141
2142 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302143 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002144
2145 vi->status = v;
2146
2147 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2148 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002149 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002150 } else {
2151 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002152 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002153 }
2154}
2155
2156static void virtnet_config_changed(struct virtio_device *vdev)
2157{
2158 struct virtnet_info *vi = vdev->priv;
2159
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002160 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002161}
2162
Jason Wang986a4f42012-12-07 07:04:56 +00002163static void virtnet_free_queues(struct virtnet_info *vi)
2164{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002165 int i;
2166
Jason Wangab3971b2015-03-12 13:57:44 +08002167 for (i = 0; i < vi->max_queue_pairs; i++) {
2168 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002169 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002170 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002171 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002172
Eric Dumazet963abe52016-11-15 22:24:12 -08002173 /* We called napi_hash_del() before netif_napi_del(),
2174 * we need to respect an RCU grace period before freeing vi->rq
2175 */
2176 synchronize_net();
2177
Jason Wang986a4f42012-12-07 07:04:56 +00002178 kfree(vi->rq);
2179 kfree(vi->sq);
2180}
2181
John Fastabend473153292017-02-02 19:14:32 -08002182static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002183{
John Fastabendf600b692016-12-15 12:13:24 -08002184 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002185 int i;
2186
2187 for (i = 0; i < vi->max_queue_pairs; i++) {
2188 while (vi->rq[i].pages)
2189 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002190
2191 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2192 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2193 if (old_prog)
2194 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002195 }
John Fastabend473153292017-02-02 19:14:32 -08002196}
2197
2198static void free_receive_bufs(struct virtnet_info *vi)
2199{
2200 rtnl_lock();
2201 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002202 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002203}
2204
Michael Daltonfb518792014-01-16 22:23:26 -08002205static void free_receive_page_frags(struct virtnet_info *vi)
2206{
2207 int i;
2208 for (i = 0; i < vi->max_queue_pairs; i++)
2209 if (vi->rq[i].alloc_frag.page)
2210 put_page(vi->rq[i].alloc_frag.page);
2211}
2212
John Fastabendb68df012017-01-25 18:22:48 -08002213static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002214{
2215 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2216 return false;
2217 else if (q < vi->curr_queue_pairs)
2218 return true;
2219 else
2220 return false;
2221}
2222
Jason Wang986a4f42012-12-07 07:04:56 +00002223static void free_unused_bufs(struct virtnet_info *vi)
2224{
2225 void *buf;
2226 int i;
2227
2228 for (i = 0; i < vi->max_queue_pairs; i++) {
2229 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002230 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002231 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002232 dev_kfree_skb(buf);
2233 else
2234 put_page(virt_to_head_page(buf));
2235 }
Jason Wang986a4f42012-12-07 07:04:56 +00002236 }
2237
2238 for (i = 0; i < vi->max_queue_pairs; i++) {
2239 struct virtqueue *vq = vi->rq[i].vq;
2240
2241 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002242 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002243 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002244 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002245 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002246 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002247 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002248 }
Jason Wang986a4f42012-12-07 07:04:56 +00002249 }
Jason Wang986a4f42012-12-07 07:04:56 +00002250 }
2251}
2252
Jason Wange9d74172012-12-07 07:04:55 +00002253static void virtnet_del_vqs(struct virtnet_info *vi)
2254{
2255 struct virtio_device *vdev = vi->vdev;
2256
Wanlong Gao8898c212013-01-24 23:51:30 +00002257 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002258
Jason Wange9d74172012-12-07 07:04:55 +00002259 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002260
2261 virtnet_free_queues(vi);
2262}
2263
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002264/* How large should a single buffer be so a queue full of these can fit at
2265 * least one full packet?
2266 * Logic below assumes the mergeable buffer header is used.
2267 */
2268static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2269{
2270 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2271 unsigned int rq_size = virtqueue_get_vring_size(vq);
2272 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2273 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2274 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2275
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002276 return max(max(min_buf_len, hdr_len) - hdr_len,
2277 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002278}
2279
Jason Wang986a4f42012-12-07 07:04:56 +00002280static int virtnet_find_vqs(struct virtnet_info *vi)
2281{
2282 vq_callback_t **callbacks;
2283 struct virtqueue **vqs;
2284 int ret = -ENOMEM;
2285 int i, total_vqs;
2286 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002287 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002288
2289 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2290 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2291 * possible control vq.
2292 */
2293 total_vqs = vi->max_queue_pairs * 2 +
2294 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2295
2296 /* Allocate space for find_vqs parameters */
2297 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2298 if (!vqs)
2299 goto err_vq;
2300 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2301 if (!callbacks)
2302 goto err_callback;
2303 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2304 if (!names)
2305 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002306 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002307 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2308 if (!ctx)
2309 goto err_ctx;
2310 } else {
2311 ctx = NULL;
2312 }
Jason Wang986a4f42012-12-07 07:04:56 +00002313
2314 /* Parameters for control virtqueue, if any */
2315 if (vi->has_cvq) {
2316 callbacks[total_vqs - 1] = NULL;
2317 names[total_vqs - 1] = "control";
2318 }
2319
2320 /* Allocate/initialize parameters for send/receive virtqueues */
2321 for (i = 0; i < vi->max_queue_pairs; i++) {
2322 callbacks[rxq2vq(i)] = skb_recv_done;
2323 callbacks[txq2vq(i)] = skb_xmit_done;
2324 sprintf(vi->rq[i].name, "input.%d", i);
2325 sprintf(vi->sq[i].name, "output.%d", i);
2326 names[rxq2vq(i)] = vi->rq[i].name;
2327 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002328 if (ctx)
2329 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002330 }
2331
2332 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002333 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002334 if (ret)
2335 goto err_find;
2336
2337 if (vi->has_cvq) {
2338 vi->cvq = vqs[total_vqs - 1];
2339 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002340 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002341 }
2342
2343 for (i = 0; i < vi->max_queue_pairs; i++) {
2344 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002345 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002346 vi->sq[i].vq = vqs[txq2vq(i)];
2347 }
2348
2349 kfree(names);
2350 kfree(callbacks);
2351 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002352 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002353
2354 return 0;
2355
2356err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002357 kfree(ctx);
2358err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002359 kfree(names);
2360err_names:
2361 kfree(callbacks);
2362err_callback:
2363 kfree(vqs);
2364err_vq:
2365 return ret;
2366}
2367
2368static int virtnet_alloc_queues(struct virtnet_info *vi)
2369{
2370 int i;
2371
2372 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2373 if (!vi->sq)
2374 goto err_sq;
2375 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002376 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002377 goto err_rq;
2378
2379 INIT_DELAYED_WORK(&vi->refill, refill_work);
2380 for (i = 0; i < vi->max_queue_pairs; i++) {
2381 vi->rq[i].pages = NULL;
2382 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2383 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002384 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2385 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002386
2387 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002388 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002389 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2390 }
2391
2392 return 0;
2393
2394err_rq:
2395 kfree(vi->sq);
2396err_sq:
2397 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002398}
2399
Amit Shah3f9c10b2011-12-22 16:58:31 +05302400static int init_vqs(struct virtnet_info *vi)
2401{
Jason Wang986a4f42012-12-07 07:04:56 +00002402 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302403
Jason Wang986a4f42012-12-07 07:04:56 +00002404 /* Allocate send & receive queues */
2405 ret = virtnet_alloc_queues(vi);
2406 if (ret)
2407 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302408
Jason Wang986a4f42012-12-07 07:04:56 +00002409 ret = virtnet_find_vqs(vi);
2410 if (ret)
2411 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302412
Wanlong Gao47be2472013-01-24 23:51:29 +00002413 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002414 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002415 put_online_cpus();
2416
Amit Shah3f9c10b2011-12-22 16:58:31 +05302417 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002418
2419err_free:
2420 virtnet_free_queues(vi);
2421err:
2422 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302423}
2424
Michael Daltonfbf28d72014-01-16 22:23:30 -08002425#ifdef CONFIG_SYSFS
2426static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002427 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002428{
2429 struct virtnet_info *vi = netdev_priv(queue->dev);
2430 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002431 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002432
2433 BUG_ON(queue_index >= vi->max_queue_pairs);
2434 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002435 return sprintf(buf, "%u\n",
2436 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002437}
2438
2439static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2440 __ATTR_RO(mergeable_rx_buffer_size);
2441
2442static struct attribute *virtio_net_mrg_rx_attrs[] = {
2443 &mergeable_rx_buffer_size_attribute.attr,
2444 NULL
2445};
2446
2447static const struct attribute_group virtio_net_mrg_rx_group = {
2448 .name = "virtio_net",
2449 .attrs = virtio_net_mrg_rx_attrs
2450};
2451#endif
2452
Jason Wang892d6eb2014-11-20 17:03:05 +08002453static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2454 unsigned int fbit,
2455 const char *fname, const char *dname)
2456{
2457 if (!virtio_has_feature(vdev, fbit))
2458 return false;
2459
2460 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2461 fname, dname);
2462
2463 return true;
2464}
2465
2466#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2467 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2468
2469static bool virtnet_validate_features(struct virtio_device *vdev)
2470{
2471 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2472 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2473 "VIRTIO_NET_F_CTRL_VQ") ||
2474 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2475 "VIRTIO_NET_F_CTRL_VQ") ||
2476 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2477 "VIRTIO_NET_F_CTRL_VQ") ||
2478 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2479 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2480 "VIRTIO_NET_F_CTRL_VQ"))) {
2481 return false;
2482 }
2483
2484 return true;
2485}
2486
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002487#define MIN_MTU ETH_MIN_MTU
2488#define MAX_MTU ETH_MAX_MTU
2489
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002490static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002491{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002492 if (!vdev->config->get) {
2493 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2494 __func__);
2495 return -EINVAL;
2496 }
2497
Jason Wang892d6eb2014-11-20 17:03:05 +08002498 if (!virtnet_validate_features(vdev))
2499 return -EINVAL;
2500
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002501 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2502 int mtu = virtio_cread16(vdev,
2503 offsetof(struct virtio_net_config,
2504 mtu));
2505 if (mtu < MIN_MTU)
2506 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2507 }
2508
2509 return 0;
2510}
2511
2512static int virtnet_probe(struct virtio_device *vdev)
2513{
2514 int i, err;
2515 struct net_device *dev;
2516 struct virtnet_info *vi;
2517 u16 max_queue_pairs;
2518 int mtu;
2519
Jason Wang986a4f42012-12-07 07:04:56 +00002520 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302521 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2522 struct virtio_net_config,
2523 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002524
2525 /* We need at least 2 queue's */
2526 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2527 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2528 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2529 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002530
2531 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002532 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002533 if (!dev)
2534 return -ENOMEM;
2535
2536 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002537 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002538 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002539 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002540
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002541 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002542 SET_NETDEV_DEV(dev, &vdev->dev);
2543
2544 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002545 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002546 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002547 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002548 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002549 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002550
2551 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002552 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002553 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2554 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002555 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002556 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2557 dev->hw_features |= NETIF_F_TSO;
2558 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2559 dev->hw_features |= NETIF_F_TSO6;
2560 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2561 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002562
Jason Wang41f2f122014-12-24 11:03:52 +08002563 dev->features |= NETIF_F_GSO_ROBUST;
2564
Michał Mirosław98e778c2011-03-31 01:01:35 +00002565 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002566 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002567 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002568 }
Thomas Huth4f491292013-08-27 17:09:02 +02002569 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2570 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002571
Jason Wang4fda8302013-04-10 23:32:21 +00002572 dev->vlan_features = dev->features;
2573
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002574 /* MTU range: 68 - 65535 */
2575 dev->min_mtu = MIN_MTU;
2576 dev->max_mtu = MAX_MTU;
2577
Rusty Russell296f96f2007-10-22 11:03:37 +10002578 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302579 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2580 virtio_cread_bytes(vdev,
2581 offsetof(struct virtio_net_config, mac),
2582 dev->dev_addr, dev->addr_len);
2583 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002584 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002585
2586 /* Set up our device-specific information */
2587 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002588 vi->dev = dev;
2589 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002590 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002591 vi->stats = alloc_percpu(struct virtnet_stats);
2592 err = -ENOMEM;
2593 if (vi->stats == NULL)
2594 goto free;
2595
John Stultz827da442013-10-07 15:51:58 -07002596 for_each_possible_cpu(i) {
2597 struct virtnet_stats *virtnet_stats;
2598 virtnet_stats = per_cpu_ptr(vi->stats, i);
2599 u64_stats_init(&virtnet_stats->tx_syncp);
2600 u64_stats_init(&virtnet_stats->rx_syncp);
2601 }
2602
Jason Wang586d17c2012-04-11 20:43:52 +00002603 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002604
Herbert Xu97402b92008-04-18 11:24:27 +08002605 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002606 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2607 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002608 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2609 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002610 vi->big_packets = true;
2611
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002612 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2613 vi->mergeable_rx_bufs = true;
2614
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002615 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2616 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002617 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2618 else
2619 vi->hdr_len = sizeof(struct virtio_net_hdr);
2620
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002621 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2622 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302623 vi->any_header_sg = true;
2624
Jason Wang986a4f42012-12-07 07:04:56 +00002625 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2626 vi->has_cvq = true;
2627
Aaron Conole14de9d12016-06-03 16:57:12 -04002628 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2629 mtu = virtio_cread16(vdev,
2630 offsetof(struct virtio_net_config,
2631 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002632 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002633 /* Should never trigger: MTU was previously validated
2634 * in virtnet_validate.
2635 */
2636 dev_err(&vdev->dev, "device MTU appears to have changed "
2637 "it is now %d < %d", mtu, dev->min_mtu);
2638 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002639 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002640
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002641 dev->mtu = mtu;
2642 dev->max_mtu = mtu;
2643
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002644 /* TODO: size buffers correctly in this case. */
2645 if (dev->mtu > ETH_DATA_LEN)
2646 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002647 }
2648
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002649 if (vi->any_header_sg)
2650 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002651
Jason Wang44900012016-11-25 12:37:26 +08002652 /* Enable multiqueue by default */
2653 if (num_online_cpus() >= max_queue_pairs)
2654 vi->curr_queue_pairs = max_queue_pairs;
2655 else
2656 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002657 vi->max_queue_pairs = max_queue_pairs;
2658
2659 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302660 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002661 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002662 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002663
Michael Daltonfbf28d72014-01-16 22:23:30 -08002664#ifdef CONFIG_SYSFS
2665 if (vi->mergeable_rx_bufs)
2666 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2667#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002668 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2669 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002670
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002671 virtnet_init_settings(dev);
2672
Rusty Russell296f96f2007-10-22 11:03:37 +10002673 err = register_netdev(dev);
2674 if (err) {
2675 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002676 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002677 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002678
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302679 virtio_device_ready(vdev);
2680
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002681 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002682 if (err) {
2683 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002684 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002685 }
2686
Jason Wanga2208712016-12-13 14:23:05 +08002687 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002688
Jason Wang167c25e2010-11-10 14:45:41 +00002689 /* Assume link up if device can't report link status,
2690 otherwise get link status from config. */
2691 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2692 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002693 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002694 } else {
2695 vi->status = VIRTIO_NET_S_LINK_UP;
2696 netif_carrier_on(dev);
2697 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002698
Jason Wang3f935222017-07-19 16:54:49 +08002699 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2700 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2701 set_bit(guest_offloads[i], &vi->guest_offloads);
2702
Jason Wang986a4f42012-12-07 07:04:56 +00002703 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2704 dev->name, max_queue_pairs);
2705
Rusty Russell296f96f2007-10-22 11:03:37 +10002706 return 0;
2707
wangyunjianf00e35e2016-05-31 11:52:43 +08002708free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302709 vi->vdev->config->reset(vdev);
2710
Rusty Russellb3369c12008-02-04 23:50:02 -05002711 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002712free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002713 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002714 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002715 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002716free_stats:
2717 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002718free:
2719 free_netdev(dev);
2720 return err;
2721}
2722
Amit Shah04486ed2011-12-22 16:58:32 +05302723static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002724{
Amit Shah04486ed2011-12-22 16:58:32 +05302725 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002726
2727 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002728 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002729
Jason Wang986a4f42012-12-07 07:04:56 +00002730 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002731
Michael Daltonfb518792014-01-16 22:23:26 -08002732 free_receive_page_frags(vi);
2733
Jason Wang986a4f42012-12-07 07:04:56 +00002734 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302735}
2736
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002737static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302738{
2739 struct virtnet_info *vi = vdev->priv;
2740
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002741 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002742
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302743 /* Make sure no work handler is accessing the device. */
2744 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002745
Amit Shah04486ed2011-12-22 16:58:32 +05302746 unregister_netdev(vi->dev);
2747
2748 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002749
Krishna Kumar2e66f552011-07-20 03:56:02 +00002750 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002751 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002752}
2753
Arnd Bergmann67a75192017-07-25 17:35:50 +02002754static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302755{
2756 struct virtnet_info *vi = vdev->priv;
2757
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002758 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002759 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302760 remove_vq_common(vi);
2761
2762 return 0;
2763}
2764
Arnd Bergmann67a75192017-07-25 17:35:50 +02002765static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302766{
2767 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002768 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302769
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002770 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302771 if (err)
2772 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002773 virtnet_set_queues(vi, vi->curr_queue_pairs);
2774
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002775 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002776 if (err)
2777 return err;
2778
Amit Shah0741bcb2011-12-22 16:58:33 +05302779 return 0;
2780}
Amit Shah0741bcb2011-12-22 16:58:33 +05302781
Rusty Russell296f96f2007-10-22 11:03:37 +10002782static struct virtio_device_id id_table[] = {
2783 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2784 { 0 },
2785};
2786
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002787#define VIRTNET_FEATURES \
2788 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2789 VIRTIO_NET_F_MAC, \
2790 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2791 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2792 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2793 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2794 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2795 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2796 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Wang3f935222017-07-19 16:54:49 +08002797 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002798
Rusty Russellc45a6812008-05-02 21:50:50 -05002799static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002800 VIRTNET_FEATURES,
2801};
2802
2803static unsigned int features_legacy[] = {
2804 VIRTNET_FEATURES,
2805 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302806 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002807};
2808
Uwe Kleine-König22402522009-11-05 01:32:44 -08002809static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002810 .feature_table = features,
2811 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002812 .feature_table_legacy = features_legacy,
2813 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002814 .driver.name = KBUILD_MODNAME,
2815 .driver.owner = THIS_MODULE,
2816 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002817 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002818 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002819 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002820 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302821#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302822 .freeze = virtnet_freeze,
2823 .restore = virtnet_restore,
2824#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002825};
2826
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002827static __init int virtio_net_driver_init(void)
2828{
2829 int ret;
2830
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002831 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002832 virtnet_cpu_online,
2833 virtnet_cpu_down_prep);
2834 if (ret < 0)
2835 goto out;
2836 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002837 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002838 NULL, virtnet_cpu_dead);
2839 if (ret)
2840 goto err_dead;
2841
2842 ret = register_virtio_driver(&virtio_net_driver);
2843 if (ret)
2844 goto err_virtio;
2845 return 0;
2846err_virtio:
2847 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2848err_dead:
2849 cpuhp_remove_multi_state(virtionet_online);
2850out:
2851 return ret;
2852}
2853module_init(virtio_net_driver_init);
2854
2855static __exit void virtio_net_driver_exit(void)
2856{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02002857 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002858 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2859 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002860}
2861module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002862
2863MODULE_DEVICE_TABLE(virtio, id_table);
2864MODULE_DESCRIPTION("Virtio network driver");
2865MODULE_LICENSE("GPL");