blob: 9b5ace538824ae0c19483dd901f242896c50427e [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>
Caleb Raitto2ca653d2018-08-09 17:28:40 -070033#include <linux/kernel.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070034#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,
Jason Wange59ff2c2018-11-22 14:36:30 +080073 VIRTIO_NET_F_GUEST_UFO,
74 VIRTIO_NET_F_GUEST_CSUM
Colin Ian King7acd4322017-08-12 22:45:53 +010075};
Jason Wang3f935222017-07-19 16:54:49 +080076
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090077struct virtnet_stat_desc {
78 char desc[ETH_GSTRING_LEN];
79 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000080};
81
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090082struct virtnet_sq_stats {
83 struct u64_stats_sync syncp;
84 u64 packets;
85 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090086 u64 xdp_tx;
87 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090088 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090089};
90
Jason Wangd46eeea2018-07-31 17:43:39 +080091struct virtnet_rq_stats {
92 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090093 u64 packets;
94 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090095 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090096 u64 xdp_packets;
97 u64 xdp_tx;
98 u64 xdp_redirects;
99 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900100 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900101};
102
103#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +0800104#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900105
106static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900107 { "packets", VIRTNET_SQ_STAT(packets) },
108 { "bytes", VIRTNET_SQ_STAT(bytes) },
109 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
110 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900111 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900112};
113
114static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900115 { "packets", VIRTNET_RQ_STAT(packets) },
116 { "bytes", VIRTNET_RQ_STAT(bytes) },
117 { "drops", VIRTNET_RQ_STAT(drops) },
118 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
119 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
120 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
121 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900122 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900123};
124
125#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
126#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
127
Jason Wange9d74172012-12-07 07:04:55 +0000128/* Internal representation of a send virtqueue */
129struct send_queue {
130 /* Virtqueue associated with this send _queue */
131 struct virtqueue *vq;
132
133 /* TX: fragments + linear part + virtio header */
134 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000135
136 /* Name of the send queue: output.$index */
137 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400138
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900139 struct virtnet_sq_stats stats;
140
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400141 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000142};
143
144/* Internal representation of a receive virtqueue */
145struct receive_queue {
146 /* Virtqueue associated with this receive_queue */
147 struct virtqueue *vq;
148
Rusty Russell296f96f2007-10-22 11:03:37 +1000149 struct napi_struct napi;
150
John Fastabendf600b692016-12-15 12:13:24 -0800151 struct bpf_prog __rcu *xdp_prog;
152
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900153 struct virtnet_rq_stats stats;
154
Jason Wange9d74172012-12-07 07:04:55 +0000155 /* Chain pages by the private ptr. */
156 struct page *pages;
157
Michael Daltonab7db912014-01-16 22:23:27 -0800158 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200159 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800160
Michael Daltonfb518792014-01-16 22:23:26 -0800161 /* Page frag for packet buffer allocation. */
162 struct page_frag alloc_frag;
163
Jason Wange9d74172012-12-07 07:04:55 +0000164 /* RX: fragments + linear part + virtio header */
165 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000166
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200167 /* Min single buffer size for mergeable buffers case. */
168 unsigned int min_buf_len;
169
Jason Wang986a4f42012-12-07 07:04:56 +0000170 /* Name of this receive queue: input.$index */
171 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100172
173 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000174};
175
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300176/* Control VQ buffers: protected by the rtnl lock */
177struct control_buf {
178 struct virtio_net_ctrl_hdr hdr;
179 virtio_net_ctrl_ack status;
180 struct virtio_net_ctrl_mq mq;
181 u8 promisc;
182 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300183 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300184 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300185};
186
Jason Wange9d74172012-12-07 07:04:55 +0000187struct virtnet_info {
188 struct virtio_device *vdev;
189 struct virtqueue *cvq;
190 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000191 struct send_queue *sq;
192 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000193 unsigned int status;
194
Jason Wang986a4f42012-12-07 07:04:56 +0000195 /* Max # of queue pairs supported by the device */
196 u16 max_queue_pairs;
197
198 /* # of queue pairs currently used by the driver */
199 u16 curr_queue_pairs;
200
John Fastabend672aafd2016-12-15 12:13:49 -0800201 /* # of XDP queue pairs currently used by the driver */
202 u16 xdp_queue_pairs;
203
Herbert Xu97402b92008-04-18 11:24:27 +0800204 /* I like... big packets and I cannot lie! */
205 bool big_packets;
206
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800207 /* Host will merge rx buffers for big packets (shake it! shake it!) */
208 bool mergeable_rx_bufs;
209
Jason Wang986a4f42012-12-07 07:04:56 +0000210 /* Has control virtqueue */
211 bool has_cvq;
212
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930213 /* Host can handle any s/g split between our header and packet data */
214 bool any_header_sg;
215
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300216 /* Packet virtio header size */
217 u8 hdr_len;
218
Rusty Russell3161e452009-08-26 12:22:32 -0700219 /* Work struct for refilling if we run low on memory. */
220 struct delayed_work refill;
221
Jason Wang586d17c2012-04-11 20:43:52 +0000222 /* Work struct for config space updates */
223 struct work_struct config_work;
224
Jason Wang986a4f42012-12-07 07:04:56 +0000225 /* Does the affinity hint is set for virtqueues? */
226 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000227
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200228 /* CPU hotplug instances for online & dead */
229 struct hlist_node node;
230 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200231
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300232 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100233
234 /* Ethtool settings */
235 u8 duplex;
236 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800237
238 unsigned long guest_offloads;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700239
240 /* failover when STANDBY feature enabled */
241 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000242};
243
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000244struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300245 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000246 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300247 * hdr is in a separate sg buffer, and data sg buffer shares same page
248 * with this header sg. This padding makes next sg 16 byte aligned
249 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000250 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300251 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000252};
253
Jason Wang986a4f42012-12-07 07:04:56 +0000254/* Converting between virtqueue no. and kernel tx/rx queue no.
255 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
256 */
257static int vq2txq(struct virtqueue *vq)
258{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000259 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000260}
261
262static int txq2vq(int txq)
263{
264 return txq * 2 + 1;
265}
266
267static int vq2rxq(struct virtqueue *vq)
268{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000269 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000270}
271
272static int rxq2vq(int rxq)
273{
274 return rxq * 2;
275}
276
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300277static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000278{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300279 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000280}
281
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000282/*
283 * private is used to chain pages for big packets, put the whole
284 * most recent used list in the beginning for reuse
285 */
Jason Wange9d74172012-12-07 07:04:55 +0000286static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500287{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000288 struct page *end;
289
Jason Wange9d74172012-12-07 07:04:55 +0000290 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000291 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000292 end->private = (unsigned long)rq->pages;
293 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500294}
295
Jason Wange9d74172012-12-07 07:04:55 +0000296static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500297{
Jason Wange9d74172012-12-07 07:04:55 +0000298 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500299
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000300 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000301 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000302 /* clear private here, it is used to chain pages */
303 p->private = 0;
304 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500305 p = alloc_page(gfp_mask);
306 return p;
307}
308
Willem de Bruijne4e84522017-04-24 13:49:26 -0400309static void virtqueue_napi_schedule(struct napi_struct *napi,
310 struct virtqueue *vq)
311{
312 if (napi_schedule_prep(napi)) {
313 virtqueue_disable_cb(vq);
314 __napi_schedule(napi);
315 }
316}
317
318static void virtqueue_napi_complete(struct napi_struct *napi,
319 struct virtqueue *vq, int processed)
320{
321 int opaque;
322
323 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900324 if (napi_complete_done(napi, processed)) {
325 if (unlikely(virtqueue_poll(vq, opaque)))
326 virtqueue_napi_schedule(napi, vq);
327 } else {
328 virtqueue_disable_cb(vq);
329 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400330}
331
Jason Wange9d74172012-12-07 07:04:55 +0000332static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000333{
Jason Wange9d74172012-12-07 07:04:55 +0000334 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400335 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000336
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500337 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000338 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000339
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400340 if (napi->weight)
341 virtqueue_napi_schedule(napi, vq);
342 else
343 /* We were probably waiting for more output buffers. */
344 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000345}
346
Jason Wang28b39bc2017-07-19 16:54:46 +0800347#define MRG_CTX_HEADER_SHIFT 22
348static void *mergeable_len_to_ctx(unsigned int truesize,
349 unsigned int headroom)
350{
351 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
352}
353
354static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
355{
356 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
357}
358
359static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
360{
361 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
362}
363
Mike Waychison34646452012-01-04 12:52:32 +0000364/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300365static struct sk_buff *page_to_skb(struct virtnet_info *vi,
366 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700367 struct page *page, unsigned int offset,
368 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000369{
370 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300371 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700372 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000373 char *p;
374
Michael Dalton2613af02013-10-28 15:44:18 -0700375 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000376
377 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100378 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000379 if (unlikely(!skb))
380 return NULL;
381
382 hdr = skb_vnet_hdr(skb);
383
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300384 hdr_len = vi->hdr_len;
385 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700386 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300387 else
Michael Dalton2613af02013-10-28 15:44:18 -0700388 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000389
390 memcpy(hdr, p, hdr_len);
391
392 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700393 offset += hdr_padded_len;
394 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000395
396 copy = len;
397 if (copy > skb_tailroom(skb))
398 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200399 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000400
401 len -= copy;
402 offset += copy;
403
Michael Dalton2613af02013-10-28 15:44:18 -0700404 if (vi->mergeable_rx_bufs) {
405 if (len)
406 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
407 else
408 put_page(page);
409 return skb;
410 }
411
Sasha Levine878d782011-09-28 04:40:54 +0000412 /*
413 * Verify that we can indeed put this data into a skb.
414 * This is here to handle cases when the device erroneously
415 * tries to receive more than is possible. This is usually
416 * the case of a broken device.
417 */
418 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000419 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000420 dev_kfree_skb(skb);
421 return NULL;
422 }
Michael Dalton2613af02013-10-28 15:44:18 -0700423 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000424 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700425 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
426 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
427 frag_size, truesize);
428 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000429 page = (struct page *)page->private;
430 offset = 0;
431 }
432
433 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000434 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000435
436 return skb;
437}
438
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200439static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
440 struct send_queue *sq,
441 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800442{
John Fastabend56434a02016-12-15 12:14:13 -0800443 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800444 int err;
445
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200446 /* virtqueue want to use data area in-front of packet */
447 if (unlikely(xdpf->metasize > 0))
448 return -EOPNOTSUPP;
449
450 if (unlikely(xdpf->headroom < vi->hdr_len))
451 return -EOVERFLOW;
452
453 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
454 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800455 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200456 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800457 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200458 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800459
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200460 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800461
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200462 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100463 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200464 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800465
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200466 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800467}
468
Toshiaki Makita2a435652018-07-23 23:36:07 +0900469static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
470{
471 unsigned int qp;
472
473 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
474 return &vi->sq[qp];
475}
476
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200477static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200478 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800479{
480 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100481 struct receive_queue *rq = vi->rq;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200482 struct xdp_frame *xdpf_sent;
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100483 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200484 struct send_queue *sq;
485 unsigned int len;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200486 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900487 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900488 int ret, err;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200489 int i;
490
Toshiaki Makita2a435652018-07-23 23:36:07 +0900491 sq = virtnet_xdp_sq(vi);
Jason Wang186b3c92017-09-19 17:42:43 +0800492
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900493 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
494 ret = -EINVAL;
495 drops = n;
496 goto out;
497 }
498
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100499 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
500 * indicate XDP resources have been successfully allocated.
501 */
502 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900503 if (!xdp_prog) {
504 ret = -ENXIO;
505 drops = n;
506 goto out;
507 }
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100508
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 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900522 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200523
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900524 if (flags & XDP_XMIT_FLUSH) {
525 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
526 kicks = 1;
527 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900528out:
529 u64_stats_update_begin(&sq->stats.syncp);
530 sq->stats.xdp_tx += n;
531 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900532 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900533 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200534
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900535 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800536}
537
Jason Wangf6b10202017-02-21 16:46:28 +0800538static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
539{
540 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
541}
542
Jason Wang4941d472017-07-19 16:54:48 +0800543/* We copy the packet for XDP in the following cases:
544 *
545 * 1) Packet is scattered across multiple rx buffers.
546 * 2) Headroom space is insufficient.
547 *
548 * This is inefficient but it's a temporary condition that
549 * we hit right after XDP is enabled and until queue is refilled
550 * with large buffers with sufficient headroom - so it should affect
551 * at most queue size packets.
552 * Afterwards, the conditions to enable
553 * XDP should preclude the underlying device from sending packets
554 * across multiple buffers (num_buf > 1), and we make sure buffers
555 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800556 */
557static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800558 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800559 struct page *p,
560 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800561 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800562 unsigned int *len)
563{
564 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800565
566 if (!page)
567 return NULL;
568
569 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
570 page_off += *len;
571
Jason Wang56a86f82016-12-23 22:37:26 +0800572 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800573 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800574 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800575 void *buf;
576 int off;
577
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200578 buf = virtqueue_get_buf(rq->vq, &buflen);
579 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800580 goto err_buf;
581
John Fastabend72979a62016-12-15 12:14:36 -0800582 p = virt_to_head_page(buf);
583 off = buf - page_address(p);
584
Jason Wang56a86f82016-12-23 22:37:26 +0800585 /* guard against a misconfigured or uncooperative backend that
586 * is sending packet larger than the MTU.
587 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800588 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800589 put_page(p);
590 goto err_buf;
591 }
592
John Fastabend72979a62016-12-15 12:14:36 -0800593 memcpy(page_address(page) + page_off,
594 page_address(p) + off, buflen);
595 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800596 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800597 }
598
John Fastabend2de2f7f2017-02-02 19:16:29 -0800599 /* Headroom does not contribute to packet length */
600 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800601 return page;
602err_buf:
603 __free_pages(page, 0);
604 return NULL;
605}
606
Jason Wang4941d472017-07-19 16:54:48 +0800607static struct sk_buff *receive_small(struct net_device *dev,
608 struct virtnet_info *vi,
609 struct receive_queue *rq,
610 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800611 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900612 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800613 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800614{
615 struct sk_buff *skb;
616 struct bpf_prog *xdp_prog;
617 unsigned int xdp_headroom = (unsigned long)ctx;
618 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
619 unsigned int headroom = vi->hdr_len + header_offset;
620 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
621 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
622 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100623 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800624 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100625 int err;
626
Jason Wang4941d472017-07-19 16:54:48 +0800627 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800628 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800629
630 rcu_read_lock();
631 xdp_prog = rcu_dereference(rq->xdp_prog);
632 if (xdp_prog) {
633 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200634 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800635 struct xdp_buff xdp;
636 void *orig_data;
637 u32 act;
638
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100639 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800640 goto err_xdp;
641
642 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
643 int offset = buf - page_address(page) + header_offset;
644 unsigned int tlen = len + vi->hdr_len;
645 u16 num_buf = 1;
646
647 xdp_headroom = virtnet_get_headroom(vi);
648 header_offset = VIRTNET_RX_PAD + xdp_headroom;
649 headroom = vi->hdr_len + header_offset;
650 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
651 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
652 xdp_page = xdp_linearize_page(rq, &num_buf, page,
653 offset, header_offset,
654 &tlen);
655 if (!xdp_page)
656 goto err_xdp;
657
658 buf = page_address(xdp_page);
659 put_page(page);
660 page = xdp_page;
661 }
662
663 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
664 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200665 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800666 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100667 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800668 orig_data = xdp.data;
669 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800670 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800671
672 switch (act) {
673 case XDP_PASS:
674 /* Recalculate length in case bpf program changed it */
675 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700676 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800677 break;
678 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800679 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200680 xdpf = convert_to_xdp_frame(&xdp);
681 if (unlikely(!xdpf))
682 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800683 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
684 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800685 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100686 goto err_xdp;
687 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200688 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800689 rcu_read_unlock();
690 goto xdp_xmit;
691 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800692 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800693 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100694 if (err)
695 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200696 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800697 rcu_read_unlock();
698 goto xdp_xmit;
699 default:
700 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500701 /* fall through */
Jason Wang4941d472017-07-19 16:54:48 +0800702 case XDP_ABORTED:
703 trace_xdp_exception(vi->dev, xdp_prog, act);
704 case XDP_DROP:
705 goto err_xdp;
706 }
707 }
708 rcu_read_unlock();
709
710 skb = build_skb(buf, buflen);
711 if (!skb) {
712 put_page(page);
713 goto err;
714 }
715 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700716 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800717 if (!delta) {
718 buf += header_offset;
719 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
720 } /* keep zeroed vnet hdr since packet was changed by bpf */
721
722err:
723 return skb;
724
725err_xdp:
726 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800727 stats->xdp_drops++;
728 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800729 put_page(page);
730xdp_xmit:
731 return NULL;
732}
733
734static struct sk_buff *receive_big(struct net_device *dev,
735 struct virtnet_info *vi,
736 struct receive_queue *rq,
737 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900738 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800739 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800740{
741 struct page *page = buf;
742 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
743
Jason Wangd46eeea2018-07-31 17:43:39 +0800744 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800745 if (unlikely(!skb))
746 goto err;
747
748 return skb;
749
750err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800751 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800752 give_pages(rq, page);
753 return NULL;
754}
755
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200756static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200757 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200758 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200759 void *buf,
760 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800761 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900762 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800763 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000764{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300765 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
766 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200767 struct page *page = virt_to_head_page(buf);
768 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800769 struct sk_buff *head_skb, *curr_skb;
770 struct bpf_prog *xdp_prog;
771 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800772 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800773 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800774
John Fastabend56434a02016-12-15 12:14:13 -0800775 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800776 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800777
John Fastabendf600b692016-12-15 12:13:24 -0800778 rcu_read_lock();
779 xdp_prog = rcu_dereference(rq->xdp_prog);
780 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200781 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800782 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800783 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800784 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800785 u32 act;
786
Jason Wang3d62b2a2018-05-22 11:44:31 +0800787 /* Transient failure which in theory could occur if
788 * in-flight packets from before XDP was enabled reach
789 * the receive path after XDP is loaded.
790 */
791 if (unlikely(hdr->hdr.gso_type))
792 goto err_xdp;
793
Jason Wang3cc81a92018-03-02 17:29:14 +0800794 /* This happens when rx buffer size is underestimated
795 * or headroom is not enough because of the buffer
796 * was refilled before XDP is set. This should only
797 * happen for the first several packets, so we don't
798 * care much about its performance.
799 */
Jason Wang4941d472017-07-19 16:54:48 +0800800 if (unlikely(num_buf > 1 ||
801 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800802 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800803 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800804 page, offset,
805 VIRTIO_XDP_HEADROOM,
806 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800807 if (!xdp_page)
808 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800809 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800810 } else {
811 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800812 }
813
John Fastabend2de2f7f2017-02-02 19:16:29 -0800814 /* Allow consuming headroom but reserve enough space to push
815 * the descriptor on if we get an XDP_TX return code.
816 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800817 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800818 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800819 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200820 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800821 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100822 xdp.rxq = &rq->xdp_rxq;
823
John Fastabend0354e4d2017-02-02 19:15:01 -0800824 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800825 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800826
John Fastabend56434a02016-12-15 12:14:13 -0800827 switch (act) {
828 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800829 /* recalculate offset to account for any header
830 * adjustments. Note other cases do not build an
831 * skb and avoid using offset
832 */
833 offset = xdp.data -
834 page_address(xdp_page) - vi->hdr_len;
835
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700836 /* recalculate len if xdp.data or xdp.data_end were
837 * adjusted
838 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700839 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800840 /* We can only create skb based on xdp_page. */
841 if (unlikely(xdp_page != page)) {
842 rcu_read_unlock();
843 put_page(page);
844 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800845 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800846 return head_skb;
847 }
John Fastabend56434a02016-12-15 12:14:13 -0800848 break;
849 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800850 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200851 xdpf = convert_to_xdp_frame(&xdp);
852 if (unlikely(!xdpf))
853 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800854 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
855 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800856 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100857 if (unlikely(xdp_page != page))
858 put_page(xdp_page);
859 goto err_xdp;
860 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200861 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800862 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800863 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800864 rcu_read_unlock();
865 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800866 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800867 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800868 err = xdp_do_redirect(dev, &xdp, xdp_prog);
869 if (err) {
870 if (unlikely(xdp_page != page))
871 put_page(xdp_page);
872 goto err_xdp;
873 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200874 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800875 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800876 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800877 rcu_read_unlock();
878 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800879 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800880 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500881 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800882 case XDP_ABORTED:
883 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500884 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800885 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800886 if (unlikely(xdp_page != page))
887 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800888 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800889 }
John Fastabendf600b692016-12-15 12:13:24 -0800890 }
891 rcu_read_unlock();
892
Jason Wang28b39bc2017-07-19 16:54:46 +0800893 truesize = mergeable_ctx_to_truesize(ctx);
894 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300895 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200896 dev->name, len, (unsigned long)ctx);
897 dev->stats.rx_length_errors++;
898 goto err_skb;
899 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800900
John Fastabendf600b692016-12-15 12:13:24 -0800901 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
902 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000903
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200904 if (unlikely(!curr_skb))
905 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000906 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200907 int num_skb_frags;
908
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200909 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800910 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200911 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200912 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300913 virtio16_to_cpu(vi->vdev,
914 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200915 dev->stats.rx_length_errors++;
916 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000917 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200918
Jason Wangd46eeea2018-07-31 17:43:39 +0800919 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200920 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800921
922 truesize = mergeable_ctx_to_truesize(ctx);
923 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300924 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200925 dev->name, len, (unsigned long)ctx);
926 dev->stats.rx_length_errors++;
927 goto err_skb;
928 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200929
930 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700931 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
932 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200933
934 if (unlikely(!nskb))
935 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700936 if (curr_skb == head_skb)
937 skb_shinfo(curr_skb)->frag_list = nskb;
938 else
939 curr_skb->next = nskb;
940 curr_skb = nskb;
941 head_skb->truesize += nskb->truesize;
942 num_skb_frags = 0;
943 }
944 if (curr_skb != head_skb) {
945 head_skb->data_len += len;
946 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800947 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700948 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200949 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800950 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
951 put_page(page);
952 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800953 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800954 } else {
955 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800956 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800957 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200958 }
959
Johannes Berg5377d7582015-08-19 09:48:40 +0200960 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200961 return head_skb;
962
John Fastabendf600b692016-12-15 12:13:24 -0800963err_xdp:
964 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800965 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200966err_skb:
967 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800968 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200969 buf = virtqueue_get_buf(rq->vq, &len);
970 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200971 pr_debug("%s: rx error: %d buffers missing\n",
972 dev->name, num_buf);
973 dev->stats.rx_length_errors++;
974 break;
975 }
Jason Wangd46eeea2018-07-31 17:43:39 +0800976 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200977 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200978 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000979 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200980err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +0800981 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200982 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800983xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200984 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000985}
986
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900987static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
988 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900989 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800990 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +1000991{
Jason Wange9d74172012-12-07 07:04:55 +0000992 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000993 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300994 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000995
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300996 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000997 pr_debug("%s: short packet %i\n", dev->name, len);
998 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800999 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001000 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001001 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001002 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001003 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001004 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001005 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001006 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001007 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001008
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001009 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001010 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001011 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001012 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001013 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001014 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001015 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001016
1017 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001018 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001019
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001020 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001021
Mike Rapoporte858fae2016-06-08 16:09:21 +03001022 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001023 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001024
Mike Rapoporte858fae2016-06-08 16:09:21 +03001025 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1026 virtio_is_little_endian(vi->vdev))) {
1027 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1028 dev->name, hdr->hdr.gso_type,
1029 hdr->hdr.gso_size);
1030 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001031 }
1032
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001033 skb->protocol = eth_type_trans(skb, dev);
1034 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1035 ntohs(skb->protocol), skb->len, skb->pkt_type);
1036
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001037 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001038 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001039
1040frame_err:
1041 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001042 dev_kfree_skb(skb);
1043}
1044
Jason Wang192f68c2017-07-19 16:54:47 +08001045/* Unlike mergeable buffers, all buffers are allocated to the
1046 * same size, except for the headroom. For this reason we do
1047 * not need to use mergeable_len_to_ctx here - it is enough
1048 * to store the headroom as the context ignoring the truesize.
1049 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001050static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1051 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001052{
Jason Wangf6b10202017-02-21 16:46:28 +08001053 struct page_frag *alloc_frag = &rq->alloc_frag;
1054 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001055 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001056 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001057 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001058 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001059
Jason Wangf6b10202017-02-21 16:46:28 +08001060 len = SKB_DATA_ALIGN(len) +
1061 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1062 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001063 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001064
Jason Wangf6b10202017-02-21 16:46:28 +08001065 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1066 get_page(alloc_frag->page);
1067 alloc_frag->offset += len;
1068 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1069 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001070 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001071 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001072 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001073 return err;
1074}
1075
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001076static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1077 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001078{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001079 struct page *first, *list = NULL;
1080 char *p;
1081 int i, err, offset;
1082
Rusty Russella5835442014-09-11 10:17:36 +09301083 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1084
Jason Wange9d74172012-12-07 07:04:55 +00001085 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001086 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001087 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001088 if (!first) {
1089 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001090 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001091 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001092 }
Jason Wange9d74172012-12-07 07:04:55 +00001093 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001094
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001095 /* chain new page in list head to match sg */
1096 first->private = (unsigned long)list;
1097 list = first;
1098 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001099
Jason Wange9d74172012-12-07 07:04:55 +00001100 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001101 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001102 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001103 return -ENOMEM;
1104 }
1105 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001106
Jason Wange9d74172012-12-07 07:04:55 +00001107 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001108 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1109 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001110
Jason Wange9d74172012-12-07 07:04:55 +00001111 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001112 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001113 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001114
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001115 /* chain first in list head */
1116 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301117 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1118 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001119 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001120 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001121
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001122 return err;
1123}
Herbert Xu97402b92008-04-18 11:24:27 +08001124
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001125static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001126 struct ewma_pkt_len *avg_pkt_len,
1127 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001128{
Michael Daltonab7db912014-01-16 22:23:27 -08001129 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001130 unsigned int len;
1131
Jason Wang3cc81a92018-03-02 17:29:14 +08001132 if (room)
1133 return PAGE_SIZE - room;
1134
1135 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001136 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001137
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001138 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001139}
1140
John Fastabend2de2f7f2017-02-02 19:16:29 -08001141static int add_recvbuf_mergeable(struct virtnet_info *vi,
1142 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001143{
Michael Daltonfb518792014-01-16 22:23:26 -08001144 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001145 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001146 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1147 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001148 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001149 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001150 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001151 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001152
Jason Wang3cc81a92018-03-02 17:29:14 +08001153 /* Extra tailroom is needed to satisfy XDP's assumption. This
1154 * means rx frags coalescing won't work, but consider we've
1155 * disabled GSO for XDP, it won't be a big issue.
1156 */
1157 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1158 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001159 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001160
Michael Daltonfb518792014-01-16 22:23:26 -08001161 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001162 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001163 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001164 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001165 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001166 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001167 /* To avoid internal fragmentation, if there is very likely not
1168 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001169 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001170 */
Michael Daltonfb518792014-01-16 22:23:26 -08001171 len += hole;
1172 alloc_frag->offset += hole;
1173 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001174
Michael Daltonfb518792014-01-16 22:23:26 -08001175 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001176 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001177 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001178 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001179 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001180
1181 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001182}
1183
Rusty Russellb2baed62011-12-29 00:42:38 +00001184/*
1185 * Returns false if we couldn't fill entirely (OOM).
1186 *
1187 * Normally run in the receive path, but can also be run from ndo_open
1188 * before we're receiving packets, or from refill_work which is
1189 * careful to disable receiving (using napi_disable).
1190 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001191static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1192 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001193{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001194 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001195 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001196
Amit Shah0aea51c2009-08-26 14:58:28 +05301197 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001198 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001199 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001200 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001201 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001202 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001203 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001204
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001205 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301206 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001207 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001208 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001209 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
1210 u64_stats_update_begin(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001211 rq->stats.kicks++;
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001212 u64_stats_update_end(&rq->stats.syncp);
1213 }
1214
Rusty Russell3161e452009-08-26 12:22:32 -07001215 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001216}
1217
Rusty Russell18445c42008-02-04 23:49:57 -05001218static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001219{
1220 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001221 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001222
Willem de Bruijne4e84522017-04-24 13:49:26 -04001223 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001224}
1225
Willem de Bruijne4e84522017-04-24 13:49:26 -04001226static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001227{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001228 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001229
1230 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001231 * won't get another interrupt, so process any outstanding packets now.
1232 * Call local_bh_enable after to trigger softIRQ processing.
1233 */
1234 local_bh_disable();
1235 virtqueue_napi_schedule(napi, vq);
1236 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001237}
1238
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001239static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1240 struct virtqueue *vq,
1241 struct napi_struct *napi)
1242{
1243 if (!napi->weight)
1244 return;
1245
1246 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1247 * enable the feature if this is likely affine with the transmit path.
1248 */
1249 if (!vi->affinity_hint_set) {
1250 napi->weight = 0;
1251 return;
1252 }
1253
1254 return virtnet_napi_enable(vq, napi);
1255}
1256
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001257static void virtnet_napi_tx_disable(struct napi_struct *napi)
1258{
1259 if (napi->weight)
1260 napi_disable(napi);
1261}
1262
Rusty Russell3161e452009-08-26 12:22:32 -07001263static void refill_work(struct work_struct *work)
1264{
Jason Wange9d74172012-12-07 07:04:55 +00001265 struct virtnet_info *vi =
1266 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001267 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001268 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001269
Sasha Levin55257d72013-04-29 12:00:08 +09301270 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001271 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001272
Jason Wang986a4f42012-12-07 07:04:56 +00001273 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001274 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001275 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001276
1277 /* In theory, this can happen: if we don't get any buffers in
1278 * we will *never* try to fill again.
1279 */
1280 if (still_empty)
1281 schedule_delayed_work(&vi->refill, HZ/2);
1282 }
Rusty Russell3161e452009-08-26 12:22:32 -07001283}
1284
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001285static int virtnet_receive(struct receive_queue *rq, int budget,
1286 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001287{
Jason Wange9d74172012-12-07 07:04:55 +00001288 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001289 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001290 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001291 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001292 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001293
Jason Wang192f68c2017-07-19 16:54:47 +08001294 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001295 void *ctx;
1296
Jason Wangd46eeea2018-07-31 17:43:39 +08001297 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001298 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001299 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001300 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001301 }
1302 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001303 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001304 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001305 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001306 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001307 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001308 }
1309
Jason Wangbe121f42014-01-16 14:45:24 +08001310 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001311 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001312 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001313 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001314
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001315 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001316 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1317 size_t offset = virtnet_rq_stats_desc[i].offset;
1318 u64 *item;
1319
Jason Wangd46eeea2018-07-31 17:43:39 +08001320 item = (u64 *)((u8 *)&rq->stats + offset);
1321 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001322 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001323 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001324
Jason Wangd46eeea2018-07-31 17:43:39 +08001325 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001326}
1327
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001328static void free_old_xmit_skbs(struct send_queue *sq)
1329{
1330 struct sk_buff *skb;
1331 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001332 unsigned int packets = 0;
1333 unsigned int bytes = 0;
1334
1335 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1336 pr_debug("Sent skb %p\n", skb);
1337
1338 bytes += skb->len;
1339 packets++;
1340
Eric Dumazetdadc0732017-08-24 09:02:49 -07001341 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001342 }
1343
1344 /* Avoid overhead when no packets have been processed
1345 * happens when called speculatively from start_xmit.
1346 */
1347 if (!packets)
1348 return;
1349
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001350 u64_stats_update_begin(&sq->stats.syncp);
1351 sq->stats.bytes += bytes;
1352 sq->stats.packets += packets;
1353 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001354}
1355
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001356static void virtnet_poll_cleantx(struct receive_queue *rq)
1357{
1358 struct virtnet_info *vi = rq->vq->vdev->priv;
1359 unsigned int index = vq2rxq(rq->vq);
1360 struct send_queue *sq = &vi->sq[index];
1361 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1362
1363 if (!sq->napi.weight)
1364 return;
1365
1366 if (__netif_tx_trylock(txq)) {
1367 free_old_xmit_skbs(sq);
1368 __netif_tx_unlock(txq);
1369 }
1370
1371 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1372 netif_tx_wake_queue(txq);
1373}
1374
Jason Wang2ffa7592014-07-23 16:33:54 +08001375static int virtnet_poll(struct napi_struct *napi, int budget)
1376{
1377 struct receive_queue *rq =
1378 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001379 struct virtnet_info *vi = rq->vq->vdev->priv;
1380 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001381 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001382 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001383
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001384 virtnet_poll_cleantx(rq);
1385
Jason Wang186b3c92017-09-19 17:42:43 +08001386 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001387
Rusty Russell8329d982007-11-19 11:20:43 -05001388 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001389 if (received < budget)
1390 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001391
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001392 if (xdp_xmit & VIRTIO_XDP_REDIR)
1393 xdp_do_flush_map();
1394
1395 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001396 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001397 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1398 u64_stats_update_begin(&sq->stats.syncp);
1399 sq->stats.kicks++;
1400 u64_stats_update_end(&sq->stats.syncp);
1401 }
Jason Wang9267c432018-04-13 14:58:25 +08001402 }
Jason Wang186b3c92017-09-19 17:42:43 +08001403
Rusty Russell296f96f2007-10-22 11:03:37 +10001404 return received;
1405}
1406
Jason Wang986a4f42012-12-07 07:04:56 +00001407static int virtnet_open(struct net_device *dev)
1408{
1409 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001410 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001411
Jason Wange4166622013-05-21 20:03:58 +00001412 for (i = 0; i < vi->max_queue_pairs; i++) {
1413 if (i < vi->curr_queue_pairs)
1414 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001415 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001416 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001417
1418 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1419 if (err < 0)
1420 return err;
1421
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001422 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1423 MEM_TYPE_PAGE_SHARED, NULL);
1424 if (err < 0) {
1425 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1426 return err;
1427 }
1428
Willem de Bruijne4e84522017-04-24 13:49:26 -04001429 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001430 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001431 }
1432
1433 return 0;
1434}
1435
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001436static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1437{
1438 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1439 struct virtnet_info *vi = sq->vq->vdev->priv;
1440 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1441
1442 __netif_tx_lock(txq, raw_smp_processor_id());
1443 free_old_xmit_skbs(sq);
1444 __netif_tx_unlock(txq);
1445
1446 virtqueue_napi_complete(napi, sq->vq, 0);
1447
1448 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1449 netif_tx_wake_queue(txq);
1450
1451 return 0;
1452}
1453
Jason Wange9d74172012-12-07 07:04:55 +00001454static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001455{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001456 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001457 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001458 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001459 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001460 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301461 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001462
Johannes Berge1749612008-10-27 15:59:26 -07001463 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301464
1465 can_push = vi->any_header_sg &&
1466 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1467 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1468 /* Even if we can, don't push here yet as this would skew
1469 * csum_start offset below. */
1470 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001471 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301472 else
1473 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001474
Mike Rapoporte858fae2016-06-08 16:09:21 +03001475 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001476 virtio_is_little_endian(vi->vdev), false,
1477 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001478 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001479
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001480 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001481 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001482
Jason Wang547c8902015-08-27 14:53:06 +08001483 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301484 if (can_push) {
1485 __skb_push(skb, hdr_len);
1486 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001487 if (unlikely(num_sg < 0))
1488 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301489 /* Pull header back to avoid skew in tx bytes calculations. */
1490 __skb_pull(skb, hdr_len);
1491 } else {
1492 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001493 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1494 if (unlikely(num_sg < 0))
1495 return num_sg;
1496 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301497 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301498 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001499}
1500
Stephen Hemminger424efe92009-08-31 19:50:51 +00001501static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001502{
1503 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001504 int qnum = skb_get_queue_mapping(skb);
1505 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301506 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001507 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1508 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001509 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001510
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001511 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001512 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001513
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001514 if (use_napi && kick)
1515 virtqueue_enable_cb_delayed(sq->vq);
1516
Jacob Keller074c3582014-06-25 02:37:13 +00001517 /* timestamp packet in software */
1518 skb_tx_timestamp(skb);
1519
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001520 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001521 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001522
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301523 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001524 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301525 dev->stats.tx_fifo_errors++;
1526 if (net_ratelimit())
1527 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001528 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001529 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001530 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001531 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001532 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001533
Rusty Russell48925e32009-09-24 09:59:20 -06001534 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001535 if (!use_napi) {
1536 skb_orphan(skb);
1537 nf_reset(skb);
1538 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001539
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001540 /* If running out of space, stop queue to avoid getting packets that we
1541 * are then unable to transmit.
1542 * An alternative would be to force queuing layer to requeue the skb by
1543 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1544 * returned in a normal path of operation: it means that driver is not
1545 * maintaining the TX queue stop/start state properly, and causes
1546 * the stack to do a non-trivial amount of useless work.
1547 * Since most packets only take 1 or 2 ring slots, stopping the queue
1548 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001549 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001550 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001551 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001552 if (!use_napi &&
1553 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001554 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001555 free_old_xmit_skbs(sq);
1556 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001557 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001558 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001559 }
1560 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001561 }
Rusty Russell48925e32009-09-24 09:59:20 -06001562
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001563 if (kick || netif_xmit_stopped(txq)) {
1564 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1565 u64_stats_update_begin(&sq->stats.syncp);
1566 sq->stats.kicks++;
1567 u64_stats_update_end(&sq->stats.syncp);
1568 }
1569 }
David S. Miller0b725a22014-08-25 15:51:53 -07001570
Rusty Russell48925e32009-09-24 09:59:20 -06001571 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001572}
1573
Amos Kong40cbfc32013-01-21 01:17:21 +00001574/*
1575 * Send command via the control virtqueue and check status. Commands
1576 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001577 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001578 */
1579static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001580 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001581{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301582 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001583 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001584
1585 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301586 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001587
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001588 vi->ctrl->status = ~0;
1589 vi->ctrl->hdr.class = class;
1590 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301591 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001592 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301593 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001594
Rusty Russellf7bc9592013-03-20 15:44:28 +10301595 if (out)
1596 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001597
Rusty Russellf7bc9592013-03-20 15:44:28 +10301598 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001599 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001600 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001601
stephen hemmingerd24bae32013-12-09 16:17:40 -08001602 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301603 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001604
Heinz Graalfs67975902013-10-29 09:40:02 +10301605 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001606 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001607
1608 /* Spin for a response, the kick causes an ioport write, trapping
1609 * into the hypervisor, so the request should be handled immediately.
1610 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301611 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1612 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001613 cpu_relax();
1614
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001615 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001616}
1617
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001618static int virtnet_set_mac_address(struct net_device *dev, void *p)
1619{
1620 struct virtnet_info *vi = netdev_priv(dev);
1621 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001622 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001623 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001624 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001625
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001626 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1627 return -EOPNOTSUPP;
1628
Shyam Saini801822d2016-12-24 00:44:58 +05301629 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001630 if (!addr)
1631 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001632
1633 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001634 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001635 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001636
Amos Kong7e58d5a2013-01-21 01:17:23 +00001637 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1638 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1639 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001640 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001641 dev_warn(&vdev->dev,
1642 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001643 ret = -EINVAL;
1644 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001645 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001646 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1647 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301648 unsigned int i;
1649
1650 /* Naturally, this has an atomicity problem. */
1651 for (i = 0; i < dev->addr_len; i++)
1652 virtio_cwrite8(vdev,
1653 offsetof(struct virtio_net_config, mac) +
1654 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001655 }
1656
1657 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001658 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001659
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001660out:
1661 kfree(addr);
1662 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001663}
1664
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001665static void virtnet_stats(struct net_device *dev,
1666 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001667{
1668 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001669 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001670 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001671
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001672 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001673 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001674 struct receive_queue *rq = &vi->rq[i];
1675 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001676
1677 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001678 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1679 tpackets = sq->stats.packets;
1680 tbytes = sq->stats.bytes;
1681 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001682
1683 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001684 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001685 rpackets = rq->stats.packets;
1686 rbytes = rq->stats.bytes;
1687 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001688 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001689
1690 tot->rx_packets += rpackets;
1691 tot->tx_packets += tpackets;
1692 tot->rx_bytes += rbytes;
1693 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001694 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001695 }
1696
1697 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001698 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001699 tot->rx_length_errors = dev->stats.rx_length_errors;
1700 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001701}
1702
Jason Wang586d17c2012-04-11 20:43:52 +00001703static void virtnet_ack_link_announce(struct virtnet_info *vi)
1704{
1705 rtnl_lock();
1706 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001707 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001708 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1709 rtnl_unlock();
1710}
1711
John Fastabend473153292017-02-02 19:14:32 -08001712static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001713{
1714 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001715 struct net_device *dev = vi->dev;
1716
1717 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1718 return 0;
1719
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001720 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1721 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001722
1723 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001724 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001725 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1726 queue_pairs);
1727 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301728 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001729 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001730 /* virtnet_open() will refill when device is going to up. */
1731 if (dev->flags & IFF_UP)
1732 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301733 }
Jason Wang986a4f42012-12-07 07:04:56 +00001734
1735 return 0;
1736}
1737
John Fastabend473153292017-02-02 19:14:32 -08001738static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1739{
1740 int err;
1741
1742 rtnl_lock();
1743 err = _virtnet_set_queues(vi, queue_pairs);
1744 rtnl_unlock();
1745 return err;
1746}
1747
Rusty Russell296f96f2007-10-22 11:03:37 +10001748static int virtnet_close(struct net_device *dev)
1749{
1750 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001751 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001752
Rusty Russellb2baed62011-12-29 00:42:38 +00001753 /* Make sure refill_work doesn't re-enable napi! */
1754 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001755
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001756 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001757 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001758 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001759 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001760 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001761
Rusty Russell296f96f2007-10-22 11:03:37 +10001762 return 0;
1763}
1764
Alex Williamson2af76982009-02-04 09:02:40 +00001765static void virtnet_set_rx_mode(struct net_device *dev)
1766{
1767 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001768 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001769 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001770 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001771 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001772 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001773 void *buf;
1774 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001775
stephen hemminger788a8b62013-12-09 16:18:45 -08001776 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001777 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1778 return;
1779
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001780 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1781 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001782
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001783 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001784
1785 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001786 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001787 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001788 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001789
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001790 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001791
1792 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001793 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001794 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001795 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001796
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001797 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001798 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001799 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001800 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1801 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1802 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001803 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001804 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001805
Alex Williamson23e258e2009-05-01 17:27:56 +00001806 sg_init_table(sg, 2);
1807
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001808 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001809 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001810 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001811 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001812 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001813
1814 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001815 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001816
1817 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001818 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001819
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001820 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001821 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001822 netdev_for_each_mc_addr(ha, dev)
1823 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001824
1825 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001826 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001827
1828 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001829 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001830 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001831
1832 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001833}
1834
Patrick McHardy80d5c362013-04-19 02:04:28 +00001835static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1836 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001837{
1838 struct virtnet_info *vi = netdev_priv(dev);
1839 struct scatterlist sg;
1840
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001841 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001842 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001843
1844 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001845 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001846 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001847 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001848}
1849
Patrick McHardy80d5c362013-04-19 02:04:28 +00001850static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1851 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001852{
1853 struct virtnet_info *vi = netdev_priv(dev);
1854 struct scatterlist sg;
1855
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001856 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001857 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001858
1859 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001860 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001861 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001862 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001863}
1864
Wanlong Gao8898c212013-01-24 23:51:30 +00001865static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001866{
1867 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001868
1869 if (vi->affinity_hint_set) {
1870 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001871 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1872 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001873 }
1874
1875 vi->affinity_hint_set = false;
1876 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001877}
1878
1879static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001880{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001881 cpumask_var_t mask;
1882 int stragglers;
1883 int group_size;
1884 int i, j, cpu;
1885 int num_cpu;
1886 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001887
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001888 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Wanlong Gao8898c212013-01-24 23:51:30 +00001889 virtnet_clean_affinity(vi, -1);
1890 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001891 }
1892
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001893 num_cpu = num_online_cpus();
1894 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1895 stragglers = num_cpu >= vi->curr_queue_pairs ?
1896 num_cpu % vi->curr_queue_pairs :
1897 0;
1898 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001899
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001900 for (i = 0; i < vi->curr_queue_pairs; i++) {
1901 group_size = stride + (i < stragglers ? 1 : 0);
1902
1903 for (j = 0; j < group_size; j++) {
1904 cpumask_set_cpu(cpu, mask);
1905 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1906 nr_cpu_ids, false);
1907 }
1908 virtqueue_set_affinity(vi->rq[i].vq, mask);
1909 virtqueue_set_affinity(vi->sq[i].vq, mask);
1910 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1911 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001912 }
1913
Wanlong Gao8898c212013-01-24 23:51:30 +00001914 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001915 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001916}
1917
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001918static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001919{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001920 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1921 node);
1922 virtnet_set_affinity(vi);
1923 return 0;
1924}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001925
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001926static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1927{
1928 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1929 node_dead);
1930 virtnet_set_affinity(vi);
1931 return 0;
1932}
Jason Wang3ab098d2013-10-15 11:18:58 +08001933
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001934static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1935{
1936 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1937 node);
1938
1939 virtnet_clean_affinity(vi, cpu);
1940 return 0;
1941}
1942
1943static enum cpuhp_state virtionet_online;
1944
1945static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1946{
1947 int ret;
1948
1949 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1950 if (ret)
1951 return ret;
1952 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1953 &vi->node_dead);
1954 if (!ret)
1955 return ret;
1956 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1957 return ret;
1958}
1959
1960static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1961{
1962 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1963 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1964 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001965}
1966
Rick Jones8f9f4662011-10-19 08:10:59 +00001967static void virtnet_get_ringparam(struct net_device *dev,
1968 struct ethtool_ringparam *ring)
1969{
1970 struct virtnet_info *vi = netdev_priv(dev);
1971
Jason Wang986a4f42012-12-07 07:04:56 +00001972 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1973 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001974 ring->rx_pending = ring->rx_max_pending;
1975 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001976}
1977
Rick Jones66846042011-11-14 14:17:08 +00001978
1979static void virtnet_get_drvinfo(struct net_device *dev,
1980 struct ethtool_drvinfo *info)
1981{
1982 struct virtnet_info *vi = netdev_priv(dev);
1983 struct virtio_device *vdev = vi->vdev;
1984
1985 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1986 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1987 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1988
1989}
1990
Jason Wangd73bcd22012-12-07 07:04:57 +00001991/* TODO: Eliminate OOO packets during switching */
1992static int virtnet_set_channels(struct net_device *dev,
1993 struct ethtool_channels *channels)
1994{
1995 struct virtnet_info *vi = netdev_priv(dev);
1996 u16 queue_pairs = channels->combined_count;
1997 int err;
1998
1999 /* We don't support separate rx/tx channels.
2000 * We don't allow setting 'other' channels.
2001 */
2002 if (channels->rx_count || channels->tx_count || channels->other_count)
2003 return -EINVAL;
2004
Amos Kongc18e9cd2014-04-18 13:45:41 +08002005 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002006 return -EINVAL;
2007
John Fastabendf600b692016-12-15 12:13:24 -08002008 /* For now we don't support modifying channels while XDP is loaded
2009 * also when XDP is loaded all RX queues have XDP programs so we only
2010 * need to check a single RX queue.
2011 */
2012 if (vi->rq[0].xdp_prog)
2013 return -EINVAL;
2014
Wanlong Gao47be2472013-01-24 23:51:29 +00002015 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002016 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002017 if (!err) {
2018 netif_set_real_num_tx_queues(dev, queue_pairs);
2019 netif_set_real_num_rx_queues(dev, queue_pairs);
2020
Wanlong Gao8898c212013-01-24 23:51:30 +00002021 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002022 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002023 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002024
2025 return err;
2026}
2027
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002028static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2029{
2030 struct virtnet_info *vi = netdev_priv(dev);
2031 char *p = (char *)data;
2032 unsigned int i, j;
2033
2034 switch (stringset) {
2035 case ETH_SS_STATS:
2036 for (i = 0; i < vi->curr_queue_pairs; i++) {
2037 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2038 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2039 i, virtnet_rq_stats_desc[j].desc);
2040 p += ETH_GSTRING_LEN;
2041 }
2042 }
2043
2044 for (i = 0; i < vi->curr_queue_pairs; i++) {
2045 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2046 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2047 i, virtnet_sq_stats_desc[j].desc);
2048 p += ETH_GSTRING_LEN;
2049 }
2050 }
2051 break;
2052 }
2053}
2054
2055static int virtnet_get_sset_count(struct net_device *dev, int sset)
2056{
2057 struct virtnet_info *vi = netdev_priv(dev);
2058
2059 switch (sset) {
2060 case ETH_SS_STATS:
2061 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2062 VIRTNET_SQ_STATS_LEN);
2063 default:
2064 return -EOPNOTSUPP;
2065 }
2066}
2067
2068static void virtnet_get_ethtool_stats(struct net_device *dev,
2069 struct ethtool_stats *stats, u64 *data)
2070{
2071 struct virtnet_info *vi = netdev_priv(dev);
2072 unsigned int idx = 0, start, i, j;
2073 const u8 *stats_base;
2074 size_t offset;
2075
2076 for (i = 0; i < vi->curr_queue_pairs; i++) {
2077 struct receive_queue *rq = &vi->rq[i];
2078
Jason Wangd46eeea2018-07-31 17:43:39 +08002079 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002080 do {
2081 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2082 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2083 offset = virtnet_rq_stats_desc[j].offset;
2084 data[idx + j] = *(u64 *)(stats_base + offset);
2085 }
2086 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2087 idx += VIRTNET_RQ_STATS_LEN;
2088 }
2089
2090 for (i = 0; i < vi->curr_queue_pairs; i++) {
2091 struct send_queue *sq = &vi->sq[i];
2092
2093 stats_base = (u8 *)&sq->stats;
2094 do {
2095 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2096 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2097 offset = virtnet_sq_stats_desc[j].offset;
2098 data[idx + j] = *(u64 *)(stats_base + offset);
2099 }
2100 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2101 idx += VIRTNET_SQ_STATS_LEN;
2102 }
2103}
2104
Jason Wangd73bcd22012-12-07 07:04:57 +00002105static void virtnet_get_channels(struct net_device *dev,
2106 struct ethtool_channels *channels)
2107{
2108 struct virtnet_info *vi = netdev_priv(dev);
2109
2110 channels->combined_count = vi->curr_queue_pairs;
2111 channels->max_combined = vi->max_queue_pairs;
2112 channels->max_other = 0;
2113 channels->rx_count = 0;
2114 channels->tx_count = 0;
2115 channels->other_count = 0;
2116}
2117
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002118/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002119static bool
2120virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002121{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002122 struct ethtool_link_ksettings diff1 = *cmd;
2123 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002124
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002125 /* cmd is always set so we need to clear it, validate the port type
2126 * and also without autonegotiation we can ignore advertising
2127 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002128 diff1.base.speed = 0;
2129 diff2.base.port = PORT_OTHER;
2130 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2131 diff1.base.duplex = 0;
2132 diff1.base.cmd = 0;
2133 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002134
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002135 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2136 bitmap_empty(diff1.link_modes.supported,
2137 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2138 bitmap_empty(diff1.link_modes.advertising,
2139 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2140 bitmap_empty(diff1.link_modes.lp_advertising,
2141 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002142}
2143
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002144static int virtnet_set_link_ksettings(struct net_device *dev,
2145 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002146{
2147 struct virtnet_info *vi = netdev_priv(dev);
2148 u32 speed;
2149
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002150 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002151 /* don't allow custom speed and duplex */
2152 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002153 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002154 !virtnet_validate_ethtool_cmd(cmd))
2155 return -EINVAL;
2156 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002157 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002158
2159 return 0;
2160}
2161
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002162static int virtnet_get_link_ksettings(struct net_device *dev,
2163 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002164{
2165 struct virtnet_info *vi = netdev_priv(dev);
2166
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002167 cmd->base.speed = vi->speed;
2168 cmd->base.duplex = vi->duplex;
2169 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002170
2171 return 0;
2172}
2173
Jason Wang0c465be2018-10-09 10:06:26 +08002174static int virtnet_set_coalesce(struct net_device *dev,
2175 struct ethtool_coalesce *ec)
2176{
2177 struct ethtool_coalesce ec_default = {
2178 .cmd = ETHTOOL_SCOALESCE,
2179 .rx_max_coalesced_frames = 1,
2180 };
2181 struct virtnet_info *vi = netdev_priv(dev);
2182 int i, napi_weight;
2183
2184 if (ec->tx_max_coalesced_frames > 1)
2185 return -EINVAL;
2186
2187 ec_default.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
2188 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
2189
2190 /* disallow changes to fields not explicitly tested above */
2191 if (memcmp(ec, &ec_default, sizeof(ec_default)))
2192 return -EINVAL;
2193
2194 if (napi_weight ^ vi->sq[0].napi.weight) {
2195 if (dev->flags & IFF_UP)
2196 return -EBUSY;
2197 for (i = 0; i < vi->max_queue_pairs; i++)
2198 vi->sq[i].napi.weight = napi_weight;
2199 }
2200
2201 return 0;
2202}
2203
2204static int virtnet_get_coalesce(struct net_device *dev,
2205 struct ethtool_coalesce *ec)
2206{
2207 struct ethtool_coalesce ec_default = {
2208 .cmd = ETHTOOL_GCOALESCE,
2209 .rx_max_coalesced_frames = 1,
2210 };
2211 struct virtnet_info *vi = netdev_priv(dev);
2212
2213 memcpy(ec, &ec_default, sizeof(ec_default));
2214
2215 if (vi->sq[0].napi.weight)
2216 ec->tx_max_coalesced_frames = 1;
2217
2218 return 0;
2219}
2220
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002221static void virtnet_init_settings(struct net_device *dev)
2222{
2223 struct virtnet_info *vi = netdev_priv(dev);
2224
2225 vi->speed = SPEED_UNKNOWN;
2226 vi->duplex = DUPLEX_UNKNOWN;
2227}
2228
Jason Baronfaa9b392018-01-05 17:44:54 -05002229static void virtnet_update_settings(struct virtnet_info *vi)
2230{
2231 u32 speed;
2232 u8 duplex;
2233
2234 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2235 return;
2236
2237 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2238 speed));
2239 if (ethtool_validate_speed(speed))
2240 vi->speed = speed;
2241 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2242 duplex));
2243 if (ethtool_validate_duplex(duplex))
2244 vi->duplex = duplex;
2245}
2246
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002247static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002248 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002249 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002250 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002251 .get_strings = virtnet_get_strings,
2252 .get_sset_count = virtnet_get_sset_count,
2253 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002254 .set_channels = virtnet_set_channels,
2255 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002256 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002257 .get_link_ksettings = virtnet_get_link_ksettings,
2258 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002259 .set_coalesce = virtnet_set_coalesce,
2260 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002261};
2262
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002263static void virtnet_freeze_down(struct virtio_device *vdev)
2264{
2265 struct virtnet_info *vi = vdev->priv;
2266 int i;
2267
2268 /* Make sure no work handler is accessing the device */
2269 flush_work(&vi->config_work);
2270
Ake Koomsin05c998b2018-10-17 19:44:12 +09002271 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002272 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002273 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002274 cancel_delayed_work_sync(&vi->refill);
2275
2276 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002277 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002278 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002279 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002280 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002281 }
2282}
2283
2284static int init_vqs(struct virtnet_info *vi);
2285
2286static int virtnet_restore_up(struct virtio_device *vdev)
2287{
2288 struct virtnet_info *vi = vdev->priv;
2289 int err, i;
2290
2291 err = init_vqs(vi);
2292 if (err)
2293 return err;
2294
2295 virtio_device_ready(vdev);
2296
2297 if (netif_running(vi->dev)) {
2298 for (i = 0; i < vi->curr_queue_pairs; i++)
2299 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2300 schedule_delayed_work(&vi->refill, 0);
2301
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002302 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002303 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002304 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2305 &vi->sq[i].napi);
2306 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002307 }
2308
Ake Koomsin05c998b2018-10-17 19:44:12 +09002309 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002310 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002311 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002312 return err;
2313}
2314
Jason Wang3f935222017-07-19 16:54:49 +08002315static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2316{
2317 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002318 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002319
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002320 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002321
2322 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2323 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2324 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2325 return -EINVAL;
2326 }
2327
2328 return 0;
2329}
2330
2331static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2332{
2333 u64 offloads = 0;
2334
2335 if (!vi->guest_offloads)
2336 return 0;
2337
Jason Wang3f935222017-07-19 16:54:49 +08002338 return virtnet_set_guest_offloads(vi, offloads);
2339}
2340
2341static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2342{
2343 u64 offloads = vi->guest_offloads;
2344
2345 if (!vi->guest_offloads)
2346 return 0;
Jason Wang3f935222017-07-19 16:54:49 +08002347
2348 return virtnet_set_guest_offloads(vi, offloads);
2349}
2350
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002351static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2352 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002353{
2354 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2355 struct virtnet_info *vi = netdev_priv(dev);
2356 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002357 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002358 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002359
Jason Wang3f935222017-07-19 16:54:49 +08002360 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2361 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2362 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2363 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2364 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002365 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 -08002366 return -EOPNOTSUPP;
2367 }
2368
2369 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002370 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002371 return -EINVAL;
2372 }
2373
2374 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002375 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002376 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2377 return -EINVAL;
2378 }
2379
John Fastabend672aafd2016-12-15 12:13:49 -08002380 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2381 if (prog)
2382 xdp_qp = nr_cpu_ids;
2383
2384 /* XDP requires extra queues for XDP_TX */
2385 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002386 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002387 netdev_warn(dev, "request %i queues but max is %i\n",
2388 curr_qp + xdp_qp, vi->max_queue_pairs);
2389 return -ENOMEM;
2390 }
2391
John Fastabend2de2f7f2017-02-02 19:16:29 -08002392 if (prog) {
2393 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2394 if (IS_ERR(prog))
2395 return PTR_ERR(prog);
2396 }
2397
Jason Wang4941d472017-07-19 16:54:48 +08002398 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002399 if (netif_running(dev))
2400 for (i = 0; i < vi->max_queue_pairs; i++)
2401 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002402
John Fastabend672aafd2016-12-15 12:13:49 -08002403 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002404 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2405 if (err)
2406 goto err;
2407 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002408
John Fastabendf600b692016-12-15 12:13:24 -08002409 for (i = 0; i < vi->max_queue_pairs; i++) {
2410 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2411 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002412 if (i == 0) {
2413 if (!old_prog)
2414 virtnet_clear_guest_offloads(vi);
2415 if (!prog)
2416 virtnet_restore_guest_offloads(vi);
2417 }
John Fastabendf600b692016-12-15 12:13:24 -08002418 if (old_prog)
2419 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002420 if (netif_running(dev))
2421 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002422 }
2423
2424 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002425
Jason Wang4941d472017-07-19 16:54:48 +08002426err:
2427 for (i = 0; i < vi->max_queue_pairs; i++)
2428 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002429 if (prog)
2430 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2431 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002432}
2433
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002434static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002435{
2436 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002437 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002438 int i;
2439
2440 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002441 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2442 if (xdp_prog)
2443 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002444 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002445 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002446}
2447
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002448static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002449{
2450 switch (xdp->command) {
2451 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002452 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002453 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002454 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002455 return 0;
2456 default:
2457 return -EINVAL;
2458 }
2459}
2460
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002461static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2462 size_t len)
2463{
2464 struct virtnet_info *vi = netdev_priv(dev);
2465 int ret;
2466
2467 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2468 return -EOPNOTSUPP;
2469
2470 ret = snprintf(buf, len, "sby");
2471 if (ret >= len)
2472 return -EOPNOTSUPP;
2473
2474 return 0;
2475}
2476
Stephen Hemminger76288b42009-01-06 10:44:22 -08002477static const struct net_device_ops virtnet_netdev = {
2478 .ndo_open = virtnet_open,
2479 .ndo_stop = virtnet_close,
2480 .ndo_start_xmit = start_xmit,
2481 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002482 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002483 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002484 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002485 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2486 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002487 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002488 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002489 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002490 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002491};
2492
Jason Wang586d17c2012-04-11 20:43:52 +00002493static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002494{
Jason Wang586d17c2012-04-11 20:43:52 +00002495 struct virtnet_info *vi =
2496 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002497 u16 v;
2498
Rusty Russell855e0c52013-10-14 18:11:51 +10302499 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2500 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302501 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002502
2503 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002504 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002505 virtnet_ack_link_announce(vi);
2506 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002507
2508 /* Ignore unknown (future) status bits */
2509 v &= VIRTIO_NET_S_LINK_UP;
2510
2511 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302512 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002513
2514 vi->status = v;
2515
2516 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002517 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002518 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002519 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002520 } else {
2521 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002522 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002523 }
2524}
2525
2526static void virtnet_config_changed(struct virtio_device *vdev)
2527{
2528 struct virtnet_info *vi = vdev->priv;
2529
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002530 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002531}
2532
Jason Wang986a4f42012-12-07 07:04:56 +00002533static void virtnet_free_queues(struct virtnet_info *vi)
2534{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002535 int i;
2536
Jason Wangab3971b2015-03-12 13:57:44 +08002537 for (i = 0; i < vi->max_queue_pairs; i++) {
2538 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002539 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002540 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002541 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002542
Eric Dumazet963abe52016-11-15 22:24:12 -08002543 /* We called napi_hash_del() before netif_napi_del(),
2544 * we need to respect an RCU grace period before freeing vi->rq
2545 */
2546 synchronize_net();
2547
Jason Wang986a4f42012-12-07 07:04:56 +00002548 kfree(vi->rq);
2549 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002550 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002551}
2552
John Fastabend473153292017-02-02 19:14:32 -08002553static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002554{
John Fastabendf600b692016-12-15 12:13:24 -08002555 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002556 int i;
2557
2558 for (i = 0; i < vi->max_queue_pairs; i++) {
2559 while (vi->rq[i].pages)
2560 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002561
2562 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2563 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2564 if (old_prog)
2565 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002566 }
John Fastabend473153292017-02-02 19:14:32 -08002567}
2568
2569static void free_receive_bufs(struct virtnet_info *vi)
2570{
2571 rtnl_lock();
2572 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002573 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002574}
2575
Michael Daltonfb518792014-01-16 22:23:26 -08002576static void free_receive_page_frags(struct virtnet_info *vi)
2577{
2578 int i;
2579 for (i = 0; i < vi->max_queue_pairs; i++)
2580 if (vi->rq[i].alloc_frag.page)
2581 put_page(vi->rq[i].alloc_frag.page);
2582}
2583
John Fastabendb68df012017-01-25 18:22:48 -08002584static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002585{
2586 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2587 return false;
2588 else if (q < vi->curr_queue_pairs)
2589 return true;
2590 else
2591 return false;
2592}
2593
Jason Wang986a4f42012-12-07 07:04:56 +00002594static void free_unused_bufs(struct virtnet_info *vi)
2595{
2596 void *buf;
2597 int i;
2598
2599 for (i = 0; i < vi->max_queue_pairs; i++) {
2600 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002601 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002602 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002603 dev_kfree_skb(buf);
2604 else
2605 put_page(virt_to_head_page(buf));
2606 }
Jason Wang986a4f42012-12-07 07:04:56 +00002607 }
2608
2609 for (i = 0; i < vi->max_queue_pairs; i++) {
2610 struct virtqueue *vq = vi->rq[i].vq;
2611
2612 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002613 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002614 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002615 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002616 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002617 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002618 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002619 }
Jason Wang986a4f42012-12-07 07:04:56 +00002620 }
Jason Wang986a4f42012-12-07 07:04:56 +00002621 }
2622}
2623
Jason Wange9d74172012-12-07 07:04:55 +00002624static void virtnet_del_vqs(struct virtnet_info *vi)
2625{
2626 struct virtio_device *vdev = vi->vdev;
2627
Wanlong Gao8898c212013-01-24 23:51:30 +00002628 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002629
Jason Wange9d74172012-12-07 07:04:55 +00002630 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002631
2632 virtnet_free_queues(vi);
2633}
2634
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002635/* How large should a single buffer be so a queue full of these can fit at
2636 * least one full packet?
2637 * Logic below assumes the mergeable buffer header is used.
2638 */
2639static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2640{
2641 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2642 unsigned int rq_size = virtqueue_get_vring_size(vq);
2643 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2644 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2645 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2646
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002647 return max(max(min_buf_len, hdr_len) - hdr_len,
2648 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002649}
2650
Jason Wang986a4f42012-12-07 07:04:56 +00002651static int virtnet_find_vqs(struct virtnet_info *vi)
2652{
2653 vq_callback_t **callbacks;
2654 struct virtqueue **vqs;
2655 int ret = -ENOMEM;
2656 int i, total_vqs;
2657 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002658 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002659
2660 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2661 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2662 * possible control vq.
2663 */
2664 total_vqs = vi->max_queue_pairs * 2 +
2665 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2666
2667 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002668 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002669 if (!vqs)
2670 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002671 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002672 if (!callbacks)
2673 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002674 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002675 if (!names)
2676 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002677 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002678 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002679 if (!ctx)
2680 goto err_ctx;
2681 } else {
2682 ctx = NULL;
2683 }
Jason Wang986a4f42012-12-07 07:04:56 +00002684
2685 /* Parameters for control virtqueue, if any */
2686 if (vi->has_cvq) {
2687 callbacks[total_vqs - 1] = NULL;
2688 names[total_vqs - 1] = "control";
2689 }
2690
2691 /* Allocate/initialize parameters for send/receive virtqueues */
2692 for (i = 0; i < vi->max_queue_pairs; i++) {
2693 callbacks[rxq2vq(i)] = skb_recv_done;
2694 callbacks[txq2vq(i)] = skb_xmit_done;
2695 sprintf(vi->rq[i].name, "input.%d", i);
2696 sprintf(vi->sq[i].name, "output.%d", i);
2697 names[rxq2vq(i)] = vi->rq[i].name;
2698 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002699 if (ctx)
2700 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002701 }
2702
2703 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002704 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002705 if (ret)
2706 goto err_find;
2707
2708 if (vi->has_cvq) {
2709 vi->cvq = vqs[total_vqs - 1];
2710 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002711 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002712 }
2713
2714 for (i = 0; i < vi->max_queue_pairs; i++) {
2715 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002716 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002717 vi->sq[i].vq = vqs[txq2vq(i)];
2718 }
2719
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002720 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002721
Jason Wang986a4f42012-12-07 07:04:56 +00002722
2723err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002724 kfree(ctx);
2725err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002726 kfree(names);
2727err_names:
2728 kfree(callbacks);
2729err_callback:
2730 kfree(vqs);
2731err_vq:
2732 return ret;
2733}
2734
2735static int virtnet_alloc_queues(struct virtnet_info *vi)
2736{
2737 int i;
2738
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002739 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2740 if (!vi->ctrl)
2741 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002742 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002743 if (!vi->sq)
2744 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002745 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002746 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002747 goto err_rq;
2748
2749 INIT_DELAYED_WORK(&vi->refill, refill_work);
2750 for (i = 0; i < vi->max_queue_pairs; i++) {
2751 vi->rq[i].pages = NULL;
2752 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2753 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002754 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2755 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002756
2757 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002758 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002759 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002760
2761 u64_stats_init(&vi->rq[i].stats.syncp);
2762 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002763 }
2764
2765 return 0;
2766
2767err_rq:
2768 kfree(vi->sq);
2769err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002770 kfree(vi->ctrl);
2771err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002772 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002773}
2774
Amit Shah3f9c10b2011-12-22 16:58:31 +05302775static int init_vqs(struct virtnet_info *vi)
2776{
Jason Wang986a4f42012-12-07 07:04:56 +00002777 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302778
Jason Wang986a4f42012-12-07 07:04:56 +00002779 /* Allocate send & receive queues */
2780 ret = virtnet_alloc_queues(vi);
2781 if (ret)
2782 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302783
Jason Wang986a4f42012-12-07 07:04:56 +00002784 ret = virtnet_find_vqs(vi);
2785 if (ret)
2786 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302787
Wanlong Gao47be2472013-01-24 23:51:29 +00002788 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002789 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002790 put_online_cpus();
2791
Amit Shah3f9c10b2011-12-22 16:58:31 +05302792 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002793
2794err_free:
2795 virtnet_free_queues(vi);
2796err:
2797 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302798}
2799
Michael Daltonfbf28d72014-01-16 22:23:30 -08002800#ifdef CONFIG_SYSFS
2801static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002802 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002803{
2804 struct virtnet_info *vi = netdev_priv(queue->dev);
2805 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002806 unsigned int headroom = virtnet_get_headroom(vi);
2807 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002808 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002809
2810 BUG_ON(queue_index >= vi->max_queue_pairs);
2811 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002812 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002813 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2814 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002815}
2816
2817static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2818 __ATTR_RO(mergeable_rx_buffer_size);
2819
2820static struct attribute *virtio_net_mrg_rx_attrs[] = {
2821 &mergeable_rx_buffer_size_attribute.attr,
2822 NULL
2823};
2824
2825static const struct attribute_group virtio_net_mrg_rx_group = {
2826 .name = "virtio_net",
2827 .attrs = virtio_net_mrg_rx_attrs
2828};
2829#endif
2830
Jason Wang892d6eb2014-11-20 17:03:05 +08002831static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2832 unsigned int fbit,
2833 const char *fname, const char *dname)
2834{
2835 if (!virtio_has_feature(vdev, fbit))
2836 return false;
2837
2838 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2839 fname, dname);
2840
2841 return true;
2842}
2843
2844#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2845 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2846
2847static bool virtnet_validate_features(struct virtio_device *vdev)
2848{
2849 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2850 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2851 "VIRTIO_NET_F_CTRL_VQ") ||
2852 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2853 "VIRTIO_NET_F_CTRL_VQ") ||
2854 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2855 "VIRTIO_NET_F_CTRL_VQ") ||
2856 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2857 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2858 "VIRTIO_NET_F_CTRL_VQ"))) {
2859 return false;
2860 }
2861
2862 return true;
2863}
2864
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002865#define MIN_MTU ETH_MIN_MTU
2866#define MAX_MTU ETH_MAX_MTU
2867
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002868static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002869{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002870 if (!vdev->config->get) {
2871 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2872 __func__);
2873 return -EINVAL;
2874 }
2875
Jason Wang892d6eb2014-11-20 17:03:05 +08002876 if (!virtnet_validate_features(vdev))
2877 return -EINVAL;
2878
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002879 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2880 int mtu = virtio_cread16(vdev,
2881 offsetof(struct virtio_net_config,
2882 mtu));
2883 if (mtu < MIN_MTU)
2884 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2885 }
2886
2887 return 0;
2888}
2889
2890static int virtnet_probe(struct virtio_device *vdev)
2891{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002892 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002893 struct net_device *dev;
2894 struct virtnet_info *vi;
2895 u16 max_queue_pairs;
2896 int mtu;
2897
Jason Wang986a4f42012-12-07 07:04:56 +00002898 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302899 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2900 struct virtio_net_config,
2901 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002902
2903 /* We need at least 2 queue's */
2904 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2905 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2906 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2907 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002908
2909 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002910 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002911 if (!dev)
2912 return -ENOMEM;
2913
2914 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002915 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002916 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002917 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002918
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002919 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002920 SET_NETDEV_DEV(dev, &vdev->dev);
2921
2922 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002923 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002924 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002925 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002926 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002927 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002928
2929 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002930 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002931 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2932 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002933 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002934 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2935 dev->hw_features |= NETIF_F_TSO;
2936 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2937 dev->hw_features |= NETIF_F_TSO6;
2938 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2939 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002940
Jason Wang41f2f122014-12-24 11:03:52 +08002941 dev->features |= NETIF_F_GSO_ROBUST;
2942
Michał Mirosław98e778c2011-03-31 01:01:35 +00002943 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002944 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002945 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002946 }
Thomas Huth4f491292013-08-27 17:09:02 +02002947 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2948 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002949
Jason Wang4fda8302013-04-10 23:32:21 +00002950 dev->vlan_features = dev->features;
2951
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002952 /* MTU range: 68 - 65535 */
2953 dev->min_mtu = MIN_MTU;
2954 dev->max_mtu = MAX_MTU;
2955
Rusty Russell296f96f2007-10-22 11:03:37 +10002956 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302957 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2958 virtio_cread_bytes(vdev,
2959 offsetof(struct virtio_net_config, mac),
2960 dev->dev_addr, dev->addr_len);
2961 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002962 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002963
2964 /* Set up our device-specific information */
2965 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002966 vi->dev = dev;
2967 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002968 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002969
Jason Wang586d17c2012-04-11 20:43:52 +00002970 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002971
Herbert Xu97402b92008-04-18 11:24:27 +08002972 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002973 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2974 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002975 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2976 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002977 vi->big_packets = true;
2978
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002979 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2980 vi->mergeable_rx_bufs = true;
2981
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002982 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2983 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002984 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2985 else
2986 vi->hdr_len = sizeof(struct virtio_net_hdr);
2987
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002988 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2989 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302990 vi->any_header_sg = true;
2991
Jason Wang986a4f42012-12-07 07:04:56 +00002992 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2993 vi->has_cvq = true;
2994
Aaron Conole14de9d12016-06-03 16:57:12 -04002995 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2996 mtu = virtio_cread16(vdev,
2997 offsetof(struct virtio_net_config,
2998 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002999 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003000 /* Should never trigger: MTU was previously validated
3001 * in virtnet_validate.
3002 */
3003 dev_err(&vdev->dev, "device MTU appears to have changed "
3004 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003005 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003006 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003007
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003008 dev->mtu = mtu;
3009 dev->max_mtu = mtu;
3010
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003011 /* TODO: size buffers correctly in this case. */
3012 if (dev->mtu > ETH_DATA_LEN)
3013 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003014 }
3015
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003016 if (vi->any_header_sg)
3017 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003018
Jason Wang44900012016-11-25 12:37:26 +08003019 /* Enable multiqueue by default */
3020 if (num_online_cpus() >= max_queue_pairs)
3021 vi->curr_queue_pairs = max_queue_pairs;
3022 else
3023 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003024 vi->max_queue_pairs = max_queue_pairs;
3025
3026 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303027 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003028 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003029 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003030
Michael Daltonfbf28d72014-01-16 22:23:30 -08003031#ifdef CONFIG_SYSFS
3032 if (vi->mergeable_rx_bufs)
3033 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3034#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08003035 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3036 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003037
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003038 virtnet_init_settings(dev);
3039
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003040 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3041 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003042 if (IS_ERR(vi->failover)) {
3043 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003044 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003045 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003046 }
3047
Rusty Russell296f96f2007-10-22 11:03:37 +10003048 err = register_netdev(dev);
3049 if (err) {
3050 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003051 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003052 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003053
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303054 virtio_device_ready(vdev);
3055
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003056 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003057 if (err) {
3058 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003059 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003060 }
3061
Jason Wanga2208712016-12-13 14:23:05 +08003062 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003063
Jason Wang167c25e2010-11-10 14:45:41 +00003064 /* Assume link up if device can't report link status,
3065 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003066 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003067 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003068 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003069 } else {
3070 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003071 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003072 netif_carrier_on(dev);
3073 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003074
Jason Wang3f935222017-07-19 16:54:49 +08003075 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3076 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3077 set_bit(guest_offloads[i], &vi->guest_offloads);
3078
Jason Wang986a4f42012-12-07 07:04:56 +00003079 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3080 dev->name, max_queue_pairs);
3081
Rusty Russell296f96f2007-10-22 11:03:37 +10003082 return 0;
3083
wangyunjianf00e35e2016-05-31 11:52:43 +08003084free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303085 vi->vdev->config->reset(vdev);
3086
Rusty Russellb3369c12008-02-04 23:50:02 -05003087 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003088free_failover:
3089 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003090free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003091 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003092 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003093 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003094free:
3095 free_netdev(dev);
3096 return err;
3097}
3098
Amit Shah04486ed2011-12-22 16:58:32 +05303099static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003100{
Amit Shah04486ed2011-12-22 16:58:32 +05303101 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003102
3103 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003104 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003105
Jason Wang986a4f42012-12-07 07:04:56 +00003106 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003107
Michael Daltonfb518792014-01-16 22:23:26 -08003108 free_receive_page_frags(vi);
3109
Jason Wang986a4f42012-12-07 07:04:56 +00003110 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303111}
3112
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003113static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303114{
3115 struct virtnet_info *vi = vdev->priv;
3116
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003117 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003118
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303119 /* Make sure no work handler is accessing the device. */
3120 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003121
Amit Shah04486ed2011-12-22 16:58:32 +05303122 unregister_netdev(vi->dev);
3123
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003124 net_failover_destroy(vi->failover);
3125
Amit Shah04486ed2011-12-22 16:58:32 +05303126 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003127
Rusty Russell74b25532007-11-19 11:20:42 -05003128 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003129}
3130
Arnd Bergmann67a75192017-07-25 17:35:50 +02003131static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303132{
3133 struct virtnet_info *vi = vdev->priv;
3134
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003135 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003136 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303137 remove_vq_common(vi);
3138
3139 return 0;
3140}
3141
Arnd Bergmann67a75192017-07-25 17:35:50 +02003142static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303143{
3144 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003145 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303146
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003147 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303148 if (err)
3149 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003150 virtnet_set_queues(vi, vi->curr_queue_pairs);
3151
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003152 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003153 if (err)
3154 return err;
3155
Amit Shah0741bcb2011-12-22 16:58:33 +05303156 return 0;
3157}
Amit Shah0741bcb2011-12-22 16:58:33 +05303158
Rusty Russell296f96f2007-10-22 11:03:37 +10003159static struct virtio_device_id id_table[] = {
3160 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3161 { 0 },
3162};
3163
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003164#define VIRTNET_FEATURES \
3165 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3166 VIRTIO_NET_F_MAC, \
3167 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3168 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3169 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3170 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3171 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3172 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3173 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003174 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003175 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003176
Rusty Russellc45a6812008-05-02 21:50:50 -05003177static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003178 VIRTNET_FEATURES,
3179};
3180
3181static unsigned int features_legacy[] = {
3182 VIRTNET_FEATURES,
3183 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303184 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003185};
3186
Uwe Kleine-König22402522009-11-05 01:32:44 -08003187static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003188 .feature_table = features,
3189 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003190 .feature_table_legacy = features_legacy,
3191 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003192 .driver.name = KBUILD_MODNAME,
3193 .driver.owner = THIS_MODULE,
3194 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003195 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003196 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003197 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003198 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303199#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303200 .freeze = virtnet_freeze,
3201 .restore = virtnet_restore,
3202#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003203};
3204
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003205static __init int virtio_net_driver_init(void)
3206{
3207 int ret;
3208
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003209 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003210 virtnet_cpu_online,
3211 virtnet_cpu_down_prep);
3212 if (ret < 0)
3213 goto out;
3214 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003215 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003216 NULL, virtnet_cpu_dead);
3217 if (ret)
3218 goto err_dead;
3219
3220 ret = register_virtio_driver(&virtio_net_driver);
3221 if (ret)
3222 goto err_virtio;
3223 return 0;
3224err_virtio:
3225 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3226err_dead:
3227 cpuhp_remove_multi_state(virtionet_online);
3228out:
3229 return ret;
3230}
3231module_init(virtio_net_driver_init);
3232
3233static __exit void virtio_net_driver_exit(void)
3234{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003235 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003236 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3237 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003238}
3239module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003240
3241MODULE_DEVICE_TABLE(virtio, id_table);
3242MODULE_DESCRIPTION("Virtio network driver");
3243MODULE_LICENSE("GPL");