blob: 11e28530c83c9fa6162725419f4c219ea82b7136 [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>
Rusty Russell296f96f2007-10-22 11:03:37 +100032
Amerigo Wangd34710e2013-05-09 19:50:51 +000033static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020034module_param(napi_weight, int, 0444);
35
Rusty Russelleb939922011-12-19 14:08:01 +000036static bool csum = true, gso = true;
Rusty Russell34a48572008-02-04 23:50:02 -050037module_param(csum, bool, 0444);
38module_param(gso, bool, 0444);
39
Rusty Russell296f96f2007-10-22 11:03:37 +100040/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080041#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080042#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100043
John Fastabend2de2f7f2017-02-02 19:16:29 -080044/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
45#define VIRTIO_XDP_HEADROOM 256
46
Johannes Berg5377d7582015-08-19 09:48:40 +020047/* RX packet size EWMA. The average packet size is used to determine the packet
48 * buffer size when refilling RX rings. As the entire RX ring may be refilled
49 * at once, the weight is chosen so that the EWMA will be insensitive to short-
50 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080051 */
Johannes Berg5377d7582015-08-19 09:48:40 +020052DECLARE_EWMA(pkt_len, 1, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080053
Michael S. Tsirkind0fa28f2017-01-23 21:37:52 +020054/* With mergeable buffers we align buffer address and use the low bits to
55 * encode its true size. Buffer size is up to 1 page so we need to align to
56 * square root of page size to ensure we reserve enough bits to encode the true
57 * size.
58 */
59#define MERGEABLE_BUFFER_MIN_ALIGN_SHIFT ((PAGE_SHIFT + 1) / 2)
60
Michael Daltonab7db912014-01-16 22:23:27 -080061/* Minimum alignment for mergeable packet buffers. */
Michael S. Tsirkind0fa28f2017-01-23 21:37:52 +020062#define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, \
63 1 << MERGEABLE_BUFFER_MIN_ALIGN_SHIFT)
Michael Daltonab7db912014-01-16 22:23:27 -080064
Rick Jones66846042011-11-14 14:17:08 +000065#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000066
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000067struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000068 struct u64_stats_sync tx_syncp;
69 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000070 u64 tx_bytes;
71 u64 tx_packets;
72
73 u64 rx_bytes;
74 u64 rx_packets;
75};
76
Jason Wange9d74172012-12-07 07:04:55 +000077/* Internal representation of a send virtqueue */
78struct send_queue {
79 /* Virtqueue associated with this send _queue */
80 struct virtqueue *vq;
81
82 /* TX: fragments + linear part + virtio header */
83 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000084
85 /* Name of the send queue: output.$index */
86 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000087};
88
89/* Internal representation of a receive virtqueue */
90struct receive_queue {
91 /* Virtqueue associated with this receive_queue */
92 struct virtqueue *vq;
93
Rusty Russell296f96f2007-10-22 11:03:37 +100094 struct napi_struct napi;
95
John Fastabendf600b692016-12-15 12:13:24 -080096 struct bpf_prog __rcu *xdp_prog;
97
Jason Wange9d74172012-12-07 07:04:55 +000098 /* Chain pages by the private ptr. */
99 struct page *pages;
100
Michael Daltonab7db912014-01-16 22:23:27 -0800101 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200102 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800103
Michael Daltonfb518792014-01-16 22:23:26 -0800104 /* Page frag for packet buffer allocation. */
105 struct page_frag alloc_frag;
106
Jason Wange9d74172012-12-07 07:04:55 +0000107 /* RX: fragments + linear part + virtio header */
108 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000109
110 /* Name of this receive queue: input.$index */
111 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000112};
113
114struct virtnet_info {
115 struct virtio_device *vdev;
116 struct virtqueue *cvq;
117 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000118 struct send_queue *sq;
119 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000120 unsigned int status;
121
Jason Wang986a4f42012-12-07 07:04:56 +0000122 /* Max # of queue pairs supported by the device */
123 u16 max_queue_pairs;
124
125 /* # of queue pairs currently used by the driver */
126 u16 curr_queue_pairs;
127
John Fastabend672aafd2016-12-15 12:13:49 -0800128 /* # of XDP queue pairs currently used by the driver */
129 u16 xdp_queue_pairs;
130
Herbert Xu97402b92008-04-18 11:24:27 +0800131 /* I like... big packets and I cannot lie! */
132 bool big_packets;
133
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800134 /* Host will merge rx buffers for big packets (shake it! shake it!) */
135 bool mergeable_rx_bufs;
136
Jason Wang986a4f42012-12-07 07:04:56 +0000137 /* Has control virtqueue */
138 bool has_cvq;
139
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930140 /* Host can handle any s/g split between our header and packet data */
141 bool any_header_sg;
142
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300143 /* Packet virtio header size */
144 u8 hdr_len;
145
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000146 /* Active statistics */
147 struct virtnet_stats __percpu *stats;
148
Rusty Russell3161e452009-08-26 12:22:32 -0700149 /* Work struct for refilling if we run low on memory. */
150 struct delayed_work refill;
151
Jason Wang586d17c2012-04-11 20:43:52 +0000152 /* Work struct for config space updates */
153 struct work_struct config_work;
154
Jason Wang986a4f42012-12-07 07:04:56 +0000155 /* Does the affinity hint is set for virtqueues? */
156 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000157
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200158 /* CPU hotplug instances for online & dead */
159 struct hlist_node node;
160 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200161
162 /* Control VQ buffers: protected by the rtnl lock */
163 struct virtio_net_ctrl_hdr ctrl_hdr;
164 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700165 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200166 u8 ctrl_promisc;
167 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700168 u16 ctrl_vid;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100169
170 /* Ethtool settings */
171 u8 duplex;
172 u32 speed;
Rusty Russell296f96f2007-10-22 11:03:37 +1000173};
174
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000175struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300176 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000177 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300178 * hdr is in a separate sg buffer, and data sg buffer shares same page
179 * with this header sg. This padding makes next sg 16 byte aligned
180 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000181 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300182 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000183};
184
Jason Wang986a4f42012-12-07 07:04:56 +0000185/* Converting between virtqueue no. and kernel tx/rx queue no.
186 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
187 */
188static int vq2txq(struct virtqueue *vq)
189{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000190 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000191}
192
193static int txq2vq(int txq)
194{
195 return txq * 2 + 1;
196}
197
198static int vq2rxq(struct virtqueue *vq)
199{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000200 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000201}
202
203static int rxq2vq(int rxq)
204{
205 return rxq * 2;
206}
207
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300208static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000209{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300210 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000211}
212
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000213/*
214 * private is used to chain pages for big packets, put the whole
215 * most recent used list in the beginning for reuse
216 */
Jason Wange9d74172012-12-07 07:04:55 +0000217static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500218{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000219 struct page *end;
220
Jason Wange9d74172012-12-07 07:04:55 +0000221 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000222 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000223 end->private = (unsigned long)rq->pages;
224 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500225}
226
Jason Wange9d74172012-12-07 07:04:55 +0000227static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500228{
Jason Wange9d74172012-12-07 07:04:55 +0000229 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500230
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000232 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000233 /* clear private here, it is used to chain pages */
234 p->private = 0;
235 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500236 p = alloc_page(gfp_mask);
237 return p;
238}
239
Jason Wange9d74172012-12-07 07:04:55 +0000240static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000241{
Jason Wange9d74172012-12-07 07:04:55 +0000242 struct virtnet_info *vi = vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000243
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500244 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000245 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000246
Rusty Russell363f1512008-06-08 20:51:55 +1000247 /* We were probably waiting for more output buffers. */
Jason Wang986a4f42012-12-07 07:04:56 +0000248 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000249}
250
Michael Daltonab7db912014-01-16 22:23:27 -0800251static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx)
252{
253 unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1);
254 return (truesize + 1) * MERGEABLE_BUFFER_ALIGN;
255}
256
257static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx)
258{
259 return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN);
260
261}
262
263static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize)
264{
265 unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN;
266 return (unsigned long)buf | (size - 1);
267}
268
Mike Waychison34646452012-01-04 12:52:32 +0000269/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300270static struct sk_buff *page_to_skb(struct virtnet_info *vi,
271 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700272 struct page *page, unsigned int offset,
273 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000274{
275 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300276 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700277 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000278 char *p;
279
Michael Dalton2613af02013-10-28 15:44:18 -0700280 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000281
282 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100283 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000284 if (unlikely(!skb))
285 return NULL;
286
287 hdr = skb_vnet_hdr(skb);
288
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300289 hdr_len = vi->hdr_len;
290 if (vi->mergeable_rx_bufs)
291 hdr_padded_len = sizeof *hdr;
292 else
Michael Dalton2613af02013-10-28 15:44:18 -0700293 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000294
295 memcpy(hdr, p, hdr_len);
296
297 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700298 offset += hdr_padded_len;
299 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000300
301 copy = len;
302 if (copy > skb_tailroom(skb))
303 copy = skb_tailroom(skb);
304 memcpy(skb_put(skb, copy), p, copy);
305
306 len -= copy;
307 offset += copy;
308
Michael Dalton2613af02013-10-28 15:44:18 -0700309 if (vi->mergeable_rx_bufs) {
310 if (len)
311 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
312 else
313 put_page(page);
314 return skb;
315 }
316
Sasha Levine878d782011-09-28 04:40:54 +0000317 /*
318 * Verify that we can indeed put this data into a skb.
319 * This is here to handle cases when the device erroneously
320 * tries to receive more than is possible. This is usually
321 * the case of a broken device.
322 */
323 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000324 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000325 dev_kfree_skb(skb);
326 return NULL;
327 }
Michael Dalton2613af02013-10-28 15:44:18 -0700328 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700330 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
331 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
332 frag_size, truesize);
333 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000334 page = (struct page *)page->private;
335 offset = 0;
336 }
337
338 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000339 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000340
341 return skb;
342}
343
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100344static bool virtnet_xdp_xmit(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800345 struct receive_queue *rq,
Jason Wangbb91acc2016-12-23 22:37:32 +0800346 struct xdp_buff *xdp,
347 void *data)
John Fastabend56434a02016-12-15 12:14:13 -0800348{
John Fastabend56434a02016-12-15 12:14:13 -0800349 struct virtio_net_hdr_mrg_rxbuf *hdr;
350 unsigned int num_sg, len;
John Fastabend722d8282017-02-02 19:15:32 -0800351 struct send_queue *sq;
352 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800353 void *xdp_sent;
354 int err;
355
John Fastabend722d8282017-02-02 19:15:32 -0800356 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
357 sq = &vi->sq[qp];
358
John Fastabend56434a02016-12-15 12:14:13 -0800359 /* Free up any pending old buffers before queueing new ones. */
360 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangbb91acc2016-12-23 22:37:32 +0800361 if (vi->mergeable_rx_bufs) {
362 struct page *sent_page = virt_to_head_page(xdp_sent);
363
364 put_page(sent_page);
365 } else { /* small buffer */
366 struct sk_buff *skb = xdp_sent;
367
368 kfree_skb(skb);
369 }
John Fastabend56434a02016-12-15 12:14:13 -0800370 }
371
Jason Wangbb91acc2016-12-23 22:37:32 +0800372 if (vi->mergeable_rx_bufs) {
John Fastabend2de2f7f2017-02-02 19:16:29 -0800373 xdp->data -= sizeof(struct virtio_net_hdr_mrg_rxbuf);
Jason Wangbb91acc2016-12-23 22:37:32 +0800374 /* Zero header and leave csum up to XDP layers */
375 hdr = xdp->data;
376 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800377
Jason Wangbb91acc2016-12-23 22:37:32 +0800378 num_sg = 1;
379 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
380 } else { /* small buffer */
381 struct sk_buff *skb = data;
382
383 /* Zero header and leave csum up to XDP layers */
384 hdr = skb_vnet_hdr(skb);
385 memset(hdr, 0, vi->hdr_len);
386
387 num_sg = 2;
388 sg_init_table(sq->sg, 2);
389 sg_set_buf(sq->sg, hdr, vi->hdr_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800390 skb_to_sgvec(skb, sq->sg + 1,
391 xdp->data - xdp->data_hard_start,
392 xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800393 }
John Fastabend56434a02016-12-15 12:14:13 -0800394 err = virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
Jason Wangbb91acc2016-12-23 22:37:32 +0800395 data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800396 if (unlikely(err)) {
Jason Wangbb91acc2016-12-23 22:37:32 +0800397 if (vi->mergeable_rx_bufs) {
398 struct page *page = virt_to_head_page(xdp->data);
399
400 put_page(page);
401 } else /* small buffer */
402 kfree_skb(data);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100403 /* On error abort to avoid unnecessary kick */
404 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800405 }
406
407 virtqueue_kick(sq->vq);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100408 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800409}
410
Jason Wangbb91acc2016-12-23 22:37:32 +0800411static struct sk_buff *receive_small(struct net_device *dev,
412 struct virtnet_info *vi,
413 struct receive_queue *rq,
414 void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200415{
416 struct sk_buff * skb = buf;
Jason Wangbb91acc2016-12-23 22:37:32 +0800417 struct bpf_prog *xdp_prog;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200418
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300419 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200420
Jason Wangbb91acc2016-12-23 22:37:32 +0800421 rcu_read_lock();
422 xdp_prog = rcu_dereference(rq->xdp_prog);
423 if (xdp_prog) {
424 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
John Fastabend0354e4d2017-02-02 19:15:01 -0800425 struct xdp_buff xdp;
Jason Wangbb91acc2016-12-23 22:37:32 +0800426 u32 act;
427
428 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
429 goto err_xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800430
John Fastabend2de2f7f2017-02-02 19:16:29 -0800431 xdp.data_hard_start = skb->data;
432 xdp.data = skb->data + VIRTIO_XDP_HEADROOM;
John Fastabend0354e4d2017-02-02 19:15:01 -0800433 xdp.data_end = xdp.data + len;
434 act = bpf_prog_run_xdp(xdp_prog, &xdp);
435
Jason Wangbb91acc2016-12-23 22:37:32 +0800436 switch (act) {
437 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800438 /* Recalculate length in case bpf program changed it */
439 __skb_pull(skb, xdp.data - xdp.data_hard_start);
440 len = xdp.data_end - xdp.data;
Jason Wangbb91acc2016-12-23 22:37:32 +0800441 break;
442 case XDP_TX:
John Fastabend722d8282017-02-02 19:15:32 -0800443 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp, skb)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800444 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wangbb91acc2016-12-23 22:37:32 +0800445 rcu_read_unlock();
446 goto xdp_xmit;
Jason Wangbb91acc2016-12-23 22:37:32 +0800447 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800448 bpf_warn_invalid_xdp_action(act);
449 case XDP_ABORTED:
450 trace_xdp_exception(vi->dev, xdp_prog, act);
451 case XDP_DROP:
Jason Wangbb91acc2016-12-23 22:37:32 +0800452 goto err_xdp;
453 }
454 }
455 rcu_read_unlock();
456
John Fastabend2de2f7f2017-02-02 19:16:29 -0800457 skb_trim(skb, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200458 return skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800459
460err_xdp:
461 rcu_read_unlock();
462 dev->stats.rx_dropped++;
463 kfree_skb(skb);
464xdp_xmit:
465 return NULL;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200466}
467
468static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300469 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200470 struct receive_queue *rq,
471 void *buf,
472 unsigned int len)
473{
474 struct page *page = buf;
Jason Wangc47a43d2016-12-23 22:37:31 +0800475 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200476
477 if (unlikely(!skb))
478 goto err;
479
480 return skb;
481
482err:
483 dev->stats.rx_dropped++;
484 give_pages(rq, page);
485 return NULL;
486}
487
John Fastabend72979a62016-12-15 12:14:36 -0800488/* The conditions to enable XDP should preclude the underlying device from
489 * sending packets across multiple buffers (num_buf > 1). However per spec
490 * it does not appear to be illegal to do so but rather just against convention.
491 * So in order to avoid making a system unresponsive the packets are pushed
492 * into a page and the XDP program is run. This will be extremely slow and we
493 * push a warning to the user to fix this as soon as possible. Fixing this may
494 * require resolving the underlying hardware to determine why multiple buffers
495 * are being received or simply loading the XDP program in the ingress stack
496 * after the skb is built because there is no advantage to running it here
497 * anymore.
498 */
499static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800500 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800501 struct page *p,
502 int offset,
503 unsigned int *len)
504{
505 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800506 unsigned int page_off = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800507
508 if (!page)
509 return NULL;
510
511 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
512 page_off += *len;
513
Jason Wang56a86f82016-12-23 22:37:26 +0800514 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800515 unsigned int buflen;
516 unsigned long ctx;
517 void *buf;
518 int off;
519
520 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen);
521 if (unlikely(!ctx))
522 goto err_buf;
523
John Fastabend72979a62016-12-15 12:14:36 -0800524 buf = mergeable_ctx_to_buf_address(ctx);
525 p = virt_to_head_page(buf);
526 off = buf - page_address(p);
527
Jason Wang56a86f82016-12-23 22:37:26 +0800528 /* guard against a misconfigured or uncooperative backend that
529 * is sending packet larger than the MTU.
530 */
531 if ((page_off + buflen) > PAGE_SIZE) {
532 put_page(p);
533 goto err_buf;
534 }
535
John Fastabend72979a62016-12-15 12:14:36 -0800536 memcpy(page_address(page) + page_off,
537 page_address(p) + off, buflen);
538 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800539 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800540 }
541
John Fastabend2de2f7f2017-02-02 19:16:29 -0800542 /* Headroom does not contribute to packet length */
543 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800544 return page;
545err_buf:
546 __free_pages(page, 0);
547 return NULL;
548}
549
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200550static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200551 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200552 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800553 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200554 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000555{
Michael Daltonab7db912014-01-16 22:23:27 -0800556 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300557 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
558 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200559 struct page *page = virt_to_head_page(buf);
560 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800561 struct sk_buff *head_skb, *curr_skb;
562 struct bpf_prog *xdp_prog;
563 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800564
John Fastabend56434a02016-12-15 12:14:13 -0800565 head_skb = NULL;
566
John Fastabendf600b692016-12-15 12:13:24 -0800567 rcu_read_lock();
568 xdp_prog = rcu_dereference(rq->xdp_prog);
569 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800570 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800571 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800572 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800573 u32 act;
574
Jason Wang73b62bd2016-12-23 22:37:24 +0800575 /* This happens when rx buffer size is underestimated */
John Fastabendf600b692016-12-15 12:13:24 -0800576 if (unlikely(num_buf > 1)) {
John Fastabend72979a62016-12-15 12:14:36 -0800577 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800578 xdp_page = xdp_linearize_page(rq, &num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800579 page, offset, &len);
580 if (!xdp_page)
581 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800582 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800583 } else {
584 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800585 }
586
587 /* Transient failure which in theory could occur if
588 * in-flight packets from before XDP was enabled reach
589 * the receive path after XDP is loaded. In practice I
590 * was not able to create this condition.
591 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800592 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800593 goto err_xdp;
594
John Fastabend2de2f7f2017-02-02 19:16:29 -0800595 /* Allow consuming headroom but reserve enough space to push
596 * the descriptor on if we get an XDP_TX return code.
597 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800598 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800599 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800600 xdp.data = data + vi->hdr_len;
601 xdp.data_end = xdp.data + (len - vi->hdr_len);
602 act = bpf_prog_run_xdp(xdp_prog, &xdp);
603
John Fastabend56434a02016-12-15 12:14:13 -0800604 switch (act) {
605 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800606 /* recalculate offset to account for any header
607 * adjustments. Note other cases do not build an
608 * skb and avoid using offset
609 */
610 offset = xdp.data -
611 page_address(xdp_page) - vi->hdr_len;
612
Jason Wang1830f892016-12-23 22:37:27 +0800613 /* We can only create skb based on xdp_page. */
614 if (unlikely(xdp_page != page)) {
615 rcu_read_unlock();
616 put_page(page);
617 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800618 offset, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800619 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800620 return head_skb;
621 }
John Fastabend56434a02016-12-15 12:14:13 -0800622 break;
623 case XDP_TX:
John Fastabend722d8282017-02-02 19:15:32 -0800624 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp, data)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800625 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang5c334742016-12-23 22:37:29 +0800626 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800627 if (unlikely(xdp_page != page))
628 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800629 rcu_read_unlock();
630 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800631 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800632 bpf_warn_invalid_xdp_action(act);
633 case XDP_ABORTED:
634 trace_xdp_exception(vi->dev, xdp_prog, act);
635 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800636 if (unlikely(xdp_page != page))
637 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800638 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800639 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800640 }
John Fastabendf600b692016-12-15 12:13:24 -0800641 }
642 rcu_read_unlock();
643
644 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
645 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
646 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000647
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200648 if (unlikely(!curr_skb))
649 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000650 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200651 int num_skb_frags;
652
Michael Daltonab7db912014-01-16 22:23:27 -0800653 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
654 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200655 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200656 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300657 virtio16_to_cpu(vi->vdev,
658 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200659 dev->stats.rx_length_errors++;
660 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000661 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200662
Michael Daltonab7db912014-01-16 22:23:27 -0800663 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200664 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200665
666 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700667 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
668 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200669
670 if (unlikely(!nskb))
671 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700672 if (curr_skb == head_skb)
673 skb_shinfo(curr_skb)->frag_list = nskb;
674 else
675 curr_skb->next = nskb;
676 curr_skb = nskb;
677 head_skb->truesize += nskb->truesize;
678 num_skb_frags = 0;
679 }
Michael Daltonab7db912014-01-16 22:23:27 -0800680 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700681 if (curr_skb != head_skb) {
682 head_skb->data_len += len;
683 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800684 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700685 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200686 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800687 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
688 put_page(page);
689 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800690 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800691 } else {
692 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800693 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800694 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200695 }
696
Johannes Berg5377d7582015-08-19 09:48:40 +0200697 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200698 return head_skb;
699
John Fastabendf600b692016-12-15 12:13:24 -0800700err_xdp:
701 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200702err_skb:
703 put_page(page);
704 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800705 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
706 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200707 pr_debug("%s: rx error: %d buffers missing\n",
708 dev->name, num_buf);
709 dev->stats.rx_length_errors++;
710 break;
711 }
Michael Daltonab7db912014-01-16 22:23:27 -0800712 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200713 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000714 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200715err_buf:
716 dev->stats.rx_dropped++;
717 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800718xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200719 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000720}
721
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300722static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
723 void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000724{
Jason Wange9d74172012-12-07 07:04:55 +0000725 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000726 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000727 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300728 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000729
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300730 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000731 pr_debug("%s: short packet %i\n", dev->name, len);
732 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800733 if (vi->mergeable_rx_bufs) {
734 unsigned long ctx = (unsigned long)buf;
735 void *base = mergeable_ctx_to_buf_address(ctx);
736 put_page(virt_to_head_page(base));
737 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800738 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800739 } else {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000740 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800741 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000742 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000743 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000744
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200745 if (vi->mergeable_rx_bufs)
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200746 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200747 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300748 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200749 else
Jason Wangbb91acc2016-12-23 22:37:32 +0800750 skb = receive_small(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200751
752 if (unlikely(!skb))
753 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800754
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000755 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000756
Eric Dumazet83a27052012-06-05 22:35:24 +0000757 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000758 stats->rx_bytes += skb->len;
759 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000760 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000761
Mike Rapoporte858fae2016-06-08 16:09:21 +0300762 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000763 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000764
Mike Rapoporte858fae2016-06-08 16:09:21 +0300765 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
766 virtio_is_little_endian(vi->vdev))) {
767 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
768 dev->name, hdr->hdr.gso_type,
769 hdr->hdr.gso_size);
770 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000771 }
772
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300773 skb->protocol = eth_type_trans(skb, dev);
774 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
775 ntohs(skb->protocol), skb->len, skb->pkt_type);
776
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200777 napi_gro_receive(&rq->napi, skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000778 return;
779
780frame_err:
781 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000782 dev_kfree_skb(skb);
783}
784
John Fastabend2de2f7f2017-02-02 19:16:29 -0800785static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
786{
787 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
788}
789
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300790static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
791 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000792{
John Fastabend2de2f7f2017-02-02 19:16:29 -0800793 int headroom = GOOD_PACKET_LEN + virtnet_get_headroom(vi);
794 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +1000795 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300796 struct virtio_net_hdr_mrg_rxbuf *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000797 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000798
John Fastabend2de2f7f2017-02-02 19:16:29 -0800799 skb = __netdev_alloc_skb_ip_align(vi->dev, headroom, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000800 if (unlikely(!skb))
801 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800802
John Fastabend2de2f7f2017-02-02 19:16:29 -0800803 skb_put(skb, headroom);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000804
805 hdr = skb_vnet_hdr(skb);
Jason Wang547c8902015-08-27 14:53:06 +0800806 sg_init_table(rq->sg, 2);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300807 sg_set_buf(rq->sg, hdr, vi->hdr_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800808 skb_to_sgvec(skb, rq->sg + 1, xdp_headroom, skb->len - xdp_headroom);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000809
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030810 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000811 if (err < 0)
812 dev_kfree_skb(skb);
813
814 return err;
815}
816
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300817static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
818 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000819{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000820 struct page *first, *list = NULL;
821 char *p;
822 int i, err, offset;
823
Rusty Russella5835442014-09-11 10:17:36 +0930824 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
825
Jason Wange9d74172012-12-07 07:04:55 +0000826 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000827 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000828 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000829 if (!first) {
830 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000831 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000832 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700833 }
Jason Wange9d74172012-12-07 07:04:55 +0000834 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000835
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000836 /* chain new page in list head to match sg */
837 first->private = (unsigned long)list;
838 list = first;
839 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800840
Jason Wange9d74172012-12-07 07:04:55 +0000841 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000842 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000843 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000844 return -ENOMEM;
845 }
846 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800847
Jason Wange9d74172012-12-07 07:04:55 +0000848 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300849 /* a separated rq->sg[0] for header - required in case !any_header_sg */
850 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800851
Jason Wange9d74172012-12-07 07:04:55 +0000852 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000853 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000854 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800855
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000856 /* chain first in list head */
857 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030858 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
859 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000860 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000861 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800862
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000863 return err;
864}
Herbert Xu97402b92008-04-18 11:24:27 +0800865
Johannes Berg5377d7582015-08-19 09:48:40 +0200866static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000867{
Michael Daltonab7db912014-01-16 22:23:27 -0800868 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800869 unsigned int len;
870
Johannes Berg5377d7582015-08-19 09:48:40 +0200871 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael Daltonfbf28d72014-01-16 22:23:30 -0800872 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
873 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
874}
875
John Fastabend2de2f7f2017-02-02 19:16:29 -0800876static int add_recvbuf_mergeable(struct virtnet_info *vi,
877 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800878{
Michael Daltonfb518792014-01-16 22:23:26 -0800879 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800880 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800881 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800882 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000883 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800884 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000885
Michael Daltonfbf28d72014-01-16 22:23:30 -0800886 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800887 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000888 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800889
Michael Daltonfb518792014-01-16 22:23:26 -0800890 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800891 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonab7db912014-01-16 22:23:27 -0800892 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800893 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800894 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -0800895 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800896 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -0800897 /* To avoid internal fragmentation, if there is very likely not
898 * enough space for another buffer, add the remaining space to
899 * the current buffer. This extra space is not included in
900 * the truesize stored in ctx.
901 */
Michael Daltonfb518792014-01-16 22:23:26 -0800902 len += hole;
903 alloc_frag->offset += hole;
904 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905
Michael Daltonfb518792014-01-16 22:23:26 -0800906 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800907 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000908 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700909 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000910
911 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000912}
913
Rusty Russellb2baed62011-12-29 00:42:38 +0000914/*
915 * Returns false if we couldn't fill entirely (OOM).
916 *
917 * Normally run in the receive path, but can also be run from ndo_open
918 * before we're receiving packets, or from refill_work which is
919 * careful to disable receiving (using napi_disable).
920 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300921static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
922 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800923{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800924 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000925 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800926
Michael Daltonfb518792014-01-16 22:23:26 -0800927 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530928 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000929 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -0800930 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000931 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300932 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000933 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300934 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800935
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000936 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030937 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800938 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800939 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800940 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700941 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800942}
943
Rusty Russell18445c42008-02-04 23:49:57 -0500944static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000945{
946 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000947 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000948
Rusty Russell18445c42008-02-04 23:49:57 -0500949 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000950 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300951 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000952 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500953 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000954}
955
Jason Wange9d74172012-12-07 07:04:55 +0000956static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800957{
Jason Wange9d74172012-12-07 07:04:55 +0000958 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800959
960 /* If all buffers were filled by other side before we napi_enabled, we
961 * won't get another interrupt, so process any outstanding packets
962 * now. virtnet_poll wants re-enable the queue, so we disable here.
963 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000964 if (napi_schedule_prep(&rq->napi)) {
965 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300966 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000967 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300968 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800969 }
970}
971
Rusty Russell3161e452009-08-26 12:22:32 -0700972static void refill_work(struct work_struct *work)
973{
Jason Wange9d74172012-12-07 07:04:55 +0000974 struct virtnet_info *vi =
975 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700976 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000977 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700978
Sasha Levin55257d72013-04-29 12:00:08 +0930979 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000980 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700981
Jason Wang986a4f42012-12-07 07:04:56 +0000982 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300983 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +0000984 virtnet_napi_enable(rq);
985
986 /* In theory, this can happen: if we don't get any buffers in
987 * we will *never* try to fill again.
988 */
989 if (still_empty)
990 schedule_delayed_work(&vi->refill, HZ/2);
991 }
Rusty Russell3161e452009-08-26 12:22:32 -0700992}
993
Jason Wang2ffa7592014-07-23 16:33:54 +0800994static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +1000995{
Jason Wange9d74172012-12-07 07:04:55 +0000996 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang2ffa7592014-07-23 16:33:54 +0800997 unsigned int len, received = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000998 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +1000999
Rusty Russell296f96f2007-10-22 11:03:37 +10001000 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +00001001 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001002 receive_buf(vi, rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +10001003 received++;
1004 }
1005
Jason Wangbe121f42014-01-16 14:45:24 +08001006 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001007 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001008 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001009 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001010
Jason Wang2ffa7592014-07-23 16:33:54 +08001011 return received;
1012}
1013
1014static int virtnet_poll(struct napi_struct *napi, int budget)
1015{
1016 struct receive_queue *rq =
1017 container_of(napi, struct receive_queue, napi);
Li RongQingfaadb052015-03-26 15:39:45 +08001018 unsigned int r, received;
Jason Wang2ffa7592014-07-23 16:33:54 +08001019
Li RongQingfaadb052015-03-26 15:39:45 +08001020 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +08001021
Rusty Russell8329d982007-11-19 11:20:43 -05001022 /* Out of packets? */
1023 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +03001024 r = virtqueue_enable_cb_prepare(rq->vq);
Eric Dumazet4d6308aa2017-02-04 07:49:21 -08001025 if (napi_complete_done(napi, received)) {
1026 if (unlikely(virtqueue_poll(rq->vq, r)) &&
1027 napi_schedule_prep(napi)) {
1028 virtqueue_disable_cb(rq->vq);
1029 __napi_schedule(napi);
1030 }
Christian Borntraeger4265f162008-03-14 14:17:05 +01001031 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001032 }
1033
1034 return received;
1035}
1036
Jason Wang986a4f42012-12-07 07:04:56 +00001037static int virtnet_open(struct net_device *dev)
1038{
1039 struct virtnet_info *vi = netdev_priv(dev);
1040 int i;
1041
Jason Wange4166622013-05-21 20:03:58 +00001042 for (i = 0; i < vi->max_queue_pairs; i++) {
1043 if (i < vi->curr_queue_pairs)
1044 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001045 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001046 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +00001047 virtnet_napi_enable(&vi->rq[i]);
1048 }
1049
1050 return 0;
1051}
1052
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001053static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001054{
1055 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +10301056 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +00001057 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +00001058 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001059
Jason Wange9d74172012-12-07 07:04:55 +00001060 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001061 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001062
Eric Dumazet83a27052012-06-05 22:35:24 +00001063 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001064 stats->tx_bytes += skb->len;
1065 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +00001066 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001067
Eric Dumazeted79bab2009-10-14 14:36:43 +00001068 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001069 }
1070}
1071
Jason Wange9d74172012-12-07 07:04:55 +00001072static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001073{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001074 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001075 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001076 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +10301077 unsigned num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001078 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301079 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001080
Johannes Berge1749612008-10-27 15:59:26 -07001081 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301082
1083 can_push = vi->any_header_sg &&
1084 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1085 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1086 /* Even if we can, don't push here yet as this would skew
1087 * csum_start offset below. */
1088 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001089 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301090 else
1091 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001092
Mike Rapoporte858fae2016-06-08 16:09:21 +03001093 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001094 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001095 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001096
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001097 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001098 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001099
Jason Wang547c8902015-08-27 14:53:06 +08001100 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301101 if (can_push) {
1102 __skb_push(skb, hdr_len);
1103 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1104 /* Pull header back to avoid skew in tx bytes calculations. */
1105 __skb_pull(skb, hdr_len);
1106 } else {
1107 sg_set_buf(sq->sg, hdr, hdr_len);
1108 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1109 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301110 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001111}
1112
Stephen Hemminger424efe92009-08-31 19:50:51 +00001113static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001114{
1115 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001116 int qnum = skb_get_queue_mapping(skb);
1117 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301118 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001119 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1120 bool kick = !skb->xmit_more;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001121
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001122 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001123 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001124
Jacob Keller074c3582014-06-25 02:37:13 +00001125 /* timestamp packet in software */
1126 skb_tx_timestamp(skb);
1127
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001128 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001129 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001130
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301131 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001132 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301133 dev->stats.tx_fifo_errors++;
1134 if (net_ratelimit())
1135 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001136 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001137 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001138 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001139 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001140 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001141
Rusty Russell48925e32009-09-24 09:59:20 -06001142 /* Don't wait up for transmitted skbs to be freed. */
1143 skb_orphan(skb);
1144 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -05001145
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001146 /* If running out of space, stop queue to avoid getting packets that we
1147 * are then unable to transmit.
1148 * An alternative would be to force queuing layer to requeue the skb by
1149 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1150 * returned in a normal path of operation: it means that driver is not
1151 * maintaining the TX queue stop/start state properly, and causes
1152 * the stack to do a non-trivial amount of useless work.
1153 * Since most packets only take 1 or 2 ring slots, stopping the queue
1154 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001155 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001156 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001157 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001158 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001159 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001160 free_old_xmit_skbs(sq);
1161 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001162 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001163 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001164 }
1165 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001166 }
Rusty Russell48925e32009-09-24 09:59:20 -06001167
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001168 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001169 virtqueue_kick(sq->vq);
1170
Rusty Russell48925e32009-09-24 09:59:20 -06001171 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001172}
1173
Amos Kong40cbfc32013-01-21 01:17:21 +00001174/*
1175 * Send command via the control virtqueue and check status. Commands
1176 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001177 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001178 */
1179static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001180 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001181{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301182 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001183 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001184
1185 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301186 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001187
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001188 vi->ctrl_status = ~0;
1189 vi->ctrl_hdr.class = class;
1190 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301191 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001192 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301193 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001194
Rusty Russellf7bc9592013-03-20 15:44:28 +10301195 if (out)
1196 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001197
Rusty Russellf7bc9592013-03-20 15:44:28 +10301198 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001199 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001200 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001201
stephen hemmingerd24bae32013-12-09 16:17:40 -08001202 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301203 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001204
Heinz Graalfs67975902013-10-29 09:40:02 +10301205 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001206 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001207
1208 /* Spin for a response, the kick causes an ioport write, trapping
1209 * into the hypervisor, so the request should be handled immediately.
1210 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301211 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1212 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001213 cpu_relax();
1214
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001215 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001216}
1217
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001218static int virtnet_set_mac_address(struct net_device *dev, void *p)
1219{
1220 struct virtnet_info *vi = netdev_priv(dev);
1221 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001222 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001223 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001224 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001225
Shyam Saini801822d2016-12-24 00:44:58 +05301226 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001227 if (!addr)
1228 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001229
1230 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001231 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001232 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001233
Amos Kong7e58d5a2013-01-21 01:17:23 +00001234 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1235 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1236 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001237 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001238 dev_warn(&vdev->dev,
1239 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001240 ret = -EINVAL;
1241 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001242 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001243 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1244 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301245 unsigned int i;
1246
1247 /* Naturally, this has an atomicity problem. */
1248 for (i = 0; i < dev->addr_len; i++)
1249 virtio_cwrite8(vdev,
1250 offsetof(struct virtio_net_config, mac) +
1251 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001252 }
1253
1254 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001255 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001256
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001257out:
1258 kfree(addr);
1259 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001260}
1261
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001262static void virtnet_stats(struct net_device *dev,
1263 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001264{
1265 struct virtnet_info *vi = netdev_priv(dev);
1266 int cpu;
1267 unsigned int start;
1268
1269 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001270 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001271 u64 tpackets, tbytes, rpackets, rbytes;
1272
1273 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001274 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001275 tpackets = stats->tx_packets;
1276 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001277 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001278
1279 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001280 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001281 rpackets = stats->rx_packets;
1282 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001283 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001284
1285 tot->rx_packets += rpackets;
1286 tot->tx_packets += tpackets;
1287 tot->rx_bytes += rbytes;
1288 tot->tx_bytes += tbytes;
1289 }
1290
1291 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001292 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001293 tot->rx_dropped = dev->stats.rx_dropped;
1294 tot->rx_length_errors = dev->stats.rx_length_errors;
1295 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001296}
1297
Amit Shahda74e892008-02-29 16:24:50 +05301298#ifdef CONFIG_NET_POLL_CONTROLLER
1299static void virtnet_netpoll(struct net_device *dev)
1300{
1301 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001302 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301303
Jason Wang986a4f42012-12-07 07:04:56 +00001304 for (i = 0; i < vi->curr_queue_pairs; i++)
1305 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301306}
1307#endif
1308
Jason Wang586d17c2012-04-11 20:43:52 +00001309static void virtnet_ack_link_announce(struct virtnet_info *vi)
1310{
1311 rtnl_lock();
1312 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001313 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001314 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1315 rtnl_unlock();
1316}
1317
John Fastabend473153292017-02-02 19:14:32 -08001318static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001319{
1320 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001321 struct net_device *dev = vi->dev;
1322
1323 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1324 return 0;
1325
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001326 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1327 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001328
1329 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001330 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001331 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1332 queue_pairs);
1333 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301334 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001335 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001336 /* virtnet_open() will refill when device is going to up. */
1337 if (dev->flags & IFF_UP)
1338 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301339 }
Jason Wang986a4f42012-12-07 07:04:56 +00001340
1341 return 0;
1342}
1343
John Fastabend473153292017-02-02 19:14:32 -08001344static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1345{
1346 int err;
1347
1348 rtnl_lock();
1349 err = _virtnet_set_queues(vi, queue_pairs);
1350 rtnl_unlock();
1351 return err;
1352}
1353
Rusty Russell296f96f2007-10-22 11:03:37 +10001354static int virtnet_close(struct net_device *dev)
1355{
1356 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001357 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001358
Rusty Russellb2baed62011-12-29 00:42:38 +00001359 /* Make sure refill_work doesn't re-enable napi! */
1360 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001361
1362 for (i = 0; i < vi->max_queue_pairs; i++)
1363 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001364
Rusty Russell296f96f2007-10-22 11:03:37 +10001365 return 0;
1366}
1367
Alex Williamson2af76982009-02-04 09:02:40 +00001368static void virtnet_set_rx_mode(struct net_device *dev)
1369{
1370 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001371 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001372 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001373 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001374 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001375 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001376 void *buf;
1377 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001378
stephen hemminger788a8b62013-12-09 16:18:45 -08001379 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001380 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1381 return;
1382
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001383 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1384 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001385
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001386 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001387
1388 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001389 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001390 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001391 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001392
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001393 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001394
1395 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001396 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001397 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001398 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001399
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001400 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001401 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001402 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001403 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1404 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1405 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001406 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001407 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001408
Alex Williamson23e258e2009-05-01 17:27:56 +00001409 sg_init_table(sg, 2);
1410
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001411 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001412 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001413 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001414 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001415 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001416
1417 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001418 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001419
1420 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001421 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001422
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001423 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001424 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001425 netdev_for_each_mc_addr(ha, dev)
1426 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001427
1428 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001429 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001430
1431 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001432 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001433 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001434
1435 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001436}
1437
Patrick McHardy80d5c362013-04-19 02:04:28 +00001438static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1439 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001440{
1441 struct virtnet_info *vi = netdev_priv(dev);
1442 struct scatterlist sg;
1443
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001444 vi->ctrl_vid = vid;
1445 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001446
1447 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001448 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001449 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001450 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001451}
1452
Patrick McHardy80d5c362013-04-19 02:04:28 +00001453static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1454 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001455{
1456 struct virtnet_info *vi = netdev_priv(dev);
1457 struct scatterlist sg;
1458
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001459 vi->ctrl_vid = vid;
1460 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001461
1462 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001463 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001464 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001465 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001466}
1467
Wanlong Gao8898c212013-01-24 23:51:30 +00001468static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001469{
1470 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001471
1472 if (vi->affinity_hint_set) {
1473 for (i = 0; i < vi->max_queue_pairs; i++) {
1474 virtqueue_set_affinity(vi->rq[i].vq, -1);
1475 virtqueue_set_affinity(vi->sq[i].vq, -1);
1476 }
1477
1478 vi->affinity_hint_set = false;
1479 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001480}
1481
1482static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001483{
1484 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001485 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001486
1487 /* In multiqueue mode, when the number of cpu is equal to the number of
1488 * queue pairs, we let the queue pairs to be private to one cpu by
1489 * setting the affinity hint to eliminate the contention.
1490 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001491 if (vi->curr_queue_pairs == 1 ||
1492 vi->max_queue_pairs != num_online_cpus()) {
1493 virtnet_clean_affinity(vi, -1);
1494 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001495 }
1496
Wanlong Gao8898c212013-01-24 23:51:30 +00001497 i = 0;
1498 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001499 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1500 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001501 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001502 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001503 }
1504
Wanlong Gao8898c212013-01-24 23:51:30 +00001505 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001506}
1507
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001508static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001509{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001510 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1511 node);
1512 virtnet_set_affinity(vi);
1513 return 0;
1514}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001515
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001516static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1517{
1518 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1519 node_dead);
1520 virtnet_set_affinity(vi);
1521 return 0;
1522}
Jason Wang3ab098d2013-10-15 11:18:58 +08001523
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001524static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1525{
1526 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1527 node);
1528
1529 virtnet_clean_affinity(vi, cpu);
1530 return 0;
1531}
1532
1533static enum cpuhp_state virtionet_online;
1534
1535static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1536{
1537 int ret;
1538
1539 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1540 if (ret)
1541 return ret;
1542 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1543 &vi->node_dead);
1544 if (!ret)
1545 return ret;
1546 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1547 return ret;
1548}
1549
1550static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1551{
1552 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1553 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1554 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001555}
1556
Rick Jones8f9f4662011-10-19 08:10:59 +00001557static void virtnet_get_ringparam(struct net_device *dev,
1558 struct ethtool_ringparam *ring)
1559{
1560 struct virtnet_info *vi = netdev_priv(dev);
1561
Jason Wang986a4f42012-12-07 07:04:56 +00001562 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1563 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001564 ring->rx_pending = ring->rx_max_pending;
1565 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001566}
1567
Rick Jones66846042011-11-14 14:17:08 +00001568
1569static void virtnet_get_drvinfo(struct net_device *dev,
1570 struct ethtool_drvinfo *info)
1571{
1572 struct virtnet_info *vi = netdev_priv(dev);
1573 struct virtio_device *vdev = vi->vdev;
1574
1575 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1576 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1577 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1578
1579}
1580
Jason Wangd73bcd22012-12-07 07:04:57 +00001581/* TODO: Eliminate OOO packets during switching */
1582static int virtnet_set_channels(struct net_device *dev,
1583 struct ethtool_channels *channels)
1584{
1585 struct virtnet_info *vi = netdev_priv(dev);
1586 u16 queue_pairs = channels->combined_count;
1587 int err;
1588
1589 /* We don't support separate rx/tx channels.
1590 * We don't allow setting 'other' channels.
1591 */
1592 if (channels->rx_count || channels->tx_count || channels->other_count)
1593 return -EINVAL;
1594
Amos Kongc18e9cd2014-04-18 13:45:41 +08001595 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001596 return -EINVAL;
1597
John Fastabendf600b692016-12-15 12:13:24 -08001598 /* For now we don't support modifying channels while XDP is loaded
1599 * also when XDP is loaded all RX queues have XDP programs so we only
1600 * need to check a single RX queue.
1601 */
1602 if (vi->rq[0].xdp_prog)
1603 return -EINVAL;
1604
Wanlong Gao47be2472013-01-24 23:51:29 +00001605 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001606 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001607 if (!err) {
1608 netif_set_real_num_tx_queues(dev, queue_pairs);
1609 netif_set_real_num_rx_queues(dev, queue_pairs);
1610
Wanlong Gao8898c212013-01-24 23:51:30 +00001611 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001612 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001613 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001614
1615 return err;
1616}
1617
1618static void virtnet_get_channels(struct net_device *dev,
1619 struct ethtool_channels *channels)
1620{
1621 struct virtnet_info *vi = netdev_priv(dev);
1622
1623 channels->combined_count = vi->curr_queue_pairs;
1624 channels->max_combined = vi->max_queue_pairs;
1625 channels->max_other = 0;
1626 channels->rx_count = 0;
1627 channels->tx_count = 0;
1628 channels->other_count = 0;
1629}
1630
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001631/* Check if the user is trying to change anything besides speed/duplex */
1632static bool virtnet_validate_ethtool_cmd(const struct ethtool_cmd *cmd)
1633{
1634 struct ethtool_cmd diff1 = *cmd;
1635 struct ethtool_cmd diff2 = {};
1636
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001637 /* cmd is always set so we need to clear it, validate the port type
1638 * and also without autonegotiation we can ignore advertising
1639 */
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001640 ethtool_cmd_speed_set(&diff1, 0);
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001641 diff2.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001642 diff1.advertising = 0;
1643 diff1.duplex = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001644 diff1.cmd = 0;
1645
1646 return !memcmp(&diff1, &diff2, sizeof(diff1));
1647}
1648
1649static int virtnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1650{
1651 struct virtnet_info *vi = netdev_priv(dev);
1652 u32 speed;
1653
1654 speed = ethtool_cmd_speed(cmd);
1655 /* don't allow custom speed and duplex */
1656 if (!ethtool_validate_speed(speed) ||
1657 !ethtool_validate_duplex(cmd->duplex) ||
1658 !virtnet_validate_ethtool_cmd(cmd))
1659 return -EINVAL;
1660 vi->speed = speed;
1661 vi->duplex = cmd->duplex;
1662
1663 return 0;
1664}
1665
1666static int virtnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1667{
1668 struct virtnet_info *vi = netdev_priv(dev);
1669
1670 ethtool_cmd_speed_set(cmd, vi->speed);
1671 cmd->duplex = vi->duplex;
1672 cmd->port = PORT_OTHER;
1673
1674 return 0;
1675}
1676
1677static void virtnet_init_settings(struct net_device *dev)
1678{
1679 struct virtnet_info *vi = netdev_priv(dev);
1680
1681 vi->speed = SPEED_UNKNOWN;
1682 vi->duplex = DUPLEX_UNKNOWN;
1683}
1684
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001685static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001686 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001687 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001688 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001689 .set_channels = virtnet_set_channels,
1690 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001691 .get_ts_info = ethtool_op_get_ts_info,
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001692 .get_settings = virtnet_get_settings,
1693 .set_settings = virtnet_set_settings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001694};
1695
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001696static void virtnet_freeze_down(struct virtio_device *vdev)
1697{
1698 struct virtnet_info *vi = vdev->priv;
1699 int i;
1700
1701 /* Make sure no work handler is accessing the device */
1702 flush_work(&vi->config_work);
1703
1704 netif_device_detach(vi->dev);
1705 cancel_delayed_work_sync(&vi->refill);
1706
1707 if (netif_running(vi->dev)) {
1708 for (i = 0; i < vi->max_queue_pairs; i++)
1709 napi_disable(&vi->rq[i].napi);
1710 }
1711}
1712
1713static int init_vqs(struct virtnet_info *vi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001714static void _remove_vq_common(struct virtnet_info *vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001715
1716static int virtnet_restore_up(struct virtio_device *vdev)
1717{
1718 struct virtnet_info *vi = vdev->priv;
1719 int err, i;
1720
1721 err = init_vqs(vi);
1722 if (err)
1723 return err;
1724
1725 virtio_device_ready(vdev);
1726
1727 if (netif_running(vi->dev)) {
1728 for (i = 0; i < vi->curr_queue_pairs; i++)
1729 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1730 schedule_delayed_work(&vi->refill, 0);
1731
1732 for (i = 0; i < vi->max_queue_pairs; i++)
1733 virtnet_napi_enable(&vi->rq[i]);
1734 }
1735
1736 netif_device_attach(vi->dev);
1737 return err;
1738}
1739
John Fastabend2de2f7f2017-02-02 19:16:29 -08001740static int virtnet_reset(struct virtnet_info *vi)
1741{
1742 struct virtio_device *dev = vi->vdev;
1743 int ret;
1744
1745 virtio_config_disable(dev);
1746 dev->failed = dev->config->get_status(dev) & VIRTIO_CONFIG_S_FAILED;
1747 virtnet_freeze_down(dev);
1748 _remove_vq_common(vi);
1749
1750 dev->config->reset(dev);
1751 virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
1752 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER);
1753
1754 ret = virtio_finalize_features(dev);
1755 if (ret)
1756 goto err;
1757
1758 ret = virtnet_restore_up(dev);
1759 if (ret)
1760 goto err;
1761 ret = _virtnet_set_queues(vi, vi->curr_queue_pairs);
1762 if (ret)
1763 goto err;
1764
1765 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
1766 virtio_config_enable(dev);
1767 return 0;
1768err:
1769 virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
1770 return ret;
1771}
1772
John Fastabendf600b692016-12-15 12:13:24 -08001773static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1774{
1775 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1776 struct virtnet_info *vi = netdev_priv(dev);
1777 struct bpf_prog *old_prog;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001778 u16 oxdp_qp, xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001779 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001780
1781 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001782 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1783 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1784 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
John Fastabendf600b692016-12-15 12:13:24 -08001785 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1786 return -EOPNOTSUPP;
1787 }
1788
1789 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1790 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1791 return -EINVAL;
1792 }
1793
1794 if (dev->mtu > max_sz) {
1795 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1796 return -EINVAL;
1797 }
1798
John Fastabend672aafd2016-12-15 12:13:49 -08001799 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1800 if (prog)
1801 xdp_qp = nr_cpu_ids;
1802
1803 /* XDP requires extra queues for XDP_TX */
1804 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1805 netdev_warn(dev, "request %i queues but max is %i\n",
1806 curr_qp + xdp_qp, vi->max_queue_pairs);
1807 return -ENOMEM;
1808 }
1809
John Fastabend2de2f7f2017-02-02 19:16:29 -08001810 if (prog) {
1811 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
1812 if (IS_ERR(prog))
1813 return PTR_ERR(prog);
1814 }
1815
John Fastabend473153292017-02-02 19:14:32 -08001816 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
John Fastabend672aafd2016-12-15 12:13:49 -08001817 if (err) {
1818 dev_warn(&dev->dev, "XDP Device queue allocation failure.\n");
John Fastabend2de2f7f2017-02-02 19:16:29 -08001819 goto virtio_queue_err;
John Fastabend672aafd2016-12-15 12:13:49 -08001820 }
1821
John Fastabend2de2f7f2017-02-02 19:16:29 -08001822 oxdp_qp = vi->xdp_queue_pairs;
1823
1824 /* Changing the headroom in buffers is a disruptive operation because
1825 * existing buffers must be flushed and reallocated. This will happen
1826 * when a xdp program is initially added or xdp is disabled by removing
1827 * the xdp program resulting in number of XDP queues changing.
1828 */
1829 if (vi->xdp_queue_pairs != xdp_qp) {
1830 vi->xdp_queue_pairs = xdp_qp;
1831 err = virtnet_reset(vi);
1832 if (err)
1833 goto virtio_reset_err;
John Fastabendf600b692016-12-15 12:13:24 -08001834 }
1835
John Fastabend672aafd2016-12-15 12:13:49 -08001836 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1837
John Fastabendf600b692016-12-15 12:13:24 -08001838 for (i = 0; i < vi->max_queue_pairs; i++) {
1839 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1840 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1841 if (old_prog)
1842 bpf_prog_put(old_prog);
1843 }
1844
1845 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001846
1847virtio_reset_err:
1848 /* On reset error do our best to unwind XDP changes inflight and return
1849 * error up to user space for resolution. The underlying reset hung on
1850 * us so not much we can do here.
1851 */
1852 dev_warn(&dev->dev, "XDP reset failure and queues unstable\n");
1853 vi->xdp_queue_pairs = oxdp_qp;
1854virtio_queue_err:
1855 /* On queue set error we can unwind bpf ref count and user space can
1856 * retry this is most likely an allocation failure.
1857 */
1858 if (prog)
1859 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
1860 return err;
John Fastabendf600b692016-12-15 12:13:24 -08001861}
1862
1863static bool virtnet_xdp_query(struct net_device *dev)
1864{
1865 struct virtnet_info *vi = netdev_priv(dev);
1866 int i;
1867
1868 for (i = 0; i < vi->max_queue_pairs; i++) {
1869 if (vi->rq[i].xdp_prog)
1870 return true;
1871 }
1872 return false;
1873}
1874
1875static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1876{
1877 switch (xdp->command) {
1878 case XDP_SETUP_PROG:
1879 return virtnet_xdp_set(dev, xdp->prog);
1880 case XDP_QUERY_PROG:
1881 xdp->prog_attached = virtnet_xdp_query(dev);
1882 return 0;
1883 default:
1884 return -EINVAL;
1885 }
1886}
1887
Stephen Hemminger76288b42009-01-06 10:44:22 -08001888static const struct net_device_ops virtnet_netdev = {
1889 .ndo_open = virtnet_open,
1890 .ndo_stop = virtnet_close,
1891 .ndo_start_xmit = start_xmit,
1892 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001893 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001894 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001895 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001896 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1897 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001898#ifdef CONFIG_NET_POLL_CONTROLLER
1899 .ndo_poll_controller = virtnet_netpoll,
1900#endif
John Fastabendf600b692016-12-15 12:13:24 -08001901 .ndo_xdp = virtnet_xdp,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001902};
1903
Jason Wang586d17c2012-04-11 20:43:52 +00001904static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001905{
Jason Wang586d17c2012-04-11 20:43:52 +00001906 struct virtnet_info *vi =
1907 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001908 u16 v;
1909
Rusty Russell855e0c52013-10-14 18:11:51 +10301910 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1911 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301912 return;
Jason Wang586d17c2012-04-11 20:43:52 +00001913
1914 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001915 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001916 virtnet_ack_link_announce(vi);
1917 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001918
1919 /* Ignore unknown (future) status bits */
1920 v &= VIRTIO_NET_S_LINK_UP;
1921
1922 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301923 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001924
1925 vi->status = v;
1926
1927 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1928 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001929 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001930 } else {
1931 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001932 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001933 }
1934}
1935
1936static void virtnet_config_changed(struct virtio_device *vdev)
1937{
1938 struct virtnet_info *vi = vdev->priv;
1939
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001940 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001941}
1942
Jason Wang986a4f42012-12-07 07:04:56 +00001943static void virtnet_free_queues(struct virtnet_info *vi)
1944{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001945 int i;
1946
Jason Wangab3971b2015-03-12 13:57:44 +08001947 for (i = 0; i < vi->max_queue_pairs; i++) {
1948 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001949 netif_napi_del(&vi->rq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08001950 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001951
Eric Dumazet963abe52016-11-15 22:24:12 -08001952 /* We called napi_hash_del() before netif_napi_del(),
1953 * we need to respect an RCU grace period before freeing vi->rq
1954 */
1955 synchronize_net();
1956
Jason Wang986a4f42012-12-07 07:04:56 +00001957 kfree(vi->rq);
1958 kfree(vi->sq);
1959}
1960
John Fastabend473153292017-02-02 19:14:32 -08001961static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001962{
John Fastabendf600b692016-12-15 12:13:24 -08001963 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00001964 int i;
1965
1966 for (i = 0; i < vi->max_queue_pairs; i++) {
1967 while (vi->rq[i].pages)
1968 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08001969
1970 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1971 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
1972 if (old_prog)
1973 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00001974 }
John Fastabend473153292017-02-02 19:14:32 -08001975}
1976
1977static void free_receive_bufs(struct virtnet_info *vi)
1978{
1979 rtnl_lock();
1980 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08001981 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001982}
1983
Michael Daltonfb518792014-01-16 22:23:26 -08001984static void free_receive_page_frags(struct virtnet_info *vi)
1985{
1986 int i;
1987 for (i = 0; i < vi->max_queue_pairs; i++)
1988 if (vi->rq[i].alloc_frag.page)
1989 put_page(vi->rq[i].alloc_frag.page);
1990}
1991
John Fastabendb68df012017-01-25 18:22:48 -08001992static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08001993{
John Fastabendb68df012017-01-25 18:22:48 -08001994 /* For small receive mode always use kfree_skb variants */
1995 if (!vi->mergeable_rx_bufs)
1996 return false;
1997
John Fastabend56434a02016-12-15 12:14:13 -08001998 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1999 return false;
2000 else if (q < vi->curr_queue_pairs)
2001 return true;
2002 else
2003 return false;
2004}
2005
Jason Wang986a4f42012-12-07 07:04:56 +00002006static void free_unused_bufs(struct virtnet_info *vi)
2007{
2008 void *buf;
2009 int i;
2010
2011 for (i = 0; i < vi->max_queue_pairs; i++) {
2012 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002013 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002014 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002015 dev_kfree_skb(buf);
2016 else
2017 put_page(virt_to_head_page(buf));
2018 }
Jason Wang986a4f42012-12-07 07:04:56 +00002019 }
2020
2021 for (i = 0; i < vi->max_queue_pairs; i++) {
2022 struct virtqueue *vq = vi->rq[i].vq;
2023
2024 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002025 if (vi->mergeable_rx_bufs) {
2026 unsigned long ctx = (unsigned long)buf;
2027 void *base = mergeable_ctx_to_buf_address(ctx);
2028 put_page(virt_to_head_page(base));
2029 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002030 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002031 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00002032 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002033 }
Jason Wang986a4f42012-12-07 07:04:56 +00002034 }
Jason Wang986a4f42012-12-07 07:04:56 +00002035 }
2036}
2037
Jason Wange9d74172012-12-07 07:04:55 +00002038static void virtnet_del_vqs(struct virtnet_info *vi)
2039{
2040 struct virtio_device *vdev = vi->vdev;
2041
Wanlong Gao8898c212013-01-24 23:51:30 +00002042 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002043
Jason Wange9d74172012-12-07 07:04:55 +00002044 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002045
2046 virtnet_free_queues(vi);
2047}
2048
2049static int virtnet_find_vqs(struct virtnet_info *vi)
2050{
2051 vq_callback_t **callbacks;
2052 struct virtqueue **vqs;
2053 int ret = -ENOMEM;
2054 int i, total_vqs;
2055 const char **names;
2056
2057 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2058 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2059 * possible control vq.
2060 */
2061 total_vqs = vi->max_queue_pairs * 2 +
2062 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2063
2064 /* Allocate space for find_vqs parameters */
2065 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2066 if (!vqs)
2067 goto err_vq;
2068 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2069 if (!callbacks)
2070 goto err_callback;
2071 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2072 if (!names)
2073 goto err_names;
2074
2075 /* Parameters for control virtqueue, if any */
2076 if (vi->has_cvq) {
2077 callbacks[total_vqs - 1] = NULL;
2078 names[total_vqs - 1] = "control";
2079 }
2080
2081 /* Allocate/initialize parameters for send/receive virtqueues */
2082 for (i = 0; i < vi->max_queue_pairs; i++) {
2083 callbacks[rxq2vq(i)] = skb_recv_done;
2084 callbacks[txq2vq(i)] = skb_xmit_done;
2085 sprintf(vi->rq[i].name, "input.%d", i);
2086 sprintf(vi->sq[i].name, "output.%d", i);
2087 names[rxq2vq(i)] = vi->rq[i].name;
2088 names[txq2vq(i)] = vi->sq[i].name;
2089 }
2090
2091 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
2092 names);
2093 if (ret)
2094 goto err_find;
2095
2096 if (vi->has_cvq) {
2097 vi->cvq = vqs[total_vqs - 1];
2098 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002099 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002100 }
2101
2102 for (i = 0; i < vi->max_queue_pairs; i++) {
2103 vi->rq[i].vq = vqs[rxq2vq(i)];
2104 vi->sq[i].vq = vqs[txq2vq(i)];
2105 }
2106
2107 kfree(names);
2108 kfree(callbacks);
2109 kfree(vqs);
2110
2111 return 0;
2112
2113err_find:
2114 kfree(names);
2115err_names:
2116 kfree(callbacks);
2117err_callback:
2118 kfree(vqs);
2119err_vq:
2120 return ret;
2121}
2122
2123static int virtnet_alloc_queues(struct virtnet_info *vi)
2124{
2125 int i;
2126
2127 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2128 if (!vi->sq)
2129 goto err_sq;
2130 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002131 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002132 goto err_rq;
2133
2134 INIT_DELAYED_WORK(&vi->refill, refill_work);
2135 for (i = 0; i < vi->max_queue_pairs; i++) {
2136 vi->rq[i].pages = NULL;
2137 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2138 napi_weight);
2139
2140 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002141 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002142 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2143 }
2144
2145 return 0;
2146
2147err_rq:
2148 kfree(vi->sq);
2149err_sq:
2150 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002151}
2152
Amit Shah3f9c10b2011-12-22 16:58:31 +05302153static int init_vqs(struct virtnet_info *vi)
2154{
Jason Wang986a4f42012-12-07 07:04:56 +00002155 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302156
Jason Wang986a4f42012-12-07 07:04:56 +00002157 /* Allocate send & receive queues */
2158 ret = virtnet_alloc_queues(vi);
2159 if (ret)
2160 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302161
Jason Wang986a4f42012-12-07 07:04:56 +00002162 ret = virtnet_find_vqs(vi);
2163 if (ret)
2164 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302165
Wanlong Gao47be2472013-01-24 23:51:29 +00002166 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002167 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002168 put_online_cpus();
2169
Amit Shah3f9c10b2011-12-22 16:58:31 +05302170 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002171
2172err_free:
2173 virtnet_free_queues(vi);
2174err:
2175 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302176}
2177
Michael Daltonfbf28d72014-01-16 22:23:30 -08002178#ifdef CONFIG_SYSFS
2179static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2180 struct rx_queue_attribute *attribute, char *buf)
2181{
2182 struct virtnet_info *vi = netdev_priv(queue->dev);
2183 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002184 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002185
2186 BUG_ON(queue_index >= vi->max_queue_pairs);
2187 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2188 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
2189}
2190
2191static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2192 __ATTR_RO(mergeable_rx_buffer_size);
2193
2194static struct attribute *virtio_net_mrg_rx_attrs[] = {
2195 &mergeable_rx_buffer_size_attribute.attr,
2196 NULL
2197};
2198
2199static const struct attribute_group virtio_net_mrg_rx_group = {
2200 .name = "virtio_net",
2201 .attrs = virtio_net_mrg_rx_attrs
2202};
2203#endif
2204
Jason Wang892d6eb2014-11-20 17:03:05 +08002205static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2206 unsigned int fbit,
2207 const char *fname, const char *dname)
2208{
2209 if (!virtio_has_feature(vdev, fbit))
2210 return false;
2211
2212 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2213 fname, dname);
2214
2215 return true;
2216}
2217
2218#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2219 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2220
2221static bool virtnet_validate_features(struct virtio_device *vdev)
2222{
2223 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2224 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2225 "VIRTIO_NET_F_CTRL_VQ") ||
2226 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2227 "VIRTIO_NET_F_CTRL_VQ") ||
2228 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2229 "VIRTIO_NET_F_CTRL_VQ") ||
2230 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2231 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2232 "VIRTIO_NET_F_CTRL_VQ"))) {
2233 return false;
2234 }
2235
2236 return true;
2237}
2238
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002239#define MIN_MTU ETH_MIN_MTU
2240#define MAX_MTU ETH_MAX_MTU
2241
Rusty Russell296f96f2007-10-22 11:03:37 +10002242static int virtnet_probe(struct virtio_device *vdev)
2243{
Jason Wang986a4f42012-12-07 07:04:56 +00002244 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10002245 struct net_device *dev;
2246 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00002247 u16 max_queue_pairs;
Aaron Conole14de9d12016-06-03 16:57:12 -04002248 int mtu;
Jason Wang986a4f42012-12-07 07:04:56 +00002249
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002250 if (!vdev->config->get) {
2251 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2252 __func__);
2253 return -EINVAL;
2254 }
2255
Jason Wang892d6eb2014-11-20 17:03:05 +08002256 if (!virtnet_validate_features(vdev))
2257 return -EINVAL;
2258
Jason Wang986a4f42012-12-07 07:04:56 +00002259 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302260 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2261 struct virtio_net_config,
2262 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002263
2264 /* We need at least 2 queue's */
2265 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2266 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2267 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2268 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002269
2270 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002271 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002272 if (!dev)
2273 return -ENOMEM;
2274
2275 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002276 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002277 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002278 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002279
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002280 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002281 SET_NETDEV_DEV(dev, &vdev->dev);
2282
2283 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002284 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002285 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002286 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002287 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002288 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002289
2290 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002291 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002292 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2293 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002294 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002295 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2296 dev->hw_features |= NETIF_F_TSO;
2297 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2298 dev->hw_features |= NETIF_F_TSO6;
2299 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2300 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002301 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2302 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002303
Jason Wang41f2f122014-12-24 11:03:52 +08002304 dev->features |= NETIF_F_GSO_ROBUST;
2305
Michał Mirosław98e778c2011-03-31 01:01:35 +00002306 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002307 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002308 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002309 }
Thomas Huth4f491292013-08-27 17:09:02 +02002310 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2311 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002312
Jason Wang4fda8302013-04-10 23:32:21 +00002313 dev->vlan_features = dev->features;
2314
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002315 /* MTU range: 68 - 65535 */
2316 dev->min_mtu = MIN_MTU;
2317 dev->max_mtu = MAX_MTU;
2318
Rusty Russell296f96f2007-10-22 11:03:37 +10002319 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302320 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2321 virtio_cread_bytes(vdev,
2322 offsetof(struct virtio_net_config, mac),
2323 dev->dev_addr, dev->addr_len);
2324 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002325 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002326
2327 /* Set up our device-specific information */
2328 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002329 vi->dev = dev;
2330 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002331 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002332 vi->stats = alloc_percpu(struct virtnet_stats);
2333 err = -ENOMEM;
2334 if (vi->stats == NULL)
2335 goto free;
2336
John Stultz827da442013-10-07 15:51:58 -07002337 for_each_possible_cpu(i) {
2338 struct virtnet_stats *virtnet_stats;
2339 virtnet_stats = per_cpu_ptr(vi->stats, i);
2340 u64_stats_init(&virtnet_stats->tx_syncp);
2341 u64_stats_init(&virtnet_stats->rx_syncp);
2342 }
2343
Jason Wang586d17c2012-04-11 20:43:52 +00002344 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002345
Herbert Xu97402b92008-04-18 11:24:27 +08002346 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002347 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2348 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002349 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2350 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002351 vi->big_packets = true;
2352
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002353 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2354 vi->mergeable_rx_bufs = true;
2355
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002356 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2357 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002358 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2359 else
2360 vi->hdr_len = sizeof(struct virtio_net_hdr);
2361
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002362 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2363 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302364 vi->any_header_sg = true;
2365
Jason Wang986a4f42012-12-07 07:04:56 +00002366 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2367 vi->has_cvq = true;
2368
Aaron Conole14de9d12016-06-03 16:57:12 -04002369 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2370 mtu = virtio_cread16(vdev,
2371 offsetof(struct virtio_net_config,
2372 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002373 if (mtu < dev->min_mtu) {
Aaron Conole14de9d12016-06-03 16:57:12 -04002374 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
Aaron Conole93a205e2016-10-25 16:12:12 -04002375 } else {
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002376 dev->mtu = mtu;
Aaron Conole93a205e2016-10-25 16:12:12 -04002377 dev->max_mtu = mtu;
2378 }
Aaron Conole14de9d12016-06-03 16:57:12 -04002379 }
2380
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002381 if (vi->any_header_sg)
2382 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002383
Jason Wang44900012016-11-25 12:37:26 +08002384 /* Enable multiqueue by default */
2385 if (num_online_cpus() >= max_queue_pairs)
2386 vi->curr_queue_pairs = max_queue_pairs;
2387 else
2388 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002389 vi->max_queue_pairs = max_queue_pairs;
2390
2391 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302392 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002393 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002394 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002395
Michael Daltonfbf28d72014-01-16 22:23:30 -08002396#ifdef CONFIG_SYSFS
2397 if (vi->mergeable_rx_bufs)
2398 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2399#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002400 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2401 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002402
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002403 virtnet_init_settings(dev);
2404
Rusty Russell296f96f2007-10-22 11:03:37 +10002405 err = register_netdev(dev);
2406 if (err) {
2407 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002408 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002409 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002410
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302411 virtio_device_ready(vdev);
2412
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002413 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002414 if (err) {
2415 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002416 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002417 }
2418
Jason Wanga2208712016-12-13 14:23:05 +08002419 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002420
Jason Wang167c25e2010-11-10 14:45:41 +00002421 /* Assume link up if device can't report link status,
2422 otherwise get link status from config. */
2423 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2424 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002425 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002426 } else {
2427 vi->status = VIRTIO_NET_S_LINK_UP;
2428 netif_carrier_on(dev);
2429 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002430
Jason Wang986a4f42012-12-07 07:04:56 +00002431 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2432 dev->name, max_queue_pairs);
2433
Rusty Russell296f96f2007-10-22 11:03:37 +10002434 return 0;
2435
wangyunjianf00e35e2016-05-31 11:52:43 +08002436free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302437 vi->vdev->config->reset(vdev);
2438
Rusty Russellb3369c12008-02-04 23:50:02 -05002439 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002440free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002441 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002442 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002443 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002444free_stats:
2445 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002446free:
2447 free_netdev(dev);
2448 return err;
2449}
2450
John Fastabend2de2f7f2017-02-02 19:16:29 -08002451static void _remove_vq_common(struct virtnet_info *vi)
2452{
2453 vi->vdev->config->reset(vi->vdev);
2454 free_unused_bufs(vi);
2455 _free_receive_bufs(vi);
2456 free_receive_page_frags(vi);
2457 virtnet_del_vqs(vi);
2458}
2459
Amit Shah04486ed2011-12-22 16:58:32 +05302460static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002461{
Amit Shah04486ed2011-12-22 16:58:32 +05302462 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002463
2464 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002465 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002466
Jason Wang986a4f42012-12-07 07:04:56 +00002467 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002468
Michael Daltonfb518792014-01-16 22:23:26 -08002469 free_receive_page_frags(vi);
2470
Jason Wang986a4f42012-12-07 07:04:56 +00002471 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302472}
2473
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002474static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302475{
2476 struct virtnet_info *vi = vdev->priv;
2477
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002478 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002479
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302480 /* Make sure no work handler is accessing the device. */
2481 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002482
Amit Shah04486ed2011-12-22 16:58:32 +05302483 unregister_netdev(vi->dev);
2484
2485 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002486
Krishna Kumar2e66f552011-07-20 03:56:02 +00002487 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002488 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002489}
2490
Aaron Lu89107002013-09-17 09:25:23 +09302491#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302492static int virtnet_freeze(struct virtio_device *vdev)
2493{
2494 struct virtnet_info *vi = vdev->priv;
2495
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002496 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002497 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302498 remove_vq_common(vi);
2499
2500 return 0;
2501}
2502
2503static int virtnet_restore(struct virtio_device *vdev)
2504{
2505 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002506 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302507
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002508 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302509 if (err)
2510 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002511 virtnet_set_queues(vi, vi->curr_queue_pairs);
2512
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002513 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002514 if (err)
2515 return err;
2516
Amit Shah0741bcb2011-12-22 16:58:33 +05302517 return 0;
2518}
2519#endif
2520
Rusty Russell296f96f2007-10-22 11:03:37 +10002521static struct virtio_device_id id_table[] = {
2522 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2523 { 0 },
2524};
2525
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002526#define VIRTNET_FEATURES \
2527 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2528 VIRTIO_NET_F_MAC, \
2529 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2530 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2531 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2532 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2533 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2534 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2535 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2536 VIRTIO_NET_F_MTU
2537
Rusty Russellc45a6812008-05-02 21:50:50 -05002538static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002539 VIRTNET_FEATURES,
2540};
2541
2542static unsigned int features_legacy[] = {
2543 VIRTNET_FEATURES,
2544 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302545 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002546};
2547
Uwe Kleine-König22402522009-11-05 01:32:44 -08002548static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002549 .feature_table = features,
2550 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002551 .feature_table_legacy = features_legacy,
2552 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002553 .driver.name = KBUILD_MODNAME,
2554 .driver.owner = THIS_MODULE,
2555 .id_table = id_table,
2556 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002557 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002558 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302559#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302560 .freeze = virtnet_freeze,
2561 .restore = virtnet_restore,
2562#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002563};
2564
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002565static __init int virtio_net_driver_init(void)
2566{
2567 int ret;
2568
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002569 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002570 virtnet_cpu_online,
2571 virtnet_cpu_down_prep);
2572 if (ret < 0)
2573 goto out;
2574 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002575 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002576 NULL, virtnet_cpu_dead);
2577 if (ret)
2578 goto err_dead;
2579
2580 ret = register_virtio_driver(&virtio_net_driver);
2581 if (ret)
2582 goto err_virtio;
2583 return 0;
2584err_virtio:
2585 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2586err_dead:
2587 cpuhp_remove_multi_state(virtionet_online);
2588out:
2589 return ret;
2590}
2591module_init(virtio_net_driver_init);
2592
2593static __exit void virtio_net_driver_exit(void)
2594{
2595 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2596 cpuhp_remove_multi_state(virtionet_online);
2597 unregister_virtio_driver(&virtio_net_driver);
2598}
2599module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002600
2601MODULE_DEVICE_TABLE(virtio, id_table);
2602MODULE_DESCRIPTION("Virtio network driver");
2603MODULE_LICENSE("GPL");