blob: 37db91d1a0a3a5dfec5f8efcb8ff9d93bf004a90 [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,
Jason Wangbb91acc2016-12-23 22:37:32 +0800336 struct xdp_buff *xdp,
337 void *data)
John Fastabend56434a02016-12-15 12:14:13 -0800338{
John Fastabend56434a02016-12-15 12:14:13 -0800339 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) {
Jason Wangbb91acc2016-12-23 22:37:32 +0800346 if (vi->mergeable_rx_bufs) {
347 struct page *sent_page = virt_to_head_page(xdp_sent);
348
349 put_page(sent_page);
350 } else { /* small buffer */
351 struct sk_buff *skb = xdp_sent;
352
353 kfree_skb(skb);
354 }
John Fastabend56434a02016-12-15 12:14:13 -0800355 }
356
Jason Wangbb91acc2016-12-23 22:37:32 +0800357 if (vi->mergeable_rx_bufs) {
358 /* Zero header and leave csum up to XDP layers */
359 hdr = xdp->data;
360 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800361
Jason Wangbb91acc2016-12-23 22:37:32 +0800362 num_sg = 1;
363 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
364 } else { /* small buffer */
365 struct sk_buff *skb = data;
366
367 /* Zero header and leave csum up to XDP layers */
368 hdr = skb_vnet_hdr(skb);
369 memset(hdr, 0, vi->hdr_len);
370
371 num_sg = 2;
372 sg_init_table(sq->sg, 2);
373 sg_set_buf(sq->sg, hdr, vi->hdr_len);
374 skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
375 }
John Fastabend56434a02016-12-15 12:14:13 -0800376 err = virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
Jason Wangbb91acc2016-12-23 22:37:32 +0800377 data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800378 if (unlikely(err)) {
Jason Wangbb91acc2016-12-23 22:37:32 +0800379 if (vi->mergeable_rx_bufs) {
380 struct page *page = virt_to_head_page(xdp->data);
381
382 put_page(page);
383 } else /* small buffer */
384 kfree_skb(data);
John Fastabend56434a02016-12-15 12:14:13 -0800385 return; // On error abort to avoid unnecessary kick
John Fastabend56434a02016-12-15 12:14:13 -0800386 }
387
388 virtqueue_kick(sq->vq);
389}
390
John Fastabendf600b692016-12-15 12:13:24 -0800391static u32 do_xdp_prog(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800392 struct receive_queue *rq,
John Fastabendf600b692016-12-15 12:13:24 -0800393 struct bpf_prog *xdp_prog,
Jason Wangbb91acc2016-12-23 22:37:32 +0800394 void *data, int len)
John Fastabendf600b692016-12-15 12:13:24 -0800395{
396 int hdr_padded_len;
397 struct xdp_buff xdp;
Jason Wangbb91acc2016-12-23 22:37:32 +0800398 void *buf;
John Fastabend56434a02016-12-15 12:14:13 -0800399 unsigned int qp;
John Fastabendf600b692016-12-15 12:13:24 -0800400 u32 act;
John Fastabendf600b692016-12-15 12:13:24 -0800401
Jason Wangbb91acc2016-12-23 22:37:32 +0800402 if (vi->mergeable_rx_bufs) {
John Fastabendf600b692016-12-15 12:13:24 -0800403 hdr_padded_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Jason Wangbb91acc2016-12-23 22:37:32 +0800404 xdp.data = data + hdr_padded_len;
405 xdp.data_end = xdp.data + (len - vi->hdr_len);
406 buf = data;
407 } else { /* small buffers */
408 struct sk_buff *skb = data;
John Fastabendf600b692016-12-15 12:13:24 -0800409
Jason Wangbb91acc2016-12-23 22:37:32 +0800410 xdp.data = skb->data;
411 xdp.data_end = xdp.data + len;
412 buf = skb->data;
413 }
John Fastabendf600b692016-12-15 12:13:24 -0800414
415 act = bpf_prog_run_xdp(xdp_prog, &xdp);
416 switch (act) {
417 case XDP_PASS:
418 return XDP_PASS;
John Fastabend56434a02016-12-15 12:14:13 -0800419 case XDP_TX:
420 qp = vi->curr_queue_pairs -
421 vi->xdp_queue_pairs +
422 smp_processor_id();
Jason Wangbb91acc2016-12-23 22:37:32 +0800423 xdp.data = buf;
424 virtnet_xdp_xmit(vi, rq, &vi->sq[qp], &xdp, data);
John Fastabend56434a02016-12-15 12:14:13 -0800425 return XDP_TX;
John Fastabendf600b692016-12-15 12:13:24 -0800426 default:
427 bpf_warn_invalid_xdp_action(act);
John Fastabendf600b692016-12-15 12:13:24 -0800428 case XDP_ABORTED:
429 case XDP_DROP:
430 return XDP_DROP;
431 }
432}
433
Jason Wangbb91acc2016-12-23 22:37:32 +0800434static struct sk_buff *receive_small(struct net_device *dev,
435 struct virtnet_info *vi,
436 struct receive_queue *rq,
437 void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200438{
439 struct sk_buff * skb = buf;
Jason Wangbb91acc2016-12-23 22:37:32 +0800440 struct bpf_prog *xdp_prog;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200441
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300442 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200443 skb_trim(skb, len);
444
Jason Wangbb91acc2016-12-23 22:37:32 +0800445 rcu_read_lock();
446 xdp_prog = rcu_dereference(rq->xdp_prog);
447 if (xdp_prog) {
448 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
449 u32 act;
450
451 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
452 goto err_xdp;
453 act = do_xdp_prog(vi, rq, xdp_prog, skb, len);
454 switch (act) {
455 case XDP_PASS:
456 break;
457 case XDP_TX:
458 rcu_read_unlock();
459 goto xdp_xmit;
460 case XDP_DROP:
461 default:
462 goto err_xdp;
463 }
464 }
465 rcu_read_unlock();
466
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200467 return skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800468
469err_xdp:
470 rcu_read_unlock();
471 dev->stats.rx_dropped++;
472 kfree_skb(skb);
473xdp_xmit:
474 return NULL;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200475}
476
477static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300478 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200479 struct receive_queue *rq,
480 void *buf,
481 unsigned int len)
482{
483 struct page *page = buf;
Jason Wangc47a43d2016-12-23 22:37:31 +0800484 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200485
486 if (unlikely(!skb))
487 goto err;
488
489 return skb;
490
491err:
492 dev->stats.rx_dropped++;
493 give_pages(rq, page);
494 return NULL;
495}
496
John Fastabend72979a62016-12-15 12:14:36 -0800497/* The conditions to enable XDP should preclude the underlying device from
498 * sending packets across multiple buffers (num_buf > 1). However per spec
499 * it does not appear to be illegal to do so but rather just against convention.
500 * So in order to avoid making a system unresponsive the packets are pushed
501 * into a page and the XDP program is run. This will be extremely slow and we
502 * push a warning to the user to fix this as soon as possible. Fixing this may
503 * require resolving the underlying hardware to determine why multiple buffers
504 * are being received or simply loading the XDP program in the ingress stack
505 * after the skb is built because there is no advantage to running it here
506 * anymore.
507 */
508static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800509 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800510 struct page *p,
511 int offset,
512 unsigned int *len)
513{
514 struct page *page = alloc_page(GFP_ATOMIC);
515 unsigned int page_off = 0;
516
517 if (!page)
518 return NULL;
519
520 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
521 page_off += *len;
522
Jason Wang56a86f82016-12-23 22:37:26 +0800523 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800524 unsigned int buflen;
525 unsigned long ctx;
526 void *buf;
527 int off;
528
529 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen);
530 if (unlikely(!ctx))
531 goto err_buf;
532
John Fastabend72979a62016-12-15 12:14:36 -0800533 buf = mergeable_ctx_to_buf_address(ctx);
534 p = virt_to_head_page(buf);
535 off = buf - page_address(p);
536
Jason Wang56a86f82016-12-23 22:37:26 +0800537 /* guard against a misconfigured or uncooperative backend that
538 * is sending packet larger than the MTU.
539 */
540 if ((page_off + buflen) > PAGE_SIZE) {
541 put_page(p);
542 goto err_buf;
543 }
544
John Fastabend72979a62016-12-15 12:14:36 -0800545 memcpy(page_address(page) + page_off,
546 page_address(p) + off, buflen);
547 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800548 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800549 }
550
551 *len = page_off;
552 return page;
553err_buf:
554 __free_pages(page, 0);
555 return NULL;
556}
557
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200558static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200559 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200560 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800561 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200562 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000563{
Michael Daltonab7db912014-01-16 22:23:27 -0800564 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300565 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
566 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200567 struct page *page = virt_to_head_page(buf);
568 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800569 struct sk_buff *head_skb, *curr_skb;
570 struct bpf_prog *xdp_prog;
571 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800572
John Fastabend56434a02016-12-15 12:14:13 -0800573 head_skb = NULL;
574
John Fastabendf600b692016-12-15 12:13:24 -0800575 rcu_read_lock();
576 xdp_prog = rcu_dereference(rq->xdp_prog);
577 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800578 struct page *xdp_page;
John Fastabendf600b692016-12-15 12:13:24 -0800579 u32 act;
580
Jason Wang73b62bd2016-12-23 22:37:24 +0800581 /* This happens when rx buffer size is underestimated */
John Fastabendf600b692016-12-15 12:13:24 -0800582 if (unlikely(num_buf > 1)) {
John Fastabend72979a62016-12-15 12:14:36 -0800583 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800584 xdp_page = xdp_linearize_page(rq, &num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800585 page, offset, &len);
586 if (!xdp_page)
587 goto err_xdp;
588 offset = 0;
589 } else {
590 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800591 }
592
593 /* Transient failure which in theory could occur if
594 * in-flight packets from before XDP was enabled reach
595 * the receive path after XDP is loaded. In practice I
596 * was not able to create this condition.
597 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800598 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800599 goto err_xdp;
600
Jason Wangbb91acc2016-12-23 22:37:32 +0800601 act = do_xdp_prog(vi, rq, xdp_prog,
602 page_address(xdp_page) + offset, len);
John Fastabend56434a02016-12-15 12:14:13 -0800603 switch (act) {
604 case XDP_PASS:
Jason Wang1830f892016-12-23 22:37:27 +0800605 /* We can only create skb based on xdp_page. */
606 if (unlikely(xdp_page != page)) {
607 rcu_read_unlock();
608 put_page(page);
609 head_skb = page_to_skb(vi, rq, xdp_page,
610 0, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800611 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800612 return head_skb;
613 }
John Fastabend56434a02016-12-15 12:14:13 -0800614 break;
615 case XDP_TX:
Jason Wang5c334742016-12-23 22:37:29 +0800616 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800617 if (unlikely(xdp_page != page))
618 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800619 rcu_read_unlock();
620 goto xdp_xmit;
621 case XDP_DROP:
622 default:
John Fastabend72979a62016-12-15 12:14:36 -0800623 if (unlikely(xdp_page != page))
624 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800625 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800626 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800627 }
John Fastabendf600b692016-12-15 12:13:24 -0800628 }
629 rcu_read_unlock();
630
631 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
632 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
633 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000634
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200635 if (unlikely(!curr_skb))
636 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000637 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200638 int num_skb_frags;
639
Michael Daltonab7db912014-01-16 22:23:27 -0800640 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
641 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200642 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200643 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300644 virtio16_to_cpu(vi->vdev,
645 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200646 dev->stats.rx_length_errors++;
647 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000648 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200649
Michael Daltonab7db912014-01-16 22:23:27 -0800650 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200651 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200652
653 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700654 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
655 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200656
657 if (unlikely(!nskb))
658 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700659 if (curr_skb == head_skb)
660 skb_shinfo(curr_skb)->frag_list = nskb;
661 else
662 curr_skb->next = nskb;
663 curr_skb = nskb;
664 head_skb->truesize += nskb->truesize;
665 num_skb_frags = 0;
666 }
Michael Daltonab7db912014-01-16 22:23:27 -0800667 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700668 if (curr_skb != head_skb) {
669 head_skb->data_len += len;
670 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800671 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700672 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200673 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800674 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
675 put_page(page);
676 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800677 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800678 } else {
679 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800680 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800681 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200682 }
683
Johannes Berg5377d7582015-08-19 09:48:40 +0200684 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200685 return head_skb;
686
John Fastabendf600b692016-12-15 12:13:24 -0800687err_xdp:
688 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200689err_skb:
690 put_page(page);
691 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800692 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
693 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200694 pr_debug("%s: rx error: %d buffers missing\n",
695 dev->name, num_buf);
696 dev->stats.rx_length_errors++;
697 break;
698 }
Michael Daltonab7db912014-01-16 22:23:27 -0800699 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200700 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000701 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200702err_buf:
703 dev->stats.rx_dropped++;
704 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800705xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200706 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000707}
708
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300709static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
710 void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000711{
Jason Wange9d74172012-12-07 07:04:55 +0000712 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000713 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000714 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300715 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000716
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300717 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000718 pr_debug("%s: short packet %i\n", dev->name, len);
719 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800720 if (vi->mergeable_rx_bufs) {
721 unsigned long ctx = (unsigned long)buf;
722 void *base = mergeable_ctx_to_buf_address(ctx);
723 put_page(virt_to_head_page(base));
724 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800725 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800726 } else {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000727 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800728 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000729 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000730 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000731
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200732 if (vi->mergeable_rx_bufs)
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200733 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200734 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300735 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200736 else
Jason Wangbb91acc2016-12-23 22:37:32 +0800737 skb = receive_small(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200738
739 if (unlikely(!skb))
740 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800741
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000742 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000743
Eric Dumazet83a27052012-06-05 22:35:24 +0000744 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000745 stats->rx_bytes += skb->len;
746 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000747 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000748
Mike Rapoporte858fae2016-06-08 16:09:21 +0300749 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000750 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000751
Mike Rapoporte858fae2016-06-08 16:09:21 +0300752 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
753 virtio_is_little_endian(vi->vdev))) {
754 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
755 dev->name, hdr->hdr.gso_type,
756 hdr->hdr.gso_size);
757 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000758 }
759
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300760 skb->protocol = eth_type_trans(skb, dev);
761 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
762 ntohs(skb->protocol), skb->len, skb->pkt_type);
763
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200764 napi_gro_receive(&rq->napi, skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000765 return;
766
767frame_err:
768 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000769 dev_kfree_skb(skb);
770}
771
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300772static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
773 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000774{
775 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300776 struct virtio_net_hdr_mrg_rxbuf *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000777 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000778
Michael Dalton5061de32013-11-14 10:41:04 -0800779 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000780 if (unlikely(!skb))
781 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800782
Michael Dalton5061de32013-11-14 10:41:04 -0800783 skb_put(skb, GOOD_PACKET_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000784
785 hdr = skb_vnet_hdr(skb);
Jason Wang547c8902015-08-27 14:53:06 +0800786 sg_init_table(rq->sg, 2);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300787 sg_set_buf(rq->sg, hdr, vi->hdr_len);
Jason Wange9d74172012-12-07 07:04:55 +0000788 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000789
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030790 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000791 if (err < 0)
792 dev_kfree_skb(skb);
793
794 return err;
795}
796
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300797static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
798 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000799{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000800 struct page *first, *list = NULL;
801 char *p;
802 int i, err, offset;
803
Rusty Russella5835442014-09-11 10:17:36 +0930804 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
805
Jason Wange9d74172012-12-07 07:04:55 +0000806 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000807 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000808 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000809 if (!first) {
810 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000811 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000812 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700813 }
Jason Wange9d74172012-12-07 07:04:55 +0000814 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000815
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000816 /* chain new page in list head to match sg */
817 first->private = (unsigned long)list;
818 list = first;
819 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800820
Jason Wange9d74172012-12-07 07:04:55 +0000821 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000822 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000823 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000824 return -ENOMEM;
825 }
826 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800827
Jason Wange9d74172012-12-07 07:04:55 +0000828 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300829 /* a separated rq->sg[0] for header - required in case !any_header_sg */
830 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800831
Jason Wange9d74172012-12-07 07:04:55 +0000832 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000833 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000834 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800835
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000836 /* chain first in list head */
837 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030838 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
839 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000840 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000841 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800842
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000843 return err;
844}
Herbert Xu97402b92008-04-18 11:24:27 +0800845
Johannes Berg5377d7582015-08-19 09:48:40 +0200846static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000847{
Michael Daltonab7db912014-01-16 22:23:27 -0800848 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800849 unsigned int len;
850
Johannes Berg5377d7582015-08-19 09:48:40 +0200851 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael Daltonfbf28d72014-01-16 22:23:30 -0800852 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
853 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
854}
855
856static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
857{
Michael Daltonfb518792014-01-16 22:23:26 -0800858 struct page_frag *alloc_frag = &rq->alloc_frag;
859 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800860 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000861 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800862 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000863
Michael Daltonfbf28d72014-01-16 22:23:30 -0800864 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
Michael Daltonab7db912014-01-16 22:23:27 -0800865 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000866 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800867
Michael Daltonfb518792014-01-16 22:23:26 -0800868 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800869 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800870 get_page(alloc_frag->page);
Michael Daltonfb518792014-01-16 22:23:26 -0800871 alloc_frag->offset += len;
872 hole = alloc_frag->size - alloc_frag->offset;
Michael Daltonab7db912014-01-16 22:23:27 -0800873 if (hole < len) {
874 /* To avoid internal fragmentation, if there is very likely not
875 * enough space for another buffer, add the remaining space to
876 * the current buffer. This extra space is not included in
877 * the truesize stored in ctx.
878 */
Michael Daltonfb518792014-01-16 22:23:26 -0800879 len += hole;
880 alloc_frag->offset += hole;
881 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000882
Michael Daltonfb518792014-01-16 22:23:26 -0800883 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800884 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000885 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700886 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000887
888 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000889}
890
Rusty Russellb2baed62011-12-29 00:42:38 +0000891/*
892 * Returns false if we couldn't fill entirely (OOM).
893 *
894 * Normally run in the receive path, but can also be run from ndo_open
895 * before we're receiving packets, or from refill_work which is
896 * careful to disable receiving (using napi_disable).
897 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300898static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
899 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800900{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800901 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000902 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800903
Michael Daltonfb518792014-01-16 22:23:26 -0800904 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530905 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000906 if (vi->mergeable_rx_bufs)
Jason Wange9d74172012-12-07 07:04:55 +0000907 err = add_recvbuf_mergeable(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000908 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300909 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000910 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300911 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800912
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000913 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030914 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800915 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800916 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800917 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700918 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800919}
920
Rusty Russell18445c42008-02-04 23:49:57 -0500921static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000922{
923 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000924 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000925
Rusty Russell18445c42008-02-04 23:49:57 -0500926 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000927 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300928 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000929 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500930 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000931}
932
Jason Wange9d74172012-12-07 07:04:55 +0000933static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800934{
Jason Wange9d74172012-12-07 07:04:55 +0000935 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800936
937 /* If all buffers were filled by other side before we napi_enabled, we
938 * won't get another interrupt, so process any outstanding packets
939 * now. virtnet_poll wants re-enable the queue, so we disable here.
940 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000941 if (napi_schedule_prep(&rq->napi)) {
942 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300943 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000944 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300945 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800946 }
947}
948
Rusty Russell3161e452009-08-26 12:22:32 -0700949static void refill_work(struct work_struct *work)
950{
Jason Wange9d74172012-12-07 07:04:55 +0000951 struct virtnet_info *vi =
952 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700953 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000954 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700955
Sasha Levin55257d72013-04-29 12:00:08 +0930956 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000957 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700958
Jason Wang986a4f42012-12-07 07:04:56 +0000959 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300960 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +0000961 virtnet_napi_enable(rq);
962
963 /* In theory, this can happen: if we don't get any buffers in
964 * we will *never* try to fill again.
965 */
966 if (still_empty)
967 schedule_delayed_work(&vi->refill, HZ/2);
968 }
Rusty Russell3161e452009-08-26 12:22:32 -0700969}
970
Jason Wang2ffa7592014-07-23 16:33:54 +0800971static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +1000972{
Jason Wange9d74172012-12-07 07:04:55 +0000973 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang2ffa7592014-07-23 16:33:54 +0800974 unsigned int len, received = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000975 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +1000976
Rusty Russell296f96f2007-10-22 11:03:37 +1000977 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +0000978 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300979 receive_buf(vi, rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +1000980 received++;
981 }
982
Jason Wangbe121f42014-01-16 14:45:24 +0800983 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300984 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700985 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -0700986 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000987
Jason Wang2ffa7592014-07-23 16:33:54 +0800988 return received;
989}
990
991static int virtnet_poll(struct napi_struct *napi, int budget)
992{
993 struct receive_queue *rq =
994 container_of(napi, struct receive_queue, napi);
Li RongQingfaadb052015-03-26 15:39:45 +0800995 unsigned int r, received;
Jason Wang2ffa7592014-07-23 16:33:54 +0800996
Li RongQingfaadb052015-03-26 15:39:45 +0800997 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +0800998
Rusty Russell8329d982007-11-19 11:20:43 -0500999 /* Out of packets? */
1000 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +03001001 r = virtqueue_enable_cb_prepare(rq->vq);
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001002 napi_complete_done(napi, received);
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +03001003 if (unlikely(virtqueue_poll(rq->vq, r)) &&
Joe Perches8e95a202009-12-03 07:58:21 +00001004 napi_schedule_prep(napi)) {
Jason Wange9d74172012-12-07 07:04:55 +00001005 virtqueue_disable_cb(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -08001006 __napi_schedule(napi);
Christian Borntraeger4265f162008-03-14 14:17:05 +01001007 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001008 }
1009
1010 return received;
1011}
1012
Jason Wang91815632014-07-23 16:33:55 +08001013#ifdef CONFIG_NET_RX_BUSY_POLL
1014/* must be called with local_bh_disable()d */
1015static int virtnet_busy_poll(struct napi_struct *napi)
1016{
1017 struct receive_queue *rq =
1018 container_of(napi, struct receive_queue, napi);
1019 struct virtnet_info *vi = rq->vq->vdev->priv;
1020 int r, received = 0, budget = 4;
1021
1022 if (!(vi->status & VIRTIO_NET_S_LINK_UP))
1023 return LL_FLUSH_FAILED;
1024
1025 if (!napi_schedule_prep(napi))
1026 return LL_FLUSH_BUSY;
1027
1028 virtqueue_disable_cb(rq->vq);
1029
1030again:
1031 received += virtnet_receive(rq, budget);
1032
1033 r = virtqueue_enable_cb_prepare(rq->vq);
1034 clear_bit(NAPI_STATE_SCHED, &napi->state);
1035 if (unlikely(virtqueue_poll(rq->vq, r)) &&
1036 napi_schedule_prep(napi)) {
1037 virtqueue_disable_cb(rq->vq);
1038 if (received < budget) {
1039 budget -= received;
1040 goto again;
1041 } else {
1042 __napi_schedule(napi);
1043 }
1044 }
1045
1046 return received;
1047}
1048#endif /* CONFIG_NET_RX_BUSY_POLL */
1049
Jason Wang986a4f42012-12-07 07:04:56 +00001050static int virtnet_open(struct net_device *dev)
1051{
1052 struct virtnet_info *vi = netdev_priv(dev);
1053 int i;
1054
Jason Wange4166622013-05-21 20:03:58 +00001055 for (i = 0; i < vi->max_queue_pairs; i++) {
1056 if (i < vi->curr_queue_pairs)
1057 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001058 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001059 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +00001060 virtnet_napi_enable(&vi->rq[i]);
1061 }
1062
1063 return 0;
1064}
1065
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001066static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001067{
1068 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +10301069 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +00001070 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +00001071 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001072
Jason Wange9d74172012-12-07 07:04:55 +00001073 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001074 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001075
Eric Dumazet83a27052012-06-05 22:35:24 +00001076 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001077 stats->tx_bytes += skb->len;
1078 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +00001079 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001080
Eric Dumazeted79bab2009-10-14 14:36:43 +00001081 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001082 }
1083}
1084
Jason Wange9d74172012-12-07 07:04:55 +00001085static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001086{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001087 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001088 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001089 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +10301090 unsigned num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001091 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301092 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001093
Johannes Berge1749612008-10-27 15:59:26 -07001094 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301095
1096 can_push = vi->any_header_sg &&
1097 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1098 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1099 /* Even if we can, don't push here yet as this would skew
1100 * csum_start offset below. */
1101 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001102 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301103 else
1104 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001105
Mike Rapoporte858fae2016-06-08 16:09:21 +03001106 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1107 virtio_is_little_endian(vi->vdev)))
1108 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001109
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001110 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001111 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001112
Jason Wang547c8902015-08-27 14:53:06 +08001113 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301114 if (can_push) {
1115 __skb_push(skb, hdr_len);
1116 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1117 /* Pull header back to avoid skew in tx bytes calculations. */
1118 __skb_pull(skb, hdr_len);
1119 } else {
1120 sg_set_buf(sq->sg, hdr, hdr_len);
1121 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1122 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301123 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001124}
1125
Stephen Hemminger424efe92009-08-31 19:50:51 +00001126static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001127{
1128 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001129 int qnum = skb_get_queue_mapping(skb);
1130 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301131 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001132 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1133 bool kick = !skb->xmit_more;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001134
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001135 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001136 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001137
Jacob Keller074c3582014-06-25 02:37:13 +00001138 /* timestamp packet in software */
1139 skb_tx_timestamp(skb);
1140
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001141 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001142 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001143
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301144 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001145 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301146 dev->stats.tx_fifo_errors++;
1147 if (net_ratelimit())
1148 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001149 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001150 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001151 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001152 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001153 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001154
Rusty Russell48925e32009-09-24 09:59:20 -06001155 /* Don't wait up for transmitted skbs to be freed. */
1156 skb_orphan(skb);
1157 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -05001158
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001159 /* If running out of space, stop queue to avoid getting packets that we
1160 * are then unable to transmit.
1161 * An alternative would be to force queuing layer to requeue the skb by
1162 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1163 * returned in a normal path of operation: it means that driver is not
1164 * maintaining the TX queue stop/start state properly, and causes
1165 * the stack to do a non-trivial amount of useless work.
1166 * Since most packets only take 1 or 2 ring slots, stopping the queue
1167 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001168 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001169 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001170 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001171 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001172 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001173 free_old_xmit_skbs(sq);
1174 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001175 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001176 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001177 }
1178 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001179 }
Rusty Russell48925e32009-09-24 09:59:20 -06001180
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001181 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001182 virtqueue_kick(sq->vq);
1183
Rusty Russell48925e32009-09-24 09:59:20 -06001184 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001185}
1186
Amos Kong40cbfc32013-01-21 01:17:21 +00001187/*
1188 * Send command via the control virtqueue and check status. Commands
1189 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001190 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001191 */
1192static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001193 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001194{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301195 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001196 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001197
1198 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301199 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001200
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001201 vi->ctrl_status = ~0;
1202 vi->ctrl_hdr.class = class;
1203 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301204 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001205 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301206 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001207
Rusty Russellf7bc9592013-03-20 15:44:28 +10301208 if (out)
1209 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001210
Rusty Russellf7bc9592013-03-20 15:44:28 +10301211 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001212 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001213 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001214
stephen hemmingerd24bae32013-12-09 16:17:40 -08001215 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301216 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001217
Heinz Graalfs67975902013-10-29 09:40:02 +10301218 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001219 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001220
1221 /* Spin for a response, the kick causes an ioport write, trapping
1222 * into the hypervisor, so the request should be handled immediately.
1223 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301224 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1225 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001226 cpu_relax();
1227
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001228 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001229}
1230
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001231static int virtnet_set_mac_address(struct net_device *dev, void *p)
1232{
1233 struct virtnet_info *vi = netdev_priv(dev);
1234 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001235 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001236 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001237 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001238
Shyam Saini801822d2016-12-24 00:44:58 +05301239 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001240 if (!addr)
1241 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001242
1243 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001244 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001245 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001246
Amos Kong7e58d5a2013-01-21 01:17:23 +00001247 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1248 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1249 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001250 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001251 dev_warn(&vdev->dev,
1252 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001253 ret = -EINVAL;
1254 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001255 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001256 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1257 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301258 unsigned int i;
1259
1260 /* Naturally, this has an atomicity problem. */
1261 for (i = 0; i < dev->addr_len; i++)
1262 virtio_cwrite8(vdev,
1263 offsetof(struct virtio_net_config, mac) +
1264 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001265 }
1266
1267 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001268 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001269
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001270out:
1271 kfree(addr);
1272 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001273}
1274
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001275static void virtnet_stats(struct net_device *dev,
1276 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001277{
1278 struct virtnet_info *vi = netdev_priv(dev);
1279 int cpu;
1280 unsigned int start;
1281
1282 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001283 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001284 u64 tpackets, tbytes, rpackets, rbytes;
1285
1286 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001287 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001288 tpackets = stats->tx_packets;
1289 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001290 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001291
1292 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001293 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001294 rpackets = stats->rx_packets;
1295 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001296 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001297
1298 tot->rx_packets += rpackets;
1299 tot->tx_packets += tpackets;
1300 tot->rx_bytes += rbytes;
1301 tot->tx_bytes += tbytes;
1302 }
1303
1304 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001305 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001306 tot->rx_dropped = dev->stats.rx_dropped;
1307 tot->rx_length_errors = dev->stats.rx_length_errors;
1308 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001309}
1310
Amit Shahda74e892008-02-29 16:24:50 +05301311#ifdef CONFIG_NET_POLL_CONTROLLER
1312static void virtnet_netpoll(struct net_device *dev)
1313{
1314 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001315 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301316
Jason Wang986a4f42012-12-07 07:04:56 +00001317 for (i = 0; i < vi->curr_queue_pairs; i++)
1318 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301319}
1320#endif
1321
Jason Wang586d17c2012-04-11 20:43:52 +00001322static void virtnet_ack_link_announce(struct virtnet_info *vi)
1323{
1324 rtnl_lock();
1325 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001326 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001327 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1328 rtnl_unlock();
1329}
1330
Jason Wang986a4f42012-12-07 07:04:56 +00001331static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1332{
1333 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001334 struct net_device *dev = vi->dev;
1335
1336 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1337 return 0;
1338
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001339 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1340 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001341
1342 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001343 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001344 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1345 queue_pairs);
1346 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301347 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001348 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001349 /* virtnet_open() will refill when device is going to up. */
1350 if (dev->flags & IFF_UP)
1351 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301352 }
Jason Wang986a4f42012-12-07 07:04:56 +00001353
1354 return 0;
1355}
1356
Rusty Russell296f96f2007-10-22 11:03:37 +10001357static int virtnet_close(struct net_device *dev)
1358{
1359 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001360 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001361
Rusty Russellb2baed62011-12-29 00:42:38 +00001362 /* Make sure refill_work doesn't re-enable napi! */
1363 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001364
1365 for (i = 0; i < vi->max_queue_pairs; i++)
1366 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001367
Rusty Russell296f96f2007-10-22 11:03:37 +10001368 return 0;
1369}
1370
Alex Williamson2af76982009-02-04 09:02:40 +00001371static void virtnet_set_rx_mode(struct net_device *dev)
1372{
1373 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001374 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001375 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001376 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001377 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001378 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001379 void *buf;
1380 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001381
stephen hemminger788a8b62013-12-09 16:18:45 -08001382 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001383 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1384 return;
1385
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001386 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1387 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001388
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001389 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001390
1391 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001392 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001393 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001394 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001395
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001396 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001397
1398 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001399 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001400 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001401 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001402
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001403 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001404 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001405 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001406 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1407 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1408 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001409 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001410 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001411
Alex Williamson23e258e2009-05-01 17:27:56 +00001412 sg_init_table(sg, 2);
1413
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001414 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001415 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001416 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001417 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001418 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001419
1420 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001421 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001422
1423 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001424 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001425
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001426 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001427 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001428 netdev_for_each_mc_addr(ha, dev)
1429 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001430
1431 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001432 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001433
1434 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001435 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001436 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001437
1438 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001439}
1440
Patrick McHardy80d5c362013-04-19 02:04:28 +00001441static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1442 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001443{
1444 struct virtnet_info *vi = netdev_priv(dev);
1445 struct scatterlist sg;
1446
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001447 vi->ctrl_vid = vid;
1448 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001449
1450 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001451 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001452 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001453 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001454}
1455
Patrick McHardy80d5c362013-04-19 02:04:28 +00001456static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1457 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001458{
1459 struct virtnet_info *vi = netdev_priv(dev);
1460 struct scatterlist sg;
1461
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001462 vi->ctrl_vid = vid;
1463 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001464
1465 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001466 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001467 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001468 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001469}
1470
Wanlong Gao8898c212013-01-24 23:51:30 +00001471static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001472{
1473 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001474
1475 if (vi->affinity_hint_set) {
1476 for (i = 0; i < vi->max_queue_pairs; i++) {
1477 virtqueue_set_affinity(vi->rq[i].vq, -1);
1478 virtqueue_set_affinity(vi->sq[i].vq, -1);
1479 }
1480
1481 vi->affinity_hint_set = false;
1482 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001483}
1484
1485static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001486{
1487 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001488 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001489
1490 /* In multiqueue mode, when the number of cpu is equal to the number of
1491 * queue pairs, we let the queue pairs to be private to one cpu by
1492 * setting the affinity hint to eliminate the contention.
1493 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001494 if (vi->curr_queue_pairs == 1 ||
1495 vi->max_queue_pairs != num_online_cpus()) {
1496 virtnet_clean_affinity(vi, -1);
1497 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001498 }
1499
Wanlong Gao8898c212013-01-24 23:51:30 +00001500 i = 0;
1501 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001502 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1503 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001504 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001505 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001506 }
1507
Wanlong Gao8898c212013-01-24 23:51:30 +00001508 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001509}
1510
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001511static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001512{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001513 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1514 node);
1515 virtnet_set_affinity(vi);
1516 return 0;
1517}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001518
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001519static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1520{
1521 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1522 node_dead);
1523 virtnet_set_affinity(vi);
1524 return 0;
1525}
Jason Wang3ab098d2013-10-15 11:18:58 +08001526
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001527static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1528{
1529 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1530 node);
1531
1532 virtnet_clean_affinity(vi, cpu);
1533 return 0;
1534}
1535
1536static enum cpuhp_state virtionet_online;
1537
1538static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1539{
1540 int ret;
1541
1542 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1543 if (ret)
1544 return ret;
1545 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1546 &vi->node_dead);
1547 if (!ret)
1548 return ret;
1549 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1550 return ret;
1551}
1552
1553static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1554{
1555 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1556 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1557 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001558}
1559
Rick Jones8f9f4662011-10-19 08:10:59 +00001560static void virtnet_get_ringparam(struct net_device *dev,
1561 struct ethtool_ringparam *ring)
1562{
1563 struct virtnet_info *vi = netdev_priv(dev);
1564
Jason Wang986a4f42012-12-07 07:04:56 +00001565 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1566 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001567 ring->rx_pending = ring->rx_max_pending;
1568 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001569}
1570
Rick Jones66846042011-11-14 14:17:08 +00001571
1572static void virtnet_get_drvinfo(struct net_device *dev,
1573 struct ethtool_drvinfo *info)
1574{
1575 struct virtnet_info *vi = netdev_priv(dev);
1576 struct virtio_device *vdev = vi->vdev;
1577
1578 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1579 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1580 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1581
1582}
1583
Jason Wangd73bcd22012-12-07 07:04:57 +00001584/* TODO: Eliminate OOO packets during switching */
1585static int virtnet_set_channels(struct net_device *dev,
1586 struct ethtool_channels *channels)
1587{
1588 struct virtnet_info *vi = netdev_priv(dev);
1589 u16 queue_pairs = channels->combined_count;
1590 int err;
1591
1592 /* We don't support separate rx/tx channels.
1593 * We don't allow setting 'other' channels.
1594 */
1595 if (channels->rx_count || channels->tx_count || channels->other_count)
1596 return -EINVAL;
1597
Amos Kongc18e9cd2014-04-18 13:45:41 +08001598 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001599 return -EINVAL;
1600
John Fastabendf600b692016-12-15 12:13:24 -08001601 /* For now we don't support modifying channels while XDP is loaded
1602 * also when XDP is loaded all RX queues have XDP programs so we only
1603 * need to check a single RX queue.
1604 */
1605 if (vi->rq[0].xdp_prog)
1606 return -EINVAL;
1607
Wanlong Gao47be2472013-01-24 23:51:29 +00001608 get_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001609 err = virtnet_set_queues(vi, queue_pairs);
1610 if (!err) {
1611 netif_set_real_num_tx_queues(dev, queue_pairs);
1612 netif_set_real_num_rx_queues(dev, queue_pairs);
1613
Wanlong Gao8898c212013-01-24 23:51:30 +00001614 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001615 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001616 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001617
1618 return err;
1619}
1620
1621static void virtnet_get_channels(struct net_device *dev,
1622 struct ethtool_channels *channels)
1623{
1624 struct virtnet_info *vi = netdev_priv(dev);
1625
1626 channels->combined_count = vi->curr_queue_pairs;
1627 channels->max_combined = vi->max_queue_pairs;
1628 channels->max_other = 0;
1629 channels->rx_count = 0;
1630 channels->tx_count = 0;
1631 channels->other_count = 0;
1632}
1633
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001634/* Check if the user is trying to change anything besides speed/duplex */
1635static bool virtnet_validate_ethtool_cmd(const struct ethtool_cmd *cmd)
1636{
1637 struct ethtool_cmd diff1 = *cmd;
1638 struct ethtool_cmd diff2 = {};
1639
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001640 /* cmd is always set so we need to clear it, validate the port type
1641 * and also without autonegotiation we can ignore advertising
1642 */
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001643 ethtool_cmd_speed_set(&diff1, 0);
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001644 diff2.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001645 diff1.advertising = 0;
1646 diff1.duplex = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001647 diff1.cmd = 0;
1648
1649 return !memcmp(&diff1, &diff2, sizeof(diff1));
1650}
1651
1652static int virtnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1653{
1654 struct virtnet_info *vi = netdev_priv(dev);
1655 u32 speed;
1656
1657 speed = ethtool_cmd_speed(cmd);
1658 /* don't allow custom speed and duplex */
1659 if (!ethtool_validate_speed(speed) ||
1660 !ethtool_validate_duplex(cmd->duplex) ||
1661 !virtnet_validate_ethtool_cmd(cmd))
1662 return -EINVAL;
1663 vi->speed = speed;
1664 vi->duplex = cmd->duplex;
1665
1666 return 0;
1667}
1668
1669static int virtnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1670{
1671 struct virtnet_info *vi = netdev_priv(dev);
1672
1673 ethtool_cmd_speed_set(cmd, vi->speed);
1674 cmd->duplex = vi->duplex;
1675 cmd->port = PORT_OTHER;
1676
1677 return 0;
1678}
1679
1680static void virtnet_init_settings(struct net_device *dev)
1681{
1682 struct virtnet_info *vi = netdev_priv(dev);
1683
1684 vi->speed = SPEED_UNKNOWN;
1685 vi->duplex = DUPLEX_UNKNOWN;
1686}
1687
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001688static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001689 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001690 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001691 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001692 .set_channels = virtnet_set_channels,
1693 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001694 .get_ts_info = ethtool_op_get_ts_info,
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001695 .get_settings = virtnet_get_settings,
1696 .set_settings = virtnet_set_settings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001697};
1698
John Fastabendf600b692016-12-15 12:13:24 -08001699static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1700{
1701 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1702 struct virtnet_info *vi = netdev_priv(dev);
1703 struct bpf_prog *old_prog;
John Fastabend672aafd2016-12-15 12:13:49 -08001704 u16 xdp_qp = 0, curr_qp;
1705 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001706
1707 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001708 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1709 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1710 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
John Fastabendf600b692016-12-15 12:13:24 -08001711 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1712 return -EOPNOTSUPP;
1713 }
1714
1715 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1716 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1717 return -EINVAL;
1718 }
1719
1720 if (dev->mtu > max_sz) {
1721 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1722 return -EINVAL;
1723 }
1724
John Fastabend672aafd2016-12-15 12:13:49 -08001725 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1726 if (prog)
1727 xdp_qp = nr_cpu_ids;
1728
1729 /* XDP requires extra queues for XDP_TX */
1730 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1731 netdev_warn(dev, "request %i queues but max is %i\n",
1732 curr_qp + xdp_qp, vi->max_queue_pairs);
1733 return -ENOMEM;
1734 }
1735
1736 err = virtnet_set_queues(vi, curr_qp + xdp_qp);
1737 if (err) {
1738 dev_warn(&dev->dev, "XDP Device queue allocation failure.\n");
1739 return err;
1740 }
1741
John Fastabendf600b692016-12-15 12:13:24 -08001742 if (prog) {
1743 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
John Fastabend672aafd2016-12-15 12:13:49 -08001744 if (IS_ERR(prog)) {
1745 virtnet_set_queues(vi, curr_qp);
John Fastabendf600b692016-12-15 12:13:24 -08001746 return PTR_ERR(prog);
John Fastabend672aafd2016-12-15 12:13:49 -08001747 }
John Fastabendf600b692016-12-15 12:13:24 -08001748 }
1749
John Fastabend672aafd2016-12-15 12:13:49 -08001750 vi->xdp_queue_pairs = xdp_qp;
1751 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1752
John Fastabendf600b692016-12-15 12:13:24 -08001753 for (i = 0; i < vi->max_queue_pairs; i++) {
1754 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1755 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1756 if (old_prog)
1757 bpf_prog_put(old_prog);
1758 }
1759
1760 return 0;
1761}
1762
1763static bool virtnet_xdp_query(struct net_device *dev)
1764{
1765 struct virtnet_info *vi = netdev_priv(dev);
1766 int i;
1767
1768 for (i = 0; i < vi->max_queue_pairs; i++) {
1769 if (vi->rq[i].xdp_prog)
1770 return true;
1771 }
1772 return false;
1773}
1774
1775static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1776{
1777 switch (xdp->command) {
1778 case XDP_SETUP_PROG:
1779 return virtnet_xdp_set(dev, xdp->prog);
1780 case XDP_QUERY_PROG:
1781 xdp->prog_attached = virtnet_xdp_query(dev);
1782 return 0;
1783 default:
1784 return -EINVAL;
1785 }
1786}
1787
Stephen Hemminger76288b42009-01-06 10:44:22 -08001788static const struct net_device_ops virtnet_netdev = {
1789 .ndo_open = virtnet_open,
1790 .ndo_stop = virtnet_close,
1791 .ndo_start_xmit = start_xmit,
1792 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001793 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001794 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001795 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001796 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1797 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001798#ifdef CONFIG_NET_POLL_CONTROLLER
1799 .ndo_poll_controller = virtnet_netpoll,
1800#endif
Jason Wang91815632014-07-23 16:33:55 +08001801#ifdef CONFIG_NET_RX_BUSY_POLL
1802 .ndo_busy_poll = virtnet_busy_poll,
1803#endif
John Fastabendf600b692016-12-15 12:13:24 -08001804 .ndo_xdp = virtnet_xdp,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001805};
1806
Jason Wang586d17c2012-04-11 20:43:52 +00001807static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001808{
Jason Wang586d17c2012-04-11 20:43:52 +00001809 struct virtnet_info *vi =
1810 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001811 u16 v;
1812
Rusty Russell855e0c52013-10-14 18:11:51 +10301813 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1814 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301815 return;
Jason Wang586d17c2012-04-11 20:43:52 +00001816
1817 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001818 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001819 virtnet_ack_link_announce(vi);
1820 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001821
1822 /* Ignore unknown (future) status bits */
1823 v &= VIRTIO_NET_S_LINK_UP;
1824
1825 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10301826 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001827
1828 vi->status = v;
1829
1830 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1831 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001832 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001833 } else {
1834 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001835 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001836 }
1837}
1838
1839static void virtnet_config_changed(struct virtio_device *vdev)
1840{
1841 struct virtnet_info *vi = vdev->priv;
1842
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001843 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001844}
1845
Jason Wang986a4f42012-12-07 07:04:56 +00001846static void virtnet_free_queues(struct virtnet_info *vi)
1847{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001848 int i;
1849
Jason Wangab3971b2015-03-12 13:57:44 +08001850 for (i = 0; i < vi->max_queue_pairs; i++) {
1851 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001852 netif_napi_del(&vi->rq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08001853 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001854
Eric Dumazet963abe52016-11-15 22:24:12 -08001855 /* We called napi_hash_del() before netif_napi_del(),
1856 * we need to respect an RCU grace period before freeing vi->rq
1857 */
1858 synchronize_net();
1859
Jason Wang986a4f42012-12-07 07:04:56 +00001860 kfree(vi->rq);
1861 kfree(vi->sq);
1862}
1863
1864static void free_receive_bufs(struct virtnet_info *vi)
1865{
John Fastabendf600b692016-12-15 12:13:24 -08001866 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00001867 int i;
1868
John Fastabendf600b692016-12-15 12:13:24 -08001869 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00001870 for (i = 0; i < vi->max_queue_pairs; i++) {
1871 while (vi->rq[i].pages)
1872 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08001873
1874 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1875 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
1876 if (old_prog)
1877 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00001878 }
John Fastabendf600b692016-12-15 12:13:24 -08001879 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001880}
1881
Michael Daltonfb518792014-01-16 22:23:26 -08001882static void free_receive_page_frags(struct virtnet_info *vi)
1883{
1884 int i;
1885 for (i = 0; i < vi->max_queue_pairs; i++)
1886 if (vi->rq[i].alloc_frag.page)
1887 put_page(vi->rq[i].alloc_frag.page);
1888}
1889
John Fastabend56434a02016-12-15 12:14:13 -08001890static bool is_xdp_queue(struct virtnet_info *vi, int q)
1891{
1892 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1893 return false;
1894 else if (q < vi->curr_queue_pairs)
1895 return true;
1896 else
1897 return false;
1898}
1899
Jason Wang986a4f42012-12-07 07:04:56 +00001900static void free_unused_bufs(struct virtnet_info *vi)
1901{
1902 void *buf;
1903 int i;
1904
1905 for (i = 0; i < vi->max_queue_pairs; i++) {
1906 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08001907 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
1908 if (!is_xdp_queue(vi, i))
1909 dev_kfree_skb(buf);
1910 else
1911 put_page(virt_to_head_page(buf));
1912 }
Jason Wang986a4f42012-12-07 07:04:56 +00001913 }
1914
1915 for (i = 0; i < vi->max_queue_pairs; i++) {
1916 struct virtqueue *vq = vi->rq[i].vq;
1917
1918 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08001919 if (vi->mergeable_rx_bufs) {
1920 unsigned long ctx = (unsigned long)buf;
1921 void *base = mergeable_ctx_to_buf_address(ctx);
1922 put_page(virt_to_head_page(base));
1923 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001924 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001925 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001926 dev_kfree_skb(buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001927 }
Jason Wang986a4f42012-12-07 07:04:56 +00001928 }
Jason Wang986a4f42012-12-07 07:04:56 +00001929 }
1930}
1931
Jason Wange9d74172012-12-07 07:04:55 +00001932static void virtnet_del_vqs(struct virtnet_info *vi)
1933{
1934 struct virtio_device *vdev = vi->vdev;
1935
Wanlong Gao8898c212013-01-24 23:51:30 +00001936 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00001937
Jason Wange9d74172012-12-07 07:04:55 +00001938 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00001939
1940 virtnet_free_queues(vi);
1941}
1942
1943static int virtnet_find_vqs(struct virtnet_info *vi)
1944{
1945 vq_callback_t **callbacks;
1946 struct virtqueue **vqs;
1947 int ret = -ENOMEM;
1948 int i, total_vqs;
1949 const char **names;
1950
1951 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1952 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1953 * possible control vq.
1954 */
1955 total_vqs = vi->max_queue_pairs * 2 +
1956 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1957
1958 /* Allocate space for find_vqs parameters */
1959 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1960 if (!vqs)
1961 goto err_vq;
1962 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1963 if (!callbacks)
1964 goto err_callback;
1965 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1966 if (!names)
1967 goto err_names;
1968
1969 /* Parameters for control virtqueue, if any */
1970 if (vi->has_cvq) {
1971 callbacks[total_vqs - 1] = NULL;
1972 names[total_vqs - 1] = "control";
1973 }
1974
1975 /* Allocate/initialize parameters for send/receive virtqueues */
1976 for (i = 0; i < vi->max_queue_pairs; i++) {
1977 callbacks[rxq2vq(i)] = skb_recv_done;
1978 callbacks[txq2vq(i)] = skb_xmit_done;
1979 sprintf(vi->rq[i].name, "input.%d", i);
1980 sprintf(vi->sq[i].name, "output.%d", i);
1981 names[rxq2vq(i)] = vi->rq[i].name;
1982 names[txq2vq(i)] = vi->sq[i].name;
1983 }
1984
1985 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1986 names);
1987 if (ret)
1988 goto err_find;
1989
1990 if (vi->has_cvq) {
1991 vi->cvq = vqs[total_vqs - 1];
1992 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00001993 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00001994 }
1995
1996 for (i = 0; i < vi->max_queue_pairs; i++) {
1997 vi->rq[i].vq = vqs[rxq2vq(i)];
1998 vi->sq[i].vq = vqs[txq2vq(i)];
1999 }
2000
2001 kfree(names);
2002 kfree(callbacks);
2003 kfree(vqs);
2004
2005 return 0;
2006
2007err_find:
2008 kfree(names);
2009err_names:
2010 kfree(callbacks);
2011err_callback:
2012 kfree(vqs);
2013err_vq:
2014 return ret;
2015}
2016
2017static int virtnet_alloc_queues(struct virtnet_info *vi)
2018{
2019 int i;
2020
2021 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2022 if (!vi->sq)
2023 goto err_sq;
2024 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002025 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002026 goto err_rq;
2027
2028 INIT_DELAYED_WORK(&vi->refill, refill_work);
2029 for (i = 0; i < vi->max_queue_pairs; i++) {
2030 vi->rq[i].pages = NULL;
2031 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2032 napi_weight);
2033
2034 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002035 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002036 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2037 }
2038
2039 return 0;
2040
2041err_rq:
2042 kfree(vi->sq);
2043err_sq:
2044 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002045}
2046
Amit Shah3f9c10b2011-12-22 16:58:31 +05302047static int init_vqs(struct virtnet_info *vi)
2048{
Jason Wang986a4f42012-12-07 07:04:56 +00002049 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302050
Jason Wang986a4f42012-12-07 07:04:56 +00002051 /* Allocate send & receive queues */
2052 ret = virtnet_alloc_queues(vi);
2053 if (ret)
2054 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302055
Jason Wang986a4f42012-12-07 07:04:56 +00002056 ret = virtnet_find_vqs(vi);
2057 if (ret)
2058 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302059
Wanlong Gao47be2472013-01-24 23:51:29 +00002060 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002061 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002062 put_online_cpus();
2063
Amit Shah3f9c10b2011-12-22 16:58:31 +05302064 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002065
2066err_free:
2067 virtnet_free_queues(vi);
2068err:
2069 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302070}
2071
Michael Daltonfbf28d72014-01-16 22:23:30 -08002072#ifdef CONFIG_SYSFS
2073static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2074 struct rx_queue_attribute *attribute, char *buf)
2075{
2076 struct virtnet_info *vi = netdev_priv(queue->dev);
2077 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002078 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002079
2080 BUG_ON(queue_index >= vi->max_queue_pairs);
2081 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2082 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
2083}
2084
2085static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2086 __ATTR_RO(mergeable_rx_buffer_size);
2087
2088static struct attribute *virtio_net_mrg_rx_attrs[] = {
2089 &mergeable_rx_buffer_size_attribute.attr,
2090 NULL
2091};
2092
2093static const struct attribute_group virtio_net_mrg_rx_group = {
2094 .name = "virtio_net",
2095 .attrs = virtio_net_mrg_rx_attrs
2096};
2097#endif
2098
Jason Wang892d6eb2014-11-20 17:03:05 +08002099static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2100 unsigned int fbit,
2101 const char *fname, const char *dname)
2102{
2103 if (!virtio_has_feature(vdev, fbit))
2104 return false;
2105
2106 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2107 fname, dname);
2108
2109 return true;
2110}
2111
2112#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2113 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2114
2115static bool virtnet_validate_features(struct virtio_device *vdev)
2116{
2117 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2118 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2119 "VIRTIO_NET_F_CTRL_VQ") ||
2120 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2121 "VIRTIO_NET_F_CTRL_VQ") ||
2122 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2123 "VIRTIO_NET_F_CTRL_VQ") ||
2124 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2125 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2126 "VIRTIO_NET_F_CTRL_VQ"))) {
2127 return false;
2128 }
2129
2130 return true;
2131}
2132
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002133#define MIN_MTU ETH_MIN_MTU
2134#define MAX_MTU ETH_MAX_MTU
2135
Rusty Russell296f96f2007-10-22 11:03:37 +10002136static int virtnet_probe(struct virtio_device *vdev)
2137{
Jason Wang986a4f42012-12-07 07:04:56 +00002138 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10002139 struct net_device *dev;
2140 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00002141 u16 max_queue_pairs;
Aaron Conole14de9d12016-06-03 16:57:12 -04002142 int mtu;
Jason Wang986a4f42012-12-07 07:04:56 +00002143
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002144 if (!vdev->config->get) {
2145 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2146 __func__);
2147 return -EINVAL;
2148 }
2149
Jason Wang892d6eb2014-11-20 17:03:05 +08002150 if (!virtnet_validate_features(vdev))
2151 return -EINVAL;
2152
Jason Wang986a4f42012-12-07 07:04:56 +00002153 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302154 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2155 struct virtio_net_config,
2156 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002157
2158 /* We need at least 2 queue's */
2159 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2160 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2161 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2162 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002163
2164 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002165 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002166 if (!dev)
2167 return -ENOMEM;
2168
2169 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002170 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002171 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002172 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002173
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002174 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002175 SET_NETDEV_DEV(dev, &vdev->dev);
2176
2177 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002178 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002179 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002180 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002181 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002182 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002183
2184 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002185 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002186 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2187 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002188 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002189 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2190 dev->hw_features |= NETIF_F_TSO;
2191 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2192 dev->hw_features |= NETIF_F_TSO6;
2193 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2194 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002195 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2196 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002197
Jason Wang41f2f122014-12-24 11:03:52 +08002198 dev->features |= NETIF_F_GSO_ROBUST;
2199
Michał Mirosław98e778c2011-03-31 01:01:35 +00002200 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002201 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002202 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002203 }
Thomas Huth4f491292013-08-27 17:09:02 +02002204 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2205 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002206
Jason Wang4fda8302013-04-10 23:32:21 +00002207 dev->vlan_features = dev->features;
2208
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002209 /* MTU range: 68 - 65535 */
2210 dev->min_mtu = MIN_MTU;
2211 dev->max_mtu = MAX_MTU;
2212
Rusty Russell296f96f2007-10-22 11:03:37 +10002213 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302214 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2215 virtio_cread_bytes(vdev,
2216 offsetof(struct virtio_net_config, mac),
2217 dev->dev_addr, dev->addr_len);
2218 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002219 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002220
2221 /* Set up our device-specific information */
2222 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002223 vi->dev = dev;
2224 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002225 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002226 vi->stats = alloc_percpu(struct virtnet_stats);
2227 err = -ENOMEM;
2228 if (vi->stats == NULL)
2229 goto free;
2230
John Stultz827da442013-10-07 15:51:58 -07002231 for_each_possible_cpu(i) {
2232 struct virtnet_stats *virtnet_stats;
2233 virtnet_stats = per_cpu_ptr(vi->stats, i);
2234 u64_stats_init(&virtnet_stats->tx_syncp);
2235 u64_stats_init(&virtnet_stats->rx_syncp);
2236 }
2237
Jason Wang586d17c2012-04-11 20:43:52 +00002238 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002239
Herbert Xu97402b92008-04-18 11:24:27 +08002240 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002241 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2242 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002243 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2244 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002245 vi->big_packets = true;
2246
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002247 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2248 vi->mergeable_rx_bufs = true;
2249
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002250 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2251 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002252 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2253 else
2254 vi->hdr_len = sizeof(struct virtio_net_hdr);
2255
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002256 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2257 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302258 vi->any_header_sg = true;
2259
Jason Wang986a4f42012-12-07 07:04:56 +00002260 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2261 vi->has_cvq = true;
2262
Aaron Conole14de9d12016-06-03 16:57:12 -04002263 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2264 mtu = virtio_cread16(vdev,
2265 offsetof(struct virtio_net_config,
2266 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002267 if (mtu < dev->min_mtu) {
Aaron Conole14de9d12016-06-03 16:57:12 -04002268 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
Aaron Conole93a205e2016-10-25 16:12:12 -04002269 } else {
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002270 dev->mtu = mtu;
Aaron Conole93a205e2016-10-25 16:12:12 -04002271 dev->max_mtu = mtu;
2272 }
Aaron Conole14de9d12016-06-03 16:57:12 -04002273 }
2274
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002275 if (vi->any_header_sg)
2276 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002277
Jason Wang44900012016-11-25 12:37:26 +08002278 /* Enable multiqueue by default */
2279 if (num_online_cpus() >= max_queue_pairs)
2280 vi->curr_queue_pairs = max_queue_pairs;
2281 else
2282 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002283 vi->max_queue_pairs = max_queue_pairs;
2284
2285 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302286 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002287 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002288 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002289
Michael Daltonfbf28d72014-01-16 22:23:30 -08002290#ifdef CONFIG_SYSFS
2291 if (vi->mergeable_rx_bufs)
2292 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2293#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002294 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2295 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002296
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002297 virtnet_init_settings(dev);
2298
Rusty Russell296f96f2007-10-22 11:03:37 +10002299 err = register_netdev(dev);
2300 if (err) {
2301 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002302 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002303 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002304
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302305 virtio_device_ready(vdev);
2306
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002307 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002308 if (err) {
2309 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002310 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002311 }
2312
Jason Wanga2208712016-12-13 14:23:05 +08002313 rtnl_lock();
2314 virtnet_set_queues(vi, vi->curr_queue_pairs);
2315 rtnl_unlock();
Jason Wang44900012016-11-25 12:37:26 +08002316
Jason Wang167c25e2010-11-10 14:45:41 +00002317 /* Assume link up if device can't report link status,
2318 otherwise get link status from config. */
2319 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2320 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002321 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002322 } else {
2323 vi->status = VIRTIO_NET_S_LINK_UP;
2324 netif_carrier_on(dev);
2325 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002326
Jason Wang986a4f42012-12-07 07:04:56 +00002327 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2328 dev->name, max_queue_pairs);
2329
Rusty Russell296f96f2007-10-22 11:03:37 +10002330 return 0;
2331
wangyunjianf00e35e2016-05-31 11:52:43 +08002332free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302333 vi->vdev->config->reset(vdev);
2334
Rusty Russellb3369c12008-02-04 23:50:02 -05002335 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002336free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002337 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002338 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002339 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002340free_stats:
2341 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002342free:
2343 free_netdev(dev);
2344 return err;
2345}
2346
Amit Shah04486ed2011-12-22 16:58:32 +05302347static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002348{
Amit Shah04486ed2011-12-22 16:58:32 +05302349 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002350
2351 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002352 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002353
Jason Wang986a4f42012-12-07 07:04:56 +00002354 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002355
Michael Daltonfb518792014-01-16 22:23:26 -08002356 free_receive_page_frags(vi);
2357
Jason Wang986a4f42012-12-07 07:04:56 +00002358 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302359}
2360
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002361static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302362{
2363 struct virtnet_info *vi = vdev->priv;
2364
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002365 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002366
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302367 /* Make sure no work handler is accessing the device. */
2368 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002369
Amit Shah04486ed2011-12-22 16:58:32 +05302370 unregister_netdev(vi->dev);
2371
2372 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002373
Krishna Kumar2e66f552011-07-20 03:56:02 +00002374 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002375 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002376}
2377
Aaron Lu89107002013-09-17 09:25:23 +09302378#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302379static int virtnet_freeze(struct virtio_device *vdev)
2380{
2381 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002382 int i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302383
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002384 virtnet_cpu_notif_remove(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002385
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302386 /* Make sure no work handler is accessing the device */
2387 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002388
Amit Shah0741bcb2011-12-22 16:58:33 +05302389 netif_device_detach(vi->dev);
2390 cancel_delayed_work_sync(&vi->refill);
2391
Jason Wang91815632014-07-23 16:33:55 +08002392 if (netif_running(vi->dev)) {
Jason Wangab3971b2015-03-12 13:57:44 +08002393 for (i = 0; i < vi->max_queue_pairs; i++)
Jason Wang986a4f42012-12-07 07:04:56 +00002394 napi_disable(&vi->rq[i].napi);
Jason Wang91815632014-07-23 16:33:55 +08002395 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302396
2397 remove_vq_common(vi);
2398
2399 return 0;
2400}
2401
2402static int virtnet_restore(struct virtio_device *vdev)
2403{
2404 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00002405 int err, i;
Amit Shah0741bcb2011-12-22 16:58:33 +05302406
2407 err = init_vqs(vi);
2408 if (err)
2409 return err;
2410
Michael S. Tsirkine53fbd12014-10-15 10:22:32 +10302411 virtio_device_ready(vdev);
2412
Jason Wang6cd4ce02013-12-30 11:34:40 +08002413 if (netif_running(vi->dev)) {
2414 for (i = 0; i < vi->curr_queue_pairs; i++)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03002415 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wang6cd4ce02013-12-30 11:34:40 +08002416 schedule_delayed_work(&vi->refill, 0);
2417
Jason Wang986a4f42012-12-07 07:04:56 +00002418 for (i = 0; i < vi->max_queue_pairs; i++)
2419 virtnet_napi_enable(&vi->rq[i]);
Jason Wang6cd4ce02013-12-30 11:34:40 +08002420 }
Amit Shah0741bcb2011-12-22 16:58:33 +05302421
2422 netif_device_attach(vi->dev);
2423
Jason Wang35ed1592013-10-15 11:18:59 +08002424 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00002425 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang35ed1592013-10-15 11:18:59 +08002426 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002427
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002428 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002429 if (err)
2430 return err;
2431
Amit Shah0741bcb2011-12-22 16:58:33 +05302432 return 0;
2433}
2434#endif
2435
Rusty Russell296f96f2007-10-22 11:03:37 +10002436static struct virtio_device_id id_table[] = {
2437 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2438 { 0 },
2439};
2440
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002441#define VIRTNET_FEATURES \
2442 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2443 VIRTIO_NET_F_MAC, \
2444 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2445 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2446 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2447 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2448 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2449 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2450 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2451 VIRTIO_NET_F_MTU
2452
Rusty Russellc45a6812008-05-02 21:50:50 -05002453static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002454 VIRTNET_FEATURES,
2455};
2456
2457static unsigned int features_legacy[] = {
2458 VIRTNET_FEATURES,
2459 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302460 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002461};
2462
Uwe Kleine-König22402522009-11-05 01:32:44 -08002463static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002464 .feature_table = features,
2465 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002466 .feature_table_legacy = features_legacy,
2467 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002468 .driver.name = KBUILD_MODNAME,
2469 .driver.owner = THIS_MODULE,
2470 .id_table = id_table,
2471 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002472 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002473 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302474#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302475 .freeze = virtnet_freeze,
2476 .restore = virtnet_restore,
2477#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002478};
2479
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002480static __init int virtio_net_driver_init(void)
2481{
2482 int ret;
2483
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002484 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002485 virtnet_cpu_online,
2486 virtnet_cpu_down_prep);
2487 if (ret < 0)
2488 goto out;
2489 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002490 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002491 NULL, virtnet_cpu_dead);
2492 if (ret)
2493 goto err_dead;
2494
2495 ret = register_virtio_driver(&virtio_net_driver);
2496 if (ret)
2497 goto err_virtio;
2498 return 0;
2499err_virtio:
2500 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2501err_dead:
2502 cpuhp_remove_multi_state(virtionet_online);
2503out:
2504 return ret;
2505}
2506module_init(virtio_net_driver_init);
2507
2508static __exit void virtio_net_driver_exit(void)
2509{
2510 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2511 cpuhp_remove_multi_state(virtionet_online);
2512 unregister_virtio_driver(&virtio_net_driver);
2513}
2514module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002515
2516MODULE_DEVICE_TABLE(virtio, id_table);
2517MODULE_DESCRIPTION("Virtio network driver");
2518MODULE_LICENSE("GPL");