blob: ca3d2e2350c62b81f6a7ae6449f7d40df0db2177 [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>
Rusty Russell296f96f2007-10-22 11:03:37 +100026#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080027#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000029#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080030#include <linux/average.h>
Jason Wang91815632014-07-23 16:33:55 +080031#include <net/busy_poll.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
Johannes Berg5377d7582015-08-19 09:48:40 +020044/* RX packet size EWMA. The average packet size is used to determine the packet
45 * buffer size when refilling RX rings. As the entire RX ring may be refilled
46 * at once, the weight is chosen so that the EWMA will be insensitive to short-
47 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080048 */
Johannes Berg5377d7582015-08-19 09:48:40 +020049DECLARE_EWMA(pkt_len, 1, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080050
51/* Minimum alignment for mergeable packet buffers. */
52#define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, 256)
53
Rick Jones66846042011-11-14 14:17:08 +000054#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000055
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000056struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000057 struct u64_stats_sync tx_syncp;
58 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000059 u64 tx_bytes;
60 u64 tx_packets;
61
62 u64 rx_bytes;
63 u64 rx_packets;
64};
65
Jason Wange9d74172012-12-07 07:04:55 +000066/* Internal representation of a send virtqueue */
67struct send_queue {
68 /* Virtqueue associated with this send _queue */
69 struct virtqueue *vq;
70
71 /* TX: fragments + linear part + virtio header */
72 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000073
74 /* Name of the send queue: output.$index */
75 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000076};
77
78/* Internal representation of a receive virtqueue */
79struct receive_queue {
80 /* Virtqueue associated with this receive_queue */
81 struct virtqueue *vq;
82
Rusty Russell296f96f2007-10-22 11:03:37 +100083 struct napi_struct napi;
84
John Fastabendf600b692016-12-15 12:13:24 -080085 struct bpf_prog __rcu *xdp_prog;
86
Jason Wange9d74172012-12-07 07:04:55 +000087 /* Chain pages by the private ptr. */
88 struct page *pages;
89
Michael Daltonab7db912014-01-16 22:23:27 -080090 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +020091 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -080092
Michael Daltonfb518792014-01-16 22:23:26 -080093 /* Page frag for packet buffer allocation. */
94 struct page_frag alloc_frag;
95
Jason Wange9d74172012-12-07 07:04:55 +000096 /* RX: fragments + linear part + virtio header */
97 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000098
99 /* Name of this receive queue: input.$index */
100 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000101};
102
103struct virtnet_info {
104 struct virtio_device *vdev;
105 struct virtqueue *cvq;
106 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000107 struct send_queue *sq;
108 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000109 unsigned int status;
110
Jason Wang986a4f42012-12-07 07:04:56 +0000111 /* Max # of queue pairs supported by the device */
112 u16 max_queue_pairs;
113
114 /* # of queue pairs currently used by the driver */
115 u16 curr_queue_pairs;
116
John Fastabend672aafd2016-12-15 12:13:49 -0800117 /* # of XDP queue pairs currently used by the driver */
118 u16 xdp_queue_pairs;
119
Herbert Xu97402b92008-04-18 11:24:27 +0800120 /* I like... big packets and I cannot lie! */
121 bool big_packets;
122
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800123 /* Host will merge rx buffers for big packets (shake it! shake it!) */
124 bool mergeable_rx_bufs;
125
Jason Wang986a4f42012-12-07 07:04:56 +0000126 /* Has control virtqueue */
127 bool has_cvq;
128
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930129 /* Host can handle any s/g split between our header and packet data */
130 bool any_header_sg;
131
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300132 /* Packet virtio header size */
133 u8 hdr_len;
134
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000135 /* Active statistics */
136 struct virtnet_stats __percpu *stats;
137
Rusty Russell3161e452009-08-26 12:22:32 -0700138 /* Work struct for refilling if we run low on memory. */
139 struct delayed_work refill;
140
Jason Wang586d17c2012-04-11 20:43:52 +0000141 /* Work struct for config space updates */
142 struct work_struct config_work;
143
Jason Wang986a4f42012-12-07 07:04:56 +0000144 /* Does the affinity hint is set for virtqueues? */
145 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000146
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200147 /* CPU hotplug instances for online & dead */
148 struct hlist_node node;
149 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200150
151 /* Control VQ buffers: protected by the rtnl lock */
152 struct virtio_net_ctrl_hdr ctrl_hdr;
153 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700154 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200155 u8 ctrl_promisc;
156 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700157 u16 ctrl_vid;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100158
159 /* Ethtool settings */
160 u8 duplex;
161 u32 speed;
Rusty Russell296f96f2007-10-22 11:03:37 +1000162};
163
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000164struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300165 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000166 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300167 * hdr is in a separate sg buffer, and data sg buffer shares same page
168 * with this header sg. This padding makes next sg 16 byte aligned
169 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000170 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300171 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000172};
173
Jason Wang986a4f42012-12-07 07:04:56 +0000174/* Converting between virtqueue no. and kernel tx/rx queue no.
175 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
176 */
177static int vq2txq(struct virtqueue *vq)
178{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000179 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000180}
181
182static int txq2vq(int txq)
183{
184 return txq * 2 + 1;
185}
186
187static int vq2rxq(struct virtqueue *vq)
188{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000189 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000190}
191
192static int rxq2vq(int rxq)
193{
194 return rxq * 2;
195}
196
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300197static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000198{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300199 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000200}
201
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000202/*
203 * private is used to chain pages for big packets, put the whole
204 * most recent used list in the beginning for reuse
205 */
Jason Wange9d74172012-12-07 07:04:55 +0000206static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500207{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000208 struct page *end;
209
Jason Wange9d74172012-12-07 07:04:55 +0000210 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000211 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000212 end->private = (unsigned long)rq->pages;
213 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500214}
215
Jason Wange9d74172012-12-07 07:04:55 +0000216static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500217{
Jason Wange9d74172012-12-07 07:04:55 +0000218 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500219
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000220 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000221 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000222 /* clear private here, it is used to chain pages */
223 p->private = 0;
224 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500225 p = alloc_page(gfp_mask);
226 return p;
227}
228
Jason Wange9d74172012-12-07 07:04:55 +0000229static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000230{
Jason Wange9d74172012-12-07 07:04:55 +0000231 struct virtnet_info *vi = vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000232
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500233 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000234 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000235
Rusty Russell363f1512008-06-08 20:51:55 +1000236 /* We were probably waiting for more output buffers. */
Jason Wang986a4f42012-12-07 07:04:56 +0000237 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000238}
239
Michael Daltonab7db912014-01-16 22:23:27 -0800240static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx)
241{
242 unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1);
243 return (truesize + 1) * MERGEABLE_BUFFER_ALIGN;
244}
245
246static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx)
247{
248 return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN);
249
250}
251
252static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize)
253{
254 unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN;
255 return (unsigned long)buf | (size - 1);
256}
257
Mike Waychison34646452012-01-04 12:52:32 +0000258/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300259static struct sk_buff *page_to_skb(struct virtnet_info *vi,
260 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700261 struct page *page, unsigned int offset,
262 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000263{
264 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300265 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700266 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000267 char *p;
268
Michael Dalton2613af02013-10-28 15:44:18 -0700269 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000270
271 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100272 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000273 if (unlikely(!skb))
274 return NULL;
275
276 hdr = skb_vnet_hdr(skb);
277
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300278 hdr_len = vi->hdr_len;
279 if (vi->mergeable_rx_bufs)
280 hdr_padded_len = sizeof *hdr;
281 else
Michael Dalton2613af02013-10-28 15:44:18 -0700282 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000283
284 memcpy(hdr, p, hdr_len);
285
286 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700287 offset += hdr_padded_len;
288 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000289
290 copy = len;
291 if (copy > skb_tailroom(skb))
292 copy = skb_tailroom(skb);
293 memcpy(skb_put(skb, copy), p, copy);
294
295 len -= copy;
296 offset += copy;
297
Michael Dalton2613af02013-10-28 15:44:18 -0700298 if (vi->mergeable_rx_bufs) {
299 if (len)
300 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
301 else
302 put_page(page);
303 return skb;
304 }
305
Sasha Levine878d782011-09-28 04:40:54 +0000306 /*
307 * Verify that we can indeed put this data into a skb.
308 * This is here to handle cases when the device erroneously
309 * tries to receive more than is possible. This is usually
310 * the case of a broken device.
311 */
312 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000313 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000314 dev_kfree_skb(skb);
315 return NULL;
316 }
Michael Dalton2613af02013-10-28 15:44:18 -0700317 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000318 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700319 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
320 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
321 frag_size, truesize);
322 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000323 page = (struct page *)page->private;
324 offset = 0;
325 }
326
327 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000328 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329
330 return skb;
331}
332
John Fastabend56434a02016-12-15 12:14:13 -0800333static void virtnet_xdp_xmit(struct virtnet_info *vi,
334 struct receive_queue *rq,
335 struct send_queue *sq,
336 struct xdp_buff *xdp)
337{
338 struct page *page = virt_to_head_page(xdp->data);
339 struct virtio_net_hdr_mrg_rxbuf *hdr;
340 unsigned int num_sg, len;
341 void *xdp_sent;
342 int err;
343
344 /* Free up any pending old buffers before queueing new ones. */
345 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
346 struct page *sent_page = virt_to_head_page(xdp_sent);
347
348 if (vi->mergeable_rx_bufs)
349 put_page(sent_page);
350 else
351 give_pages(rq, sent_page);
352 }
353
354 /* Zero header and leave csum up to XDP layers */
355 hdr = xdp->data;
356 memset(hdr, 0, vi->hdr_len);
357
358 num_sg = 1;
359 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
360 err = virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
361 xdp->data, GFP_ATOMIC);
362 if (unlikely(err)) {
363 if (vi->mergeable_rx_bufs)
364 put_page(page);
365 else
366 give_pages(rq, page);
367 return; // On error abort to avoid unnecessary kick
368 } else if (!vi->mergeable_rx_bufs) {
369 /* If not mergeable bufs must be big packets so cleanup pages */
370 give_pages(rq, (struct page *)page->private);
371 page->private = 0;
372 }
373
374 virtqueue_kick(sq->vq);
375}
376
John Fastabendf600b692016-12-15 12:13:24 -0800377static u32 do_xdp_prog(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800378 struct receive_queue *rq,
John Fastabendf600b692016-12-15 12:13:24 -0800379 struct bpf_prog *xdp_prog,
380 struct page *page, int offset, int len)
381{
382 int hdr_padded_len;
383 struct xdp_buff xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800384 unsigned int qp;
John Fastabendf600b692016-12-15 12:13:24 -0800385 u32 act;
386 u8 *buf;
387
388 buf = page_address(page) + offset;
389
390 if (vi->mergeable_rx_bufs)
391 hdr_padded_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
392 else
393 hdr_padded_len = sizeof(struct padded_vnet_hdr);
394
395 xdp.data = buf + hdr_padded_len;
396 xdp.data_end = xdp.data + (len - vi->hdr_len);
397
398 act = bpf_prog_run_xdp(xdp_prog, &xdp);
399 switch (act) {
400 case XDP_PASS:
401 return XDP_PASS;
John Fastabend56434a02016-12-15 12:14:13 -0800402 case XDP_TX:
403 qp = vi->curr_queue_pairs -
404 vi->xdp_queue_pairs +
405 smp_processor_id();
406 xdp.data = buf + (vi->mergeable_rx_bufs ? 0 : 4);
407 virtnet_xdp_xmit(vi, rq, &vi->sq[qp], &xdp);
408 return XDP_TX;
John Fastabendf600b692016-12-15 12:13:24 -0800409 default:
410 bpf_warn_invalid_xdp_action(act);
John Fastabendf600b692016-12-15 12:13:24 -0800411 case XDP_ABORTED:
412 case XDP_DROP:
413 return XDP_DROP;
414 }
415}
416
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300417static struct sk_buff *receive_small(struct virtnet_info *vi, void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200418{
419 struct sk_buff * skb = buf;
420
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300421 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200422 skb_trim(skb, len);
423
424 return skb;
425}
426
427static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300428 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200429 struct receive_queue *rq,
430 void *buf,
431 unsigned int len)
432{
John Fastabendf600b692016-12-15 12:13:24 -0800433 struct bpf_prog *xdp_prog;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200434 struct page *page = buf;
John Fastabendf600b692016-12-15 12:13:24 -0800435 struct sk_buff *skb;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200436
John Fastabendf600b692016-12-15 12:13:24 -0800437 rcu_read_lock();
438 xdp_prog = rcu_dereference(rq->xdp_prog);
439 if (xdp_prog) {
440 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
441 u32 act;
442
443 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
444 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800445 act = do_xdp_prog(vi, rq, xdp_prog, page, 0, len);
446 switch (act) {
447 case XDP_PASS:
448 break;
449 case XDP_TX:
450 rcu_read_unlock();
451 goto xdp_xmit;
452 case XDP_DROP:
453 default:
John Fastabendf600b692016-12-15 12:13:24 -0800454 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800455 }
John Fastabendf600b692016-12-15 12:13:24 -0800456 }
457 rcu_read_unlock();
458
459 skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200460 if (unlikely(!skb))
461 goto err;
462
463 return skb;
464
John Fastabendf600b692016-12-15 12:13:24 -0800465err_xdp:
466 rcu_read_unlock();
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200467err:
468 dev->stats.rx_dropped++;
469 give_pages(rq, page);
John Fastabend56434a02016-12-15 12:14:13 -0800470xdp_xmit:
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200471 return NULL;
472}
473
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200474static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200475 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200476 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800477 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200478 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000479{
Michael Daltonab7db912014-01-16 22:23:27 -0800480 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300481 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
482 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200483 struct page *page = virt_to_head_page(buf);
484 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800485 struct sk_buff *head_skb, *curr_skb;
486 struct bpf_prog *xdp_prog;
487 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800488
John Fastabend56434a02016-12-15 12:14:13 -0800489 head_skb = NULL;
490
John Fastabendf600b692016-12-15 12:13:24 -0800491 rcu_read_lock();
492 xdp_prog = rcu_dereference(rq->xdp_prog);
493 if (xdp_prog) {
494 u32 act;
495
496 /* No known backend devices should send packets with
497 * more than a single buffer when XDP conditions are
498 * met. However it is not strictly illegal so the case
499 * is handled as an exception and a warning is thrown.
500 */
501 if (unlikely(num_buf > 1)) {
502 bpf_warn_invalid_xdp_buffer();
503 goto err_xdp;
504 }
505
506 /* Transient failure which in theory could occur if
507 * in-flight packets from before XDP was enabled reach
508 * the receive path after XDP is loaded. In practice I
509 * was not able to create this condition.
510 */
511 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
512 goto err_xdp;
513
John Fastabend56434a02016-12-15 12:14:13 -0800514 act = do_xdp_prog(vi, rq, xdp_prog, page, offset, len);
515 switch (act) {
516 case XDP_PASS:
517 break;
518 case XDP_TX:
519 rcu_read_unlock();
520 goto xdp_xmit;
521 case XDP_DROP:
522 default:
John Fastabendf600b692016-12-15 12:13:24 -0800523 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800524 }
John Fastabendf600b692016-12-15 12:13:24 -0800525 }
526 rcu_read_unlock();
527
528 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
529 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
530 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000531
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200532 if (unlikely(!curr_skb))
533 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000534 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200535 int num_skb_frags;
536
Michael Daltonab7db912014-01-16 22:23:27 -0800537 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
538 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200539 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200540 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300541 virtio16_to_cpu(vi->vdev,
542 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200543 dev->stats.rx_length_errors++;
544 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000545 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200546
Michael Daltonab7db912014-01-16 22:23:27 -0800547 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200548 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200549
550 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700551 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
552 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200553
554 if (unlikely(!nskb))
555 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700556 if (curr_skb == head_skb)
557 skb_shinfo(curr_skb)->frag_list = nskb;
558 else
559 curr_skb->next = nskb;
560 curr_skb = nskb;
561 head_skb->truesize += nskb->truesize;
562 num_skb_frags = 0;
563 }
Michael Daltonab7db912014-01-16 22:23:27 -0800564 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700565 if (curr_skb != head_skb) {
566 head_skb->data_len += len;
567 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800568 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700569 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200570 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800571 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
572 put_page(page);
573 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800574 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800575 } else {
576 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800577 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800578 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200579 }
580
Johannes Berg5377d7582015-08-19 09:48:40 +0200581 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200582 return head_skb;
583
John Fastabendf600b692016-12-15 12:13:24 -0800584err_xdp:
585 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200586err_skb:
587 put_page(page);
588 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800589 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
590 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200591 pr_debug("%s: rx error: %d buffers missing\n",
592 dev->name, num_buf);
593 dev->stats.rx_length_errors++;
594 break;
595 }
Michael Daltonab7db912014-01-16 22:23:27 -0800596 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200597 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000598 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200599err_buf:
600 dev->stats.rx_dropped++;
601 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800602xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200603 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000604}
605
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300606static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
607 void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000608{
Jason Wange9d74172012-12-07 07:04:55 +0000609 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000610 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000611 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300612 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000613
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300614 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000615 pr_debug("%s: short packet %i\n", dev->name, len);
616 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800617 if (vi->mergeable_rx_bufs) {
618 unsigned long ctx = (unsigned long)buf;
619 void *base = mergeable_ctx_to_buf_address(ctx);
620 put_page(virt_to_head_page(base));
621 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800622 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800623 } else {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000624 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800625 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000626 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000627 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000628
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200629 if (vi->mergeable_rx_bufs)
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200630 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200631 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300632 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200633 else
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300634 skb = receive_small(vi, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200635
636 if (unlikely(!skb))
637 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800638
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000639 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000640
Eric Dumazet83a27052012-06-05 22:35:24 +0000641 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000642 stats->rx_bytes += skb->len;
643 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000644 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000645
Mike Rapoporte858fae2016-06-08 16:09:21 +0300646 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000647 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000648
Mike Rapoporte858fae2016-06-08 16:09:21 +0300649 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
650 virtio_is_little_endian(vi->vdev))) {
651 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
652 dev->name, hdr->hdr.gso_type,
653 hdr->hdr.gso_size);
654 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000655 }
656
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300657 skb->protocol = eth_type_trans(skb, dev);
658 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
659 ntohs(skb->protocol), skb->len, skb->pkt_type);
660
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200661 napi_gro_receive(&rq->napi, skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000662 return;
663
664frame_err:
665 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000666 dev_kfree_skb(skb);
667}
668
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300669static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
670 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000671{
672 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300673 struct virtio_net_hdr_mrg_rxbuf *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000674 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000675
Michael Dalton5061de32013-11-14 10:41:04 -0800676 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000677 if (unlikely(!skb))
678 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800679
Michael Dalton5061de32013-11-14 10:41:04 -0800680 skb_put(skb, GOOD_PACKET_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000681
682 hdr = skb_vnet_hdr(skb);
Jason Wang547c8902015-08-27 14:53:06 +0800683 sg_init_table(rq->sg, 2);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300684 sg_set_buf(rq->sg, hdr, vi->hdr_len);
Jason Wange9d74172012-12-07 07:04:55 +0000685 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000686
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030687 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000688 if (err < 0)
689 dev_kfree_skb(skb);
690
691 return err;
692}
693
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300694static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
695 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000696{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000697 struct page *first, *list = NULL;
698 char *p;
699 int i, err, offset;
700
Rusty Russella5835442014-09-11 10:17:36 +0930701 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
702
Jason Wange9d74172012-12-07 07:04:55 +0000703 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000704 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000705 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000706 if (!first) {
707 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000708 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000709 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700710 }
Jason Wange9d74172012-12-07 07:04:55 +0000711 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000712
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000713 /* chain new page in list head to match sg */
714 first->private = (unsigned long)list;
715 list = first;
716 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800717
Jason Wange9d74172012-12-07 07:04:55 +0000718 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000719 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000720 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000721 return -ENOMEM;
722 }
723 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800724
Jason Wange9d74172012-12-07 07:04:55 +0000725 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300726 /* a separated rq->sg[0] for header - required in case !any_header_sg */
727 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800728
Jason Wange9d74172012-12-07 07:04:55 +0000729 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000730 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000731 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800732
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000733 /* chain first in list head */
734 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030735 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
736 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000737 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000738 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800739
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000740 return err;
741}
Herbert Xu97402b92008-04-18 11:24:27 +0800742
Johannes Berg5377d7582015-08-19 09:48:40 +0200743static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000744{
Michael Daltonab7db912014-01-16 22:23:27 -0800745 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800746 unsigned int len;
747
Johannes Berg5377d7582015-08-19 09:48:40 +0200748 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael Daltonfbf28d72014-01-16 22:23:30 -0800749 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
750 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
751}
752
753static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
754{
Michael Daltonfb518792014-01-16 22:23:26 -0800755 struct page_frag *alloc_frag = &rq->alloc_frag;
756 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800757 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000758 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800759 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000760
Michael Daltonfbf28d72014-01-16 22:23:30 -0800761 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
Michael Daltonab7db912014-01-16 22:23:27 -0800762 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000763 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800764
Michael Daltonfb518792014-01-16 22:23:26 -0800765 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800766 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800767 get_page(alloc_frag->page);
Michael Daltonfb518792014-01-16 22:23:26 -0800768 alloc_frag->offset += len;
769 hole = alloc_frag->size - alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800770 if (hole < len) {
771 /* To avoid internal fragmentation, if there is very likely not
772 * enough space for another buffer, add the remaining space to
773 * the current buffer. This extra space is not included in
774 * the truesize stored in ctx.
775 */
Michael Daltonfb518792014-01-16 22:23:26 -0800776 len += hole;
777 alloc_frag->offset += hole;
778 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000779
Michael Daltonfb518792014-01-16 22:23:26 -0800780 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800781 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000782 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700783 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000784
785 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000786}
787
Rusty Russellb2baed62011-12-29 00:42:38 +0000788/*
789 * Returns false if we couldn't fill entirely (OOM).
790 *
791 * Normally run in the receive path, but can also be run from ndo_open
792 * before we're receiving packets, or from refill_work which is
793 * careful to disable receiving (using napi_disable).
794 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300795static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
796 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800797{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800798 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000799 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800800
Michael Daltonfb518792014-01-16 22:23:26 -0800801 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530802 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000803 if (vi->mergeable_rx_bufs)
Jason Wange9d74172012-12-07 07:04:55 +0000804 err = add_recvbuf_mergeable(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000805 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300806 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000807 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300808 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800809
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000810 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030811 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800812 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800813 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800814 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700815 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800816}
817
Rusty Russell18445c42008-02-04 23:49:57 -0500818static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000819{
820 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000821 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000822
Rusty Russell18445c42008-02-04 23:49:57 -0500823 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000824 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300825 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000826 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500827 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000828}
829
Jason Wange9d74172012-12-07 07:04:55 +0000830static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800831{
Jason Wange9d74172012-12-07 07:04:55 +0000832 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800833
834 /* If all buffers were filled by other side before we napi_enabled, we
835 * won't get another interrupt, so process any outstanding packets
836 * now. virtnet_poll wants re-enable the queue, so we disable here.
837 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000838 if (napi_schedule_prep(&rq->napi)) {
839 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300840 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000841 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300842 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800843 }
844}
845
Rusty Russell3161e452009-08-26 12:22:32 -0700846static void refill_work(struct work_struct *work)
847{
Jason Wange9d74172012-12-07 07:04:55 +0000848 struct virtnet_info *vi =
849 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700850 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000851 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700852
Sasha Levin55257d72013-04-29 12:00:08 +0930853 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000854 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700855
Jason Wang986a4f42012-12-07 07:04:56 +0000856 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300857 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +0000858 virtnet_napi_enable(rq);
859
860 /* In theory, this can happen: if we don't get any buffers in
861 * we will *never* try to fill again.
862 */
863 if (still_empty)
864 schedule_delayed_work(&vi->refill, HZ/2);
865 }
Rusty Russell3161e452009-08-26 12:22:32 -0700866}
867
Jason Wang2ffa7592014-07-23 16:33:54 +0800868static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +1000869{
Jason Wange9d74172012-12-07 07:04:55 +0000870 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang2ffa7592014-07-23 16:33:54 +0800871 unsigned int len, received = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000872 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +1000873
Rusty Russell296f96f2007-10-22 11:03:37 +1000874 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +0000875 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300876 receive_buf(vi, rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +1000877 received++;
878 }
879
Jason Wangbe121f42014-01-16 14:45:24 +0800880 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300881 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700882 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -0700883 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000884
Jason Wang2ffa7592014-07-23 16:33:54 +0800885 return received;
886}
887
888static int virtnet_poll(struct napi_struct *napi, int budget)
889{
890 struct receive_queue *rq =
891 container_of(napi, struct receive_queue, napi);
Li RongQingfaadb052015-03-26 15:39:45 +0800892 unsigned int r, received;
Jason Wang2ffa7592014-07-23 16:33:54 +0800893
Li RongQingfaadb052015-03-26 15:39:45 +0800894 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +0800895
Rusty Russell8329d982007-11-19 11:20:43 -0500896 /* Out of packets? */
897 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300898 r = virtqueue_enable_cb_prepare(rq->vq);
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200899 napi_complete_done(napi, received);
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300900 if (unlikely(virtqueue_poll(rq->vq, r)) &&
Joe Perches8e95a202009-12-03 07:58:21 +0000901 napi_schedule_prep(napi)) {
Jason Wange9d74172012-12-07 07:04:55 +0000902 virtqueue_disable_cb(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800903 __napi_schedule(napi);
Christian Borntraeger4265f162008-03-14 14:17:05 +0100904 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000905 }
906
907 return received;
908}
909
Jason Wang91815632014-07-23 16:33:55 +0800910#ifdef CONFIG_NET_RX_BUSY_POLL
911/* must be called with local_bh_disable()d */
912static int virtnet_busy_poll(struct napi_struct *napi)
913{
914 struct receive_queue *rq =
915 container_of(napi, struct receive_queue, napi);
916 struct virtnet_info *vi = rq->vq->vdev->priv;
917 int r, received = 0, budget = 4;
918
919 if (!(vi->status & VIRTIO_NET_S_LINK_UP))
920 return LL_FLUSH_FAILED;
921
922 if (!napi_schedule_prep(napi))
923 return LL_FLUSH_BUSY;
924
925 virtqueue_disable_cb(rq->vq);
926
927again:
928 received += virtnet_receive(rq, budget);
929
930 r = virtqueue_enable_cb_prepare(rq->vq);
931 clear_bit(NAPI_STATE_SCHED, &napi->state);
932 if (unlikely(virtqueue_poll(rq->vq, r)) &&
933 napi_schedule_prep(napi)) {
934 virtqueue_disable_cb(rq->vq);
935 if (received < budget) {
936 budget -= received;
937 goto again;
938 } else {
939 __napi_schedule(napi);
940 }
941 }
942
943 return received;
944}
945#endif /* CONFIG_NET_RX_BUSY_POLL */
946
Jason Wang986a4f42012-12-07 07:04:56 +0000947static int virtnet_open(struct net_device *dev)
948{
949 struct virtnet_info *vi = netdev_priv(dev);
950 int i;
951
Jason Wange4166622013-05-21 20:03:58 +0000952 for (i = 0; i < vi->max_queue_pairs; i++) {
953 if (i < vi->curr_queue_pairs)
954 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300955 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +0000956 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +0000957 virtnet_napi_enable(&vi->rq[i]);
958 }
959
960 return 0;
961}
962
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800963static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000964{
965 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +1030966 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +0000967 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +0000968 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +1000969
Jason Wange9d74172012-12-07 07:04:55 +0000970 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000971 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000972
Eric Dumazet83a27052012-06-05 22:35:24 +0000973 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000974 stats->tx_bytes += skb->len;
975 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000976 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000977
Eric Dumazeted79bab2009-10-14 14:36:43 +0000978 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000979 }
980}
981
Jason Wange9d74172012-12-07 07:04:55 +0000982static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000983{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300984 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000985 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +0000986 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +1030987 unsigned num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300988 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930989 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +1000990
Johannes Berge1749612008-10-27 15:59:26 -0700991 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930992
993 can_push = vi->any_header_sg &&
994 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
995 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
996 /* Even if we can, don't push here yet as this would skew
997 * csum_start offset below. */
998 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300999 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301000 else
1001 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001002
Mike Rapoporte858fae2016-06-08 16:09:21 +03001003 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1004 virtio_is_little_endian(vi->vdev)))
1005 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001006
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001007 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001008 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001009
Jason Wang547c8902015-08-27 14:53:06 +08001010 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301011 if (can_push) {
1012 __skb_push(skb, hdr_len);
1013 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1014 /* Pull header back to avoid skew in tx bytes calculations. */
1015 __skb_pull(skb, hdr_len);
1016 } else {
1017 sg_set_buf(sq->sg, hdr, hdr_len);
1018 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1019 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301020 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001021}
1022
Stephen Hemminger424efe92009-08-31 19:50:51 +00001023static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001024{
1025 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001026 int qnum = skb_get_queue_mapping(skb);
1027 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301028 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001029 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1030 bool kick = !skb->xmit_more;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001031
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001032 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001033 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001034
Jacob Keller074c3582014-06-25 02:37:13 +00001035 /* timestamp packet in software */
1036 skb_tx_timestamp(skb);
1037
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001038 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001039 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001040
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301041 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001042 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301043 dev->stats.tx_fifo_errors++;
1044 if (net_ratelimit())
1045 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001046 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001047 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001048 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001049 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001050 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001051
Rusty Russell48925e32009-09-24 09:59:20 -06001052 /* Don't wait up for transmitted skbs to be freed. */
1053 skb_orphan(skb);
1054 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -05001055
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001056 /* If running out of space, stop queue to avoid getting packets that we
1057 * are then unable to transmit.
1058 * An alternative would be to force queuing layer to requeue the skb by
1059 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1060 * returned in a normal path of operation: it means that driver is not
1061 * maintaining the TX queue stop/start state properly, and causes
1062 * the stack to do a non-trivial amount of useless work.
1063 * Since most packets only take 1 or 2 ring slots, stopping the queue
1064 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001065 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001066 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001067 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001068 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001069 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001070 free_old_xmit_skbs(sq);
1071 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001072 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001073 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001074 }
1075 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001076 }
Rusty Russell48925e32009-09-24 09:59:20 -06001077
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001078 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001079 virtqueue_kick(sq->vq);
1080
Rusty Russell48925e32009-09-24 09:59:20 -06001081 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001082}
1083
Amos Kong40cbfc32013-01-21 01:17:21 +00001084/*
1085 * Send command via the control virtqueue and check status. Commands
1086 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001087 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001088 */
1089static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001090 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001091{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301092 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001093 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001094
1095 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301096 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001097
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001098 vi->ctrl_status = ~0;
1099 vi->ctrl_hdr.class = class;
1100 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301101 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001102 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301103 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001104
Rusty Russellf7bc9592013-03-20 15:44:28 +10301105 if (out)
1106 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001107
Rusty Russellf7bc9592013-03-20 15:44:28 +10301108 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001109 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001110 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001111
stephen hemmingerd24bae32013-12-09 16:17:40 -08001112 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301113 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001114
Heinz Graalfs67975902013-10-29 09:40:02 +10301115 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001116 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001117
1118 /* Spin for a response, the kick causes an ioport write, trapping
1119 * into the hypervisor, so the request should be handled immediately.
1120 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301121 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1122 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001123 cpu_relax();
1124
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001125 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001126}
1127
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001128static int virtnet_set_mac_address(struct net_device *dev, void *p)
1129{
1130 struct virtnet_info *vi = netdev_priv(dev);
1131 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001132 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001133 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001134 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001135
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001136 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
1137 if (!addr)
1138 return -ENOMEM;
1139 memcpy(addr, p, sizeof(*addr));
1140
1141 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001142 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001143 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001144
Amos Kong7e58d5a2013-01-21 01:17:23 +00001145 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1146 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1147 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001148 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001149 dev_warn(&vdev->dev,
1150 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001151 ret = -EINVAL;
1152 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001153 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001154 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1155 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301156 unsigned int i;
1157
1158 /* Naturally, this has an atomicity problem. */
1159 for (i = 0; i < dev->addr_len; i++)
1160 virtio_cwrite8(vdev,
1161 offsetof(struct virtio_net_config, mac) +
1162 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001163 }
1164
1165 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001166 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001167
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001168out:
1169 kfree(addr);
1170 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001171}
1172
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001173static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
1174 struct rtnl_link_stats64 *tot)
1175{
1176 struct virtnet_info *vi = netdev_priv(dev);
1177 int cpu;
1178 unsigned int start;
1179
1180 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001181 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001182 u64 tpackets, tbytes, rpackets, rbytes;
1183
1184 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001185 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001186 tpackets = stats->tx_packets;
1187 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001188 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001189
1190 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001191 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001192 rpackets = stats->rx_packets;
1193 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001194 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001195
1196 tot->rx_packets += rpackets;
1197 tot->tx_packets += tpackets;
1198 tot->rx_bytes += rbytes;
1199 tot->tx_bytes += tbytes;
1200 }
1201
1202 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001203 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001204 tot->rx_dropped = dev->stats.rx_dropped;
1205 tot->rx_length_errors = dev->stats.rx_length_errors;
1206 tot->rx_frame_errors = dev->stats.rx_frame_errors;
1207
1208 return tot;
1209}
1210
Amit Shahda74e892008-02-29 16:24:50 +05301211#ifdef CONFIG_NET_POLL_CONTROLLER
1212static void virtnet_netpoll(struct net_device *dev)
1213{
1214 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001215 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301216
Jason Wang986a4f42012-12-07 07:04:56 +00001217 for (i = 0; i < vi->curr_queue_pairs; i++)
1218 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301219}
1220#endif
1221
Jason Wang586d17c2012-04-11 20:43:52 +00001222static void virtnet_ack_link_announce(struct virtnet_info *vi)
1223{
1224 rtnl_lock();
1225 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001226 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001227 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1228 rtnl_unlock();
1229}
1230
Jason Wang986a4f42012-12-07 07:04:56 +00001231static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1232{
1233 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001234 struct net_device *dev = vi->dev;
1235
1236 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1237 return 0;
1238
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001239 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1240 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001241
1242 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001243 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001244 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1245 queue_pairs);
1246 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301247 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001248 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001249 /* virtnet_open() will refill when device is going to up. */
1250 if (dev->flags & IFF_UP)
1251 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301252 }
Jason Wang986a4f42012-12-07 07:04:56 +00001253
1254 return 0;
1255}
1256
Rusty Russell296f96f2007-10-22 11:03:37 +10001257static int virtnet_close(struct net_device *dev)
1258{
1259 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001260 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001261
Rusty Russellb2baed62011-12-29 00:42:38 +00001262 /* Make sure refill_work doesn't re-enable napi! */
1263 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001264
1265 for (i = 0; i < vi->max_queue_pairs; i++)
1266 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001267
Rusty Russell296f96f2007-10-22 11:03:37 +10001268 return 0;
1269}
1270
Alex Williamson2af76982009-02-04 09:02:40 +00001271static void virtnet_set_rx_mode(struct net_device *dev)
1272{
1273 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001274 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001275 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001276 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001277 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001278 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001279 void *buf;
1280 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001281
stephen hemminger788a8b62013-12-09 16:18:45 -08001282 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001283 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1284 return;
1285
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001286 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1287 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001288
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001289 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001290
1291 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001292 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001293 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001294 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001295
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001296 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001297
1298 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001299 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001300 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001301 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001302
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001303 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001304 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001305 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001306 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1307 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1308 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001309 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001310 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001311
Alex Williamson23e258e2009-05-01 17:27:56 +00001312 sg_init_table(sg, 2);
1313
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001314 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001315 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001316 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001317 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001318 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001319
1320 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001321 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001322
1323 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001324 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001325
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001326 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001327 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001328 netdev_for_each_mc_addr(ha, dev)
1329 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001330
1331 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001332 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001333
1334 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001335 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001336 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001337
1338 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001339}
1340
Patrick McHardy80d5c362013-04-19 02:04:28 +00001341static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1342 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001343{
1344 struct virtnet_info *vi = netdev_priv(dev);
1345 struct scatterlist sg;
1346
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001347 vi->ctrl_vid = vid;
1348 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001349
1350 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001351 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001352 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001353 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001354}
1355
Patrick McHardy80d5c362013-04-19 02:04:28 +00001356static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1357 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001358{
1359 struct virtnet_info *vi = netdev_priv(dev);
1360 struct scatterlist sg;
1361
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001362 vi->ctrl_vid = vid;
1363 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001364
1365 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001366 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001367 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001368 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001369}
1370
Wanlong Gao8898c212013-01-24 23:51:30 +00001371static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001372{
1373 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001374
1375 if (vi->affinity_hint_set) {
1376 for (i = 0; i < vi->max_queue_pairs; i++) {
1377 virtqueue_set_affinity(vi->rq[i].vq, -1);
1378 virtqueue_set_affinity(vi->sq[i].vq, -1);
1379 }
1380
1381 vi->affinity_hint_set = false;
1382 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001383}
1384
1385static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001386{
1387 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001388 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001389
1390 /* In multiqueue mode, when the number of cpu is equal to the number of
1391 * queue pairs, we let the queue pairs to be private to one cpu by
1392 * setting the affinity hint to eliminate the contention.
1393 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001394 if (vi->curr_queue_pairs == 1 ||
1395 vi->max_queue_pairs != num_online_cpus()) {
1396 virtnet_clean_affinity(vi, -1);
1397 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001398 }
1399
Wanlong Gao8898c212013-01-24 23:51:30 +00001400 i = 0;
1401 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001402 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1403 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001404 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001405 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001406 }
1407
Wanlong Gao8898c212013-01-24 23:51:30 +00001408 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001409}
1410
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001411static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001412{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001413 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1414 node);
1415 virtnet_set_affinity(vi);
1416 return 0;
1417}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001418
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001419static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1420{
1421 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1422 node_dead);
1423 virtnet_set_affinity(vi);
1424 return 0;
1425}
Jason Wang3ab098d2013-10-15 11:18:58 +08001426
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001427static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1428{
1429 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1430 node);
1431
1432 virtnet_clean_affinity(vi, cpu);
1433 return 0;
1434}
1435
1436static enum cpuhp_state virtionet_online;
1437
1438static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1439{
1440 int ret;
1441
1442 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1443 if (ret)
1444 return ret;
1445 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1446 &vi->node_dead);
1447 if (!ret)
1448 return ret;
1449 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1450 return ret;
1451}
1452
1453static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1454{
1455 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1456 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1457 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001458}
1459
Rick Jones8f9f4662011-10-19 08:10:59 +00001460static void virtnet_get_ringparam(struct net_device *dev,
1461 struct ethtool_ringparam *ring)
1462{
1463 struct virtnet_info *vi = netdev_priv(dev);
1464
Jason Wang986a4f42012-12-07 07:04:56 +00001465 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1466 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001467 ring->rx_pending = ring->rx_max_pending;
1468 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001469}
1470
Rick Jones66846042011-11-14 14:17:08 +00001471
1472static void virtnet_get_drvinfo(struct net_device *dev,
1473 struct ethtool_drvinfo *info)
1474{
1475 struct virtnet_info *vi = netdev_priv(dev);
1476 struct virtio_device *vdev = vi->vdev;
1477
1478 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1479 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1480 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1481
1482}
1483
Jason Wangd73bcd22012-12-07 07:04:57 +00001484/* TODO: Eliminate OOO packets during switching */
1485static int virtnet_set_channels(struct net_device *dev,
1486 struct ethtool_channels *channels)
1487{
1488 struct virtnet_info *vi = netdev_priv(dev);
1489 u16 queue_pairs = channels->combined_count;
1490 int err;
1491
1492 /* We don't support separate rx/tx channels.
1493 * We don't allow setting 'other' channels.
1494 */
1495 if (channels->rx_count || channels->tx_count || channels->other_count)
1496 return -EINVAL;
1497
Amos Kongc18e9cd2014-04-18 13:45:41 +08001498 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001499 return -EINVAL;
1500
John Fastabendf600b692016-12-15 12:13:24 -08001501 /* For now we don't support modifying channels while XDP is loaded
1502 * also when XDP is loaded all RX queues have XDP programs so we only
1503 * need to check a single RX queue.
1504 */
1505 if (vi->rq[0].xdp_prog)
1506 return -EINVAL;
1507
Wanlong Gao47be2472013-01-24 23:51:29 +00001508 get_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001509 err = virtnet_set_queues(vi, queue_pairs);
1510 if (!err) {
1511 netif_set_real_num_tx_queues(dev, queue_pairs);
1512 netif_set_real_num_rx_queues(dev, queue_pairs);
1513
Wanlong Gao8898c212013-01-24 23:51:30 +00001514 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001515 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001516 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001517
1518 return err;
1519}
1520
1521static void virtnet_get_channels(struct net_device *dev,
1522 struct ethtool_channels *channels)
1523{
1524 struct virtnet_info *vi = netdev_priv(dev);
1525
1526 channels->combined_count = vi->curr_queue_pairs;
1527 channels->max_combined = vi->max_queue_pairs;
1528 channels->max_other = 0;
1529 channels->rx_count = 0;
1530 channels->tx_count = 0;
1531 channels->other_count = 0;
1532}
1533
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001534/* Check if the user is trying to change anything besides speed/duplex */
1535static bool virtnet_validate_ethtool_cmd(const struct ethtool_cmd *cmd)
1536{
1537 struct ethtool_cmd diff1 = *cmd;
1538 struct ethtool_cmd diff2 = {};
1539
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001540 /* cmd is always set so we need to clear it, validate the port type
1541 * and also without autonegotiation we can ignore advertising
1542 */
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001543 ethtool_cmd_speed_set(&diff1, 0);
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001544 diff2.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001545 diff1.advertising = 0;
1546 diff1.duplex = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001547 diff1.cmd = 0;
1548
1549 return !memcmp(&diff1, &diff2, sizeof(diff1));
1550}
1551
1552static int virtnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1553{
1554 struct virtnet_info *vi = netdev_priv(dev);
1555 u32 speed;
1556
1557 speed = ethtool_cmd_speed(cmd);
1558 /* don't allow custom speed and duplex */
1559 if (!ethtool_validate_speed(speed) ||
1560 !ethtool_validate_duplex(cmd->duplex) ||
1561 !virtnet_validate_ethtool_cmd(cmd))
1562 return -EINVAL;
1563 vi->speed = speed;
1564 vi->duplex = cmd->duplex;
1565
1566 return 0;
1567}
1568
1569static int virtnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1570{
1571 struct virtnet_info *vi = netdev_priv(dev);
1572
1573 ethtool_cmd_speed_set(cmd, vi->speed);
1574 cmd->duplex = vi->duplex;
1575 cmd->port = PORT_OTHER;
1576
1577 return 0;
1578}
1579
1580static void virtnet_init_settings(struct net_device *dev)
1581{
1582 struct virtnet_info *vi = netdev_priv(dev);
1583
1584 vi->speed = SPEED_UNKNOWN;
1585 vi->duplex = DUPLEX_UNKNOWN;
1586}
1587
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001588static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001589 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001590 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001591 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001592 .set_channels = virtnet_set_channels,
1593 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001594 .get_ts_info = ethtool_op_get_ts_info,
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001595 .get_settings = virtnet_get_settings,
1596 .set_settings = virtnet_set_settings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001597};
1598
John Fastabendf600b692016-12-15 12:13:24 -08001599static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1600{
1601 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1602 struct virtnet_info *vi = netdev_priv(dev);
1603 struct bpf_prog *old_prog;
John Fastabend672aafd2016-12-15 12:13:49 -08001604 u16 xdp_qp = 0, curr_qp;
1605 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001606
1607 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1608 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6)) {
1609 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1610 return -EOPNOTSUPP;
1611 }
1612
1613 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1614 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1615 return -EINVAL;
1616 }
1617
1618 if (dev->mtu > max_sz) {
1619 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1620 return -EINVAL;
1621 }
1622
John Fastabend672aafd2016-12-15 12:13:49 -08001623 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1624 if (prog)
1625 xdp_qp = nr_cpu_ids;
1626
1627 /* XDP requires extra queues for XDP_TX */
1628 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1629 netdev_warn(dev, "request %i queues but max is %i\n",
1630 curr_qp + xdp_qp, vi->max_queue_pairs);
1631 return -ENOMEM;
1632 }
1633
1634 err = virtnet_set_queues(vi, curr_qp + xdp_qp);
1635 if (err) {
1636 dev_warn(&dev->dev, "XDP Device queue allocation failure.\n");
1637 return err;
1638 }
1639
John Fastabendf600b692016-12-15 12:13:24 -08001640 if (prog) {
1641 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
John Fastabend672aafd2016-12-15 12:13:49 -08001642 if (IS_ERR(prog)) {
1643 virtnet_set_queues(vi, curr_qp);
John Fastabendf600b692016-12-15 12:13:24 -08001644 return PTR_ERR(prog);
John Fastabend672aafd2016-12-15 12:13:49 -08001645 }
John Fastabendf600b692016-12-15 12:13:24 -08001646 }
1647
John Fastabend672aafd2016-12-15 12:13:49 -08001648 vi->xdp_queue_pairs = xdp_qp;
1649 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1650
John Fastabendf600b692016-12-15 12:13:24 -08001651 for (i = 0; i < vi->max_queue_pairs; i++) {
1652 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1653 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1654 if (old_prog)
1655 bpf_prog_put(old_prog);
1656 }
1657
1658 return 0;
1659}
1660
1661static bool virtnet_xdp_query(struct net_device *dev)
1662{
1663 struct virtnet_info *vi = netdev_priv(dev);
1664 int i;
1665
1666 for (i = 0; i < vi->max_queue_pairs; i++) {
1667 if (vi->rq[i].xdp_prog)
1668 return true;
1669 }
1670 return false;
1671}
1672
1673static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1674{
1675 switch (xdp->command) {
1676 case XDP_SETUP_PROG:
1677 return virtnet_xdp_set(dev, xdp->prog);
1678 case XDP_QUERY_PROG:
1679 xdp->prog_attached = virtnet_xdp_query(dev);
1680 return 0;
1681 default:
1682 return -EINVAL;
1683 }
1684}
1685
Stephen Hemminger76288b42009-01-06 10:44:22 -08001686static const struct net_device_ops virtnet_netdev = {
1687 .ndo_open = virtnet_open,
1688 .ndo_stop = virtnet_close,
1689 .ndo_start_xmit = start_xmit,
1690 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001691 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001692 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001693 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001694 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1695 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001696#ifdef CONFIG_NET_POLL_CONTROLLER
1697 .ndo_poll_controller = virtnet_netpoll,
1698#endif
Jason Wang91815632014-07-23 16:33:55 +08001699#ifdef CONFIG_NET_RX_BUSY_POLL
1700 .ndo_busy_poll = virtnet_busy_poll,
1701#endif
John Fastabendf600b692016-12-15 12:13:24 -08001702 .ndo_xdp = virtnet_xdp,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001703};
1704
Jason Wang586d17c2012-04-11 20:43:52 +00001705static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001706{
Jason Wang586d17c2012-04-11 20:43:52 +00001707 struct virtnet_info *vi =
1708 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001709 u16 v;
1710
Rusty Russell855e0c52013-10-14 18:11:51 +10301711 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1712 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301713 return;
Jason Wang586d17c2012-04-11 20:43:52 +00001714
1715 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001716 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001717 virtnet_ack_link_announce(vi);
1718 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001719
1720 /* Ignore unknown (future) status bits */
1721 v &= VIRTIO_NET_S_LINK_UP;
1722
1723 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301724 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001725
1726 vi->status = v;
1727
1728 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1729 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001730 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001731 } else {
1732 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001733 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001734 }
1735}
1736
1737static void virtnet_config_changed(struct virtio_device *vdev)
1738{
1739 struct virtnet_info *vi = vdev->priv;
1740
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001741 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001742}
1743
Jason Wang986a4f42012-12-07 07:04:56 +00001744static void virtnet_free_queues(struct virtnet_info *vi)
1745{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001746 int i;
1747
Jason Wangab3971b2015-03-12 13:57:44 +08001748 for (i = 0; i < vi->max_queue_pairs; i++) {
1749 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001750 netif_napi_del(&vi->rq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08001751 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001752
Eric Dumazet963abe52016-11-15 22:24:12 -08001753 /* We called napi_hash_del() before netif_napi_del(),
1754 * we need to respect an RCU grace period before freeing vi->rq
1755 */
1756 synchronize_net();
1757
Jason Wang986a4f42012-12-07 07:04:56 +00001758 kfree(vi->rq);
1759 kfree(vi->sq);
1760}
1761
1762static void free_receive_bufs(struct virtnet_info *vi)
1763{
John Fastabendf600b692016-12-15 12:13:24 -08001764 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00001765 int i;
1766
John Fastabendf600b692016-12-15 12:13:24 -08001767 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00001768 for (i = 0; i < vi->max_queue_pairs; i++) {
1769 while (vi->rq[i].pages)
1770 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08001771
1772 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1773 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
1774 if (old_prog)
1775 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00001776 }
John Fastabendf600b692016-12-15 12:13:24 -08001777 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001778}
1779
Michael Daltonfb518792014-01-16 22:23:26 -08001780static void free_receive_page_frags(struct virtnet_info *vi)
1781{
1782 int i;
1783 for (i = 0; i < vi->max_queue_pairs; i++)
1784 if (vi->rq[i].alloc_frag.page)
1785 put_page(vi->rq[i].alloc_frag.page);
1786}
1787
John Fastabend56434a02016-12-15 12:14:13 -08001788static bool is_xdp_queue(struct virtnet_info *vi, int q)
1789{
1790 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1791 return false;
1792 else if (q < vi->curr_queue_pairs)
1793 return true;
1794 else
1795 return false;
1796}
1797
Jason Wang986a4f42012-12-07 07:04:56 +00001798static void free_unused_bufs(struct virtnet_info *vi)
1799{
1800 void *buf;
1801 int i;
1802
1803 for (i = 0; i < vi->max_queue_pairs; i++) {
1804 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08001805 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
1806 if (!is_xdp_queue(vi, i))
1807 dev_kfree_skb(buf);
1808 else
1809 put_page(virt_to_head_page(buf));
1810 }
Jason Wang986a4f42012-12-07 07:04:56 +00001811 }
1812
1813 for (i = 0; i < vi->max_queue_pairs; i++) {
1814 struct virtqueue *vq = vi->rq[i].vq;
1815
1816 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08001817 if (vi->mergeable_rx_bufs) {
1818 unsigned long ctx = (unsigned long)buf;
1819 void *base = mergeable_ctx_to_buf_address(ctx);
1820 put_page(virt_to_head_page(base));
1821 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001822 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001823 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001824 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001825 }
Jason Wang986a4f42012-12-07 07:04:56 +00001826 }
Jason Wang986a4f42012-12-07 07:04:56 +00001827 }
1828}
1829
Jason Wange9d74172012-12-07 07:04:55 +00001830static void virtnet_del_vqs(struct virtnet_info *vi)
1831{
1832 struct virtio_device *vdev = vi->vdev;
1833
Wanlong Gao8898c212013-01-24 23:51:30 +00001834 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00001835
Jason Wange9d74172012-12-07 07:04:55 +00001836 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00001837
1838 virtnet_free_queues(vi);
1839}
1840
1841static int virtnet_find_vqs(struct virtnet_info *vi)
1842{
1843 vq_callback_t **callbacks;
1844 struct virtqueue **vqs;
1845 int ret = -ENOMEM;
1846 int i, total_vqs;
1847 const char **names;
1848
1849 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1850 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1851 * possible control vq.
1852 */
1853 total_vqs = vi->max_queue_pairs * 2 +
1854 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1855
1856 /* Allocate space for find_vqs parameters */
1857 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1858 if (!vqs)
1859 goto err_vq;
1860 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1861 if (!callbacks)
1862 goto err_callback;
1863 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1864 if (!names)
1865 goto err_names;
1866
1867 /* Parameters for control virtqueue, if any */
1868 if (vi->has_cvq) {
1869 callbacks[total_vqs - 1] = NULL;
1870 names[total_vqs - 1] = "control";
1871 }
1872
1873 /* Allocate/initialize parameters for send/receive virtqueues */
1874 for (i = 0; i < vi->max_queue_pairs; i++) {
1875 callbacks[rxq2vq(i)] = skb_recv_done;
1876 callbacks[txq2vq(i)] = skb_xmit_done;
1877 sprintf(vi->rq[i].name, "input.%d", i);
1878 sprintf(vi->sq[i].name, "output.%d", i);
1879 names[rxq2vq(i)] = vi->rq[i].name;
1880 names[txq2vq(i)] = vi->sq[i].name;
1881 }
1882
1883 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1884 names);
1885 if (ret)
1886 goto err_find;
1887
1888 if (vi->has_cvq) {
1889 vi->cvq = vqs[total_vqs - 1];
1890 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00001891 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00001892 }
1893
1894 for (i = 0; i < vi->max_queue_pairs; i++) {
1895 vi->rq[i].vq = vqs[rxq2vq(i)];
1896 vi->sq[i].vq = vqs[txq2vq(i)];
1897 }
1898
1899 kfree(names);
1900 kfree(callbacks);
1901 kfree(vqs);
1902
1903 return 0;
1904
1905err_find:
1906 kfree(names);
1907err_names:
1908 kfree(callbacks);
1909err_callback:
1910 kfree(vqs);
1911err_vq:
1912 return ret;
1913}
1914
1915static int virtnet_alloc_queues(struct virtnet_info *vi)
1916{
1917 int i;
1918
1919 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1920 if (!vi->sq)
1921 goto err_sq;
1922 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00001923 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00001924 goto err_rq;
1925
1926 INIT_DELAYED_WORK(&vi->refill, refill_work);
1927 for (i = 0; i < vi->max_queue_pairs; i++) {
1928 vi->rq[i].pages = NULL;
1929 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
1930 napi_weight);
1931
1932 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02001933 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00001934 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
1935 }
1936
1937 return 0;
1938
1939err_rq:
1940 kfree(vi->sq);
1941err_sq:
1942 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00001943}
1944
Amit Shah3f9c10b2011-12-22 16:58:31 +05301945static int init_vqs(struct virtnet_info *vi)
1946{
Jason Wang986a4f42012-12-07 07:04:56 +00001947 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301948
Jason Wang986a4f42012-12-07 07:04:56 +00001949 /* Allocate send & receive queues */
1950 ret = virtnet_alloc_queues(vi);
1951 if (ret)
1952 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301953
Jason Wang986a4f42012-12-07 07:04:56 +00001954 ret = virtnet_find_vqs(vi);
1955 if (ret)
1956 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301957
Wanlong Gao47be2472013-01-24 23:51:29 +00001958 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00001959 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00001960 put_online_cpus();
1961
Amit Shah3f9c10b2011-12-22 16:58:31 +05301962 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00001963
1964err_free:
1965 virtnet_free_queues(vi);
1966err:
1967 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301968}
1969
Michael Daltonfbf28d72014-01-16 22:23:30 -08001970#ifdef CONFIG_SYSFS
1971static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
1972 struct rx_queue_attribute *attribute, char *buf)
1973{
1974 struct virtnet_info *vi = netdev_priv(queue->dev);
1975 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02001976 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08001977
1978 BUG_ON(queue_index >= vi->max_queue_pairs);
1979 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
1980 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
1981}
1982
1983static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
1984 __ATTR_RO(mergeable_rx_buffer_size);
1985
1986static struct attribute *virtio_net_mrg_rx_attrs[] = {
1987 &mergeable_rx_buffer_size_attribute.attr,
1988 NULL
1989};
1990
1991static const struct attribute_group virtio_net_mrg_rx_group = {
1992 .name = "virtio_net",
1993 .attrs = virtio_net_mrg_rx_attrs
1994};
1995#endif
1996
Jason Wang892d6eb2014-11-20 17:03:05 +08001997static bool virtnet_fail_on_feature(struct virtio_device *vdev,
1998 unsigned int fbit,
1999 const char *fname, const char *dname)
2000{
2001 if (!virtio_has_feature(vdev, fbit))
2002 return false;
2003
2004 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2005 fname, dname);
2006
2007 return true;
2008}
2009
2010#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2011 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2012
2013static bool virtnet_validate_features(struct virtio_device *vdev)
2014{
2015 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2016 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2017 "VIRTIO_NET_F_CTRL_VQ") ||
2018 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2019 "VIRTIO_NET_F_CTRL_VQ") ||
2020 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2021 "VIRTIO_NET_F_CTRL_VQ") ||
2022 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2023 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2024 "VIRTIO_NET_F_CTRL_VQ"))) {
2025 return false;
2026 }
2027
2028 return true;
2029}
2030
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002031#define MIN_MTU ETH_MIN_MTU
2032#define MAX_MTU ETH_MAX_MTU
2033
Rusty Russell296f96f2007-10-22 11:03:37 +10002034static int virtnet_probe(struct virtio_device *vdev)
2035{
Jason Wang986a4f42012-12-07 07:04:56 +00002036 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10002037 struct net_device *dev;
2038 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00002039 u16 max_queue_pairs;
Aaron Conole14de9d12016-06-03 16:57:12 -04002040 int mtu;
Jason Wang986a4f42012-12-07 07:04:56 +00002041
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002042 if (!vdev->config->get) {
2043 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2044 __func__);
2045 return -EINVAL;
2046 }
2047
Jason Wang892d6eb2014-11-20 17:03:05 +08002048 if (!virtnet_validate_features(vdev))
2049 return -EINVAL;
2050
Jason Wang986a4f42012-12-07 07:04:56 +00002051 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302052 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2053 struct virtio_net_config,
2054 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002055
2056 /* We need at least 2 queue's */
2057 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2058 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2059 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2060 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002061
2062 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002063 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002064 if (!dev)
2065 return -ENOMEM;
2066
2067 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002068 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002069 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002070 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002071
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002072 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002073 SET_NETDEV_DEV(dev, &vdev->dev);
2074
2075 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002076 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002077 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002078 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002079 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002080 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002081
2082 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002083 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002084 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2085 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002086 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002087 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2088 dev->hw_features |= NETIF_F_TSO;
2089 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2090 dev->hw_features |= NETIF_F_TSO6;
2091 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2092 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002093 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2094 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002095
Jason Wang41f2f122014-12-24 11:03:52 +08002096 dev->features |= NETIF_F_GSO_ROBUST;
2097
Michał Mirosław98e778c2011-03-31 01:01:35 +00002098 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002099 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002100 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002101 }
Thomas Huth4f491292013-08-27 17:09:02 +02002102 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2103 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002104
Jason Wang4fda8302013-04-10 23:32:21 +00002105 dev->vlan_features = dev->features;
2106
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002107 /* MTU range: 68 - 65535 */
2108 dev->min_mtu = MIN_MTU;
2109 dev->max_mtu = MAX_MTU;
2110
Rusty Russell296f96f2007-10-22 11:03:37 +10002111 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302112 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2113 virtio_cread_bytes(vdev,
2114 offsetof(struct virtio_net_config, mac),
2115 dev->dev_addr, dev->addr_len);
2116 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002117 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002118
2119 /* Set up our device-specific information */
2120 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002121 vi->dev = dev;
2122 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002123 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002124 vi->stats = alloc_percpu(struct virtnet_stats);
2125 err = -ENOMEM;
2126 if (vi->stats == NULL)
2127 goto free;
2128
John Stultz827da442013-10-07 15:51:58 -07002129 for_each_possible_cpu(i) {
2130 struct virtnet_stats *virtnet_stats;
2131 virtnet_stats = per_cpu_ptr(vi->stats, i);
2132 u64_stats_init(&virtnet_stats->tx_syncp);
2133 u64_stats_init(&virtnet_stats->rx_syncp);
2134 }
2135
Jason Wang586d17c2012-04-11 20:43:52 +00002136 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002137
Herbert Xu97402b92008-04-18 11:24:27 +08002138 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002139 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2140 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002141 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2142 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002143 vi->big_packets = true;
2144
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002145 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2146 vi->mergeable_rx_bufs = true;
2147
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002148 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2149 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002150 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2151 else
2152 vi->hdr_len = sizeof(struct virtio_net_hdr);
2153
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002154 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2155 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302156 vi->any_header_sg = true;
2157
Jason Wang986a4f42012-12-07 07:04:56 +00002158 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2159 vi->has_cvq = true;
2160
Aaron Conole14de9d12016-06-03 16:57:12 -04002161 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2162 mtu = virtio_cread16(vdev,
2163 offsetof(struct virtio_net_config,
2164 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002165 if (mtu < dev->min_mtu) {
Aaron Conole14de9d12016-06-03 16:57:12 -04002166 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
Aaron Conole93a205e2016-10-25 16:12:12 -04002167 } else {
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002168 dev->mtu = mtu;
Aaron Conole93a205e2016-10-25 16:12:12 -04002169 dev->max_mtu = mtu;
2170 }
Aaron Conole14de9d12016-06-03 16:57:12 -04002171 }
2172
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002173 if (vi->any_header_sg)
2174 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002175
Jason Wang44900012016-11-25 12:37:26 +08002176 /* Enable multiqueue by default */
2177 if (num_online_cpus() >= max_queue_pairs)
2178 vi->curr_queue_pairs = max_queue_pairs;
2179 else
2180 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002181 vi->max_queue_pairs = max_queue_pairs;
2182
2183 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302184 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002185 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002186 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002187
Michael Daltonfbf28d72014-01-16 22:23:30 -08002188#ifdef CONFIG_SYSFS
2189 if (vi->mergeable_rx_bufs)
2190 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2191#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002192 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2193 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002194
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002195 virtnet_init_settings(dev);
2196
Rusty Russell296f96f2007-10-22 11:03:37 +10002197 err = register_netdev(dev);
2198 if (err) {
2199 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002200 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002201 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002202
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302203 virtio_device_ready(vdev);
2204
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002205 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002206 if (err) {
2207 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002208 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002209 }
2210
Jason Wanga2208712016-12-13 14:23:05 +08002211 rtnl_lock();
2212 virtnet_set_queues(vi, vi->curr_queue_pairs);
2213 rtnl_unlock();
Jason Wang44900012016-11-25 12:37:26 +08002214
Jason Wang167c25e2010-11-10 14:45:41 +00002215 /* Assume link up if device can't report link status,
2216 otherwise get link status from config. */
2217 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2218 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002219 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002220 } else {
2221 vi->status = VIRTIO_NET_S_LINK_UP;
2222 netif_carrier_on(dev);
2223 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002224
Jason Wang986a4f42012-12-07 07:04:56 +00002225 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2226 dev->name, max_queue_pairs);
2227
Rusty Russell296f96f2007-10-22 11:03:37 +10002228 return 0;
2229
wangyunjianf00e35e2016-05-31 11:52:43 +08002230free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302231 vi->vdev->config->reset(vdev);
2232
Rusty Russellb3369c12008-02-04 23:50:02 -05002233 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002234free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002235 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002236 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002237 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002238free_stats:
2239 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002240free:
2241 free_netdev(dev);
2242 return err;
2243}
2244
Amit Shah04486ed2011-12-22 16:58:32 +05302245static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002246{
Amit Shah04486ed2011-12-22 16:58:32 +05302247 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002248
2249 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002250 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002251
Jason Wang986a4f42012-12-07 07:04:56 +00002252 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002253
Michael Daltonfb518792014-01-16 22:23:26 -08002254 free_receive_page_frags(vi);
2255
Jason Wang986a4f42012-12-07 07:04:56 +00002256 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302257}
2258
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002259static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302260{
2261 struct virtnet_info *vi = vdev->priv;
2262
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002263 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002264
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302265 /* Make sure no work handler is accessing the device. */
2266 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002267
Amit Shah04486ed2011-12-22 16:58:32 +05302268 unregister_netdev(vi->dev);
2269
2270 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002271
Krishna Kumar2e66f552011-07-20 03:56:02 +00002272 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002273 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002274}
2275
Aaron Lu89107002013-09-17 09:25:23 +09302276#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302277static int virtnet_freeze(struct virtio_device *vdev)
2278{
2279 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002280 int i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302281
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002282 virtnet_cpu_notif_remove(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002283
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302284 /* Make sure no work handler is accessing the device */
2285 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002286
Amit Shah0741bcb2011-12-22 16:58:33 +05302287 netif_device_detach(vi->dev);
2288 cancel_delayed_work_sync(&vi->refill);
2289
Jason Wang91815632014-07-23 16:33:55 +08002290 if (netif_running(vi->dev)) {
Jason Wangab3971b2015-03-12 13:57:44 +08002291 for (i = 0; i < vi->max_queue_pairs; i++)
Jason Wang986a4f42012-12-07 07:04:56 +00002292 napi_disable(&vi->rq[i].napi);
Jason Wang91815632014-07-23 16:33:55 +08002293 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302294
2295 remove_vq_common(vi);
2296
2297 return 0;
2298}
2299
2300static int virtnet_restore(struct virtio_device *vdev)
2301{
2302 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002303 int err, i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302304
2305 err = init_vqs(vi);
2306 if (err)
2307 return err;
2308
Michael S. Tsirkine53fbd12014-10-15 10:22:32 +10302309 virtio_device_ready(vdev);
2310
Jason Wang6cd4ce02013-12-30 11:34:40 +08002311 if (netif_running(vi->dev)) {
2312 for (i = 0; i < vi->curr_queue_pairs; i++)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03002313 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wang6cd4ce02013-12-30 11:34:40 +08002314 schedule_delayed_work(&vi->refill, 0);
2315
Jason Wang986a4f42012-12-07 07:04:56 +00002316 for (i = 0; i < vi->max_queue_pairs; i++)
2317 virtnet_napi_enable(&vi->rq[i]);
Jason Wang6cd4ce02013-12-30 11:34:40 +08002318 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302319
2320 netif_device_attach(vi->dev);
2321
Jason Wang35ed1592013-10-15 11:18:59 +08002322 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00002323 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang35ed1592013-10-15 11:18:59 +08002324 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002325
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002326 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002327 if (err)
2328 return err;
2329
Amit Shah0741bcb2011-12-22 16:58:33 +05302330 return 0;
2331}
2332#endif
2333
Rusty Russell296f96f2007-10-22 11:03:37 +10002334static struct virtio_device_id id_table[] = {
2335 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2336 { 0 },
2337};
2338
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002339#define VIRTNET_FEATURES \
2340 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2341 VIRTIO_NET_F_MAC, \
2342 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2343 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2344 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2345 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2346 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2347 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2348 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2349 VIRTIO_NET_F_MTU
2350
Rusty Russellc45a6812008-05-02 21:50:50 -05002351static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002352 VIRTNET_FEATURES,
2353};
2354
2355static unsigned int features_legacy[] = {
2356 VIRTNET_FEATURES,
2357 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302358 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002359};
2360
Uwe Kleine-König22402522009-11-05 01:32:44 -08002361static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002362 .feature_table = features,
2363 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002364 .feature_table_legacy = features_legacy,
2365 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002366 .driver.name = KBUILD_MODNAME,
2367 .driver.owner = THIS_MODULE,
2368 .id_table = id_table,
2369 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002370 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002371 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302372#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302373 .freeze = virtnet_freeze,
2374 .restore = virtnet_restore,
2375#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002376};
2377
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002378static __init int virtio_net_driver_init(void)
2379{
2380 int ret;
2381
2382 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "AP_VIRT_NET_ONLINE",
2383 virtnet_cpu_online,
2384 virtnet_cpu_down_prep);
2385 if (ret < 0)
2386 goto out;
2387 virtionet_online = ret;
2388 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "VIRT_NET_DEAD",
2389 NULL, virtnet_cpu_dead);
2390 if (ret)
2391 goto err_dead;
2392
2393 ret = register_virtio_driver(&virtio_net_driver);
2394 if (ret)
2395 goto err_virtio;
2396 return 0;
2397err_virtio:
2398 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2399err_dead:
2400 cpuhp_remove_multi_state(virtionet_online);
2401out:
2402 return ret;
2403}
2404module_init(virtio_net_driver_init);
2405
2406static __exit void virtio_net_driver_exit(void)
2407{
2408 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2409 cpuhp_remove_multi_state(virtionet_online);
2410 unregister_virtio_driver(&virtio_net_driver);
2411}
2412module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002413
2414MODULE_DEVICE_TABLE(virtio, id_table);
2415MODULE_DESCRIPTION("Virtio network driver");
2416MODULE_LICENSE("GPL");