blob: eca9b13b859e90970cba15cf8e1280155d9b151b [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070033#include <linux/netdevice.h>
34#include <linux/pci.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020035#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010036#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070037#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100038
Amerigo Wangd34710e2013-05-09 19:50:51 +000039static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020040module_param(napi_weight, int, 0444);
41
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050043module_param(csum, bool, 0444);
44module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040045module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050046
Rusty Russell296f96f2007-10-22 11:03:37 +100047/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080048#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080049#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100050
Jason Wangf6b10202017-02-21 16:46:28 +080051#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
52
John Fastabend2de2f7f2017-02-02 19:16:29 -080053/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
54#define VIRTIO_XDP_HEADROOM 256
55
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020056/* Separating two types of XDP xmit */
57#define VIRTIO_XDP_TX BIT(0)
58#define VIRTIO_XDP_REDIR BIT(1)
59
Johannes Berg5377d7582015-08-19 09:48:40 +020060/* RX packet size EWMA. The average packet size is used to determine the packet
61 * buffer size when refilling RX rings. As the entire RX ring may be refilled
62 * at once, the weight is chosen so that the EWMA will be insensitive to short-
63 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080064 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010065DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080066
Rick Jones66846042011-11-14 14:17:08 +000067#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000068
Colin Ian King7acd4322017-08-12 22:45:53 +010069static const unsigned long guest_offloads[] = {
70 VIRTIO_NET_F_GUEST_TSO4,
71 VIRTIO_NET_F_GUEST_TSO6,
72 VIRTIO_NET_F_GUEST_ECN,
73 VIRTIO_NET_F_GUEST_UFO
74};
Jason Wang3f935222017-07-19 16:54:49 +080075
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090076struct virtnet_stat_desc {
77 char desc[ETH_GSTRING_LEN];
78 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000079};
80
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090081struct virtnet_sq_stats {
82 struct u64_stats_sync syncp;
83 u64 packets;
84 u64 bytes;
85};
86
Toshiaki Makitaa0929a42018-07-23 23:36:05 +090087struct virtnet_rq_stat_items {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090088 u64 packets;
89 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090090 u64 drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090091};
92
Toshiaki Makitaa0929a42018-07-23 23:36:05 +090093struct virtnet_rq_stats {
94 struct u64_stats_sync syncp;
95 struct virtnet_rq_stat_items items;
96};
97
98struct virtnet_rx_stats {
99 struct virtnet_rq_stat_items rx;
100};
101
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900102#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900103#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stat_items, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900104
105static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
106 { "packets", VIRTNET_SQ_STAT(packets) },
107 { "bytes", VIRTNET_SQ_STAT(bytes) },
108};
109
110static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
111 { "packets", VIRTNET_RQ_STAT(packets) },
112 { "bytes", VIRTNET_RQ_STAT(bytes) },
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +0900113 { "drops", VIRTNET_RQ_STAT(drops) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900114};
115
116#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
117#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
118
Jason Wange9d74172012-12-07 07:04:55 +0000119/* Internal representation of a send virtqueue */
120struct send_queue {
121 /* Virtqueue associated with this send _queue */
122 struct virtqueue *vq;
123
124 /* TX: fragments + linear part + virtio header */
125 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000126
127 /* Name of the send queue: output.$index */
128 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400129
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900130 struct virtnet_sq_stats stats;
131
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400132 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000133};
134
135/* Internal representation of a receive virtqueue */
136struct receive_queue {
137 /* Virtqueue associated with this receive_queue */
138 struct virtqueue *vq;
139
Rusty Russell296f96f2007-10-22 11:03:37 +1000140 struct napi_struct napi;
141
John Fastabendf600b692016-12-15 12:13:24 -0800142 struct bpf_prog __rcu *xdp_prog;
143
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900144 struct virtnet_rq_stats stats;
145
Jason Wange9d74172012-12-07 07:04:55 +0000146 /* Chain pages by the private ptr. */
147 struct page *pages;
148
Michael Daltonab7db912014-01-16 22:23:27 -0800149 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200150 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800151
Michael Daltonfb518792014-01-16 22:23:26 -0800152 /* Page frag for packet buffer allocation. */
153 struct page_frag alloc_frag;
154
Jason Wange9d74172012-12-07 07:04:55 +0000155 /* RX: fragments + linear part + virtio header */
156 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000157
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200158 /* Min single buffer size for mergeable buffers case. */
159 unsigned int min_buf_len;
160
Jason Wang986a4f42012-12-07 07:04:56 +0000161 /* Name of this receive queue: input.$index */
162 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100163
164 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000165};
166
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300167/* Control VQ buffers: protected by the rtnl lock */
168struct control_buf {
169 struct virtio_net_ctrl_hdr hdr;
170 virtio_net_ctrl_ack status;
171 struct virtio_net_ctrl_mq mq;
172 u8 promisc;
173 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300174 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300175 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300176};
177
Jason Wange9d74172012-12-07 07:04:55 +0000178struct virtnet_info {
179 struct virtio_device *vdev;
180 struct virtqueue *cvq;
181 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000182 struct send_queue *sq;
183 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000184 unsigned int status;
185
Jason Wang986a4f42012-12-07 07:04:56 +0000186 /* Max # of queue pairs supported by the device */
187 u16 max_queue_pairs;
188
189 /* # of queue pairs currently used by the driver */
190 u16 curr_queue_pairs;
191
John Fastabend672aafd2016-12-15 12:13:49 -0800192 /* # of XDP queue pairs currently used by the driver */
193 u16 xdp_queue_pairs;
194
Herbert Xu97402b92008-04-18 11:24:27 +0800195 /* I like... big packets and I cannot lie! */
196 bool big_packets;
197
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800198 /* Host will merge rx buffers for big packets (shake it! shake it!) */
199 bool mergeable_rx_bufs;
200
Jason Wang986a4f42012-12-07 07:04:56 +0000201 /* Has control virtqueue */
202 bool has_cvq;
203
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930204 /* Host can handle any s/g split between our header and packet data */
205 bool any_header_sg;
206
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300207 /* Packet virtio header size */
208 u8 hdr_len;
209
Rusty Russell3161e452009-08-26 12:22:32 -0700210 /* Work struct for refilling if we run low on memory. */
211 struct delayed_work refill;
212
Jason Wang586d17c2012-04-11 20:43:52 +0000213 /* Work struct for config space updates */
214 struct work_struct config_work;
215
Jason Wang986a4f42012-12-07 07:04:56 +0000216 /* Does the affinity hint is set for virtqueues? */
217 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000218
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200219 /* CPU hotplug instances for online & dead */
220 struct hlist_node node;
221 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200222
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300223 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100224
225 /* Ethtool settings */
226 u8 duplex;
227 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800228
229 unsigned long guest_offloads;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700230
231 /* failover when STANDBY feature enabled */
232 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000233};
234
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000235struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300236 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000237 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300238 * hdr is in a separate sg buffer, and data sg buffer shares same page
239 * with this header sg. This padding makes next sg 16 byte aligned
240 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000241 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300242 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000243};
244
Jason Wang986a4f42012-12-07 07:04:56 +0000245/* Converting between virtqueue no. and kernel tx/rx queue no.
246 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
247 */
248static int vq2txq(struct virtqueue *vq)
249{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000250 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000251}
252
253static int txq2vq(int txq)
254{
255 return txq * 2 + 1;
256}
257
258static int vq2rxq(struct virtqueue *vq)
259{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000260 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000261}
262
263static int rxq2vq(int rxq)
264{
265 return rxq * 2;
266}
267
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300268static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000269{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300270 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000271}
272
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000273/*
274 * private is used to chain pages for big packets, put the whole
275 * most recent used list in the beginning for reuse
276 */
Jason Wange9d74172012-12-07 07:04:55 +0000277static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500278{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000279 struct page *end;
280
Jason Wange9d74172012-12-07 07:04:55 +0000281 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000282 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000283 end->private = (unsigned long)rq->pages;
284 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500285}
286
Jason Wange9d74172012-12-07 07:04:55 +0000287static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500288{
Jason Wange9d74172012-12-07 07:04:55 +0000289 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500290
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000291 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000292 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000293 /* clear private here, it is used to chain pages */
294 p->private = 0;
295 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500296 p = alloc_page(gfp_mask);
297 return p;
298}
299
Willem de Bruijne4e84522017-04-24 13:49:26 -0400300static void virtqueue_napi_schedule(struct napi_struct *napi,
301 struct virtqueue *vq)
302{
303 if (napi_schedule_prep(napi)) {
304 virtqueue_disable_cb(vq);
305 __napi_schedule(napi);
306 }
307}
308
309static void virtqueue_napi_complete(struct napi_struct *napi,
310 struct virtqueue *vq, int processed)
311{
312 int opaque;
313
314 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900315 if (napi_complete_done(napi, processed)) {
316 if (unlikely(virtqueue_poll(vq, opaque)))
317 virtqueue_napi_schedule(napi, vq);
318 } else {
319 virtqueue_disable_cb(vq);
320 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400321}
322
Jason Wange9d74172012-12-07 07:04:55 +0000323static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000324{
Jason Wange9d74172012-12-07 07:04:55 +0000325 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400326 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000327
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500328 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000329 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000330
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400331 if (napi->weight)
332 virtqueue_napi_schedule(napi, vq);
333 else
334 /* We were probably waiting for more output buffers. */
335 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000336}
337
Jason Wang28b39bc2017-07-19 16:54:46 +0800338#define MRG_CTX_HEADER_SHIFT 22
339static void *mergeable_len_to_ctx(unsigned int truesize,
340 unsigned int headroom)
341{
342 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
343}
344
345static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
346{
347 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
348}
349
350static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
351{
352 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
353}
354
Mike Waychison34646452012-01-04 12:52:32 +0000355/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300356static struct sk_buff *page_to_skb(struct virtnet_info *vi,
357 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700358 struct page *page, unsigned int offset,
359 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000360{
361 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300362 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700363 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000364 char *p;
365
Michael Dalton2613af02013-10-28 15:44:18 -0700366 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000367
368 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100369 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000370 if (unlikely(!skb))
371 return NULL;
372
373 hdr = skb_vnet_hdr(skb);
374
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300375 hdr_len = vi->hdr_len;
376 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700377 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300378 else
Michael Dalton2613af02013-10-28 15:44:18 -0700379 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000380
381 memcpy(hdr, p, hdr_len);
382
383 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700384 offset += hdr_padded_len;
385 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000386
387 copy = len;
388 if (copy > skb_tailroom(skb))
389 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200390 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000391
392 len -= copy;
393 offset += copy;
394
Michael Dalton2613af02013-10-28 15:44:18 -0700395 if (vi->mergeable_rx_bufs) {
396 if (len)
397 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
398 else
399 put_page(page);
400 return skb;
401 }
402
Sasha Levine878d782011-09-28 04:40:54 +0000403 /*
404 * Verify that we can indeed put this data into a skb.
405 * This is here to handle cases when the device erroneously
406 * tries to receive more than is possible. This is usually
407 * the case of a broken device.
408 */
409 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000410 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000411 dev_kfree_skb(skb);
412 return NULL;
413 }
Michael Dalton2613af02013-10-28 15:44:18 -0700414 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000415 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700416 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
417 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
418 frag_size, truesize);
419 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000420 page = (struct page *)page->private;
421 offset = 0;
422 }
423
424 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000425 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000426
427 return skb;
428}
429
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200430static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
431 struct send_queue *sq,
432 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800433{
John Fastabend56434a02016-12-15 12:14:13 -0800434 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800435 int err;
436
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200437 /* virtqueue want to use data area in-front of packet */
438 if (unlikely(xdpf->metasize > 0))
439 return -EOPNOTSUPP;
440
441 if (unlikely(xdpf->headroom < vi->hdr_len))
442 return -EOVERFLOW;
443
444 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
445 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800446 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200447 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800448 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200449 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800450
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200451 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800452
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200453 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100454 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200455 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800456
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200457 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800458}
459
Toshiaki Makita2a435652018-07-23 23:36:07 +0900460static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
461{
462 unsigned int qp;
463
464 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
465 return &vi->sq[qp];
466}
467
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200468static int __virtnet_xdp_tx_xmit(struct virtnet_info *vi,
469 struct xdp_frame *xdpf)
470{
471 struct xdp_frame *xdpf_sent;
472 struct send_queue *sq;
473 unsigned int len;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200474
Toshiaki Makita2a435652018-07-23 23:36:07 +0900475 sq = virtnet_xdp_sq(vi);
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200476
477 /* Free up any pending old buffers before queueing new ones. */
478 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
479 xdp_return_frame(xdpf_sent);
480
481 return __virtnet_xdp_xmit_one(vi, sq, xdpf);
482}
483
484static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200485 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800486{
487 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100488 struct receive_queue *rq = vi->rq;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200489 struct xdp_frame *xdpf_sent;
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100490 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200491 struct send_queue *sq;
492 unsigned int len;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200493 int drops = 0;
494 int err;
495 int i;
496
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200497 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200498 return -EINVAL;
499
Toshiaki Makita2a435652018-07-23 23:36:07 +0900500 sq = virtnet_xdp_sq(vi);
Jason Wang186b3c92017-09-19 17:42:43 +0800501
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100502 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
503 * indicate XDP resources have been successfully allocated.
504 */
505 xdp_prog = rcu_dereference(rq->xdp_prog);
506 if (!xdp_prog)
507 return -ENXIO;
508
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200509 /* Free up any pending old buffers before queueing new ones. */
510 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
511 xdp_return_frame(xdpf_sent);
512
513 for (i = 0; i < n; i++) {
514 struct xdp_frame *xdpf = frames[i];
515
516 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
517 if (err) {
518 xdp_return_frame_rx_napi(xdpf);
519 drops++;
520 }
521 }
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200522
523 if (flags & XDP_XMIT_FLUSH)
524 virtqueue_kick(sq->vq);
525
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200526 return n - drops;
Jason Wang186b3c92017-09-19 17:42:43 +0800527}
528
Jason Wangf6b10202017-02-21 16:46:28 +0800529static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
530{
531 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
532}
533
Jason Wang4941d472017-07-19 16:54:48 +0800534/* We copy the packet for XDP in the following cases:
535 *
536 * 1) Packet is scattered across multiple rx buffers.
537 * 2) Headroom space is insufficient.
538 *
539 * This is inefficient but it's a temporary condition that
540 * we hit right after XDP is enabled and until queue is refilled
541 * with large buffers with sufficient headroom - so it should affect
542 * at most queue size packets.
543 * Afterwards, the conditions to enable
544 * XDP should preclude the underlying device from sending packets
545 * across multiple buffers (num_buf > 1), and we make sure buffers
546 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800547 */
548static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800549 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800550 struct page *p,
551 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800552 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800553 unsigned int *len)
554{
555 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800556
557 if (!page)
558 return NULL;
559
560 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
561 page_off += *len;
562
Jason Wang56a86f82016-12-23 22:37:26 +0800563 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800564 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800565 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800566 void *buf;
567 int off;
568
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200569 buf = virtqueue_get_buf(rq->vq, &buflen);
570 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800571 goto err_buf;
572
John Fastabend72979a62016-12-15 12:14:36 -0800573 p = virt_to_head_page(buf);
574 off = buf - page_address(p);
575
Jason Wang56a86f82016-12-23 22:37:26 +0800576 /* guard against a misconfigured or uncooperative backend that
577 * is sending packet larger than the MTU.
578 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800579 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800580 put_page(p);
581 goto err_buf;
582 }
583
John Fastabend72979a62016-12-15 12:14:36 -0800584 memcpy(page_address(page) + page_off,
585 page_address(p) + off, buflen);
586 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800587 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800588 }
589
John Fastabend2de2f7f2017-02-02 19:16:29 -0800590 /* Headroom does not contribute to packet length */
591 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800592 return page;
593err_buf:
594 __free_pages(page, 0);
595 return NULL;
596}
597
Jason Wang4941d472017-07-19 16:54:48 +0800598static struct sk_buff *receive_small(struct net_device *dev,
599 struct virtnet_info *vi,
600 struct receive_queue *rq,
601 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800602 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900603 unsigned int *xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900604 struct virtnet_rx_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800605{
606 struct sk_buff *skb;
607 struct bpf_prog *xdp_prog;
608 unsigned int xdp_headroom = (unsigned long)ctx;
609 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
610 unsigned int headroom = vi->hdr_len + header_offset;
611 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
612 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
613 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100614 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800615 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100616 int err;
617
Jason Wang4941d472017-07-19 16:54:48 +0800618 len -= vi->hdr_len;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900619 stats->rx.bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800620
621 rcu_read_lock();
622 xdp_prog = rcu_dereference(rq->xdp_prog);
623 if (xdp_prog) {
624 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200625 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800626 struct xdp_buff xdp;
627 void *orig_data;
628 u32 act;
629
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100630 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800631 goto err_xdp;
632
633 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
634 int offset = buf - page_address(page) + header_offset;
635 unsigned int tlen = len + vi->hdr_len;
636 u16 num_buf = 1;
637
638 xdp_headroom = virtnet_get_headroom(vi);
639 header_offset = VIRTNET_RX_PAD + xdp_headroom;
640 headroom = vi->hdr_len + header_offset;
641 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
642 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
643 xdp_page = xdp_linearize_page(rq, &num_buf, page,
644 offset, header_offset,
645 &tlen);
646 if (!xdp_page)
647 goto err_xdp;
648
649 buf = page_address(xdp_page);
650 put_page(page);
651 page = xdp_page;
652 }
653
654 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
655 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200656 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800657 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100658 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800659 orig_data = xdp.data;
660 act = bpf_prog_run_xdp(xdp_prog, &xdp);
661
662 switch (act) {
663 case XDP_PASS:
664 /* Recalculate length in case bpf program changed it */
665 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700666 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800667 break;
668 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200669 xdpf = convert_to_xdp_frame(&xdp);
670 if (unlikely(!xdpf))
671 goto err_xdp;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200672 err = __virtnet_xdp_tx_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200673 if (unlikely(err)) {
Jason Wang4941d472017-07-19 16:54:48 +0800674 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100675 goto err_xdp;
676 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200677 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800678 rcu_read_unlock();
679 goto xdp_xmit;
680 case XDP_REDIRECT:
681 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100682 if (err)
683 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200684 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800685 rcu_read_unlock();
686 goto xdp_xmit;
687 default:
688 bpf_warn_invalid_xdp_action(act);
689 case XDP_ABORTED:
690 trace_xdp_exception(vi->dev, xdp_prog, act);
691 case XDP_DROP:
692 goto err_xdp;
693 }
694 }
695 rcu_read_unlock();
696
697 skb = build_skb(buf, buflen);
698 if (!skb) {
699 put_page(page);
700 goto err;
701 }
702 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700703 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800704 if (!delta) {
705 buf += header_offset;
706 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
707 } /* keep zeroed vnet hdr since packet was changed by bpf */
708
709err:
710 return skb;
711
712err_xdp:
713 rcu_read_unlock();
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +0900714 stats->rx.drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800715 put_page(page);
716xdp_xmit:
717 return NULL;
718}
719
720static struct sk_buff *receive_big(struct net_device *dev,
721 struct virtnet_info *vi,
722 struct receive_queue *rq,
723 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900724 unsigned int len,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900725 struct virtnet_rx_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800726{
727 struct page *page = buf;
728 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
729
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900730 stats->rx.bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800731 if (unlikely(!skb))
732 goto err;
733
734 return skb;
735
736err:
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +0900737 stats->rx.drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800738 give_pages(rq, page);
739 return NULL;
740}
741
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200742static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200743 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200744 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200745 void *buf,
746 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800747 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900748 unsigned int *xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900749 struct virtnet_rx_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000750{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300751 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
752 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200753 struct page *page = virt_to_head_page(buf);
754 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800755 struct sk_buff *head_skb, *curr_skb;
756 struct bpf_prog *xdp_prog;
757 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800758 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800759 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800760
John Fastabend56434a02016-12-15 12:14:13 -0800761 head_skb = NULL;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900762 stats->rx.bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800763
John Fastabendf600b692016-12-15 12:13:24 -0800764 rcu_read_lock();
765 xdp_prog = rcu_dereference(rq->xdp_prog);
766 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200767 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800768 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800769 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800770 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800771 u32 act;
772
Jason Wang3d62b2a2018-05-22 11:44:31 +0800773 /* Transient failure which in theory could occur if
774 * in-flight packets from before XDP was enabled reach
775 * the receive path after XDP is loaded.
776 */
777 if (unlikely(hdr->hdr.gso_type))
778 goto err_xdp;
779
Jason Wang3cc81a92018-03-02 17:29:14 +0800780 /* This happens when rx buffer size is underestimated
781 * or headroom is not enough because of the buffer
782 * was refilled before XDP is set. This should only
783 * happen for the first several packets, so we don't
784 * care much about its performance.
785 */
Jason Wang4941d472017-07-19 16:54:48 +0800786 if (unlikely(num_buf > 1 ||
787 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800788 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800789 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800790 page, offset,
791 VIRTIO_XDP_HEADROOM,
792 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800793 if (!xdp_page)
794 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800795 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800796 } else {
797 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800798 }
799
John Fastabend2de2f7f2017-02-02 19:16:29 -0800800 /* Allow consuming headroom but reserve enough space to push
801 * the descriptor on if we get an XDP_TX return code.
802 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800803 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800804 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800805 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200806 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800807 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100808 xdp.rxq = &rq->xdp_rxq;
809
John Fastabend0354e4d2017-02-02 19:15:01 -0800810 act = bpf_prog_run_xdp(xdp_prog, &xdp);
811
John Fastabend56434a02016-12-15 12:14:13 -0800812 switch (act) {
813 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800814 /* recalculate offset to account for any header
815 * adjustments. Note other cases do not build an
816 * skb and avoid using offset
817 */
818 offset = xdp.data -
819 page_address(xdp_page) - vi->hdr_len;
820
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700821 /* recalculate len if xdp.data or xdp.data_end were
822 * adjusted
823 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700824 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800825 /* We can only create skb based on xdp_page. */
826 if (unlikely(xdp_page != page)) {
827 rcu_read_unlock();
828 put_page(page);
829 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800830 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800831 return head_skb;
832 }
John Fastabend56434a02016-12-15 12:14:13 -0800833 break;
834 case XDP_TX:
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200835 xdpf = convert_to_xdp_frame(&xdp);
836 if (unlikely(!xdpf))
837 goto err_xdp;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200838 err = __virtnet_xdp_tx_xmit(vi, xdpf);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200839 if (unlikely(err)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800840 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100841 if (unlikely(xdp_page != page))
842 put_page(xdp_page);
843 goto err_xdp;
844 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200845 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800846 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800847 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800848 rcu_read_unlock();
849 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800850 case XDP_REDIRECT:
851 err = xdp_do_redirect(dev, &xdp, xdp_prog);
852 if (err) {
853 if (unlikely(xdp_page != page))
854 put_page(xdp_page);
855 goto err_xdp;
856 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200857 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800858 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800859 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800860 rcu_read_unlock();
861 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800862 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800863 bpf_warn_invalid_xdp_action(act);
864 case XDP_ABORTED:
865 trace_xdp_exception(vi->dev, xdp_prog, act);
866 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800867 if (unlikely(xdp_page != page))
868 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800869 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800870 }
John Fastabendf600b692016-12-15 12:13:24 -0800871 }
872 rcu_read_unlock();
873
Jason Wang28b39bc2017-07-19 16:54:46 +0800874 truesize = mergeable_ctx_to_truesize(ctx);
875 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300876 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200877 dev->name, len, (unsigned long)ctx);
878 dev->stats.rx_length_errors++;
879 goto err_skb;
880 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800881
John Fastabendf600b692016-12-15 12:13:24 -0800882 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
883 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000884
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200885 if (unlikely(!curr_skb))
886 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000887 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200888 int num_skb_frags;
889
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200890 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800891 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200892 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200893 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300894 virtio16_to_cpu(vi->vdev,
895 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200896 dev->stats.rx_length_errors++;
897 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000898 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200899
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900900 stats->rx.bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200901 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800902
903 truesize = mergeable_ctx_to_truesize(ctx);
904 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300905 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200906 dev->name, len, (unsigned long)ctx);
907 dev->stats.rx_length_errors++;
908 goto err_skb;
909 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200910
911 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700912 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
913 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200914
915 if (unlikely(!nskb))
916 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700917 if (curr_skb == head_skb)
918 skb_shinfo(curr_skb)->frag_list = nskb;
919 else
920 curr_skb->next = nskb;
921 curr_skb = nskb;
922 head_skb->truesize += nskb->truesize;
923 num_skb_frags = 0;
924 }
925 if (curr_skb != head_skb) {
926 head_skb->data_len += len;
927 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800928 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700929 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200930 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800931 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
932 put_page(page);
933 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800934 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800935 } else {
936 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800937 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800938 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200939 }
940
Johannes Berg5377d7582015-08-19 09:48:40 +0200941 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200942 return head_skb;
943
John Fastabendf600b692016-12-15 12:13:24 -0800944err_xdp:
945 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200946err_skb:
947 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800948 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200949 buf = virtqueue_get_buf(rq->vq, &len);
950 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200951 pr_debug("%s: rx error: %d buffers missing\n",
952 dev->name, num_buf);
953 dev->stats.rx_length_errors++;
954 break;
955 }
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900956 stats->rx.bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200957 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200958 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000959 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200960err_buf:
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +0900961 stats->rx.drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200962 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800963xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200964 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000965}
966
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900967static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
968 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900969 unsigned int *xdp_xmit,
970 struct virtnet_rx_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +1000971{
Jason Wange9d74172012-12-07 07:04:55 +0000972 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000973 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300974 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000975
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300976 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000977 pr_debug("%s: short packet %i\n", dev->name, len);
978 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800979 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200980 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800981 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800982 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800983 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800984 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800985 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900986 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000987 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000988
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200989 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900990 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900991 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200992 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900993 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200994 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900995 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200996
997 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900998 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800999
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001000 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001001
Mike Rapoporte858fae2016-06-08 16:09:21 +03001002 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001003 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001004
Mike Rapoporte858fae2016-06-08 16:09:21 +03001005 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1006 virtio_is_little_endian(vi->vdev))) {
1007 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1008 dev->name, hdr->hdr.gso_type,
1009 hdr->hdr.gso_size);
1010 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001011 }
1012
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001013 skb->protocol = eth_type_trans(skb, dev);
1014 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1015 ntohs(skb->protocol), skb->len, skb->pkt_type);
1016
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001017 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001018 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001019
1020frame_err:
1021 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001022 dev_kfree_skb(skb);
1023}
1024
Jason Wang192f68c2017-07-19 16:54:47 +08001025/* Unlike mergeable buffers, all buffers are allocated to the
1026 * same size, except for the headroom. For this reason we do
1027 * not need to use mergeable_len_to_ctx here - it is enough
1028 * to store the headroom as the context ignoring the truesize.
1029 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001030static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1031 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001032{
Jason Wangf6b10202017-02-21 16:46:28 +08001033 struct page_frag *alloc_frag = &rq->alloc_frag;
1034 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001035 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001036 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001037 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001038 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001039
Jason Wangf6b10202017-02-21 16:46:28 +08001040 len = SKB_DATA_ALIGN(len) +
1041 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1042 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001043 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001044
Jason Wangf6b10202017-02-21 16:46:28 +08001045 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1046 get_page(alloc_frag->page);
1047 alloc_frag->offset += len;
1048 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1049 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001050 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001051 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001052 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001053 return err;
1054}
1055
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001056static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1057 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001058{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001059 struct page *first, *list = NULL;
1060 char *p;
1061 int i, err, offset;
1062
Rusty Russella5835442014-09-11 10:17:36 +09301063 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1064
Jason Wange9d74172012-12-07 07:04:55 +00001065 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001066 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001067 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001068 if (!first) {
1069 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001070 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001071 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001072 }
Jason Wange9d74172012-12-07 07:04:55 +00001073 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001074
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001075 /* chain new page in list head to match sg */
1076 first->private = (unsigned long)list;
1077 list = first;
1078 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001079
Jason Wange9d74172012-12-07 07:04:55 +00001080 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001081 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001082 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001083 return -ENOMEM;
1084 }
1085 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001086
Jason Wange9d74172012-12-07 07:04:55 +00001087 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001088 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1089 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001090
Jason Wange9d74172012-12-07 07:04:55 +00001091 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001092 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001093 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001094
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001095 /* chain first in list head */
1096 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301097 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1098 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001099 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001100 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001101
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001102 return err;
1103}
Herbert Xu97402b92008-04-18 11:24:27 +08001104
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001105static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001106 struct ewma_pkt_len *avg_pkt_len,
1107 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001108{
Michael Daltonab7db912014-01-16 22:23:27 -08001109 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001110 unsigned int len;
1111
Jason Wang3cc81a92018-03-02 17:29:14 +08001112 if (room)
1113 return PAGE_SIZE - room;
1114
1115 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001116 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001117
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001118 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001119}
1120
John Fastabend2de2f7f2017-02-02 19:16:29 -08001121static int add_recvbuf_mergeable(struct virtnet_info *vi,
1122 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001123{
Michael Daltonfb518792014-01-16 22:23:26 -08001124 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001125 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001126 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1127 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001128 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001129 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001130 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001131 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001132
Jason Wang3cc81a92018-03-02 17:29:14 +08001133 /* Extra tailroom is needed to satisfy XDP's assumption. This
1134 * means rx frags coalescing won't work, but consider we've
1135 * disabled GSO for XDP, it won't be a big issue.
1136 */
1137 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1138 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001139 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001140
Michael Daltonfb518792014-01-16 22:23:26 -08001141 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001142 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001143 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001144 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001145 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001146 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001147 /* To avoid internal fragmentation, if there is very likely not
1148 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001149 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001150 */
Michael Daltonfb518792014-01-16 22:23:26 -08001151 len += hole;
1152 alloc_frag->offset += hole;
1153 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001154
Michael Daltonfb518792014-01-16 22:23:26 -08001155 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001156 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001157 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001158 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001159 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001160
1161 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001162}
1163
Rusty Russellb2baed62011-12-29 00:42:38 +00001164/*
1165 * Returns false if we couldn't fill entirely (OOM).
1166 *
1167 * Normally run in the receive path, but can also be run from ndo_open
1168 * before we're receiving packets, or from refill_work which is
1169 * careful to disable receiving (using napi_disable).
1170 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001171static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1172 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001173{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001174 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001175 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001176
Amit Shah0aea51c2009-08-26 14:58:28 +05301177 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001178 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001179 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001180 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001181 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001182 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001183 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001184
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001185 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301186 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001187 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001188 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001189 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001190 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001191}
1192
Rusty Russell18445c42008-02-04 23:49:57 -05001193static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001194{
1195 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001196 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001197
Willem de Bruijne4e84522017-04-24 13:49:26 -04001198 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001199}
1200
Willem de Bruijne4e84522017-04-24 13:49:26 -04001201static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001202{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001203 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001204
1205 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001206 * won't get another interrupt, so process any outstanding packets now.
1207 * Call local_bh_enable after to trigger softIRQ processing.
1208 */
1209 local_bh_disable();
1210 virtqueue_napi_schedule(napi, vq);
1211 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001212}
1213
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001214static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1215 struct virtqueue *vq,
1216 struct napi_struct *napi)
1217{
1218 if (!napi->weight)
1219 return;
1220
1221 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1222 * enable the feature if this is likely affine with the transmit path.
1223 */
1224 if (!vi->affinity_hint_set) {
1225 napi->weight = 0;
1226 return;
1227 }
1228
1229 return virtnet_napi_enable(vq, napi);
1230}
1231
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001232static void virtnet_napi_tx_disable(struct napi_struct *napi)
1233{
1234 if (napi->weight)
1235 napi_disable(napi);
1236}
1237
Rusty Russell3161e452009-08-26 12:22:32 -07001238static void refill_work(struct work_struct *work)
1239{
Jason Wange9d74172012-12-07 07:04:55 +00001240 struct virtnet_info *vi =
1241 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001242 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001243 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001244
Sasha Levin55257d72013-04-29 12:00:08 +09301245 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001246 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001247
Jason Wang986a4f42012-12-07 07:04:56 +00001248 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001249 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001250 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001251
1252 /* In theory, this can happen: if we don't get any buffers in
1253 * we will *never* try to fill again.
1254 */
1255 if (still_empty)
1256 schedule_delayed_work(&vi->refill, HZ/2);
1257 }
Rusty Russell3161e452009-08-26 12:22:32 -07001258}
1259
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001260static int virtnet_receive(struct receive_queue *rq, int budget,
1261 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001262{
Jason Wange9d74172012-12-07 07:04:55 +00001263 struct virtnet_info *vi = rq->vq->vdev->priv;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001264 struct virtnet_rx_stats stats = {};
1265 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001266 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001267 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001268
Jason Wang192f68c2017-07-19 16:54:47 +08001269 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001270 void *ctx;
1271
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001272 while (stats.rx.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001273 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001274 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
1275 stats.rx.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001276 }
1277 } else {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001278 while (stats.rx.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001279 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001280 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
1281 stats.rx.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001282 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001283 }
1284
Jason Wangbe121f42014-01-16 14:45:24 +08001285 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001286 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001287 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001288 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001289
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001290 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001291 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1292 size_t offset = virtnet_rq_stats_desc[i].offset;
1293 u64 *item;
1294
1295 item = (u64 *)((u8 *)&rq->stats.items + offset);
1296 *item += *(u64 *)((u8 *)&stats.rx + offset);
1297 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001298 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001299
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001300 return stats.rx.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001301}
1302
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001303static void free_old_xmit_skbs(struct send_queue *sq)
1304{
1305 struct sk_buff *skb;
1306 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001307 unsigned int packets = 0;
1308 unsigned int bytes = 0;
1309
1310 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1311 pr_debug("Sent skb %p\n", skb);
1312
1313 bytes += skb->len;
1314 packets++;
1315
Eric Dumazetdadc0732017-08-24 09:02:49 -07001316 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001317 }
1318
1319 /* Avoid overhead when no packets have been processed
1320 * happens when called speculatively from start_xmit.
1321 */
1322 if (!packets)
1323 return;
1324
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001325 u64_stats_update_begin(&sq->stats.syncp);
1326 sq->stats.bytes += bytes;
1327 sq->stats.packets += packets;
1328 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001329}
1330
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001331static void virtnet_poll_cleantx(struct receive_queue *rq)
1332{
1333 struct virtnet_info *vi = rq->vq->vdev->priv;
1334 unsigned int index = vq2rxq(rq->vq);
1335 struct send_queue *sq = &vi->sq[index];
1336 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1337
1338 if (!sq->napi.weight)
1339 return;
1340
1341 if (__netif_tx_trylock(txq)) {
1342 free_old_xmit_skbs(sq);
1343 __netif_tx_unlock(txq);
1344 }
1345
1346 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1347 netif_tx_wake_queue(txq);
1348}
1349
Jason Wang2ffa7592014-07-23 16:33:54 +08001350static int virtnet_poll(struct napi_struct *napi, int budget)
1351{
1352 struct receive_queue *rq =
1353 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001354 struct virtnet_info *vi = rq->vq->vdev->priv;
1355 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001356 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001357 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001358
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001359 virtnet_poll_cleantx(rq);
1360
Jason Wang186b3c92017-09-19 17:42:43 +08001361 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001362
Rusty Russell8329d982007-11-19 11:20:43 -05001363 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001364 if (received < budget)
1365 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001366
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001367 if (xdp_xmit & VIRTIO_XDP_REDIR)
1368 xdp_do_flush_map();
1369
1370 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001371 sq = virtnet_xdp_sq(vi);
Jason Wang9267c432018-04-13 14:58:25 +08001372 virtqueue_kick(sq->vq);
Jason Wang9267c432018-04-13 14:58:25 +08001373 }
Jason Wang186b3c92017-09-19 17:42:43 +08001374
Rusty Russell296f96f2007-10-22 11:03:37 +10001375 return received;
1376}
1377
Jason Wang986a4f42012-12-07 07:04:56 +00001378static int virtnet_open(struct net_device *dev)
1379{
1380 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001381 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001382
Jason Wange4166622013-05-21 20:03:58 +00001383 for (i = 0; i < vi->max_queue_pairs; i++) {
1384 if (i < vi->curr_queue_pairs)
1385 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001386 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001387 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001388
1389 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1390 if (err < 0)
1391 return err;
1392
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001393 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1394 MEM_TYPE_PAGE_SHARED, NULL);
1395 if (err < 0) {
1396 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1397 return err;
1398 }
1399
Willem de Bruijne4e84522017-04-24 13:49:26 -04001400 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001401 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001402 }
1403
1404 return 0;
1405}
1406
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001407static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1408{
1409 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1410 struct virtnet_info *vi = sq->vq->vdev->priv;
1411 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1412
1413 __netif_tx_lock(txq, raw_smp_processor_id());
1414 free_old_xmit_skbs(sq);
1415 __netif_tx_unlock(txq);
1416
1417 virtqueue_napi_complete(napi, sq->vq, 0);
1418
1419 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1420 netif_tx_wake_queue(txq);
1421
1422 return 0;
1423}
1424
Jason Wange9d74172012-12-07 07:04:55 +00001425static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001426{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001427 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001428 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001429 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001430 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001431 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301432 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001433
Johannes Berge1749612008-10-27 15:59:26 -07001434 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301435
1436 can_push = vi->any_header_sg &&
1437 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1438 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1439 /* Even if we can, don't push here yet as this would skew
1440 * csum_start offset below. */
1441 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001442 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301443 else
1444 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001445
Mike Rapoporte858fae2016-06-08 16:09:21 +03001446 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001447 virtio_is_little_endian(vi->vdev), false,
1448 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001449 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001450
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001451 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001452 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001453
Jason Wang547c8902015-08-27 14:53:06 +08001454 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301455 if (can_push) {
1456 __skb_push(skb, hdr_len);
1457 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001458 if (unlikely(num_sg < 0))
1459 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301460 /* Pull header back to avoid skew in tx bytes calculations. */
1461 __skb_pull(skb, hdr_len);
1462 } else {
1463 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001464 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1465 if (unlikely(num_sg < 0))
1466 return num_sg;
1467 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301468 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301469 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001470}
1471
Stephen Hemminger424efe92009-08-31 19:50:51 +00001472static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001473{
1474 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001475 int qnum = skb_get_queue_mapping(skb);
1476 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301477 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001478 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1479 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001480 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001481
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001482 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001483 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001484
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001485 if (use_napi && kick)
1486 virtqueue_enable_cb_delayed(sq->vq);
1487
Jacob Keller074c3582014-06-25 02:37:13 +00001488 /* timestamp packet in software */
1489 skb_tx_timestamp(skb);
1490
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001491 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001492 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001493
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301494 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001495 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301496 dev->stats.tx_fifo_errors++;
1497 if (net_ratelimit())
1498 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001499 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001500 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001501 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001502 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001503 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001504
Rusty Russell48925e32009-09-24 09:59:20 -06001505 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001506 if (!use_napi) {
1507 skb_orphan(skb);
1508 nf_reset(skb);
1509 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001510
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001511 /* If running out of space, stop queue to avoid getting packets that we
1512 * are then unable to transmit.
1513 * An alternative would be to force queuing layer to requeue the skb by
1514 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1515 * returned in a normal path of operation: it means that driver is not
1516 * maintaining the TX queue stop/start state properly, and causes
1517 * the stack to do a non-trivial amount of useless work.
1518 * Since most packets only take 1 or 2 ring slots, stopping the queue
1519 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001520 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001521 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001522 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001523 if (!use_napi &&
1524 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001525 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001526 free_old_xmit_skbs(sq);
1527 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001528 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001529 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001530 }
1531 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001532 }
Rusty Russell48925e32009-09-24 09:59:20 -06001533
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001534 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001535 virtqueue_kick(sq->vq);
1536
Rusty Russell48925e32009-09-24 09:59:20 -06001537 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001538}
1539
Amos Kong40cbfc32013-01-21 01:17:21 +00001540/*
1541 * Send command via the control virtqueue and check status. Commands
1542 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001543 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001544 */
1545static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001546 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001547{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301548 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001549 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001550
1551 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301552 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001553
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001554 vi->ctrl->status = ~0;
1555 vi->ctrl->hdr.class = class;
1556 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301557 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001558 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301559 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001560
Rusty Russellf7bc9592013-03-20 15:44:28 +10301561 if (out)
1562 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001563
Rusty Russellf7bc9592013-03-20 15:44:28 +10301564 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001565 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001566 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001567
stephen hemmingerd24bae32013-12-09 16:17:40 -08001568 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301569 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001570
Heinz Graalfs67975902013-10-29 09:40:02 +10301571 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001572 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001573
1574 /* Spin for a response, the kick causes an ioport write, trapping
1575 * into the hypervisor, so the request should be handled immediately.
1576 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301577 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1578 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001579 cpu_relax();
1580
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001581 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001582}
1583
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001584static int virtnet_set_mac_address(struct net_device *dev, void *p)
1585{
1586 struct virtnet_info *vi = netdev_priv(dev);
1587 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001588 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001589 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001590 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001591
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001592 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1593 return -EOPNOTSUPP;
1594
Shyam Saini801822d2016-12-24 00:44:58 +05301595 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001596 if (!addr)
1597 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001598
1599 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001600 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001601 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001602
Amos Kong7e58d5a2013-01-21 01:17:23 +00001603 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1604 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1605 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001606 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001607 dev_warn(&vdev->dev,
1608 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001609 ret = -EINVAL;
1610 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001611 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001612 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1613 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301614 unsigned int i;
1615
1616 /* Naturally, this has an atomicity problem. */
1617 for (i = 0; i < dev->addr_len; i++)
1618 virtio_cwrite8(vdev,
1619 offsetof(struct virtio_net_config, mac) +
1620 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001621 }
1622
1623 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001624 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001625
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001626out:
1627 kfree(addr);
1628 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001629}
1630
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001631static void virtnet_stats(struct net_device *dev,
1632 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001633{
1634 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001635 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001636 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001637
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001638 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001639 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001640 struct receive_queue *rq = &vi->rq[i];
1641 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001642
1643 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001644 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1645 tpackets = sq->stats.packets;
1646 tbytes = sq->stats.bytes;
1647 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001648
1649 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001650 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001651 rpackets = rq->stats.items.packets;
1652 rbytes = rq->stats.items.bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001653 rdrops = rq->stats.items.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001654 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001655
1656 tot->rx_packets += rpackets;
1657 tot->tx_packets += tpackets;
1658 tot->rx_bytes += rbytes;
1659 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001660 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001661 }
1662
1663 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001664 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001665 tot->rx_length_errors = dev->stats.rx_length_errors;
1666 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001667}
1668
Amit Shahda74e892008-02-29 16:24:50 +05301669#ifdef CONFIG_NET_POLL_CONTROLLER
1670static void virtnet_netpoll(struct net_device *dev)
1671{
1672 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001673 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301674
Jason Wang986a4f42012-12-07 07:04:56 +00001675 for (i = 0; i < vi->curr_queue_pairs; i++)
1676 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301677}
1678#endif
1679
Jason Wang586d17c2012-04-11 20:43:52 +00001680static void virtnet_ack_link_announce(struct virtnet_info *vi)
1681{
1682 rtnl_lock();
1683 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001684 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001685 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1686 rtnl_unlock();
1687}
1688
John Fastabend473153292017-02-02 19:14:32 -08001689static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001690{
1691 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001692 struct net_device *dev = vi->dev;
1693
1694 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1695 return 0;
1696
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001697 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1698 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001699
1700 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001701 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001702 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1703 queue_pairs);
1704 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301705 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001706 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001707 /* virtnet_open() will refill when device is going to up. */
1708 if (dev->flags & IFF_UP)
1709 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301710 }
Jason Wang986a4f42012-12-07 07:04:56 +00001711
1712 return 0;
1713}
1714
John Fastabend473153292017-02-02 19:14:32 -08001715static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1716{
1717 int err;
1718
1719 rtnl_lock();
1720 err = _virtnet_set_queues(vi, queue_pairs);
1721 rtnl_unlock();
1722 return err;
1723}
1724
Rusty Russell296f96f2007-10-22 11:03:37 +10001725static int virtnet_close(struct net_device *dev)
1726{
1727 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001728 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001729
Rusty Russellb2baed62011-12-29 00:42:38 +00001730 /* Make sure refill_work doesn't re-enable napi! */
1731 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001732
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001733 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001734 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001735 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001736 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001737 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001738
Rusty Russell296f96f2007-10-22 11:03:37 +10001739 return 0;
1740}
1741
Alex Williamson2af76982009-02-04 09:02:40 +00001742static void virtnet_set_rx_mode(struct net_device *dev)
1743{
1744 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001745 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001746 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001747 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001748 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001749 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001750 void *buf;
1751 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001752
stephen hemminger788a8b62013-12-09 16:18:45 -08001753 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001754 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1755 return;
1756
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001757 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1758 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001759
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001760 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001761
1762 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001763 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001764 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001765 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001766
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001767 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001768
1769 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001770 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001771 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001772 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001773
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001774 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001775 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001776 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001777 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1778 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1779 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001780 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001781 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001782
Alex Williamson23e258e2009-05-01 17:27:56 +00001783 sg_init_table(sg, 2);
1784
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001785 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001786 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001787 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001788 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001789 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001790
1791 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001792 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001793
1794 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001795 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001796
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001797 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001798 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001799 netdev_for_each_mc_addr(ha, dev)
1800 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001801
1802 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001803 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001804
1805 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001806 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001807 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001808
1809 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001810}
1811
Patrick McHardy80d5c362013-04-19 02:04:28 +00001812static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1813 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001814{
1815 struct virtnet_info *vi = netdev_priv(dev);
1816 struct scatterlist sg;
1817
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001818 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001819 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001820
1821 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001822 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001823 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001824 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001825}
1826
Patrick McHardy80d5c362013-04-19 02:04:28 +00001827static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1828 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001829{
1830 struct virtnet_info *vi = netdev_priv(dev);
1831 struct scatterlist sg;
1832
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001833 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001834 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001835
1836 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001837 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001838 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001839 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001840}
1841
Wanlong Gao8898c212013-01-24 23:51:30 +00001842static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001843{
1844 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001845
1846 if (vi->affinity_hint_set) {
1847 for (i = 0; i < vi->max_queue_pairs; i++) {
1848 virtqueue_set_affinity(vi->rq[i].vq, -1);
1849 virtqueue_set_affinity(vi->sq[i].vq, -1);
1850 }
1851
1852 vi->affinity_hint_set = false;
1853 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001854}
1855
1856static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001857{
1858 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001859 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001860
1861 /* In multiqueue mode, when the number of cpu is equal to the number of
1862 * queue pairs, we let the queue pairs to be private to one cpu by
1863 * setting the affinity hint to eliminate the contention.
1864 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001865 if (vi->curr_queue_pairs == 1 ||
1866 vi->max_queue_pairs != num_online_cpus()) {
1867 virtnet_clean_affinity(vi, -1);
1868 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001869 }
1870
Wanlong Gao8898c212013-01-24 23:51:30 +00001871 i = 0;
1872 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001873 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1874 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001875 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001876 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001877 }
1878
Wanlong Gao8898c212013-01-24 23:51:30 +00001879 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001880}
1881
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001882static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001883{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001884 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1885 node);
1886 virtnet_set_affinity(vi);
1887 return 0;
1888}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001889
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001890static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1891{
1892 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1893 node_dead);
1894 virtnet_set_affinity(vi);
1895 return 0;
1896}
Jason Wang3ab098d2013-10-15 11:18:58 +08001897
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001898static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1899{
1900 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1901 node);
1902
1903 virtnet_clean_affinity(vi, cpu);
1904 return 0;
1905}
1906
1907static enum cpuhp_state virtionet_online;
1908
1909static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1910{
1911 int ret;
1912
1913 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1914 if (ret)
1915 return ret;
1916 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1917 &vi->node_dead);
1918 if (!ret)
1919 return ret;
1920 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1921 return ret;
1922}
1923
1924static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1925{
1926 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1927 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1928 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001929}
1930
Rick Jones8f9f4662011-10-19 08:10:59 +00001931static void virtnet_get_ringparam(struct net_device *dev,
1932 struct ethtool_ringparam *ring)
1933{
1934 struct virtnet_info *vi = netdev_priv(dev);
1935
Jason Wang986a4f42012-12-07 07:04:56 +00001936 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1937 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001938 ring->rx_pending = ring->rx_max_pending;
1939 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001940}
1941
Rick Jones66846042011-11-14 14:17:08 +00001942
1943static void virtnet_get_drvinfo(struct net_device *dev,
1944 struct ethtool_drvinfo *info)
1945{
1946 struct virtnet_info *vi = netdev_priv(dev);
1947 struct virtio_device *vdev = vi->vdev;
1948
1949 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1950 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1951 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1952
1953}
1954
Jason Wangd73bcd22012-12-07 07:04:57 +00001955/* TODO: Eliminate OOO packets during switching */
1956static int virtnet_set_channels(struct net_device *dev,
1957 struct ethtool_channels *channels)
1958{
1959 struct virtnet_info *vi = netdev_priv(dev);
1960 u16 queue_pairs = channels->combined_count;
1961 int err;
1962
1963 /* We don't support separate rx/tx channels.
1964 * We don't allow setting 'other' channels.
1965 */
1966 if (channels->rx_count || channels->tx_count || channels->other_count)
1967 return -EINVAL;
1968
Amos Kongc18e9cd2014-04-18 13:45:41 +08001969 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001970 return -EINVAL;
1971
John Fastabendf600b692016-12-15 12:13:24 -08001972 /* For now we don't support modifying channels while XDP is loaded
1973 * also when XDP is loaded all RX queues have XDP programs so we only
1974 * need to check a single RX queue.
1975 */
1976 if (vi->rq[0].xdp_prog)
1977 return -EINVAL;
1978
Wanlong Gao47be2472013-01-24 23:51:29 +00001979 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001980 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001981 if (!err) {
1982 netif_set_real_num_tx_queues(dev, queue_pairs);
1983 netif_set_real_num_rx_queues(dev, queue_pairs);
1984
Wanlong Gao8898c212013-01-24 23:51:30 +00001985 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001986 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001987 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001988
1989 return err;
1990}
1991
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001992static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1993{
1994 struct virtnet_info *vi = netdev_priv(dev);
1995 char *p = (char *)data;
1996 unsigned int i, j;
1997
1998 switch (stringset) {
1999 case ETH_SS_STATS:
2000 for (i = 0; i < vi->curr_queue_pairs; i++) {
2001 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2002 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2003 i, virtnet_rq_stats_desc[j].desc);
2004 p += ETH_GSTRING_LEN;
2005 }
2006 }
2007
2008 for (i = 0; i < vi->curr_queue_pairs; i++) {
2009 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2010 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2011 i, virtnet_sq_stats_desc[j].desc);
2012 p += ETH_GSTRING_LEN;
2013 }
2014 }
2015 break;
2016 }
2017}
2018
2019static int virtnet_get_sset_count(struct net_device *dev, int sset)
2020{
2021 struct virtnet_info *vi = netdev_priv(dev);
2022
2023 switch (sset) {
2024 case ETH_SS_STATS:
2025 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2026 VIRTNET_SQ_STATS_LEN);
2027 default:
2028 return -EOPNOTSUPP;
2029 }
2030}
2031
2032static void virtnet_get_ethtool_stats(struct net_device *dev,
2033 struct ethtool_stats *stats, u64 *data)
2034{
2035 struct virtnet_info *vi = netdev_priv(dev);
2036 unsigned int idx = 0, start, i, j;
2037 const u8 *stats_base;
2038 size_t offset;
2039
2040 for (i = 0; i < vi->curr_queue_pairs; i++) {
2041 struct receive_queue *rq = &vi->rq[i];
2042
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09002043 stats_base = (u8 *)&rq->stats.items;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002044 do {
2045 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2046 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2047 offset = virtnet_rq_stats_desc[j].offset;
2048 data[idx + j] = *(u64 *)(stats_base + offset);
2049 }
2050 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2051 idx += VIRTNET_RQ_STATS_LEN;
2052 }
2053
2054 for (i = 0; i < vi->curr_queue_pairs; i++) {
2055 struct send_queue *sq = &vi->sq[i];
2056
2057 stats_base = (u8 *)&sq->stats;
2058 do {
2059 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2060 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2061 offset = virtnet_sq_stats_desc[j].offset;
2062 data[idx + j] = *(u64 *)(stats_base + offset);
2063 }
2064 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2065 idx += VIRTNET_SQ_STATS_LEN;
2066 }
2067}
2068
Jason Wangd73bcd22012-12-07 07:04:57 +00002069static void virtnet_get_channels(struct net_device *dev,
2070 struct ethtool_channels *channels)
2071{
2072 struct virtnet_info *vi = netdev_priv(dev);
2073
2074 channels->combined_count = vi->curr_queue_pairs;
2075 channels->max_combined = vi->max_queue_pairs;
2076 channels->max_other = 0;
2077 channels->rx_count = 0;
2078 channels->tx_count = 0;
2079 channels->other_count = 0;
2080}
2081
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002082/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002083static bool
2084virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002085{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002086 struct ethtool_link_ksettings diff1 = *cmd;
2087 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002088
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002089 /* cmd is always set so we need to clear it, validate the port type
2090 * and also without autonegotiation we can ignore advertising
2091 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002092 diff1.base.speed = 0;
2093 diff2.base.port = PORT_OTHER;
2094 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2095 diff1.base.duplex = 0;
2096 diff1.base.cmd = 0;
2097 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002098
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002099 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2100 bitmap_empty(diff1.link_modes.supported,
2101 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2102 bitmap_empty(diff1.link_modes.advertising,
2103 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2104 bitmap_empty(diff1.link_modes.lp_advertising,
2105 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002106}
2107
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002108static int virtnet_set_link_ksettings(struct net_device *dev,
2109 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002110{
2111 struct virtnet_info *vi = netdev_priv(dev);
2112 u32 speed;
2113
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002114 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002115 /* don't allow custom speed and duplex */
2116 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002117 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002118 !virtnet_validate_ethtool_cmd(cmd))
2119 return -EINVAL;
2120 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002121 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002122
2123 return 0;
2124}
2125
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002126static int virtnet_get_link_ksettings(struct net_device *dev,
2127 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002128{
2129 struct virtnet_info *vi = netdev_priv(dev);
2130
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002131 cmd->base.speed = vi->speed;
2132 cmd->base.duplex = vi->duplex;
2133 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002134
2135 return 0;
2136}
2137
2138static void virtnet_init_settings(struct net_device *dev)
2139{
2140 struct virtnet_info *vi = netdev_priv(dev);
2141
2142 vi->speed = SPEED_UNKNOWN;
2143 vi->duplex = DUPLEX_UNKNOWN;
2144}
2145
Jason Baronfaa9b392018-01-05 17:44:54 -05002146static void virtnet_update_settings(struct virtnet_info *vi)
2147{
2148 u32 speed;
2149 u8 duplex;
2150
2151 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2152 return;
2153
2154 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2155 speed));
2156 if (ethtool_validate_speed(speed))
2157 vi->speed = speed;
2158 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2159 duplex));
2160 if (ethtool_validate_duplex(duplex))
2161 vi->duplex = duplex;
2162}
2163
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002164static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002165 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002166 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002167 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002168 .get_strings = virtnet_get_strings,
2169 .get_sset_count = virtnet_get_sset_count,
2170 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002171 .set_channels = virtnet_set_channels,
2172 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002173 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002174 .get_link_ksettings = virtnet_get_link_ksettings,
2175 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002176};
2177
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002178static void virtnet_freeze_down(struct virtio_device *vdev)
2179{
2180 struct virtnet_info *vi = vdev->priv;
2181 int i;
2182
2183 /* Make sure no work handler is accessing the device */
2184 flush_work(&vi->config_work);
2185
2186 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08002187 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002188 cancel_delayed_work_sync(&vi->refill);
2189
2190 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002191 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002192 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002193 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002194 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002195 }
2196}
2197
2198static int init_vqs(struct virtnet_info *vi);
2199
2200static int virtnet_restore_up(struct virtio_device *vdev)
2201{
2202 struct virtnet_info *vi = vdev->priv;
2203 int err, i;
2204
2205 err = init_vqs(vi);
2206 if (err)
2207 return err;
2208
2209 virtio_device_ready(vdev);
2210
2211 if (netif_running(vi->dev)) {
2212 for (i = 0; i < vi->curr_queue_pairs; i++)
2213 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2214 schedule_delayed_work(&vi->refill, 0);
2215
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002216 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002217 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002218 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2219 &vi->sq[i].napi);
2220 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002221 }
2222
2223 netif_device_attach(vi->dev);
2224 return err;
2225}
2226
Jason Wang3f935222017-07-19 16:54:49 +08002227static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2228{
2229 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002230 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002231
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002232 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002233
2234 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2235 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2236 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2237 return -EINVAL;
2238 }
2239
2240 return 0;
2241}
2242
2243static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2244{
2245 u64 offloads = 0;
2246
2247 if (!vi->guest_offloads)
2248 return 0;
2249
2250 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2251 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2252
2253 return virtnet_set_guest_offloads(vi, offloads);
2254}
2255
2256static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2257{
2258 u64 offloads = vi->guest_offloads;
2259
2260 if (!vi->guest_offloads)
2261 return 0;
2262 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2263 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2264
2265 return virtnet_set_guest_offloads(vi, offloads);
2266}
2267
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002268static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2269 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002270{
2271 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2272 struct virtnet_info *vi = netdev_priv(dev);
2273 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002274 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002275 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002276
Jason Wang3f935222017-07-19 16:54:49 +08002277 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2278 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2279 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2280 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2281 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002282 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first");
John Fastabendf600b692016-12-15 12:13:24 -08002283 return -EOPNOTSUPP;
2284 }
2285
2286 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002287 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002288 return -EINVAL;
2289 }
2290
2291 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002292 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002293 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2294 return -EINVAL;
2295 }
2296
John Fastabend672aafd2016-12-15 12:13:49 -08002297 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2298 if (prog)
2299 xdp_qp = nr_cpu_ids;
2300
2301 /* XDP requires extra queues for XDP_TX */
2302 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002303 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002304 netdev_warn(dev, "request %i queues but max is %i\n",
2305 curr_qp + xdp_qp, vi->max_queue_pairs);
2306 return -ENOMEM;
2307 }
2308
John Fastabend2de2f7f2017-02-02 19:16:29 -08002309 if (prog) {
2310 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2311 if (IS_ERR(prog))
2312 return PTR_ERR(prog);
2313 }
2314
Jason Wang4941d472017-07-19 16:54:48 +08002315 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002316 if (netif_running(dev))
2317 for (i = 0; i < vi->max_queue_pairs; i++)
2318 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002319
John Fastabend672aafd2016-12-15 12:13:49 -08002320 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002321 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2322 if (err)
2323 goto err;
2324 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002325
John Fastabendf600b692016-12-15 12:13:24 -08002326 for (i = 0; i < vi->max_queue_pairs; i++) {
2327 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2328 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002329 if (i == 0) {
2330 if (!old_prog)
2331 virtnet_clear_guest_offloads(vi);
2332 if (!prog)
2333 virtnet_restore_guest_offloads(vi);
2334 }
John Fastabendf600b692016-12-15 12:13:24 -08002335 if (old_prog)
2336 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002337 if (netif_running(dev))
2338 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002339 }
2340
2341 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002342
Jason Wang4941d472017-07-19 16:54:48 +08002343err:
2344 for (i = 0; i < vi->max_queue_pairs; i++)
2345 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002346 if (prog)
2347 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2348 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002349}
2350
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002351static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002352{
2353 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002354 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002355 int i;
2356
2357 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002358 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2359 if (xdp_prog)
2360 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002361 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002362 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002363}
2364
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002365static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002366{
2367 switch (xdp->command) {
2368 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002369 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002370 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002371 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002372 return 0;
2373 default:
2374 return -EINVAL;
2375 }
2376}
2377
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002378static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2379 size_t len)
2380{
2381 struct virtnet_info *vi = netdev_priv(dev);
2382 int ret;
2383
2384 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2385 return -EOPNOTSUPP;
2386
2387 ret = snprintf(buf, len, "sby");
2388 if (ret >= len)
2389 return -EOPNOTSUPP;
2390
2391 return 0;
2392}
2393
Stephen Hemminger76288b42009-01-06 10:44:22 -08002394static const struct net_device_ops virtnet_netdev = {
2395 .ndo_open = virtnet_open,
2396 .ndo_stop = virtnet_close,
2397 .ndo_start_xmit = start_xmit,
2398 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002399 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002400 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002401 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002402 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2403 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002404#ifdef CONFIG_NET_POLL_CONTROLLER
2405 .ndo_poll_controller = virtnet_netpoll,
2406#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002407 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002408 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002409 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002410 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002411};
2412
Jason Wang586d17c2012-04-11 20:43:52 +00002413static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002414{
Jason Wang586d17c2012-04-11 20:43:52 +00002415 struct virtnet_info *vi =
2416 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002417 u16 v;
2418
Rusty Russell855e0c52013-10-14 18:11:51 +10302419 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2420 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302421 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002422
2423 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002424 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002425 virtnet_ack_link_announce(vi);
2426 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002427
2428 /* Ignore unknown (future) status bits */
2429 v &= VIRTIO_NET_S_LINK_UP;
2430
2431 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302432 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002433
2434 vi->status = v;
2435
2436 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002437 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002438 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002439 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002440 } else {
2441 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002442 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002443 }
2444}
2445
2446static void virtnet_config_changed(struct virtio_device *vdev)
2447{
2448 struct virtnet_info *vi = vdev->priv;
2449
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002450 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002451}
2452
Jason Wang986a4f42012-12-07 07:04:56 +00002453static void virtnet_free_queues(struct virtnet_info *vi)
2454{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002455 int i;
2456
Jason Wangab3971b2015-03-12 13:57:44 +08002457 for (i = 0; i < vi->max_queue_pairs; i++) {
2458 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002459 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002460 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002461 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002462
Eric Dumazet963abe52016-11-15 22:24:12 -08002463 /* We called napi_hash_del() before netif_napi_del(),
2464 * we need to respect an RCU grace period before freeing vi->rq
2465 */
2466 synchronize_net();
2467
Jason Wang986a4f42012-12-07 07:04:56 +00002468 kfree(vi->rq);
2469 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002470 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002471}
2472
John Fastabend473153292017-02-02 19:14:32 -08002473static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002474{
John Fastabendf600b692016-12-15 12:13:24 -08002475 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002476 int i;
2477
2478 for (i = 0; i < vi->max_queue_pairs; i++) {
2479 while (vi->rq[i].pages)
2480 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002481
2482 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2483 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2484 if (old_prog)
2485 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002486 }
John Fastabend473153292017-02-02 19:14:32 -08002487}
2488
2489static void free_receive_bufs(struct virtnet_info *vi)
2490{
2491 rtnl_lock();
2492 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002493 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002494}
2495
Michael Daltonfb518792014-01-16 22:23:26 -08002496static void free_receive_page_frags(struct virtnet_info *vi)
2497{
2498 int i;
2499 for (i = 0; i < vi->max_queue_pairs; i++)
2500 if (vi->rq[i].alloc_frag.page)
2501 put_page(vi->rq[i].alloc_frag.page);
2502}
2503
John Fastabendb68df012017-01-25 18:22:48 -08002504static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002505{
2506 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2507 return false;
2508 else if (q < vi->curr_queue_pairs)
2509 return true;
2510 else
2511 return false;
2512}
2513
Jason Wang986a4f42012-12-07 07:04:56 +00002514static void free_unused_bufs(struct virtnet_info *vi)
2515{
2516 void *buf;
2517 int i;
2518
2519 for (i = 0; i < vi->max_queue_pairs; i++) {
2520 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002521 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002522 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002523 dev_kfree_skb(buf);
2524 else
2525 put_page(virt_to_head_page(buf));
2526 }
Jason Wang986a4f42012-12-07 07:04:56 +00002527 }
2528
2529 for (i = 0; i < vi->max_queue_pairs; i++) {
2530 struct virtqueue *vq = vi->rq[i].vq;
2531
2532 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002533 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002534 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002535 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002536 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002537 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002538 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002539 }
Jason Wang986a4f42012-12-07 07:04:56 +00002540 }
Jason Wang986a4f42012-12-07 07:04:56 +00002541 }
2542}
2543
Jason Wange9d74172012-12-07 07:04:55 +00002544static void virtnet_del_vqs(struct virtnet_info *vi)
2545{
2546 struct virtio_device *vdev = vi->vdev;
2547
Wanlong Gao8898c212013-01-24 23:51:30 +00002548 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002549
Jason Wange9d74172012-12-07 07:04:55 +00002550 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002551
2552 virtnet_free_queues(vi);
2553}
2554
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002555/* How large should a single buffer be so a queue full of these can fit at
2556 * least one full packet?
2557 * Logic below assumes the mergeable buffer header is used.
2558 */
2559static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2560{
2561 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2562 unsigned int rq_size = virtqueue_get_vring_size(vq);
2563 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2564 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2565 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2566
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002567 return max(max(min_buf_len, hdr_len) - hdr_len,
2568 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002569}
2570
Jason Wang986a4f42012-12-07 07:04:56 +00002571static int virtnet_find_vqs(struct virtnet_info *vi)
2572{
2573 vq_callback_t **callbacks;
2574 struct virtqueue **vqs;
2575 int ret = -ENOMEM;
2576 int i, total_vqs;
2577 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002578 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002579
2580 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2581 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2582 * possible control vq.
2583 */
2584 total_vqs = vi->max_queue_pairs * 2 +
2585 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2586
2587 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002588 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002589 if (!vqs)
2590 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002591 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002592 if (!callbacks)
2593 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002594 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002595 if (!names)
2596 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002597 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002598 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002599 if (!ctx)
2600 goto err_ctx;
2601 } else {
2602 ctx = NULL;
2603 }
Jason Wang986a4f42012-12-07 07:04:56 +00002604
2605 /* Parameters for control virtqueue, if any */
2606 if (vi->has_cvq) {
2607 callbacks[total_vqs - 1] = NULL;
2608 names[total_vqs - 1] = "control";
2609 }
2610
2611 /* Allocate/initialize parameters for send/receive virtqueues */
2612 for (i = 0; i < vi->max_queue_pairs; i++) {
2613 callbacks[rxq2vq(i)] = skb_recv_done;
2614 callbacks[txq2vq(i)] = skb_xmit_done;
2615 sprintf(vi->rq[i].name, "input.%d", i);
2616 sprintf(vi->sq[i].name, "output.%d", i);
2617 names[rxq2vq(i)] = vi->rq[i].name;
2618 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002619 if (ctx)
2620 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002621 }
2622
2623 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002624 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002625 if (ret)
2626 goto err_find;
2627
2628 if (vi->has_cvq) {
2629 vi->cvq = vqs[total_vqs - 1];
2630 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002631 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002632 }
2633
2634 for (i = 0; i < vi->max_queue_pairs; i++) {
2635 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002636 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002637 vi->sq[i].vq = vqs[txq2vq(i)];
2638 }
2639
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002640 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002641
Jason Wang986a4f42012-12-07 07:04:56 +00002642
2643err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002644 kfree(ctx);
2645err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002646 kfree(names);
2647err_names:
2648 kfree(callbacks);
2649err_callback:
2650 kfree(vqs);
2651err_vq:
2652 return ret;
2653}
2654
2655static int virtnet_alloc_queues(struct virtnet_info *vi)
2656{
2657 int i;
2658
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002659 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2660 if (!vi->ctrl)
2661 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002662 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002663 if (!vi->sq)
2664 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002665 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002666 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002667 goto err_rq;
2668
2669 INIT_DELAYED_WORK(&vi->refill, refill_work);
2670 for (i = 0; i < vi->max_queue_pairs; i++) {
2671 vi->rq[i].pages = NULL;
2672 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2673 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002674 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2675 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002676
2677 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002678 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002679 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002680
2681 u64_stats_init(&vi->rq[i].stats.syncp);
2682 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002683 }
2684
2685 return 0;
2686
2687err_rq:
2688 kfree(vi->sq);
2689err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002690 kfree(vi->ctrl);
2691err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002692 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002693}
2694
Amit Shah3f9c10b2011-12-22 16:58:31 +05302695static int init_vqs(struct virtnet_info *vi)
2696{
Jason Wang986a4f42012-12-07 07:04:56 +00002697 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302698
Jason Wang986a4f42012-12-07 07:04:56 +00002699 /* Allocate send & receive queues */
2700 ret = virtnet_alloc_queues(vi);
2701 if (ret)
2702 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302703
Jason Wang986a4f42012-12-07 07:04:56 +00002704 ret = virtnet_find_vqs(vi);
2705 if (ret)
2706 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302707
Wanlong Gao47be2472013-01-24 23:51:29 +00002708 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002709 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002710 put_online_cpus();
2711
Amit Shah3f9c10b2011-12-22 16:58:31 +05302712 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002713
2714err_free:
2715 virtnet_free_queues(vi);
2716err:
2717 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302718}
2719
Michael Daltonfbf28d72014-01-16 22:23:30 -08002720#ifdef CONFIG_SYSFS
2721static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002722 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002723{
2724 struct virtnet_info *vi = netdev_priv(queue->dev);
2725 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002726 unsigned int headroom = virtnet_get_headroom(vi);
2727 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002728 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002729
2730 BUG_ON(queue_index >= vi->max_queue_pairs);
2731 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002732 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002733 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2734 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002735}
2736
2737static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2738 __ATTR_RO(mergeable_rx_buffer_size);
2739
2740static struct attribute *virtio_net_mrg_rx_attrs[] = {
2741 &mergeable_rx_buffer_size_attribute.attr,
2742 NULL
2743};
2744
2745static const struct attribute_group virtio_net_mrg_rx_group = {
2746 .name = "virtio_net",
2747 .attrs = virtio_net_mrg_rx_attrs
2748};
2749#endif
2750
Jason Wang892d6eb2014-11-20 17:03:05 +08002751static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2752 unsigned int fbit,
2753 const char *fname, const char *dname)
2754{
2755 if (!virtio_has_feature(vdev, fbit))
2756 return false;
2757
2758 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2759 fname, dname);
2760
2761 return true;
2762}
2763
2764#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2765 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2766
2767static bool virtnet_validate_features(struct virtio_device *vdev)
2768{
2769 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2770 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2771 "VIRTIO_NET_F_CTRL_VQ") ||
2772 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2773 "VIRTIO_NET_F_CTRL_VQ") ||
2774 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2775 "VIRTIO_NET_F_CTRL_VQ") ||
2776 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2777 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2778 "VIRTIO_NET_F_CTRL_VQ"))) {
2779 return false;
2780 }
2781
2782 return true;
2783}
2784
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002785#define MIN_MTU ETH_MIN_MTU
2786#define MAX_MTU ETH_MAX_MTU
2787
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002788static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002789{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002790 if (!vdev->config->get) {
2791 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2792 __func__);
2793 return -EINVAL;
2794 }
2795
Jason Wang892d6eb2014-11-20 17:03:05 +08002796 if (!virtnet_validate_features(vdev))
2797 return -EINVAL;
2798
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002799 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2800 int mtu = virtio_cread16(vdev,
2801 offsetof(struct virtio_net_config,
2802 mtu));
2803 if (mtu < MIN_MTU)
2804 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2805 }
2806
2807 return 0;
2808}
2809
2810static int virtnet_probe(struct virtio_device *vdev)
2811{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002812 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002813 struct net_device *dev;
2814 struct virtnet_info *vi;
2815 u16 max_queue_pairs;
2816 int mtu;
2817
Jason Wang986a4f42012-12-07 07:04:56 +00002818 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302819 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2820 struct virtio_net_config,
2821 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002822
2823 /* We need at least 2 queue's */
2824 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2825 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2826 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2827 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002828
2829 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002830 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002831 if (!dev)
2832 return -ENOMEM;
2833
2834 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002835 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002836 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002837 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002838
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002839 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002840 SET_NETDEV_DEV(dev, &vdev->dev);
2841
2842 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002843 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002844 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002845 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002846 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002847 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002848
2849 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002850 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002851 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2852 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002853 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002854 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2855 dev->hw_features |= NETIF_F_TSO;
2856 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2857 dev->hw_features |= NETIF_F_TSO6;
2858 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2859 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002860
Jason Wang41f2f122014-12-24 11:03:52 +08002861 dev->features |= NETIF_F_GSO_ROBUST;
2862
Michał Mirosław98e778c2011-03-31 01:01:35 +00002863 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002864 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002865 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002866 }
Thomas Huth4f491292013-08-27 17:09:02 +02002867 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2868 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002869
Jason Wang4fda8302013-04-10 23:32:21 +00002870 dev->vlan_features = dev->features;
2871
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002872 /* MTU range: 68 - 65535 */
2873 dev->min_mtu = MIN_MTU;
2874 dev->max_mtu = MAX_MTU;
2875
Rusty Russell296f96f2007-10-22 11:03:37 +10002876 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302877 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2878 virtio_cread_bytes(vdev,
2879 offsetof(struct virtio_net_config, mac),
2880 dev->dev_addr, dev->addr_len);
2881 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002882 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002883
2884 /* Set up our device-specific information */
2885 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002886 vi->dev = dev;
2887 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002888 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002889
Jason Wang586d17c2012-04-11 20:43:52 +00002890 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002891
Herbert Xu97402b92008-04-18 11:24:27 +08002892 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002893 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2894 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002895 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2896 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002897 vi->big_packets = true;
2898
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002899 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2900 vi->mergeable_rx_bufs = true;
2901
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002902 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2903 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002904 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2905 else
2906 vi->hdr_len = sizeof(struct virtio_net_hdr);
2907
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002908 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2909 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302910 vi->any_header_sg = true;
2911
Jason Wang986a4f42012-12-07 07:04:56 +00002912 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2913 vi->has_cvq = true;
2914
Aaron Conole14de9d12016-06-03 16:57:12 -04002915 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2916 mtu = virtio_cread16(vdev,
2917 offsetof(struct virtio_net_config,
2918 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002919 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002920 /* Should never trigger: MTU was previously validated
2921 * in virtnet_validate.
2922 */
2923 dev_err(&vdev->dev, "device MTU appears to have changed "
2924 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002925 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04002926 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002927
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002928 dev->mtu = mtu;
2929 dev->max_mtu = mtu;
2930
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002931 /* TODO: size buffers correctly in this case. */
2932 if (dev->mtu > ETH_DATA_LEN)
2933 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002934 }
2935
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002936 if (vi->any_header_sg)
2937 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002938
Jason Wang44900012016-11-25 12:37:26 +08002939 /* Enable multiqueue by default */
2940 if (num_online_cpus() >= max_queue_pairs)
2941 vi->curr_queue_pairs = max_queue_pairs;
2942 else
2943 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002944 vi->max_queue_pairs = max_queue_pairs;
2945
2946 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302947 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002948 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002949 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002950
Michael Daltonfbf28d72014-01-16 22:23:30 -08002951#ifdef CONFIG_SYSFS
2952 if (vi->mergeable_rx_bufs)
2953 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2954#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002955 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2956 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002957
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002958 virtnet_init_settings(dev);
2959
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002960 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
2961 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00002962 if (IS_ERR(vi->failover)) {
2963 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002964 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00002965 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002966 }
2967
Rusty Russell296f96f2007-10-22 11:03:37 +10002968 err = register_netdev(dev);
2969 if (err) {
2970 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002971 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10002972 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002973
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302974 virtio_device_ready(vdev);
2975
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002976 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002977 if (err) {
2978 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002979 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002980 }
2981
Jason Wanga2208712016-12-13 14:23:05 +08002982 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002983
Jason Wang167c25e2010-11-10 14:45:41 +00002984 /* Assume link up if device can't report link status,
2985 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00002986 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00002987 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002988 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002989 } else {
2990 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05002991 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00002992 netif_carrier_on(dev);
2993 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002994
Jason Wang3f935222017-07-19 16:54:49 +08002995 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2996 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2997 set_bit(guest_offloads[i], &vi->guest_offloads);
2998
Jason Wang986a4f42012-12-07 07:04:56 +00002999 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3000 dev->name, max_queue_pairs);
3001
Rusty Russell296f96f2007-10-22 11:03:37 +10003002 return 0;
3003
wangyunjianf00e35e2016-05-31 11:52:43 +08003004free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303005 vi->vdev->config->reset(vdev);
3006
Rusty Russellb3369c12008-02-04 23:50:02 -05003007 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003008free_failover:
3009 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003010free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003011 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003012 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003013 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003014free:
3015 free_netdev(dev);
3016 return err;
3017}
3018
Amit Shah04486ed2011-12-22 16:58:32 +05303019static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003020{
Amit Shah04486ed2011-12-22 16:58:32 +05303021 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003022
3023 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003024 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003025
Jason Wang986a4f42012-12-07 07:04:56 +00003026 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003027
Michael Daltonfb518792014-01-16 22:23:26 -08003028 free_receive_page_frags(vi);
3029
Jason Wang986a4f42012-12-07 07:04:56 +00003030 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303031}
3032
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003033static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303034{
3035 struct virtnet_info *vi = vdev->priv;
3036
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003037 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003038
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303039 /* Make sure no work handler is accessing the device. */
3040 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003041
Amit Shah04486ed2011-12-22 16:58:32 +05303042 unregister_netdev(vi->dev);
3043
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003044 net_failover_destroy(vi->failover);
3045
Amit Shah04486ed2011-12-22 16:58:32 +05303046 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003047
Rusty Russell74b25532007-11-19 11:20:42 -05003048 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003049}
3050
Arnd Bergmann67a75192017-07-25 17:35:50 +02003051static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303052{
3053 struct virtnet_info *vi = vdev->priv;
3054
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003055 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003056 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303057 remove_vq_common(vi);
3058
3059 return 0;
3060}
3061
Arnd Bergmann67a75192017-07-25 17:35:50 +02003062static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303063{
3064 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003065 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303066
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003067 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303068 if (err)
3069 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003070 virtnet_set_queues(vi, vi->curr_queue_pairs);
3071
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003072 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003073 if (err)
3074 return err;
3075
Amit Shah0741bcb2011-12-22 16:58:33 +05303076 return 0;
3077}
Amit Shah0741bcb2011-12-22 16:58:33 +05303078
Rusty Russell296f96f2007-10-22 11:03:37 +10003079static struct virtio_device_id id_table[] = {
3080 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3081 { 0 },
3082};
3083
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003084#define VIRTNET_FEATURES \
3085 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3086 VIRTIO_NET_F_MAC, \
3087 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3088 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3089 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3090 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3091 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3092 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3093 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003094 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003095 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003096
Rusty Russellc45a6812008-05-02 21:50:50 -05003097static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003098 VIRTNET_FEATURES,
3099};
3100
3101static unsigned int features_legacy[] = {
3102 VIRTNET_FEATURES,
3103 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303104 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003105};
3106
Uwe Kleine-König22402522009-11-05 01:32:44 -08003107static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003108 .feature_table = features,
3109 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003110 .feature_table_legacy = features_legacy,
3111 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003112 .driver.name = KBUILD_MODNAME,
3113 .driver.owner = THIS_MODULE,
3114 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003115 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003116 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003117 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003118 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303119#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303120 .freeze = virtnet_freeze,
3121 .restore = virtnet_restore,
3122#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003123};
3124
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003125static __init int virtio_net_driver_init(void)
3126{
3127 int ret;
3128
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003129 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003130 virtnet_cpu_online,
3131 virtnet_cpu_down_prep);
3132 if (ret < 0)
3133 goto out;
3134 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003135 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003136 NULL, virtnet_cpu_dead);
3137 if (ret)
3138 goto err_dead;
3139
3140 ret = register_virtio_driver(&virtio_net_driver);
3141 if (ret)
3142 goto err_virtio;
3143 return 0;
3144err_virtio:
3145 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3146err_dead:
3147 cpuhp_remove_multi_state(virtionet_online);
3148out:
3149 return ret;
3150}
3151module_init(virtio_net_driver_init);
3152
3153static __exit void virtio_net_driver_exit(void)
3154{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003155 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003156 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3157 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003158}
3159module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003160
3161MODULE_DEVICE_TABLE(virtio, id_table);
3162MODULE_DESCRIPTION("Virtio network driver");
3163MODULE_LICENSE("GPL");