blob: e53365a86ca3871538d07e351a1fabd6c2b9d66d [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);
Jason Wangc47a43d2016-12-23 22:37:31 +0800347 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800348 }
349
350 /* Zero header and leave csum up to XDP layers */
351 hdr = xdp->data;
352 memset(hdr, 0, vi->hdr_len);
353
354 num_sg = 1;
355 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
356 err = virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
357 xdp->data, GFP_ATOMIC);
358 if (unlikely(err)) {
Jason Wangc47a43d2016-12-23 22:37:31 +0800359 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800360 return; // On error abort to avoid unnecessary kick
John Fastabend56434a02016-12-15 12:14:13 -0800361 }
362
363 virtqueue_kick(sq->vq);
364}
365
John Fastabendf600b692016-12-15 12:13:24 -0800366static u32 do_xdp_prog(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800367 struct receive_queue *rq,
John Fastabendf600b692016-12-15 12:13:24 -0800368 struct bpf_prog *xdp_prog,
369 struct page *page, int offset, int len)
370{
371 int hdr_padded_len;
372 struct xdp_buff xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800373 unsigned int qp;
John Fastabendf600b692016-12-15 12:13:24 -0800374 u32 act;
375 u8 *buf;
376
377 buf = page_address(page) + offset;
378
379 if (vi->mergeable_rx_bufs)
380 hdr_padded_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
381 else
382 hdr_padded_len = sizeof(struct padded_vnet_hdr);
383
384 xdp.data = buf + hdr_padded_len;
385 xdp.data_end = xdp.data + (len - vi->hdr_len);
386
387 act = bpf_prog_run_xdp(xdp_prog, &xdp);
388 switch (act) {
389 case XDP_PASS:
390 return XDP_PASS;
John Fastabend56434a02016-12-15 12:14:13 -0800391 case XDP_TX:
392 qp = vi->curr_queue_pairs -
393 vi->xdp_queue_pairs +
394 smp_processor_id();
395 xdp.data = buf + (vi->mergeable_rx_bufs ? 0 : 4);
396 virtnet_xdp_xmit(vi, rq, &vi->sq[qp], &xdp);
397 return XDP_TX;
John Fastabendf600b692016-12-15 12:13:24 -0800398 default:
399 bpf_warn_invalid_xdp_action(act);
John Fastabendf600b692016-12-15 12:13:24 -0800400 case XDP_ABORTED:
401 case XDP_DROP:
402 return XDP_DROP;
403 }
404}
405
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300406static struct sk_buff *receive_small(struct virtnet_info *vi, void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200407{
408 struct sk_buff * skb = buf;
409
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300410 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200411 skb_trim(skb, len);
412
413 return skb;
414}
415
416static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300417 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200418 struct receive_queue *rq,
419 void *buf,
420 unsigned int len)
421{
422 struct page *page = buf;
Jason Wangc47a43d2016-12-23 22:37:31 +0800423 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200424
425 if (unlikely(!skb))
426 goto err;
427
428 return skb;
429
430err:
431 dev->stats.rx_dropped++;
432 give_pages(rq, page);
433 return NULL;
434}
435
John Fastabend72979a62016-12-15 12:14:36 -0800436/* The conditions to enable XDP should preclude the underlying device from
437 * sending packets across multiple buffers (num_buf > 1). However per spec
438 * it does not appear to be illegal to do so but rather just against convention.
439 * So in order to avoid making a system unresponsive the packets are pushed
440 * into a page and the XDP program is run. This will be extremely slow and we
441 * push a warning to the user to fix this as soon as possible. Fixing this may
442 * require resolving the underlying hardware to determine why multiple buffers
443 * are being received or simply loading the XDP program in the ingress stack
444 * after the skb is built because there is no advantage to running it here
445 * anymore.
446 */
447static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800448 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800449 struct page *p,
450 int offset,
451 unsigned int *len)
452{
453 struct page *page = alloc_page(GFP_ATOMIC);
454 unsigned int page_off = 0;
455
456 if (!page)
457 return NULL;
458
459 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
460 page_off += *len;
461
Jason Wang56a86f82016-12-23 22:37:26 +0800462 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800463 unsigned int buflen;
464 unsigned long ctx;
465 void *buf;
466 int off;
467
468 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen);
469 if (unlikely(!ctx))
470 goto err_buf;
471
John Fastabend72979a62016-12-15 12:14:36 -0800472 buf = mergeable_ctx_to_buf_address(ctx);
473 p = virt_to_head_page(buf);
474 off = buf - page_address(p);
475
Jason Wang56a86f82016-12-23 22:37:26 +0800476 /* guard against a misconfigured or uncooperative backend that
477 * is sending packet larger than the MTU.
478 */
479 if ((page_off + buflen) > PAGE_SIZE) {
480 put_page(p);
481 goto err_buf;
482 }
483
John Fastabend72979a62016-12-15 12:14:36 -0800484 memcpy(page_address(page) + page_off,
485 page_address(p) + off, buflen);
486 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800487 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800488 }
489
490 *len = page_off;
491 return page;
492err_buf:
493 __free_pages(page, 0);
494 return NULL;
495}
496
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200497static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200498 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200499 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800500 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200501 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000502{
Michael Daltonab7db912014-01-16 22:23:27 -0800503 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300504 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
505 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200506 struct page *page = virt_to_head_page(buf);
507 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800508 struct sk_buff *head_skb, *curr_skb;
509 struct bpf_prog *xdp_prog;
510 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800511
John Fastabend56434a02016-12-15 12:14:13 -0800512 head_skb = NULL;
513
John Fastabendf600b692016-12-15 12:13:24 -0800514 rcu_read_lock();
515 xdp_prog = rcu_dereference(rq->xdp_prog);
516 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800517 struct page *xdp_page;
John Fastabendf600b692016-12-15 12:13:24 -0800518 u32 act;
519
Jason Wang73b62bd2016-12-23 22:37:24 +0800520 /* This happens when rx buffer size is underestimated */
John Fastabendf600b692016-12-15 12:13:24 -0800521 if (unlikely(num_buf > 1)) {
John Fastabend72979a62016-12-15 12:14:36 -0800522 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800523 xdp_page = xdp_linearize_page(rq, &num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800524 page, offset, &len);
525 if (!xdp_page)
526 goto err_xdp;
527 offset = 0;
528 } else {
529 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800530 }
531
532 /* Transient failure which in theory could occur if
533 * in-flight packets from before XDP was enabled reach
534 * the receive path after XDP is loaded. In practice I
535 * was not able to create this condition.
536 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800537 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800538 goto err_xdp;
539
Jason Wang275be062016-12-23 22:37:25 +0800540 act = do_xdp_prog(vi, rq, xdp_prog, xdp_page, offset, len);
John Fastabend56434a02016-12-15 12:14:13 -0800541 switch (act) {
542 case XDP_PASS:
Jason Wang1830f892016-12-23 22:37:27 +0800543 /* We can only create skb based on xdp_page. */
544 if (unlikely(xdp_page != page)) {
545 rcu_read_unlock();
546 put_page(page);
547 head_skb = page_to_skb(vi, rq, xdp_page,
548 0, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800549 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800550 return head_skb;
551 }
John Fastabend56434a02016-12-15 12:14:13 -0800552 break;
553 case XDP_TX:
Jason Wang5c334742016-12-23 22:37:29 +0800554 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800555 if (unlikely(xdp_page != page))
556 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800557 rcu_read_unlock();
558 goto xdp_xmit;
559 case XDP_DROP:
560 default:
John Fastabend72979a62016-12-15 12:14:36 -0800561 if (unlikely(xdp_page != page))
562 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800563 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800564 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800565 }
John Fastabendf600b692016-12-15 12:13:24 -0800566 }
567 rcu_read_unlock();
568
569 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
570 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
571 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000572
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200573 if (unlikely(!curr_skb))
574 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000575 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200576 int num_skb_frags;
577
Michael Daltonab7db912014-01-16 22:23:27 -0800578 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
579 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200580 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200581 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300582 virtio16_to_cpu(vi->vdev,
583 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200584 dev->stats.rx_length_errors++;
585 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000586 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200587
Michael Daltonab7db912014-01-16 22:23:27 -0800588 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200589 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200590
591 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700592 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
593 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200594
595 if (unlikely(!nskb))
596 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700597 if (curr_skb == head_skb)
598 skb_shinfo(curr_skb)->frag_list = nskb;
599 else
600 curr_skb->next = nskb;
601 curr_skb = nskb;
602 head_skb->truesize += nskb->truesize;
603 num_skb_frags = 0;
604 }
Michael Daltonab7db912014-01-16 22:23:27 -0800605 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700606 if (curr_skb != head_skb) {
607 head_skb->data_len += len;
608 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800609 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700610 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200611 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800612 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
613 put_page(page);
614 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800615 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800616 } else {
617 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800618 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800619 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200620 }
621
Johannes Berg5377d7582015-08-19 09:48:40 +0200622 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200623 return head_skb;
624
John Fastabendf600b692016-12-15 12:13:24 -0800625err_xdp:
626 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200627err_skb:
628 put_page(page);
629 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800630 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
631 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200632 pr_debug("%s: rx error: %d buffers missing\n",
633 dev->name, num_buf);
634 dev->stats.rx_length_errors++;
635 break;
636 }
Michael Daltonab7db912014-01-16 22:23:27 -0800637 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200638 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000639 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200640err_buf:
641 dev->stats.rx_dropped++;
642 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800643xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200644 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000645}
646
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300647static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
648 void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000649{
Jason Wange9d74172012-12-07 07:04:55 +0000650 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000651 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000652 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300653 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000654
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300655 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000656 pr_debug("%s: short packet %i\n", dev->name, len);
657 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800658 if (vi->mergeable_rx_bufs) {
659 unsigned long ctx = (unsigned long)buf;
660 void *base = mergeable_ctx_to_buf_address(ctx);
661 put_page(virt_to_head_page(base));
662 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800663 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800664 } else {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000665 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800666 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000667 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000668 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000669
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200670 if (vi->mergeable_rx_bufs)
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200671 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200672 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300673 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200674 else
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300675 skb = receive_small(vi, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200676
677 if (unlikely(!skb))
678 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800679
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000680 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000681
Eric Dumazet83a27052012-06-05 22:35:24 +0000682 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000683 stats->rx_bytes += skb->len;
684 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000685 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000686
Mike Rapoporte858fae2016-06-08 16:09:21 +0300687 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000688 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000689
Mike Rapoporte858fae2016-06-08 16:09:21 +0300690 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
691 virtio_is_little_endian(vi->vdev))) {
692 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
693 dev->name, hdr->hdr.gso_type,
694 hdr->hdr.gso_size);
695 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000696 }
697
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300698 skb->protocol = eth_type_trans(skb, dev);
699 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
700 ntohs(skb->protocol), skb->len, skb->pkt_type);
701
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200702 napi_gro_receive(&rq->napi, skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000703 return;
704
705frame_err:
706 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000707 dev_kfree_skb(skb);
708}
709
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300710static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
711 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000712{
713 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300714 struct virtio_net_hdr_mrg_rxbuf *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000715 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000716
Michael Dalton5061de32013-11-14 10:41:04 -0800717 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000718 if (unlikely(!skb))
719 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800720
Michael Dalton5061de32013-11-14 10:41:04 -0800721 skb_put(skb, GOOD_PACKET_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000722
723 hdr = skb_vnet_hdr(skb);
Jason Wang547c8902015-08-27 14:53:06 +0800724 sg_init_table(rq->sg, 2);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300725 sg_set_buf(rq->sg, hdr, vi->hdr_len);
Jason Wange9d74172012-12-07 07:04:55 +0000726 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000727
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030728 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000729 if (err < 0)
730 dev_kfree_skb(skb);
731
732 return err;
733}
734
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300735static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
736 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000737{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000738 struct page *first, *list = NULL;
739 char *p;
740 int i, err, offset;
741
Rusty Russella5835442014-09-11 10:17:36 +0930742 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
743
Jason Wange9d74172012-12-07 07:04:55 +0000744 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000745 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000746 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000747 if (!first) {
748 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000749 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000750 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700751 }
Jason Wange9d74172012-12-07 07:04:55 +0000752 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000753
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000754 /* chain new page in list head to match sg */
755 first->private = (unsigned long)list;
756 list = first;
757 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800758
Jason Wange9d74172012-12-07 07:04:55 +0000759 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000760 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000761 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000762 return -ENOMEM;
763 }
764 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800765
Jason Wange9d74172012-12-07 07:04:55 +0000766 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300767 /* a separated rq->sg[0] for header - required in case !any_header_sg */
768 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800769
Jason Wange9d74172012-12-07 07:04:55 +0000770 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000771 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000772 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800773
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000774 /* chain first in list head */
775 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030776 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
777 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000778 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000779 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800780
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000781 return err;
782}
Herbert Xu97402b92008-04-18 11:24:27 +0800783
Johannes Berg5377d7582015-08-19 09:48:40 +0200784static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000785{
Michael Daltonab7db912014-01-16 22:23:27 -0800786 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800787 unsigned int len;
788
Johannes Berg5377d7582015-08-19 09:48:40 +0200789 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael Daltonfbf28d72014-01-16 22:23:30 -0800790 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
791 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
792}
793
794static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
795{
Michael Daltonfb518792014-01-16 22:23:26 -0800796 struct page_frag *alloc_frag = &rq->alloc_frag;
797 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800798 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000799 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800800 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000801
Michael Daltonfbf28d72014-01-16 22:23:30 -0800802 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
Michael Daltonab7db912014-01-16 22:23:27 -0800803 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000804 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800805
Michael Daltonfb518792014-01-16 22:23:26 -0800806 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800807 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800808 get_page(alloc_frag->page);
Michael Daltonfb518792014-01-16 22:23:26 -0800809 alloc_frag->offset += len;
810 hole = alloc_frag->size - alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800811 if (hole < len) {
812 /* To avoid internal fragmentation, if there is very likely not
813 * enough space for another buffer, add the remaining space to
814 * the current buffer. This extra space is not included in
815 * the truesize stored in ctx.
816 */
Michael Daltonfb518792014-01-16 22:23:26 -0800817 len += hole;
818 alloc_frag->offset += hole;
819 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000820
Michael Daltonfb518792014-01-16 22:23:26 -0800821 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800822 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000823 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700824 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000825
826 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000827}
828
Rusty Russellb2baed62011-12-29 00:42:38 +0000829/*
830 * Returns false if we couldn't fill entirely (OOM).
831 *
832 * Normally run in the receive path, but can also be run from ndo_open
833 * before we're receiving packets, or from refill_work which is
834 * careful to disable receiving (using napi_disable).
835 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300836static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
837 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800838{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800839 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000840 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800841
Michael Daltonfb518792014-01-16 22:23:26 -0800842 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530843 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000844 if (vi->mergeable_rx_bufs)
Jason Wange9d74172012-12-07 07:04:55 +0000845 err = add_recvbuf_mergeable(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000846 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300847 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000848 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300849 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800850
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000851 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030852 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800853 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800854 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800855 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700856 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800857}
858
Rusty Russell18445c42008-02-04 23:49:57 -0500859static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000860{
861 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000862 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000863
Rusty Russell18445c42008-02-04 23:49:57 -0500864 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000865 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300866 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000867 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500868 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000869}
870
Jason Wange9d74172012-12-07 07:04:55 +0000871static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800872{
Jason Wange9d74172012-12-07 07:04:55 +0000873 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800874
875 /* If all buffers were filled by other side before we napi_enabled, we
876 * won't get another interrupt, so process any outstanding packets
877 * now. virtnet_poll wants re-enable the queue, so we disable here.
878 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000879 if (napi_schedule_prep(&rq->napi)) {
880 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300881 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000882 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300883 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800884 }
885}
886
Rusty Russell3161e452009-08-26 12:22:32 -0700887static void refill_work(struct work_struct *work)
888{
Jason Wange9d74172012-12-07 07:04:55 +0000889 struct virtnet_info *vi =
890 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700891 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000892 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700893
Sasha Levin55257d72013-04-29 12:00:08 +0930894 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000895 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700896
Jason Wang986a4f42012-12-07 07:04:56 +0000897 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300898 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +0000899 virtnet_napi_enable(rq);
900
901 /* In theory, this can happen: if we don't get any buffers in
902 * we will *never* try to fill again.
903 */
904 if (still_empty)
905 schedule_delayed_work(&vi->refill, HZ/2);
906 }
Rusty Russell3161e452009-08-26 12:22:32 -0700907}
908
Jason Wang2ffa7592014-07-23 16:33:54 +0800909static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +1000910{
Jason Wange9d74172012-12-07 07:04:55 +0000911 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang2ffa7592014-07-23 16:33:54 +0800912 unsigned int len, received = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000913 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +1000914
Rusty Russell296f96f2007-10-22 11:03:37 +1000915 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +0000916 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300917 receive_buf(vi, rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +1000918 received++;
919 }
920
Jason Wangbe121f42014-01-16 14:45:24 +0800921 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300922 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700923 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -0700924 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000925
Jason Wang2ffa7592014-07-23 16:33:54 +0800926 return received;
927}
928
929static int virtnet_poll(struct napi_struct *napi, int budget)
930{
931 struct receive_queue *rq =
932 container_of(napi, struct receive_queue, napi);
Li RongQingfaadb052015-03-26 15:39:45 +0800933 unsigned int r, received;
Jason Wang2ffa7592014-07-23 16:33:54 +0800934
Li RongQingfaadb052015-03-26 15:39:45 +0800935 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +0800936
Rusty Russell8329d982007-11-19 11:20:43 -0500937 /* Out of packets? */
938 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300939 r = virtqueue_enable_cb_prepare(rq->vq);
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200940 napi_complete_done(napi, received);
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300941 if (unlikely(virtqueue_poll(rq->vq, r)) &&
Joe Perches8e95a202009-12-03 07:58:21 +0000942 napi_schedule_prep(napi)) {
Jason Wange9d74172012-12-07 07:04:55 +0000943 virtqueue_disable_cb(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800944 __napi_schedule(napi);
Christian Borntraeger4265f162008-03-14 14:17:05 +0100945 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000946 }
947
948 return received;
949}
950
Jason Wang91815632014-07-23 16:33:55 +0800951#ifdef CONFIG_NET_RX_BUSY_POLL
952/* must be called with local_bh_disable()d */
953static int virtnet_busy_poll(struct napi_struct *napi)
954{
955 struct receive_queue *rq =
956 container_of(napi, struct receive_queue, napi);
957 struct virtnet_info *vi = rq->vq->vdev->priv;
958 int r, received = 0, budget = 4;
959
960 if (!(vi->status & VIRTIO_NET_S_LINK_UP))
961 return LL_FLUSH_FAILED;
962
963 if (!napi_schedule_prep(napi))
964 return LL_FLUSH_BUSY;
965
966 virtqueue_disable_cb(rq->vq);
967
968again:
969 received += virtnet_receive(rq, budget);
970
971 r = virtqueue_enable_cb_prepare(rq->vq);
972 clear_bit(NAPI_STATE_SCHED, &napi->state);
973 if (unlikely(virtqueue_poll(rq->vq, r)) &&
974 napi_schedule_prep(napi)) {
975 virtqueue_disable_cb(rq->vq);
976 if (received < budget) {
977 budget -= received;
978 goto again;
979 } else {
980 __napi_schedule(napi);
981 }
982 }
983
984 return received;
985}
986#endif /* CONFIG_NET_RX_BUSY_POLL */
987
Jason Wang986a4f42012-12-07 07:04:56 +0000988static int virtnet_open(struct net_device *dev)
989{
990 struct virtnet_info *vi = netdev_priv(dev);
991 int i;
992
Jason Wange4166622013-05-21 20:03:58 +0000993 for (i = 0; i < vi->max_queue_pairs; i++) {
994 if (i < vi->curr_queue_pairs)
995 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300996 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +0000997 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +0000998 virtnet_napi_enable(&vi->rq[i]);
999 }
1000
1001 return 0;
1002}
1003
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001004static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001005{
1006 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +10301007 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +00001008 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +00001009 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001010
Jason Wange9d74172012-12-07 07:04:55 +00001011 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001012 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001013
Eric Dumazet83a27052012-06-05 22:35:24 +00001014 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001015 stats->tx_bytes += skb->len;
1016 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +00001017 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001018
Eric Dumazeted79bab2009-10-14 14:36:43 +00001019 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001020 }
1021}
1022
Jason Wange9d74172012-12-07 07:04:55 +00001023static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001024{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001025 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001026 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001027 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +10301028 unsigned num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001029 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301030 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001031
Johannes Berge1749612008-10-27 15:59:26 -07001032 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301033
1034 can_push = vi->any_header_sg &&
1035 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1036 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1037 /* Even if we can, don't push here yet as this would skew
1038 * csum_start offset below. */
1039 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001040 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301041 else
1042 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001043
Mike Rapoporte858fae2016-06-08 16:09:21 +03001044 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1045 virtio_is_little_endian(vi->vdev)))
1046 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001047
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001048 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001049 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001050
Jason Wang547c8902015-08-27 14:53:06 +08001051 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301052 if (can_push) {
1053 __skb_push(skb, hdr_len);
1054 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1055 /* Pull header back to avoid skew in tx bytes calculations. */
1056 __skb_pull(skb, hdr_len);
1057 } else {
1058 sg_set_buf(sq->sg, hdr, hdr_len);
1059 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1060 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301061 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001062}
1063
Stephen Hemminger424efe92009-08-31 19:50:51 +00001064static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001065{
1066 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001067 int qnum = skb_get_queue_mapping(skb);
1068 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301069 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001070 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1071 bool kick = !skb->xmit_more;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001072
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001073 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001074 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001075
Jacob Keller074c3582014-06-25 02:37:13 +00001076 /* timestamp packet in software */
1077 skb_tx_timestamp(skb);
1078
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001079 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001080 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001081
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301082 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001083 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301084 dev->stats.tx_fifo_errors++;
1085 if (net_ratelimit())
1086 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001087 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001088 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001089 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001090 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001091 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001092
Rusty Russell48925e32009-09-24 09:59:20 -06001093 /* Don't wait up for transmitted skbs to be freed. */
1094 skb_orphan(skb);
1095 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -05001096
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001097 /* If running out of space, stop queue to avoid getting packets that we
1098 * are then unable to transmit.
1099 * An alternative would be to force queuing layer to requeue the skb by
1100 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1101 * returned in a normal path of operation: it means that driver is not
1102 * maintaining the TX queue stop/start state properly, and causes
1103 * the stack to do a non-trivial amount of useless work.
1104 * Since most packets only take 1 or 2 ring slots, stopping the queue
1105 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001106 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001107 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001108 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001109 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001110 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001111 free_old_xmit_skbs(sq);
1112 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001113 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001114 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001115 }
1116 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001117 }
Rusty Russell48925e32009-09-24 09:59:20 -06001118
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001119 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001120 virtqueue_kick(sq->vq);
1121
Rusty Russell48925e32009-09-24 09:59:20 -06001122 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001123}
1124
Amos Kong40cbfc32013-01-21 01:17:21 +00001125/*
1126 * Send command via the control virtqueue and check status. Commands
1127 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001128 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001129 */
1130static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001131 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001132{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301133 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001134 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001135
1136 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301137 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001138
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001139 vi->ctrl_status = ~0;
1140 vi->ctrl_hdr.class = class;
1141 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301142 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001143 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301144 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001145
Rusty Russellf7bc9592013-03-20 15:44:28 +10301146 if (out)
1147 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001148
Rusty Russellf7bc9592013-03-20 15:44:28 +10301149 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001150 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001151 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001152
stephen hemmingerd24bae32013-12-09 16:17:40 -08001153 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301154 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001155
Heinz Graalfs67975902013-10-29 09:40:02 +10301156 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001157 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001158
1159 /* Spin for a response, the kick causes an ioport write, trapping
1160 * into the hypervisor, so the request should be handled immediately.
1161 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301162 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1163 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001164 cpu_relax();
1165
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001166 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001167}
1168
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001169static int virtnet_set_mac_address(struct net_device *dev, void *p)
1170{
1171 struct virtnet_info *vi = netdev_priv(dev);
1172 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001173 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001174 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001175 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001176
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001177 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
1178 if (!addr)
1179 return -ENOMEM;
1180 memcpy(addr, p, sizeof(*addr));
1181
1182 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001183 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001184 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001185
Amos Kong7e58d5a2013-01-21 01:17:23 +00001186 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1187 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1188 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001189 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001190 dev_warn(&vdev->dev,
1191 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001192 ret = -EINVAL;
1193 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001194 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001195 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1196 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301197 unsigned int i;
1198
1199 /* Naturally, this has an atomicity problem. */
1200 for (i = 0; i < dev->addr_len; i++)
1201 virtio_cwrite8(vdev,
1202 offsetof(struct virtio_net_config, mac) +
1203 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001204 }
1205
1206 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001207 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001208
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001209out:
1210 kfree(addr);
1211 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001212}
1213
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001214static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
1215 struct rtnl_link_stats64 *tot)
1216{
1217 struct virtnet_info *vi = netdev_priv(dev);
1218 int cpu;
1219 unsigned int start;
1220
1221 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001222 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001223 u64 tpackets, tbytes, rpackets, rbytes;
1224
1225 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001226 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001227 tpackets = stats->tx_packets;
1228 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001229 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001230
1231 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001232 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001233 rpackets = stats->rx_packets;
1234 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001235 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001236
1237 tot->rx_packets += rpackets;
1238 tot->tx_packets += tpackets;
1239 tot->rx_bytes += rbytes;
1240 tot->tx_bytes += tbytes;
1241 }
1242
1243 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001244 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001245 tot->rx_dropped = dev->stats.rx_dropped;
1246 tot->rx_length_errors = dev->stats.rx_length_errors;
1247 tot->rx_frame_errors = dev->stats.rx_frame_errors;
1248
1249 return tot;
1250}
1251
Amit Shahda74e892008-02-29 16:24:50 +05301252#ifdef CONFIG_NET_POLL_CONTROLLER
1253static void virtnet_netpoll(struct net_device *dev)
1254{
1255 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001256 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301257
Jason Wang986a4f42012-12-07 07:04:56 +00001258 for (i = 0; i < vi->curr_queue_pairs; i++)
1259 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301260}
1261#endif
1262
Jason Wang586d17c2012-04-11 20:43:52 +00001263static void virtnet_ack_link_announce(struct virtnet_info *vi)
1264{
1265 rtnl_lock();
1266 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001267 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001268 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1269 rtnl_unlock();
1270}
1271
Jason Wang986a4f42012-12-07 07:04:56 +00001272static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1273{
1274 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001275 struct net_device *dev = vi->dev;
1276
1277 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1278 return 0;
1279
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001280 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1281 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001282
1283 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001284 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001285 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1286 queue_pairs);
1287 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301288 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001289 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001290 /* virtnet_open() will refill when device is going to up. */
1291 if (dev->flags & IFF_UP)
1292 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301293 }
Jason Wang986a4f42012-12-07 07:04:56 +00001294
1295 return 0;
1296}
1297
Rusty Russell296f96f2007-10-22 11:03:37 +10001298static int virtnet_close(struct net_device *dev)
1299{
1300 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001301 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001302
Rusty Russellb2baed62011-12-29 00:42:38 +00001303 /* Make sure refill_work doesn't re-enable napi! */
1304 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001305
1306 for (i = 0; i < vi->max_queue_pairs; i++)
1307 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001308
Rusty Russell296f96f2007-10-22 11:03:37 +10001309 return 0;
1310}
1311
Alex Williamson2af76982009-02-04 09:02:40 +00001312static void virtnet_set_rx_mode(struct net_device *dev)
1313{
1314 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001315 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001316 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001317 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001318 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001319 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001320 void *buf;
1321 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001322
stephen hemminger788a8b62013-12-09 16:18:45 -08001323 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001324 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1325 return;
1326
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001327 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1328 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001329
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001330 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001331
1332 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001333 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001334 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001335 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001336
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001337 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001338
1339 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001340 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001341 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001342 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001343
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001344 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001345 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001346 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001347 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1348 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1349 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001350 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001351 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001352
Alex Williamson23e258e2009-05-01 17:27:56 +00001353 sg_init_table(sg, 2);
1354
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001355 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001356 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001357 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001358 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001359 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001360
1361 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001362 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001363
1364 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001365 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001366
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001367 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001368 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001369 netdev_for_each_mc_addr(ha, dev)
1370 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001371
1372 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001373 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001374
1375 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001376 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001377 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001378
1379 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001380}
1381
Patrick McHardy80d5c362013-04-19 02:04:28 +00001382static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1383 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001384{
1385 struct virtnet_info *vi = netdev_priv(dev);
1386 struct scatterlist sg;
1387
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001388 vi->ctrl_vid = vid;
1389 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001390
1391 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001392 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001393 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001394 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001395}
1396
Patrick McHardy80d5c362013-04-19 02:04:28 +00001397static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1398 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001399{
1400 struct virtnet_info *vi = netdev_priv(dev);
1401 struct scatterlist sg;
1402
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001403 vi->ctrl_vid = vid;
1404 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001405
1406 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001407 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001408 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001409 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001410}
1411
Wanlong Gao8898c212013-01-24 23:51:30 +00001412static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001413{
1414 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001415
1416 if (vi->affinity_hint_set) {
1417 for (i = 0; i < vi->max_queue_pairs; i++) {
1418 virtqueue_set_affinity(vi->rq[i].vq, -1);
1419 virtqueue_set_affinity(vi->sq[i].vq, -1);
1420 }
1421
1422 vi->affinity_hint_set = false;
1423 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001424}
1425
1426static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001427{
1428 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001429 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001430
1431 /* In multiqueue mode, when the number of cpu is equal to the number of
1432 * queue pairs, we let the queue pairs to be private to one cpu by
1433 * setting the affinity hint to eliminate the contention.
1434 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001435 if (vi->curr_queue_pairs == 1 ||
1436 vi->max_queue_pairs != num_online_cpus()) {
1437 virtnet_clean_affinity(vi, -1);
1438 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001439 }
1440
Wanlong Gao8898c212013-01-24 23:51:30 +00001441 i = 0;
1442 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001443 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1444 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001445 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001446 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001447 }
1448
Wanlong Gao8898c212013-01-24 23:51:30 +00001449 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001450}
1451
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001452static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001453{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001454 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1455 node);
1456 virtnet_set_affinity(vi);
1457 return 0;
1458}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001459
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001460static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1461{
1462 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1463 node_dead);
1464 virtnet_set_affinity(vi);
1465 return 0;
1466}
Jason Wang3ab098d2013-10-15 11:18:58 +08001467
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001468static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1469{
1470 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1471 node);
1472
1473 virtnet_clean_affinity(vi, cpu);
1474 return 0;
1475}
1476
1477static enum cpuhp_state virtionet_online;
1478
1479static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1480{
1481 int ret;
1482
1483 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1484 if (ret)
1485 return ret;
1486 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1487 &vi->node_dead);
1488 if (!ret)
1489 return ret;
1490 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1491 return ret;
1492}
1493
1494static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1495{
1496 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1497 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1498 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001499}
1500
Rick Jones8f9f4662011-10-19 08:10:59 +00001501static void virtnet_get_ringparam(struct net_device *dev,
1502 struct ethtool_ringparam *ring)
1503{
1504 struct virtnet_info *vi = netdev_priv(dev);
1505
Jason Wang986a4f42012-12-07 07:04:56 +00001506 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1507 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001508 ring->rx_pending = ring->rx_max_pending;
1509 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001510}
1511
Rick Jones66846042011-11-14 14:17:08 +00001512
1513static void virtnet_get_drvinfo(struct net_device *dev,
1514 struct ethtool_drvinfo *info)
1515{
1516 struct virtnet_info *vi = netdev_priv(dev);
1517 struct virtio_device *vdev = vi->vdev;
1518
1519 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1520 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1521 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1522
1523}
1524
Jason Wangd73bcd22012-12-07 07:04:57 +00001525/* TODO: Eliminate OOO packets during switching */
1526static int virtnet_set_channels(struct net_device *dev,
1527 struct ethtool_channels *channels)
1528{
1529 struct virtnet_info *vi = netdev_priv(dev);
1530 u16 queue_pairs = channels->combined_count;
1531 int err;
1532
1533 /* We don't support separate rx/tx channels.
1534 * We don't allow setting 'other' channels.
1535 */
1536 if (channels->rx_count || channels->tx_count || channels->other_count)
1537 return -EINVAL;
1538
Amos Kongc18e9cd2014-04-18 13:45:41 +08001539 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001540 return -EINVAL;
1541
John Fastabendf600b692016-12-15 12:13:24 -08001542 /* For now we don't support modifying channels while XDP is loaded
1543 * also when XDP is loaded all RX queues have XDP programs so we only
1544 * need to check a single RX queue.
1545 */
1546 if (vi->rq[0].xdp_prog)
1547 return -EINVAL;
1548
Wanlong Gao47be2472013-01-24 23:51:29 +00001549 get_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001550 err = virtnet_set_queues(vi, queue_pairs);
1551 if (!err) {
1552 netif_set_real_num_tx_queues(dev, queue_pairs);
1553 netif_set_real_num_rx_queues(dev, queue_pairs);
1554
Wanlong Gao8898c212013-01-24 23:51:30 +00001555 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001556 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001557 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001558
1559 return err;
1560}
1561
1562static void virtnet_get_channels(struct net_device *dev,
1563 struct ethtool_channels *channels)
1564{
1565 struct virtnet_info *vi = netdev_priv(dev);
1566
1567 channels->combined_count = vi->curr_queue_pairs;
1568 channels->max_combined = vi->max_queue_pairs;
1569 channels->max_other = 0;
1570 channels->rx_count = 0;
1571 channels->tx_count = 0;
1572 channels->other_count = 0;
1573}
1574
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001575/* Check if the user is trying to change anything besides speed/duplex */
1576static bool virtnet_validate_ethtool_cmd(const struct ethtool_cmd *cmd)
1577{
1578 struct ethtool_cmd diff1 = *cmd;
1579 struct ethtool_cmd diff2 = {};
1580
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001581 /* cmd is always set so we need to clear it, validate the port type
1582 * and also without autonegotiation we can ignore advertising
1583 */
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001584 ethtool_cmd_speed_set(&diff1, 0);
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001585 diff2.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001586 diff1.advertising = 0;
1587 diff1.duplex = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001588 diff1.cmd = 0;
1589
1590 return !memcmp(&diff1, &diff2, sizeof(diff1));
1591}
1592
1593static int virtnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1594{
1595 struct virtnet_info *vi = netdev_priv(dev);
1596 u32 speed;
1597
1598 speed = ethtool_cmd_speed(cmd);
1599 /* don't allow custom speed and duplex */
1600 if (!ethtool_validate_speed(speed) ||
1601 !ethtool_validate_duplex(cmd->duplex) ||
1602 !virtnet_validate_ethtool_cmd(cmd))
1603 return -EINVAL;
1604 vi->speed = speed;
1605 vi->duplex = cmd->duplex;
1606
1607 return 0;
1608}
1609
1610static int virtnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1611{
1612 struct virtnet_info *vi = netdev_priv(dev);
1613
1614 ethtool_cmd_speed_set(cmd, vi->speed);
1615 cmd->duplex = vi->duplex;
1616 cmd->port = PORT_OTHER;
1617
1618 return 0;
1619}
1620
1621static void virtnet_init_settings(struct net_device *dev)
1622{
1623 struct virtnet_info *vi = netdev_priv(dev);
1624
1625 vi->speed = SPEED_UNKNOWN;
1626 vi->duplex = DUPLEX_UNKNOWN;
1627}
1628
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001629static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001630 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001631 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001632 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001633 .set_channels = virtnet_set_channels,
1634 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001635 .get_ts_info = ethtool_op_get_ts_info,
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001636 .get_settings = virtnet_get_settings,
1637 .set_settings = virtnet_set_settings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001638};
1639
John Fastabendf600b692016-12-15 12:13:24 -08001640static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1641{
1642 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1643 struct virtnet_info *vi = netdev_priv(dev);
1644 struct bpf_prog *old_prog;
John Fastabend672aafd2016-12-15 12:13:49 -08001645 u16 xdp_qp = 0, curr_qp;
1646 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001647
1648 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001649 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1650 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1651 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
John Fastabendf600b692016-12-15 12:13:24 -08001652 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1653 return -EOPNOTSUPP;
1654 }
1655
1656 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1657 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1658 return -EINVAL;
1659 }
1660
1661 if (dev->mtu > max_sz) {
1662 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1663 return -EINVAL;
1664 }
1665
John Fastabend672aafd2016-12-15 12:13:49 -08001666 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1667 if (prog)
1668 xdp_qp = nr_cpu_ids;
1669
1670 /* XDP requires extra queues for XDP_TX */
1671 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1672 netdev_warn(dev, "request %i queues but max is %i\n",
1673 curr_qp + xdp_qp, vi->max_queue_pairs);
1674 return -ENOMEM;
1675 }
1676
1677 err = virtnet_set_queues(vi, curr_qp + xdp_qp);
1678 if (err) {
1679 dev_warn(&dev->dev, "XDP Device queue allocation failure.\n");
1680 return err;
1681 }
1682
John Fastabendf600b692016-12-15 12:13:24 -08001683 if (prog) {
1684 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
John Fastabend672aafd2016-12-15 12:13:49 -08001685 if (IS_ERR(prog)) {
1686 virtnet_set_queues(vi, curr_qp);
John Fastabendf600b692016-12-15 12:13:24 -08001687 return PTR_ERR(prog);
John Fastabend672aafd2016-12-15 12:13:49 -08001688 }
John Fastabendf600b692016-12-15 12:13:24 -08001689 }
1690
John Fastabend672aafd2016-12-15 12:13:49 -08001691 vi->xdp_queue_pairs = xdp_qp;
1692 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1693
John Fastabendf600b692016-12-15 12:13:24 -08001694 for (i = 0; i < vi->max_queue_pairs; i++) {
1695 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1696 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1697 if (old_prog)
1698 bpf_prog_put(old_prog);
1699 }
1700
1701 return 0;
1702}
1703
1704static bool virtnet_xdp_query(struct net_device *dev)
1705{
1706 struct virtnet_info *vi = netdev_priv(dev);
1707 int i;
1708
1709 for (i = 0; i < vi->max_queue_pairs; i++) {
1710 if (vi->rq[i].xdp_prog)
1711 return true;
1712 }
1713 return false;
1714}
1715
1716static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1717{
1718 switch (xdp->command) {
1719 case XDP_SETUP_PROG:
1720 return virtnet_xdp_set(dev, xdp->prog);
1721 case XDP_QUERY_PROG:
1722 xdp->prog_attached = virtnet_xdp_query(dev);
1723 return 0;
1724 default:
1725 return -EINVAL;
1726 }
1727}
1728
Stephen Hemminger76288b42009-01-06 10:44:22 -08001729static const struct net_device_ops virtnet_netdev = {
1730 .ndo_open = virtnet_open,
1731 .ndo_stop = virtnet_close,
1732 .ndo_start_xmit = start_xmit,
1733 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001734 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001735 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001736 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001737 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1738 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001739#ifdef CONFIG_NET_POLL_CONTROLLER
1740 .ndo_poll_controller = virtnet_netpoll,
1741#endif
Jason Wang91815632014-07-23 16:33:55 +08001742#ifdef CONFIG_NET_RX_BUSY_POLL
1743 .ndo_busy_poll = virtnet_busy_poll,
1744#endif
John Fastabendf600b692016-12-15 12:13:24 -08001745 .ndo_xdp = virtnet_xdp,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001746};
1747
Jason Wang586d17c2012-04-11 20:43:52 +00001748static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001749{
Jason Wang586d17c2012-04-11 20:43:52 +00001750 struct virtnet_info *vi =
1751 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001752 u16 v;
1753
Rusty Russell855e0c52013-10-14 18:11:51 +10301754 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1755 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301756 return;
Jason Wang586d17c2012-04-11 20:43:52 +00001757
1758 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001759 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001760 virtnet_ack_link_announce(vi);
1761 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001762
1763 /* Ignore unknown (future) status bits */
1764 v &= VIRTIO_NET_S_LINK_UP;
1765
1766 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301767 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001768
1769 vi->status = v;
1770
1771 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1772 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001773 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001774 } else {
1775 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001776 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001777 }
1778}
1779
1780static void virtnet_config_changed(struct virtio_device *vdev)
1781{
1782 struct virtnet_info *vi = vdev->priv;
1783
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001784 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001785}
1786
Jason Wang986a4f42012-12-07 07:04:56 +00001787static void virtnet_free_queues(struct virtnet_info *vi)
1788{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001789 int i;
1790
Jason Wangab3971b2015-03-12 13:57:44 +08001791 for (i = 0; i < vi->max_queue_pairs; i++) {
1792 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001793 netif_napi_del(&vi->rq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08001794 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001795
Eric Dumazet963abe52016-11-15 22:24:12 -08001796 /* We called napi_hash_del() before netif_napi_del(),
1797 * we need to respect an RCU grace period before freeing vi->rq
1798 */
1799 synchronize_net();
1800
Jason Wang986a4f42012-12-07 07:04:56 +00001801 kfree(vi->rq);
1802 kfree(vi->sq);
1803}
1804
1805static void free_receive_bufs(struct virtnet_info *vi)
1806{
John Fastabendf600b692016-12-15 12:13:24 -08001807 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00001808 int i;
1809
John Fastabendf600b692016-12-15 12:13:24 -08001810 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00001811 for (i = 0; i < vi->max_queue_pairs; i++) {
1812 while (vi->rq[i].pages)
1813 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08001814
1815 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1816 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
1817 if (old_prog)
1818 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00001819 }
John Fastabendf600b692016-12-15 12:13:24 -08001820 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001821}
1822
Michael Daltonfb518792014-01-16 22:23:26 -08001823static void free_receive_page_frags(struct virtnet_info *vi)
1824{
1825 int i;
1826 for (i = 0; i < vi->max_queue_pairs; i++)
1827 if (vi->rq[i].alloc_frag.page)
1828 put_page(vi->rq[i].alloc_frag.page);
1829}
1830
John Fastabend56434a02016-12-15 12:14:13 -08001831static bool is_xdp_queue(struct virtnet_info *vi, int q)
1832{
1833 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1834 return false;
1835 else if (q < vi->curr_queue_pairs)
1836 return true;
1837 else
1838 return false;
1839}
1840
Jason Wang986a4f42012-12-07 07:04:56 +00001841static void free_unused_bufs(struct virtnet_info *vi)
1842{
1843 void *buf;
1844 int i;
1845
1846 for (i = 0; i < vi->max_queue_pairs; i++) {
1847 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08001848 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
1849 if (!is_xdp_queue(vi, i))
1850 dev_kfree_skb(buf);
1851 else
1852 put_page(virt_to_head_page(buf));
1853 }
Jason Wang986a4f42012-12-07 07:04:56 +00001854 }
1855
1856 for (i = 0; i < vi->max_queue_pairs; i++) {
1857 struct virtqueue *vq = vi->rq[i].vq;
1858
1859 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08001860 if (vi->mergeable_rx_bufs) {
1861 unsigned long ctx = (unsigned long)buf;
1862 void *base = mergeable_ctx_to_buf_address(ctx);
1863 put_page(virt_to_head_page(base));
1864 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001865 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001866 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001867 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001868 }
Jason Wang986a4f42012-12-07 07:04:56 +00001869 }
Jason Wang986a4f42012-12-07 07:04:56 +00001870 }
1871}
1872
Jason Wange9d74172012-12-07 07:04:55 +00001873static void virtnet_del_vqs(struct virtnet_info *vi)
1874{
1875 struct virtio_device *vdev = vi->vdev;
1876
Wanlong Gao8898c212013-01-24 23:51:30 +00001877 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00001878
Jason Wange9d74172012-12-07 07:04:55 +00001879 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00001880
1881 virtnet_free_queues(vi);
1882}
1883
1884static int virtnet_find_vqs(struct virtnet_info *vi)
1885{
1886 vq_callback_t **callbacks;
1887 struct virtqueue **vqs;
1888 int ret = -ENOMEM;
1889 int i, total_vqs;
1890 const char **names;
1891
1892 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1893 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1894 * possible control vq.
1895 */
1896 total_vqs = vi->max_queue_pairs * 2 +
1897 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1898
1899 /* Allocate space for find_vqs parameters */
1900 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1901 if (!vqs)
1902 goto err_vq;
1903 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1904 if (!callbacks)
1905 goto err_callback;
1906 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1907 if (!names)
1908 goto err_names;
1909
1910 /* Parameters for control virtqueue, if any */
1911 if (vi->has_cvq) {
1912 callbacks[total_vqs - 1] = NULL;
1913 names[total_vqs - 1] = "control";
1914 }
1915
1916 /* Allocate/initialize parameters for send/receive virtqueues */
1917 for (i = 0; i < vi->max_queue_pairs; i++) {
1918 callbacks[rxq2vq(i)] = skb_recv_done;
1919 callbacks[txq2vq(i)] = skb_xmit_done;
1920 sprintf(vi->rq[i].name, "input.%d", i);
1921 sprintf(vi->sq[i].name, "output.%d", i);
1922 names[rxq2vq(i)] = vi->rq[i].name;
1923 names[txq2vq(i)] = vi->sq[i].name;
1924 }
1925
1926 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1927 names);
1928 if (ret)
1929 goto err_find;
1930
1931 if (vi->has_cvq) {
1932 vi->cvq = vqs[total_vqs - 1];
1933 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00001934 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00001935 }
1936
1937 for (i = 0; i < vi->max_queue_pairs; i++) {
1938 vi->rq[i].vq = vqs[rxq2vq(i)];
1939 vi->sq[i].vq = vqs[txq2vq(i)];
1940 }
1941
1942 kfree(names);
1943 kfree(callbacks);
1944 kfree(vqs);
1945
1946 return 0;
1947
1948err_find:
1949 kfree(names);
1950err_names:
1951 kfree(callbacks);
1952err_callback:
1953 kfree(vqs);
1954err_vq:
1955 return ret;
1956}
1957
1958static int virtnet_alloc_queues(struct virtnet_info *vi)
1959{
1960 int i;
1961
1962 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1963 if (!vi->sq)
1964 goto err_sq;
1965 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00001966 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00001967 goto err_rq;
1968
1969 INIT_DELAYED_WORK(&vi->refill, refill_work);
1970 for (i = 0; i < vi->max_queue_pairs; i++) {
1971 vi->rq[i].pages = NULL;
1972 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
1973 napi_weight);
1974
1975 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02001976 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00001977 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
1978 }
1979
1980 return 0;
1981
1982err_rq:
1983 kfree(vi->sq);
1984err_sq:
1985 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00001986}
1987
Amit Shah3f9c10b2011-12-22 16:58:31 +05301988static int init_vqs(struct virtnet_info *vi)
1989{
Jason Wang986a4f42012-12-07 07:04:56 +00001990 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301991
Jason Wang986a4f42012-12-07 07:04:56 +00001992 /* Allocate send & receive queues */
1993 ret = virtnet_alloc_queues(vi);
1994 if (ret)
1995 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301996
Jason Wang986a4f42012-12-07 07:04:56 +00001997 ret = virtnet_find_vqs(vi);
1998 if (ret)
1999 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302000
Wanlong Gao47be2472013-01-24 23:51:29 +00002001 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002002 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002003 put_online_cpus();
2004
Amit Shah3f9c10b2011-12-22 16:58:31 +05302005 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002006
2007err_free:
2008 virtnet_free_queues(vi);
2009err:
2010 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302011}
2012
Michael Daltonfbf28d72014-01-16 22:23:30 -08002013#ifdef CONFIG_SYSFS
2014static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2015 struct rx_queue_attribute *attribute, char *buf)
2016{
2017 struct virtnet_info *vi = netdev_priv(queue->dev);
2018 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002019 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002020
2021 BUG_ON(queue_index >= vi->max_queue_pairs);
2022 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2023 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
2024}
2025
2026static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2027 __ATTR_RO(mergeable_rx_buffer_size);
2028
2029static struct attribute *virtio_net_mrg_rx_attrs[] = {
2030 &mergeable_rx_buffer_size_attribute.attr,
2031 NULL
2032};
2033
2034static const struct attribute_group virtio_net_mrg_rx_group = {
2035 .name = "virtio_net",
2036 .attrs = virtio_net_mrg_rx_attrs
2037};
2038#endif
2039
Jason Wang892d6eb2014-11-20 17:03:05 +08002040static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2041 unsigned int fbit,
2042 const char *fname, const char *dname)
2043{
2044 if (!virtio_has_feature(vdev, fbit))
2045 return false;
2046
2047 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2048 fname, dname);
2049
2050 return true;
2051}
2052
2053#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2054 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2055
2056static bool virtnet_validate_features(struct virtio_device *vdev)
2057{
2058 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2059 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2060 "VIRTIO_NET_F_CTRL_VQ") ||
2061 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2062 "VIRTIO_NET_F_CTRL_VQ") ||
2063 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2064 "VIRTIO_NET_F_CTRL_VQ") ||
2065 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2066 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2067 "VIRTIO_NET_F_CTRL_VQ"))) {
2068 return false;
2069 }
2070
2071 return true;
2072}
2073
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002074#define MIN_MTU ETH_MIN_MTU
2075#define MAX_MTU ETH_MAX_MTU
2076
Rusty Russell296f96f2007-10-22 11:03:37 +10002077static int virtnet_probe(struct virtio_device *vdev)
2078{
Jason Wang986a4f42012-12-07 07:04:56 +00002079 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10002080 struct net_device *dev;
2081 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00002082 u16 max_queue_pairs;
Aaron Conole14de9d12016-06-03 16:57:12 -04002083 int mtu;
Jason Wang986a4f42012-12-07 07:04:56 +00002084
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002085 if (!vdev->config->get) {
2086 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2087 __func__);
2088 return -EINVAL;
2089 }
2090
Jason Wang892d6eb2014-11-20 17:03:05 +08002091 if (!virtnet_validate_features(vdev))
2092 return -EINVAL;
2093
Jason Wang986a4f42012-12-07 07:04:56 +00002094 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302095 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2096 struct virtio_net_config,
2097 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002098
2099 /* We need at least 2 queue's */
2100 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2101 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2102 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2103 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002104
2105 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002106 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002107 if (!dev)
2108 return -ENOMEM;
2109
2110 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002111 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002112 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002113 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002114
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002115 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002116 SET_NETDEV_DEV(dev, &vdev->dev);
2117
2118 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002119 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002120 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002121 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002122 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002123 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002124
2125 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002126 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002127 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2128 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002129 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002130 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2131 dev->hw_features |= NETIF_F_TSO;
2132 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2133 dev->hw_features |= NETIF_F_TSO6;
2134 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2135 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002136 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2137 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002138
Jason Wang41f2f122014-12-24 11:03:52 +08002139 dev->features |= NETIF_F_GSO_ROBUST;
2140
Michał Mirosław98e778c2011-03-31 01:01:35 +00002141 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002142 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002143 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002144 }
Thomas Huth4f491292013-08-27 17:09:02 +02002145 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2146 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002147
Jason Wang4fda8302013-04-10 23:32:21 +00002148 dev->vlan_features = dev->features;
2149
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002150 /* MTU range: 68 - 65535 */
2151 dev->min_mtu = MIN_MTU;
2152 dev->max_mtu = MAX_MTU;
2153
Rusty Russell296f96f2007-10-22 11:03:37 +10002154 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302155 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2156 virtio_cread_bytes(vdev,
2157 offsetof(struct virtio_net_config, mac),
2158 dev->dev_addr, dev->addr_len);
2159 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002160 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002161
2162 /* Set up our device-specific information */
2163 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002164 vi->dev = dev;
2165 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002166 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002167 vi->stats = alloc_percpu(struct virtnet_stats);
2168 err = -ENOMEM;
2169 if (vi->stats == NULL)
2170 goto free;
2171
John Stultz827da442013-10-07 15:51:58 -07002172 for_each_possible_cpu(i) {
2173 struct virtnet_stats *virtnet_stats;
2174 virtnet_stats = per_cpu_ptr(vi->stats, i);
2175 u64_stats_init(&virtnet_stats->tx_syncp);
2176 u64_stats_init(&virtnet_stats->rx_syncp);
2177 }
2178
Jason Wang586d17c2012-04-11 20:43:52 +00002179 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002180
Herbert Xu97402b92008-04-18 11:24:27 +08002181 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002182 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2183 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002184 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2185 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002186 vi->big_packets = true;
2187
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002188 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2189 vi->mergeable_rx_bufs = true;
2190
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002191 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2192 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002193 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2194 else
2195 vi->hdr_len = sizeof(struct virtio_net_hdr);
2196
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002197 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2198 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302199 vi->any_header_sg = true;
2200
Jason Wang986a4f42012-12-07 07:04:56 +00002201 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2202 vi->has_cvq = true;
2203
Aaron Conole14de9d12016-06-03 16:57:12 -04002204 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2205 mtu = virtio_cread16(vdev,
2206 offsetof(struct virtio_net_config,
2207 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002208 if (mtu < dev->min_mtu) {
Aaron Conole14de9d12016-06-03 16:57:12 -04002209 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
Aaron Conole93a205e2016-10-25 16:12:12 -04002210 } else {
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002211 dev->mtu = mtu;
Aaron Conole93a205e2016-10-25 16:12:12 -04002212 dev->max_mtu = mtu;
2213 }
Aaron Conole14de9d12016-06-03 16:57:12 -04002214 }
2215
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002216 if (vi->any_header_sg)
2217 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002218
Jason Wang44900012016-11-25 12:37:26 +08002219 /* Enable multiqueue by default */
2220 if (num_online_cpus() >= max_queue_pairs)
2221 vi->curr_queue_pairs = max_queue_pairs;
2222 else
2223 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002224 vi->max_queue_pairs = max_queue_pairs;
2225
2226 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302227 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002228 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002229 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002230
Michael Daltonfbf28d72014-01-16 22:23:30 -08002231#ifdef CONFIG_SYSFS
2232 if (vi->mergeable_rx_bufs)
2233 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2234#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002235 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2236 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002237
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002238 virtnet_init_settings(dev);
2239
Rusty Russell296f96f2007-10-22 11:03:37 +10002240 err = register_netdev(dev);
2241 if (err) {
2242 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002243 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002244 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002245
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302246 virtio_device_ready(vdev);
2247
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002248 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002249 if (err) {
2250 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002251 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002252 }
2253
Jason Wanga2208712016-12-13 14:23:05 +08002254 rtnl_lock();
2255 virtnet_set_queues(vi, vi->curr_queue_pairs);
2256 rtnl_unlock();
Jason Wang44900012016-11-25 12:37:26 +08002257
Jason Wang167c25e2010-11-10 14:45:41 +00002258 /* Assume link up if device can't report link status,
2259 otherwise get link status from config. */
2260 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2261 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002262 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002263 } else {
2264 vi->status = VIRTIO_NET_S_LINK_UP;
2265 netif_carrier_on(dev);
2266 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002267
Jason Wang986a4f42012-12-07 07:04:56 +00002268 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2269 dev->name, max_queue_pairs);
2270
Rusty Russell296f96f2007-10-22 11:03:37 +10002271 return 0;
2272
wangyunjianf00e35e2016-05-31 11:52:43 +08002273free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302274 vi->vdev->config->reset(vdev);
2275
Rusty Russellb3369c12008-02-04 23:50:02 -05002276 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002277free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002278 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002279 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002280 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002281free_stats:
2282 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002283free:
2284 free_netdev(dev);
2285 return err;
2286}
2287
Amit Shah04486ed2011-12-22 16:58:32 +05302288static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002289{
Amit Shah04486ed2011-12-22 16:58:32 +05302290 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002291
2292 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002293 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002294
Jason Wang986a4f42012-12-07 07:04:56 +00002295 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002296
Michael Daltonfb518792014-01-16 22:23:26 -08002297 free_receive_page_frags(vi);
2298
Jason Wang986a4f42012-12-07 07:04:56 +00002299 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302300}
2301
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002302static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302303{
2304 struct virtnet_info *vi = vdev->priv;
2305
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002306 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002307
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302308 /* Make sure no work handler is accessing the device. */
2309 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002310
Amit Shah04486ed2011-12-22 16:58:32 +05302311 unregister_netdev(vi->dev);
2312
2313 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002314
Krishna Kumar2e66f552011-07-20 03:56:02 +00002315 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002316 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002317}
2318
Aaron Lu89107002013-09-17 09:25:23 +09302319#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302320static int virtnet_freeze(struct virtio_device *vdev)
2321{
2322 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002323 int i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302324
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002325 virtnet_cpu_notif_remove(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002326
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302327 /* Make sure no work handler is accessing the device */
2328 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002329
Amit Shah0741bcb2011-12-22 16:58:33 +05302330 netif_device_detach(vi->dev);
2331 cancel_delayed_work_sync(&vi->refill);
2332
Jason Wang91815632014-07-23 16:33:55 +08002333 if (netif_running(vi->dev)) {
Jason Wangab3971b2015-03-12 13:57:44 +08002334 for (i = 0; i < vi->max_queue_pairs; i++)
Jason Wang986a4f42012-12-07 07:04:56 +00002335 napi_disable(&vi->rq[i].napi);
Jason Wang91815632014-07-23 16:33:55 +08002336 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302337
2338 remove_vq_common(vi);
2339
2340 return 0;
2341}
2342
2343static int virtnet_restore(struct virtio_device *vdev)
2344{
2345 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002346 int err, i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302347
2348 err = init_vqs(vi);
2349 if (err)
2350 return err;
2351
Michael S. Tsirkine53fbd12014-10-15 10:22:32 +10302352 virtio_device_ready(vdev);
2353
Jason Wang6cd4ce02013-12-30 11:34:40 +08002354 if (netif_running(vi->dev)) {
2355 for (i = 0; i < vi->curr_queue_pairs; i++)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03002356 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wang6cd4ce02013-12-30 11:34:40 +08002357 schedule_delayed_work(&vi->refill, 0);
2358
Jason Wang986a4f42012-12-07 07:04:56 +00002359 for (i = 0; i < vi->max_queue_pairs; i++)
2360 virtnet_napi_enable(&vi->rq[i]);
Jason Wang6cd4ce02013-12-30 11:34:40 +08002361 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302362
2363 netif_device_attach(vi->dev);
2364
Jason Wang35ed1592013-10-15 11:18:59 +08002365 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00002366 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang35ed1592013-10-15 11:18:59 +08002367 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002368
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002369 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002370 if (err)
2371 return err;
2372
Amit Shah0741bcb2011-12-22 16:58:33 +05302373 return 0;
2374}
2375#endif
2376
Rusty Russell296f96f2007-10-22 11:03:37 +10002377static struct virtio_device_id id_table[] = {
2378 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2379 { 0 },
2380};
2381
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002382#define VIRTNET_FEATURES \
2383 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2384 VIRTIO_NET_F_MAC, \
2385 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2386 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2387 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2388 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2389 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2390 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2391 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2392 VIRTIO_NET_F_MTU
2393
Rusty Russellc45a6812008-05-02 21:50:50 -05002394static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002395 VIRTNET_FEATURES,
2396};
2397
2398static unsigned int features_legacy[] = {
2399 VIRTNET_FEATURES,
2400 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302401 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002402};
2403
Uwe Kleine-König22402522009-11-05 01:32:44 -08002404static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002405 .feature_table = features,
2406 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002407 .feature_table_legacy = features_legacy,
2408 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002409 .driver.name = KBUILD_MODNAME,
2410 .driver.owner = THIS_MODULE,
2411 .id_table = id_table,
2412 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002413 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002414 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302415#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302416 .freeze = virtnet_freeze,
2417 .restore = virtnet_restore,
2418#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002419};
2420
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002421static __init int virtio_net_driver_init(void)
2422{
2423 int ret;
2424
2425 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "AP_VIRT_NET_ONLINE",
2426 virtnet_cpu_online,
2427 virtnet_cpu_down_prep);
2428 if (ret < 0)
2429 goto out;
2430 virtionet_online = ret;
2431 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "VIRT_NET_DEAD",
2432 NULL, virtnet_cpu_dead);
2433 if (ret)
2434 goto err_dead;
2435
2436 ret = register_virtio_driver(&virtio_net_driver);
2437 if (ret)
2438 goto err_virtio;
2439 return 0;
2440err_virtio:
2441 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2442err_dead:
2443 cpuhp_remove_multi_state(virtionet_online);
2444out:
2445 return ret;
2446}
2447module_init(virtio_net_driver_init);
2448
2449static __exit void virtio_net_driver_exit(void)
2450{
2451 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2452 cpuhp_remove_multi_state(virtionet_online);
2453 unregister_virtio_driver(&virtio_net_driver);
2454}
2455module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002456
2457MODULE_DEVICE_TABLE(virtio, id_table);
2458MODULE_DESCRIPTION("Virtio network driver");
2459MODULE_LICENSE("GPL");