blob: 4f3de0ac8b0b44a91f06f1c2dd37fde7bc5e0069 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rusty Russell48925e32009-09-24 09:59:20 -06002/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10003 *
4 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
Rusty Russell296f96f2007-10-22 11:03:37 +10005 */
6//#define DEBUG
7#include <linux/netdevice.h>
8#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +08009#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100010#include <linux/module.h>
11#include <linux/virtio.h>
12#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080013#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010014#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100015#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080016#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000018#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080019#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080020#include <linux/filter.h>
Caleb Raitto2ca653d2018-08-09 17:28:40 -070021#include <linux/kernel.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020022#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010023#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070024#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100025
Amerigo Wangd34710e2013-05-09 19:50:51 +000026static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020027module_param(napi_weight, int, 0444);
28
Willem de Bruijn31c03ae2019-06-13 12:24:57 -040029static bool csum = true, gso = true, napi_tx = true;
Rusty Russell34a48572008-02-04 23:50:02 -050030module_param(csum, bool, 0444);
31module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040032module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050033
Rusty Russell296f96f2007-10-22 11:03:37 +100034/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080035#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080036#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100037
Jason Wangf6b10202017-02-21 16:46:28 +080038#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
39
John Fastabend2de2f7f2017-02-02 19:16:29 -080040/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
41#define VIRTIO_XDP_HEADROOM 256
42
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020043/* Separating two types of XDP xmit */
44#define VIRTIO_XDP_TX BIT(0)
45#define VIRTIO_XDP_REDIR BIT(1)
46
Toshiaki Makita50504712019-01-29 09:45:59 +090047#define VIRTIO_XDP_FLAG BIT(0)
48
Johannes Berg5377d7582015-08-19 09:48:40 +020049/* RX packet size EWMA. The average packet size is used to determine the packet
50 * buffer size when refilling RX rings. As the entire RX ring may be refilled
51 * at once, the weight is chosen so that the EWMA will be insensitive to short-
52 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080053 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010054DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080055
Rick Jones66846042011-11-14 14:17:08 +000056#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000057
Colin Ian King7acd4322017-08-12 22:45:53 +010058static const unsigned long guest_offloads[] = {
59 VIRTIO_NET_F_GUEST_TSO4,
60 VIRTIO_NET_F_GUEST_TSO6,
61 VIRTIO_NET_F_GUEST_ECN,
Jason Wange59ff2c2018-11-22 14:36:30 +080062 VIRTIO_NET_F_GUEST_UFO,
63 VIRTIO_NET_F_GUEST_CSUM
Colin Ian King7acd4322017-08-12 22:45:53 +010064};
Jason Wang3f935222017-07-19 16:54:49 +080065
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090066struct virtnet_stat_desc {
67 char desc[ETH_GSTRING_LEN];
68 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000069};
70
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090071struct virtnet_sq_stats {
72 struct u64_stats_sync syncp;
73 u64 packets;
74 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090075 u64 xdp_tx;
76 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090077 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090078};
79
Jason Wangd46eeea2018-07-31 17:43:39 +080080struct virtnet_rq_stats {
81 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090082 u64 packets;
83 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090084 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090085 u64 xdp_packets;
86 u64 xdp_tx;
87 u64 xdp_redirects;
88 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090089 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090090};
91
92#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +080093#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090094
95static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090096 { "packets", VIRTNET_SQ_STAT(packets) },
97 { "bytes", VIRTNET_SQ_STAT(bytes) },
98 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
99 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900100 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900101};
102
103static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900104 { "packets", VIRTNET_RQ_STAT(packets) },
105 { "bytes", VIRTNET_RQ_STAT(bytes) },
106 { "drops", VIRTNET_RQ_STAT(drops) },
107 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
108 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
109 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
110 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900111 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900112};
113
114#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
115#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
116
Jason Wange9d74172012-12-07 07:04:55 +0000117/* Internal representation of a send virtqueue */
118struct send_queue {
119 /* Virtqueue associated with this send _queue */
120 struct virtqueue *vq;
121
122 /* TX: fragments + linear part + virtio header */
123 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000124
125 /* Name of the send queue: output.$index */
126 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400127
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900128 struct virtnet_sq_stats stats;
129
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400130 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000131};
132
133/* Internal representation of a receive virtqueue */
134struct receive_queue {
135 /* Virtqueue associated with this receive_queue */
136 struct virtqueue *vq;
137
Rusty Russell296f96f2007-10-22 11:03:37 +1000138 struct napi_struct napi;
139
John Fastabendf600b692016-12-15 12:13:24 -0800140 struct bpf_prog __rcu *xdp_prog;
141
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900142 struct virtnet_rq_stats stats;
143
Jason Wange9d74172012-12-07 07:04:55 +0000144 /* Chain pages by the private ptr. */
145 struct page *pages;
146
Michael Daltonab7db912014-01-16 22:23:27 -0800147 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200148 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800149
Michael Daltonfb518792014-01-16 22:23:26 -0800150 /* Page frag for packet buffer allocation. */
151 struct page_frag alloc_frag;
152
Jason Wange9d74172012-12-07 07:04:55 +0000153 /* RX: fragments + linear part + virtio header */
154 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000155
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200156 /* Min single buffer size for mergeable buffers case. */
157 unsigned int min_buf_len;
158
Jason Wang986a4f42012-12-07 07:04:56 +0000159 /* Name of this receive queue: input.$index */
160 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100161
162 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000163};
164
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300165/* Control VQ buffers: protected by the rtnl lock */
166struct control_buf {
167 struct virtio_net_ctrl_hdr hdr;
168 virtio_net_ctrl_ack status;
169 struct virtio_net_ctrl_mq mq;
170 u8 promisc;
171 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300172 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300173 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300174};
175
Jason Wange9d74172012-12-07 07:04:55 +0000176struct virtnet_info {
177 struct virtio_device *vdev;
178 struct virtqueue *cvq;
179 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000180 struct send_queue *sq;
181 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000182 unsigned int status;
183
Jason Wang986a4f42012-12-07 07:04:56 +0000184 /* Max # of queue pairs supported by the device */
185 u16 max_queue_pairs;
186
187 /* # of queue pairs currently used by the driver */
188 u16 curr_queue_pairs;
189
John Fastabend672aafd2016-12-15 12:13:49 -0800190 /* # of XDP queue pairs currently used by the driver */
191 u16 xdp_queue_pairs;
192
Herbert Xu97402b92008-04-18 11:24:27 +0800193 /* I like... big packets and I cannot lie! */
194 bool big_packets;
195
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800196 /* Host will merge rx buffers for big packets (shake it! shake it!) */
197 bool mergeable_rx_bufs;
198
Jason Wang986a4f42012-12-07 07:04:56 +0000199 /* Has control virtqueue */
200 bool has_cvq;
201
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930202 /* Host can handle any s/g split between our header and packet data */
203 bool any_header_sg;
204
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300205 /* Packet virtio header size */
206 u8 hdr_len;
207
Rusty Russell3161e452009-08-26 12:22:32 -0700208 /* Work struct for refilling if we run low on memory. */
209 struct delayed_work refill;
210
Jason Wang586d17c2012-04-11 20:43:52 +0000211 /* Work struct for config space updates */
212 struct work_struct config_work;
213
Jason Wang986a4f42012-12-07 07:04:56 +0000214 /* Does the affinity hint is set for virtqueues? */
215 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000216
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200217 /* CPU hotplug instances for online & dead */
218 struct hlist_node node;
219 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200220
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300221 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100222
223 /* Ethtool settings */
224 u8 duplex;
225 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800226
227 unsigned long guest_offloads;
Willem de Bruijna02e8962018-12-20 17:14:54 -0500228 unsigned long guest_offloads_capable;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700229
230 /* failover when STANDBY feature enabled */
231 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000232};
233
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000234struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300235 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000236 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300237 * hdr is in a separate sg buffer, and data sg buffer shares same page
238 * with this header sg. This padding makes next sg 16 byte aligned
239 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000240 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300241 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000242};
243
Toshiaki Makita50504712019-01-29 09:45:59 +0900244static bool is_xdp_frame(void *ptr)
245{
246 return (unsigned long)ptr & VIRTIO_XDP_FLAG;
247}
248
249static void *xdp_to_ptr(struct xdp_frame *ptr)
250{
251 return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG);
252}
253
254static struct xdp_frame *ptr_to_xdp(void *ptr)
255{
256 return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG);
257}
258
Jason Wang986a4f42012-12-07 07:04:56 +0000259/* Converting between virtqueue no. and kernel tx/rx queue no.
260 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
261 */
262static int vq2txq(struct virtqueue *vq)
263{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000264 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000265}
266
267static int txq2vq(int txq)
268{
269 return txq * 2 + 1;
270}
271
272static int vq2rxq(struct virtqueue *vq)
273{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000274 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000275}
276
277static int rxq2vq(int rxq)
278{
279 return rxq * 2;
280}
281
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300282static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000283{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300284 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000285}
286
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000287/*
288 * private is used to chain pages for big packets, put the whole
289 * most recent used list in the beginning for reuse
290 */
Jason Wange9d74172012-12-07 07:04:55 +0000291static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500292{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000293 struct page *end;
294
Jason Wange9d74172012-12-07 07:04:55 +0000295 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000296 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000297 end->private = (unsigned long)rq->pages;
298 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500299}
300
Jason Wange9d74172012-12-07 07:04:55 +0000301static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500302{
Jason Wange9d74172012-12-07 07:04:55 +0000303 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500304
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000305 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000306 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000307 /* clear private here, it is used to chain pages */
308 p->private = 0;
309 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500310 p = alloc_page(gfp_mask);
311 return p;
312}
313
Willem de Bruijne4e84522017-04-24 13:49:26 -0400314static void virtqueue_napi_schedule(struct napi_struct *napi,
315 struct virtqueue *vq)
316{
317 if (napi_schedule_prep(napi)) {
318 virtqueue_disable_cb(vq);
319 __napi_schedule(napi);
320 }
321}
322
323static void virtqueue_napi_complete(struct napi_struct *napi,
324 struct virtqueue *vq, int processed)
325{
326 int opaque;
327
328 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900329 if (napi_complete_done(napi, processed)) {
330 if (unlikely(virtqueue_poll(vq, opaque)))
331 virtqueue_napi_schedule(napi, vq);
332 } else {
333 virtqueue_disable_cb(vq);
334 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400335}
336
Jason Wange9d74172012-12-07 07:04:55 +0000337static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000338{
Jason Wange9d74172012-12-07 07:04:55 +0000339 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400340 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000341
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500342 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000343 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000344
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400345 if (napi->weight)
346 virtqueue_napi_schedule(napi, vq);
347 else
348 /* We were probably waiting for more output buffers. */
349 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000350}
351
Jason Wang28b39bc2017-07-19 16:54:46 +0800352#define MRG_CTX_HEADER_SHIFT 22
353static void *mergeable_len_to_ctx(unsigned int truesize,
354 unsigned int headroom)
355{
356 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
357}
358
359static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
360{
361 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
362}
363
364static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
365{
366 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
367}
368
Mike Waychison34646452012-01-04 12:52:32 +0000369/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300370static struct sk_buff *page_to_skb(struct virtnet_info *vi,
371 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700372 struct page *page, unsigned int offset,
Jason Wang436c9452018-11-29 13:53:16 +0800373 unsigned int len, unsigned int truesize,
374 bool hdr_valid)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000375{
376 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300377 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700378 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000379 char *p;
380
Michael Dalton2613af02013-10-28 15:44:18 -0700381 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000382
383 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100384 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000385 if (unlikely(!skb))
386 return NULL;
387
388 hdr = skb_vnet_hdr(skb);
389
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300390 hdr_len = vi->hdr_len;
391 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700392 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300393 else
Michael Dalton2613af02013-10-28 15:44:18 -0700394 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000395
Jason Wang436c9452018-11-29 13:53:16 +0800396 if (hdr_valid)
397 memcpy(hdr, p, hdr_len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000398
399 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700400 offset += hdr_padded_len;
401 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000402
403 copy = len;
404 if (copy > skb_tailroom(skb))
405 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200406 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000407
408 len -= copy;
409 offset += copy;
410
Michael Dalton2613af02013-10-28 15:44:18 -0700411 if (vi->mergeable_rx_bufs) {
412 if (len)
413 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
414 else
415 put_page(page);
416 return skb;
417 }
418
Sasha Levine878d782011-09-28 04:40:54 +0000419 /*
420 * Verify that we can indeed put this data into a skb.
421 * This is here to handle cases when the device erroneously
422 * tries to receive more than is possible. This is usually
423 * the case of a broken device.
424 */
425 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000426 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000427 dev_kfree_skb(skb);
428 return NULL;
429 }
Michael Dalton2613af02013-10-28 15:44:18 -0700430 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000431 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700432 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
433 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
434 frag_size, truesize);
435 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000436 page = (struct page *)page->private;
437 offset = 0;
438 }
439
440 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000441 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000442
443 return skb;
444}
445
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200446static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
447 struct send_queue *sq,
448 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800449{
John Fastabend56434a02016-12-15 12:14:13 -0800450 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800451 int err;
452
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200453 /* virtqueue want to use data area in-front of packet */
454 if (unlikely(xdpf->metasize > 0))
455 return -EOPNOTSUPP;
456
457 if (unlikely(xdpf->headroom < vi->hdr_len))
458 return -EOVERFLOW;
459
460 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
461 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800462 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200463 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800464 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200465 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800466
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200467 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800468
Toshiaki Makita50504712019-01-29 09:45:59 +0900469 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp_to_ptr(xdpf),
470 GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100471 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200472 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800473
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200474 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800475}
476
Toshiaki Makita2a435652018-07-23 23:36:07 +0900477static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
478{
479 unsigned int qp;
480
481 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
482 return &vi->sq[qp];
483}
484
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200485static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200486 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800487{
488 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100489 struct receive_queue *rq = vi->rq;
490 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200491 struct send_queue *sq;
492 unsigned int len;
Toshiaki Makita546f28972019-01-31 20:40:30 +0900493 int packets = 0;
494 int bytes = 0;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200495 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900496 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900497 int ret, err;
Toshiaki Makita50504712019-01-29 09:45:59 +0900498 void *ptr;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200499 int i;
500
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100501 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
502 * indicate XDP resources have been successfully allocated.
503 */
504 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita1667c082019-01-29 09:45:56 +0900505 if (!xdp_prog)
506 return -ENXIO;
507
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000508 sq = virtnet_xdp_sq(vi);
509
510 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
Jason Wang186b3c92017-09-19 17:42:43 +0800511 ret = -EINVAL;
512 drops = n;
513 goto out;
514 }
515
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200516 /* Free up any pending old buffers before queueing new ones. */
Toshiaki Makita50504712019-01-29 09:45:59 +0900517 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Toshiaki Makita546f28972019-01-31 20:40:30 +0900518 if (likely(is_xdp_frame(ptr))) {
519 struct xdp_frame *frame = ptr_to_xdp(ptr);
520
521 bytes += frame->len;
522 xdp_return_frame(frame);
523 } else {
524 struct sk_buff *skb = ptr;
525
526 bytes += skb->len;
527 napi_consume_skb(skb, false);
528 }
529 packets++;
Toshiaki Makita50504712019-01-29 09:45:59 +0900530 }
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200531
532 for (i = 0; i < n; i++) {
533 struct xdp_frame *xdpf = frames[i];
534
535 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
536 if (err) {
537 xdp_return_frame_rx_napi(xdpf);
538 drops++;
539 }
540 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900541 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200542
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900543 if (flags & XDP_XMIT_FLUSH) {
544 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
545 kicks = 1;
546 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900547out:
548 u64_stats_update_begin(&sq->stats.syncp);
Toshiaki Makita546f28972019-01-31 20:40:30 +0900549 sq->stats.bytes += bytes;
550 sq->stats.packets += packets;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900551 sq->stats.xdp_tx += n;
552 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900553 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900554 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200555
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900556 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800557}
558
Jason Wangf6b10202017-02-21 16:46:28 +0800559static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
560{
561 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
562}
563
Jason Wang4941d472017-07-19 16:54:48 +0800564/* We copy the packet for XDP in the following cases:
565 *
566 * 1) Packet is scattered across multiple rx buffers.
567 * 2) Headroom space is insufficient.
568 *
569 * This is inefficient but it's a temporary condition that
570 * we hit right after XDP is enabled and until queue is refilled
571 * with large buffers with sufficient headroom - so it should affect
572 * at most queue size packets.
573 * Afterwards, the conditions to enable
574 * XDP should preclude the underlying device from sending packets
575 * across multiple buffers (num_buf > 1), and we make sure buffers
576 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800577 */
578static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800579 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800580 struct page *p,
581 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800582 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800583 unsigned int *len)
584{
585 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800586
587 if (!page)
588 return NULL;
589
590 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
591 page_off += *len;
592
Jason Wang56a86f82016-12-23 22:37:26 +0800593 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800594 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800595 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800596 void *buf;
597 int off;
598
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200599 buf = virtqueue_get_buf(rq->vq, &buflen);
600 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800601 goto err_buf;
602
John Fastabend72979a62016-12-15 12:14:36 -0800603 p = virt_to_head_page(buf);
604 off = buf - page_address(p);
605
Jason Wang56a86f82016-12-23 22:37:26 +0800606 /* guard against a misconfigured or uncooperative backend that
607 * is sending packet larger than the MTU.
608 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800609 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800610 put_page(p);
611 goto err_buf;
612 }
613
John Fastabend72979a62016-12-15 12:14:36 -0800614 memcpy(page_address(page) + page_off,
615 page_address(p) + off, buflen);
616 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800617 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800618 }
619
John Fastabend2de2f7f2017-02-02 19:16:29 -0800620 /* Headroom does not contribute to packet length */
621 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800622 return page;
623err_buf:
624 __free_pages(page, 0);
625 return NULL;
626}
627
Jason Wang4941d472017-07-19 16:54:48 +0800628static struct sk_buff *receive_small(struct net_device *dev,
629 struct virtnet_info *vi,
630 struct receive_queue *rq,
631 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800632 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900633 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800634 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800635{
636 struct sk_buff *skb;
637 struct bpf_prog *xdp_prog;
638 unsigned int xdp_headroom = (unsigned long)ctx;
639 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
640 unsigned int headroom = vi->hdr_len + header_offset;
641 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
642 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
643 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100644 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800645 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100646 int err;
647
Jason Wang4941d472017-07-19 16:54:48 +0800648 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800649 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800650
651 rcu_read_lock();
652 xdp_prog = rcu_dereference(rq->xdp_prog);
653 if (xdp_prog) {
654 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200655 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800656 struct xdp_buff xdp;
657 void *orig_data;
658 u32 act;
659
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100660 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800661 goto err_xdp;
662
663 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
664 int offset = buf - page_address(page) + header_offset;
665 unsigned int tlen = len + vi->hdr_len;
666 u16 num_buf = 1;
667
668 xdp_headroom = virtnet_get_headroom(vi);
669 header_offset = VIRTNET_RX_PAD + xdp_headroom;
670 headroom = vi->hdr_len + header_offset;
671 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
672 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
673 xdp_page = xdp_linearize_page(rq, &num_buf, page,
674 offset, header_offset,
675 &tlen);
676 if (!xdp_page)
677 goto err_xdp;
678
679 buf = page_address(xdp_page);
680 put_page(page);
681 page = xdp_page;
682 }
683
684 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
685 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200686 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800687 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100688 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800689 orig_data = xdp.data;
690 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800691 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800692
693 switch (act) {
694 case XDP_PASS:
695 /* Recalculate length in case bpf program changed it */
696 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700697 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800698 break;
699 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800700 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200701 xdpf = convert_to_xdp_frame(&xdp);
702 if (unlikely(!xdpf))
703 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800704 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
705 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800706 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100707 goto err_xdp;
708 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200709 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800710 rcu_read_unlock();
711 goto xdp_xmit;
712 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800713 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800714 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100715 if (err)
716 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200717 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800718 rcu_read_unlock();
719 goto xdp_xmit;
720 default:
721 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500722 /* fall through */
Jason Wang4941d472017-07-19 16:54:48 +0800723 case XDP_ABORTED:
724 trace_xdp_exception(vi->dev, xdp_prog, act);
725 case XDP_DROP:
726 goto err_xdp;
727 }
728 }
729 rcu_read_unlock();
730
731 skb = build_skb(buf, buflen);
732 if (!skb) {
733 put_page(page);
734 goto err;
735 }
736 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700737 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800738 if (!delta) {
739 buf += header_offset;
740 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
741 } /* keep zeroed vnet hdr since packet was changed by bpf */
742
743err:
744 return skb;
745
746err_xdp:
747 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800748 stats->xdp_drops++;
749 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800750 put_page(page);
751xdp_xmit:
752 return NULL;
753}
754
755static struct sk_buff *receive_big(struct net_device *dev,
756 struct virtnet_info *vi,
757 struct receive_queue *rq,
758 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900759 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800760 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800761{
762 struct page *page = buf;
Jason Wang436c9452018-11-29 13:53:16 +0800763 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len,
764 PAGE_SIZE, true);
Jason Wang4941d472017-07-19 16:54:48 +0800765
Jason Wangd46eeea2018-07-31 17:43:39 +0800766 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800767 if (unlikely(!skb))
768 goto err;
769
770 return skb;
771
772err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800773 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800774 give_pages(rq, page);
775 return NULL;
776}
777
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200778static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200779 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200780 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200781 void *buf,
782 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800783 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900784 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800785 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000786{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300787 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
788 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200789 struct page *page = virt_to_head_page(buf);
790 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800791 struct sk_buff *head_skb, *curr_skb;
792 struct bpf_prog *xdp_prog;
793 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800794 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800795 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800796
John Fastabend56434a02016-12-15 12:14:13 -0800797 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800798 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800799
John Fastabendf600b692016-12-15 12:13:24 -0800800 rcu_read_lock();
801 xdp_prog = rcu_dereference(rq->xdp_prog);
802 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200803 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800804 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800805 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800806 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800807 u32 act;
808
Jason Wang3d62b2a2018-05-22 11:44:31 +0800809 /* Transient failure which in theory could occur if
810 * in-flight packets from before XDP was enabled reach
811 * the receive path after XDP is loaded.
812 */
813 if (unlikely(hdr->hdr.gso_type))
814 goto err_xdp;
815
Jason Wang3cc81a92018-03-02 17:29:14 +0800816 /* This happens when rx buffer size is underestimated
817 * or headroom is not enough because of the buffer
818 * was refilled before XDP is set. This should only
819 * happen for the first several packets, so we don't
820 * care much about its performance.
821 */
Jason Wang4941d472017-07-19 16:54:48 +0800822 if (unlikely(num_buf > 1 ||
823 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800824 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800825 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800826 page, offset,
827 VIRTIO_XDP_HEADROOM,
828 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800829 if (!xdp_page)
830 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800831 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800832 } else {
833 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800834 }
835
John Fastabend2de2f7f2017-02-02 19:16:29 -0800836 /* Allow consuming headroom but reserve enough space to push
837 * the descriptor on if we get an XDP_TX return code.
838 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800839 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800840 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800841 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200842 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800843 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100844 xdp.rxq = &rq->xdp_rxq;
845
John Fastabend0354e4d2017-02-02 19:15:01 -0800846 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800847 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800848
John Fastabend56434a02016-12-15 12:14:13 -0800849 switch (act) {
850 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800851 /* recalculate offset to account for any header
852 * adjustments. Note other cases do not build an
853 * skb and avoid using offset
854 */
855 offset = xdp.data -
856 page_address(xdp_page) - vi->hdr_len;
857
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700858 /* recalculate len if xdp.data or xdp.data_end were
859 * adjusted
860 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700861 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800862 /* We can only create skb based on xdp_page. */
863 if (unlikely(xdp_page != page)) {
864 rcu_read_unlock();
865 put_page(page);
866 head_skb = page_to_skb(vi, rq, xdp_page,
Jason Wang436c9452018-11-29 13:53:16 +0800867 offset, len,
868 PAGE_SIZE, false);
Jason Wang1830f892016-12-23 22:37:27 +0800869 return head_skb;
870 }
John Fastabend56434a02016-12-15 12:14:13 -0800871 break;
872 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800873 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200874 xdpf = convert_to_xdp_frame(&xdp);
875 if (unlikely(!xdpf))
876 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800877 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
878 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800879 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100880 if (unlikely(xdp_page != page))
881 put_page(xdp_page);
882 goto err_xdp;
883 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200884 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800885 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800886 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800887 rcu_read_unlock();
888 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800889 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800890 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800891 err = xdp_do_redirect(dev, &xdp, xdp_prog);
892 if (err) {
893 if (unlikely(xdp_page != page))
894 put_page(xdp_page);
895 goto err_xdp;
896 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200897 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800898 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800899 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800900 rcu_read_unlock();
901 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800902 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800903 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500904 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800905 case XDP_ABORTED:
906 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500907 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800908 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800909 if (unlikely(xdp_page != page))
910 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800911 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800912 }
John Fastabendf600b692016-12-15 12:13:24 -0800913 }
914 rcu_read_unlock();
915
Jason Wang28b39bc2017-07-19 16:54:46 +0800916 truesize = mergeable_ctx_to_truesize(ctx);
917 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300918 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200919 dev->name, len, (unsigned long)ctx);
920 dev->stats.rx_length_errors++;
921 goto err_skb;
922 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800923
Jason Wang436c9452018-11-29 13:53:16 +0800924 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog);
John Fastabendf600b692016-12-15 12:13:24 -0800925 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000926
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200927 if (unlikely(!curr_skb))
928 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000929 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200930 int num_skb_frags;
931
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200932 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800933 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200934 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200935 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300936 virtio16_to_cpu(vi->vdev,
937 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200938 dev->stats.rx_length_errors++;
939 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000940 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200941
Jason Wangd46eeea2018-07-31 17:43:39 +0800942 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200943 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800944
945 truesize = mergeable_ctx_to_truesize(ctx);
946 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300947 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200948 dev->name, len, (unsigned long)ctx);
949 dev->stats.rx_length_errors++;
950 goto err_skb;
951 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200952
953 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700954 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
955 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200956
957 if (unlikely(!nskb))
958 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700959 if (curr_skb == head_skb)
960 skb_shinfo(curr_skb)->frag_list = nskb;
961 else
962 curr_skb->next = nskb;
963 curr_skb = nskb;
964 head_skb->truesize += nskb->truesize;
965 num_skb_frags = 0;
966 }
967 if (curr_skb != head_skb) {
968 head_skb->data_len += len;
969 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800970 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700971 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200972 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800973 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
974 put_page(page);
975 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800976 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800977 } else {
978 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800979 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800980 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200981 }
982
Johannes Berg5377d7582015-08-19 09:48:40 +0200983 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200984 return head_skb;
985
John Fastabendf600b692016-12-15 12:13:24 -0800986err_xdp:
987 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800988 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200989err_skb:
990 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800991 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200992 buf = virtqueue_get_buf(rq->vq, &len);
993 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200994 pr_debug("%s: rx error: %d buffers missing\n",
995 dev->name, num_buf);
996 dev->stats.rx_length_errors++;
997 break;
998 }
Jason Wangd46eeea2018-07-31 17:43:39 +0800999 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001000 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001001 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001002 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001003err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +08001004 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001005 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -08001006xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001007 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001008}
1009
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001010static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
1011 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001012 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +08001013 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +10001014{
Jason Wange9d74172012-12-07 07:04:55 +00001015 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001016 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001017 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001018
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +03001019 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001020 pr_debug("%s: short packet %i\n", dev->name, len);
1021 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -08001022 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001023 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001024 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001025 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001026 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001027 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001028 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001029 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001030 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001031
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001032 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001033 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001034 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001035 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001036 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001037 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001038 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001039
1040 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001041 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001042
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001043 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001044
Mike Rapoporte858fae2016-06-08 16:09:21 +03001045 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001046 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001047
Mike Rapoporte858fae2016-06-08 16:09:21 +03001048 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1049 virtio_is_little_endian(vi->vdev))) {
1050 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1051 dev->name, hdr->hdr.gso_type,
1052 hdr->hdr.gso_size);
1053 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001054 }
1055
Willem de Bruijn133bbb12019-01-17 20:08:53 -05001056 skb_record_rx_queue(skb, vq2rxq(rq->vq));
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001057 skb->protocol = eth_type_trans(skb, dev);
1058 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1059 ntohs(skb->protocol), skb->len, skb->pkt_type);
1060
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001061 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001062 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001063
1064frame_err:
1065 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001066 dev_kfree_skb(skb);
1067}
1068
Jason Wang192f68c2017-07-19 16:54:47 +08001069/* Unlike mergeable buffers, all buffers are allocated to the
1070 * same size, except for the headroom. For this reason we do
1071 * not need to use mergeable_len_to_ctx here - it is enough
1072 * to store the headroom as the context ignoring the truesize.
1073 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001074static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1075 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001076{
Jason Wangf6b10202017-02-21 16:46:28 +08001077 struct page_frag *alloc_frag = &rq->alloc_frag;
1078 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001079 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001080 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001081 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001082 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001083
Jason Wangf6b10202017-02-21 16:46:28 +08001084 len = SKB_DATA_ALIGN(len) +
1085 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1086 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001087 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001088
Jason Wangf6b10202017-02-21 16:46:28 +08001089 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1090 get_page(alloc_frag->page);
1091 alloc_frag->offset += len;
1092 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1093 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001094 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001095 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001096 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001097 return err;
1098}
1099
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001100static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1101 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001102{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001103 struct page *first, *list = NULL;
1104 char *p;
1105 int i, err, offset;
1106
Rusty Russella5835442014-09-11 10:17:36 +09301107 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1108
Jason Wange9d74172012-12-07 07:04:55 +00001109 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001110 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001111 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001112 if (!first) {
1113 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001114 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001115 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001116 }
Jason Wange9d74172012-12-07 07:04:55 +00001117 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001118
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001119 /* chain new page in list head to match sg */
1120 first->private = (unsigned long)list;
1121 list = first;
1122 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001123
Jason Wange9d74172012-12-07 07:04:55 +00001124 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001125 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001126 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001127 return -ENOMEM;
1128 }
1129 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001130
Jason Wange9d74172012-12-07 07:04:55 +00001131 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001132 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1133 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001134
Jason Wange9d74172012-12-07 07:04:55 +00001135 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001136 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001137 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001138
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001139 /* chain first in list head */
1140 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301141 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1142 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001143 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001144 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001145
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001146 return err;
1147}
Herbert Xu97402b92008-04-18 11:24:27 +08001148
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001149static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001150 struct ewma_pkt_len *avg_pkt_len,
1151 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001152{
Michael Daltonab7db912014-01-16 22:23:27 -08001153 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001154 unsigned int len;
1155
Jason Wang3cc81a92018-03-02 17:29:14 +08001156 if (room)
1157 return PAGE_SIZE - room;
1158
1159 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001160 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001161
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001162 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001163}
1164
John Fastabend2de2f7f2017-02-02 19:16:29 -08001165static int add_recvbuf_mergeable(struct virtnet_info *vi,
1166 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001167{
Michael Daltonfb518792014-01-16 22:23:26 -08001168 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001169 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001170 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1171 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001172 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001173 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001174 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001175 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001176
Jason Wang3cc81a92018-03-02 17:29:14 +08001177 /* Extra tailroom is needed to satisfy XDP's assumption. This
1178 * means rx frags coalescing won't work, but consider we've
1179 * disabled GSO for XDP, it won't be a big issue.
1180 */
1181 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1182 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001183 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001184
Michael Daltonfb518792014-01-16 22:23:26 -08001185 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001186 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001187 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001188 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001189 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001190 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001191 /* To avoid internal fragmentation, if there is very likely not
1192 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001193 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001194 */
Michael Daltonfb518792014-01-16 22:23:26 -08001195 len += hole;
1196 alloc_frag->offset += hole;
1197 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001198
Michael Daltonfb518792014-01-16 22:23:26 -08001199 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001200 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001201 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001202 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001203 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001204
1205 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001206}
1207
Rusty Russellb2baed62011-12-29 00:42:38 +00001208/*
1209 * Returns false if we couldn't fill entirely (OOM).
1210 *
1211 * Normally run in the receive path, but can also be run from ndo_open
1212 * before we're receiving packets, or from refill_work which is
1213 * careful to disable receiving (using napi_disable).
1214 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001215static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1216 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001217{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001218 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001219 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001220
Amit Shah0aea51c2009-08-26 14:58:28 +05301221 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001222 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001223 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001224 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001225 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001226 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001227 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001228
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001229 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301230 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001231 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001232 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001233 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
1234 u64_stats_update_begin(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001235 rq->stats.kicks++;
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001236 u64_stats_update_end(&rq->stats.syncp);
1237 }
1238
Rusty Russell3161e452009-08-26 12:22:32 -07001239 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001240}
1241
Rusty Russell18445c42008-02-04 23:49:57 -05001242static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001243{
1244 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001245 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001246
Willem de Bruijne4e84522017-04-24 13:49:26 -04001247 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001248}
1249
Willem de Bruijne4e84522017-04-24 13:49:26 -04001250static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001251{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001252 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001253
1254 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001255 * won't get another interrupt, so process any outstanding packets now.
1256 * Call local_bh_enable after to trigger softIRQ processing.
1257 */
1258 local_bh_disable();
1259 virtqueue_napi_schedule(napi, vq);
1260 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001261}
1262
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001263static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1264 struct virtqueue *vq,
1265 struct napi_struct *napi)
1266{
1267 if (!napi->weight)
1268 return;
1269
1270 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1271 * enable the feature if this is likely affine with the transmit path.
1272 */
1273 if (!vi->affinity_hint_set) {
1274 napi->weight = 0;
1275 return;
1276 }
1277
1278 return virtnet_napi_enable(vq, napi);
1279}
1280
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001281static void virtnet_napi_tx_disable(struct napi_struct *napi)
1282{
1283 if (napi->weight)
1284 napi_disable(napi);
1285}
1286
Rusty Russell3161e452009-08-26 12:22:32 -07001287static void refill_work(struct work_struct *work)
1288{
Jason Wange9d74172012-12-07 07:04:55 +00001289 struct virtnet_info *vi =
1290 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001291 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001292 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001293
Sasha Levin55257d72013-04-29 12:00:08 +09301294 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001295 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001296
Jason Wang986a4f42012-12-07 07:04:56 +00001297 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001298 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001299 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001300
1301 /* In theory, this can happen: if we don't get any buffers in
1302 * we will *never* try to fill again.
1303 */
1304 if (still_empty)
1305 schedule_delayed_work(&vi->refill, HZ/2);
1306 }
Rusty Russell3161e452009-08-26 12:22:32 -07001307}
1308
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001309static int virtnet_receive(struct receive_queue *rq, int budget,
1310 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001311{
Jason Wange9d74172012-12-07 07:04:55 +00001312 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001313 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001314 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001315 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001316 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001317
Jason Wang192f68c2017-07-19 16:54:47 +08001318 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001319 void *ctx;
1320
Jason Wangd46eeea2018-07-31 17:43:39 +08001321 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001322 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001323 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001324 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001325 }
1326 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001327 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001328 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001329 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001330 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001331 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001332 }
1333
Jason Wangbe121f42014-01-16 14:45:24 +08001334 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001335 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001336 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001337 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001338
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001339 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001340 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1341 size_t offset = virtnet_rq_stats_desc[i].offset;
1342 u64 *item;
1343
Jason Wangd46eeea2018-07-31 17:43:39 +08001344 item = (u64 *)((u8 *)&rq->stats + offset);
1345 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001346 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001347 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001348
Jason Wangd46eeea2018-07-31 17:43:39 +08001349 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001350}
1351
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001352static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi)
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001353{
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001354 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001355 unsigned int packets = 0;
1356 unsigned int bytes = 0;
Toshiaki Makita50504712019-01-29 09:45:59 +09001357 void *ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001358
Toshiaki Makita50504712019-01-29 09:45:59 +09001359 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1360 if (likely(!is_xdp_frame(ptr))) {
1361 struct sk_buff *skb = ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001362
Toshiaki Makita50504712019-01-29 09:45:59 +09001363 pr_debug("Sent skb %p\n", skb);
1364
1365 bytes += skb->len;
1366 napi_consume_skb(skb, in_napi);
1367 } else {
1368 struct xdp_frame *frame = ptr_to_xdp(ptr);
1369
1370 bytes += frame->len;
1371 xdp_return_frame(frame);
1372 }
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001373 packets++;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001374 }
1375
1376 /* Avoid overhead when no packets have been processed
1377 * happens when called speculatively from start_xmit.
1378 */
1379 if (!packets)
1380 return;
1381
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001382 u64_stats_update_begin(&sq->stats.syncp);
1383 sq->stats.bytes += bytes;
1384 sq->stats.packets += packets;
1385 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001386}
1387
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001388static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1389{
1390 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1391 return false;
1392 else if (q < vi->curr_queue_pairs)
1393 return true;
1394 else
1395 return false;
1396}
1397
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001398static void virtnet_poll_cleantx(struct receive_queue *rq)
1399{
1400 struct virtnet_info *vi = rq->vq->vdev->priv;
1401 unsigned int index = vq2rxq(rq->vq);
1402 struct send_queue *sq = &vi->sq[index];
1403 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1404
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001405 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001406 return;
1407
1408 if (__netif_tx_trylock(txq)) {
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001409 free_old_xmit_skbs(sq, true);
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001410 __netif_tx_unlock(txq);
1411 }
1412
1413 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1414 netif_tx_wake_queue(txq);
1415}
1416
Jason Wang2ffa7592014-07-23 16:33:54 +08001417static int virtnet_poll(struct napi_struct *napi, int budget)
1418{
1419 struct receive_queue *rq =
1420 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001421 struct virtnet_info *vi = rq->vq->vdev->priv;
1422 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001423 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001424 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001425
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001426 virtnet_poll_cleantx(rq);
1427
Jason Wang186b3c92017-09-19 17:42:43 +08001428 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001429
Rusty Russell8329d982007-11-19 11:20:43 -05001430 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001431 if (received < budget)
1432 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001433
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001434 if (xdp_xmit & VIRTIO_XDP_REDIR)
1435 xdp_do_flush_map();
1436
1437 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001438 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001439 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1440 u64_stats_update_begin(&sq->stats.syncp);
1441 sq->stats.kicks++;
1442 u64_stats_update_end(&sq->stats.syncp);
1443 }
Jason Wang9267c432018-04-13 14:58:25 +08001444 }
Jason Wang186b3c92017-09-19 17:42:43 +08001445
Rusty Russell296f96f2007-10-22 11:03:37 +10001446 return received;
1447}
1448
Jason Wang986a4f42012-12-07 07:04:56 +00001449static int virtnet_open(struct net_device *dev)
1450{
1451 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001452 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001453
Jason Wange4166622013-05-21 20:03:58 +00001454 for (i = 0; i < vi->max_queue_pairs; i++) {
1455 if (i < vi->curr_queue_pairs)
1456 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001457 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001458 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001459
1460 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1461 if (err < 0)
1462 return err;
1463
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001464 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1465 MEM_TYPE_PAGE_SHARED, NULL);
1466 if (err < 0) {
1467 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1468 return err;
1469 }
1470
Willem de Bruijne4e84522017-04-24 13:49:26 -04001471 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001472 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001473 }
1474
1475 return 0;
1476}
1477
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001478static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1479{
1480 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1481 struct virtnet_info *vi = sq->vq->vdev->priv;
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001482 unsigned int index = vq2txq(sq->vq);
1483 struct netdev_queue *txq;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001484
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001485 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
1486 /* We don't need to enable cb for XDP */
1487 napi_complete_done(napi, 0);
1488 return 0;
1489 }
1490
1491 txq = netdev_get_tx_queue(vi->dev, index);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001492 __netif_tx_lock(txq, raw_smp_processor_id());
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001493 free_old_xmit_skbs(sq, true);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001494 __netif_tx_unlock(txq);
1495
1496 virtqueue_napi_complete(napi, sq->vq, 0);
1497
1498 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1499 netif_tx_wake_queue(txq);
1500
1501 return 0;
1502}
1503
Jason Wange9d74172012-12-07 07:04:55 +00001504static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001505{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001506 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001507 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001508 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001509 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001510 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301511 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001512
Johannes Berge1749612008-10-27 15:59:26 -07001513 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301514
1515 can_push = vi->any_header_sg &&
1516 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1517 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1518 /* Even if we can, don't push here yet as this would skew
1519 * csum_start offset below. */
1520 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001521 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301522 else
1523 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001524
Mike Rapoporte858fae2016-06-08 16:09:21 +03001525 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001526 virtio_is_little_endian(vi->vdev), false,
1527 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001528 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001529
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001530 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001531 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001532
Jason Wang547c8902015-08-27 14:53:06 +08001533 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301534 if (can_push) {
1535 __skb_push(skb, hdr_len);
1536 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001537 if (unlikely(num_sg < 0))
1538 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301539 /* Pull header back to avoid skew in tx bytes calculations. */
1540 __skb_pull(skb, hdr_len);
1541 } else {
1542 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001543 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1544 if (unlikely(num_sg < 0))
1545 return num_sg;
1546 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301547 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301548 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001549}
1550
Stephen Hemminger424efe92009-08-31 19:50:51 +00001551static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001552{
1553 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001554 int qnum = skb_get_queue_mapping(skb);
1555 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301556 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001557 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
Florian Westphal6b16f9e2019-04-01 16:42:14 +02001558 bool kick = !netdev_xmit_more();
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001559 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001560
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001561 /* Free up any pending old buffers before queueing new ones. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001562 free_old_xmit_skbs(sq, false);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001563
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001564 if (use_napi && kick)
1565 virtqueue_enable_cb_delayed(sq->vq);
1566
Jacob Keller074c3582014-06-25 02:37:13 +00001567 /* timestamp packet in software */
1568 skb_tx_timestamp(skb);
1569
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001570 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001571 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001572
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301573 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001574 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301575 dev->stats.tx_fifo_errors++;
1576 if (net_ratelimit())
1577 dev_warn(&dev->dev,
Yuval Shaia7934b482019-04-03 12:10:13 +03001578 "Unexpected TXQ (%d) queue failure: %d\n",
1579 qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001580 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001581 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001582 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001583 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001584
Rusty Russell48925e32009-09-24 09:59:20 -06001585 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001586 if (!use_napi) {
1587 skb_orphan(skb);
1588 nf_reset(skb);
1589 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001590
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001591 /* If running out of space, stop queue to avoid getting packets that we
1592 * are then unable to transmit.
1593 * An alternative would be to force queuing layer to requeue the skb by
1594 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1595 * returned in a normal path of operation: it means that driver is not
1596 * maintaining the TX queue stop/start state properly, and causes
1597 * the stack to do a non-trivial amount of useless work.
1598 * Since most packets only take 1 or 2 ring slots, stopping the queue
1599 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001600 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001601 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001602 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001603 if (!use_napi &&
1604 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001605 /* More just got used, free them then recheck. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001606 free_old_xmit_skbs(sq, false);
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001607 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001608 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001609 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001610 }
1611 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001612 }
Rusty Russell48925e32009-09-24 09:59:20 -06001613
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001614 if (kick || netif_xmit_stopped(txq)) {
1615 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1616 u64_stats_update_begin(&sq->stats.syncp);
1617 sq->stats.kicks++;
1618 u64_stats_update_end(&sq->stats.syncp);
1619 }
1620 }
David S. Miller0b725a22014-08-25 15:51:53 -07001621
Rusty Russell48925e32009-09-24 09:59:20 -06001622 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001623}
1624
Amos Kong40cbfc32013-01-21 01:17:21 +00001625/*
1626 * Send command via the control virtqueue and check status. Commands
1627 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001628 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001629 */
1630static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001631 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001632{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301633 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001634 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001635
1636 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301637 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001638
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001639 vi->ctrl->status = ~0;
1640 vi->ctrl->hdr.class = class;
1641 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301642 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001643 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301644 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001645
Rusty Russellf7bc9592013-03-20 15:44:28 +10301646 if (out)
1647 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001648
Rusty Russellf7bc9592013-03-20 15:44:28 +10301649 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001650 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001651 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001652
stephen hemmingerd24bae32013-12-09 16:17:40 -08001653 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301654 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001655
Heinz Graalfs67975902013-10-29 09:40:02 +10301656 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001657 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001658
1659 /* Spin for a response, the kick causes an ioport write, trapping
1660 * into the hypervisor, so the request should be handled immediately.
1661 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301662 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1663 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001664 cpu_relax();
1665
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001666 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001667}
1668
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001669static int virtnet_set_mac_address(struct net_device *dev, void *p)
1670{
1671 struct virtnet_info *vi = netdev_priv(dev);
1672 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001673 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001674 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001675 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001676
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001677 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1678 return -EOPNOTSUPP;
1679
Shyam Saini801822d2016-12-24 00:44:58 +05301680 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001681 if (!addr)
1682 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001683
1684 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001685 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001686 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001687
Amos Kong7e58d5a2013-01-21 01:17:23 +00001688 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1689 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1690 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001691 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001692 dev_warn(&vdev->dev,
1693 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001694 ret = -EINVAL;
1695 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001696 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001697 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1698 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301699 unsigned int i;
1700
1701 /* Naturally, this has an atomicity problem. */
1702 for (i = 0; i < dev->addr_len; i++)
1703 virtio_cwrite8(vdev,
1704 offsetof(struct virtio_net_config, mac) +
1705 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001706 }
1707
1708 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001709 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001710
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001711out:
1712 kfree(addr);
1713 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001714}
1715
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001716static void virtnet_stats(struct net_device *dev,
1717 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001718{
1719 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001720 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001721 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001722
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001723 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001724 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001725 struct receive_queue *rq = &vi->rq[i];
1726 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001727
1728 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001729 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1730 tpackets = sq->stats.packets;
1731 tbytes = sq->stats.bytes;
1732 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001733
1734 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001735 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001736 rpackets = rq->stats.packets;
1737 rbytes = rq->stats.bytes;
1738 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001739 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001740
1741 tot->rx_packets += rpackets;
1742 tot->tx_packets += tpackets;
1743 tot->rx_bytes += rbytes;
1744 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001745 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001746 }
1747
1748 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001749 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001750 tot->rx_length_errors = dev->stats.rx_length_errors;
1751 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001752}
1753
Jason Wang586d17c2012-04-11 20:43:52 +00001754static void virtnet_ack_link_announce(struct virtnet_info *vi)
1755{
1756 rtnl_lock();
1757 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001758 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001759 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1760 rtnl_unlock();
1761}
1762
John Fastabend473153292017-02-02 19:14:32 -08001763static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001764{
1765 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001766 struct net_device *dev = vi->dev;
1767
1768 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1769 return 0;
1770
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001771 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1772 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001773
1774 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001775 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001776 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1777 queue_pairs);
1778 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301779 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001780 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001781 /* virtnet_open() will refill when device is going to up. */
1782 if (dev->flags & IFF_UP)
1783 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301784 }
Jason Wang986a4f42012-12-07 07:04:56 +00001785
1786 return 0;
1787}
1788
John Fastabend473153292017-02-02 19:14:32 -08001789static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1790{
1791 int err;
1792
1793 rtnl_lock();
1794 err = _virtnet_set_queues(vi, queue_pairs);
1795 rtnl_unlock();
1796 return err;
1797}
1798
Rusty Russell296f96f2007-10-22 11:03:37 +10001799static int virtnet_close(struct net_device *dev)
1800{
1801 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001802 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001803
Rusty Russellb2baed62011-12-29 00:42:38 +00001804 /* Make sure refill_work doesn't re-enable napi! */
1805 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001806
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001807 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001808 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001809 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001810 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001811 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001812
Rusty Russell296f96f2007-10-22 11:03:37 +10001813 return 0;
1814}
1815
Alex Williamson2af76982009-02-04 09:02:40 +00001816static void virtnet_set_rx_mode(struct net_device *dev)
1817{
1818 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001819 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001820 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001821 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001822 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001823 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001824 void *buf;
1825 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001826
stephen hemminger788a8b62013-12-09 16:18:45 -08001827 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001828 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1829 return;
1830
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001831 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1832 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001833
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001834 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001835
1836 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001837 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001838 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001839 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001840
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001841 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001842
1843 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001844 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001845 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001846 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001847
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001848 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001849 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001850 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001851 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1852 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1853 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001854 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001855 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001856
Alex Williamson23e258e2009-05-01 17:27:56 +00001857 sg_init_table(sg, 2);
1858
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001859 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001860 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001861 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001862 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001863 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001864
1865 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001866 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001867
1868 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001869 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001870
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001871 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001872 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001873 netdev_for_each_mc_addr(ha, dev)
1874 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001875
1876 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001877 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001878
1879 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001880 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001881 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001882
1883 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001884}
1885
Patrick McHardy80d5c362013-04-19 02:04:28 +00001886static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1887 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001888{
1889 struct virtnet_info *vi = netdev_priv(dev);
1890 struct scatterlist sg;
1891
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001892 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001893 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001894
1895 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001896 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001897 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001898 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001899}
1900
Patrick McHardy80d5c362013-04-19 02:04:28 +00001901static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1902 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001903{
1904 struct virtnet_info *vi = netdev_priv(dev);
1905 struct scatterlist sg;
1906
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001907 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001908 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001909
1910 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001911 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001912 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001913 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001914}
1915
Peter Xu310974f2019-03-18 14:56:06 +08001916static void virtnet_clean_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001917{
1918 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001919
1920 if (vi->affinity_hint_set) {
1921 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001922 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1923 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001924 }
1925
1926 vi->affinity_hint_set = false;
1927 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001928}
1929
1930static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001931{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001932 cpumask_var_t mask;
1933 int stragglers;
1934 int group_size;
1935 int i, j, cpu;
1936 int num_cpu;
1937 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001938
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001939 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Peter Xu310974f2019-03-18 14:56:06 +08001940 virtnet_clean_affinity(vi);
Wanlong Gao8898c212013-01-24 23:51:30 +00001941 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001942 }
1943
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001944 num_cpu = num_online_cpus();
1945 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1946 stragglers = num_cpu >= vi->curr_queue_pairs ?
1947 num_cpu % vi->curr_queue_pairs :
1948 0;
1949 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001950
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001951 for (i = 0; i < vi->curr_queue_pairs; i++) {
1952 group_size = stride + (i < stragglers ? 1 : 0);
1953
1954 for (j = 0; j < group_size; j++) {
1955 cpumask_set_cpu(cpu, mask);
1956 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1957 nr_cpu_ids, false);
1958 }
1959 virtqueue_set_affinity(vi->rq[i].vq, mask);
1960 virtqueue_set_affinity(vi->sq[i].vq, mask);
1961 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1962 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001963 }
1964
Wanlong Gao8898c212013-01-24 23:51:30 +00001965 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001966 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001967}
1968
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001969static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001970{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001971 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1972 node);
1973 virtnet_set_affinity(vi);
1974 return 0;
1975}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001976
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001977static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1978{
1979 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1980 node_dead);
1981 virtnet_set_affinity(vi);
1982 return 0;
1983}
Jason Wang3ab098d2013-10-15 11:18:58 +08001984
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001985static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1986{
1987 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1988 node);
1989
Peter Xu310974f2019-03-18 14:56:06 +08001990 virtnet_clean_affinity(vi);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001991 return 0;
1992}
1993
1994static enum cpuhp_state virtionet_online;
1995
1996static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1997{
1998 int ret;
1999
2000 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
2001 if (ret)
2002 return ret;
2003 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2004 &vi->node_dead);
2005 if (!ret)
2006 return ret;
2007 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2008 return ret;
2009}
2010
2011static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
2012{
2013 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2014 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2015 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002016}
2017
Rick Jones8f9f4662011-10-19 08:10:59 +00002018static void virtnet_get_ringparam(struct net_device *dev,
2019 struct ethtool_ringparam *ring)
2020{
2021 struct virtnet_info *vi = netdev_priv(dev);
2022
Jason Wang986a4f42012-12-07 07:04:56 +00002023 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
2024 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00002025 ring->rx_pending = ring->rx_max_pending;
2026 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00002027}
2028
Rick Jones66846042011-11-14 14:17:08 +00002029
2030static void virtnet_get_drvinfo(struct net_device *dev,
2031 struct ethtool_drvinfo *info)
2032{
2033 struct virtnet_info *vi = netdev_priv(dev);
2034 struct virtio_device *vdev = vi->vdev;
2035
2036 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
2037 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
2038 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
2039
2040}
2041
Jason Wangd73bcd22012-12-07 07:04:57 +00002042/* TODO: Eliminate OOO packets during switching */
2043static int virtnet_set_channels(struct net_device *dev,
2044 struct ethtool_channels *channels)
2045{
2046 struct virtnet_info *vi = netdev_priv(dev);
2047 u16 queue_pairs = channels->combined_count;
2048 int err;
2049
2050 /* We don't support separate rx/tx channels.
2051 * We don't allow setting 'other' channels.
2052 */
2053 if (channels->rx_count || channels->tx_count || channels->other_count)
2054 return -EINVAL;
2055
Amos Kongc18e9cd2014-04-18 13:45:41 +08002056 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002057 return -EINVAL;
2058
John Fastabendf600b692016-12-15 12:13:24 -08002059 /* For now we don't support modifying channels while XDP is loaded
2060 * also when XDP is loaded all RX queues have XDP programs so we only
2061 * need to check a single RX queue.
2062 */
2063 if (vi->rq[0].xdp_prog)
2064 return -EINVAL;
2065
Wanlong Gao47be2472013-01-24 23:51:29 +00002066 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002067 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002068 if (!err) {
2069 netif_set_real_num_tx_queues(dev, queue_pairs);
2070 netif_set_real_num_rx_queues(dev, queue_pairs);
2071
Wanlong Gao8898c212013-01-24 23:51:30 +00002072 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002073 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002074 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002075
2076 return err;
2077}
2078
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002079static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2080{
2081 struct virtnet_info *vi = netdev_priv(dev);
2082 char *p = (char *)data;
2083 unsigned int i, j;
2084
2085 switch (stringset) {
2086 case ETH_SS_STATS:
2087 for (i = 0; i < vi->curr_queue_pairs; i++) {
2088 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2089 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2090 i, virtnet_rq_stats_desc[j].desc);
2091 p += ETH_GSTRING_LEN;
2092 }
2093 }
2094
2095 for (i = 0; i < vi->curr_queue_pairs; i++) {
2096 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2097 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2098 i, virtnet_sq_stats_desc[j].desc);
2099 p += ETH_GSTRING_LEN;
2100 }
2101 }
2102 break;
2103 }
2104}
2105
2106static int virtnet_get_sset_count(struct net_device *dev, int sset)
2107{
2108 struct virtnet_info *vi = netdev_priv(dev);
2109
2110 switch (sset) {
2111 case ETH_SS_STATS:
2112 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2113 VIRTNET_SQ_STATS_LEN);
2114 default:
2115 return -EOPNOTSUPP;
2116 }
2117}
2118
2119static void virtnet_get_ethtool_stats(struct net_device *dev,
2120 struct ethtool_stats *stats, u64 *data)
2121{
2122 struct virtnet_info *vi = netdev_priv(dev);
2123 unsigned int idx = 0, start, i, j;
2124 const u8 *stats_base;
2125 size_t offset;
2126
2127 for (i = 0; i < vi->curr_queue_pairs; i++) {
2128 struct receive_queue *rq = &vi->rq[i];
2129
Jason Wangd46eeea2018-07-31 17:43:39 +08002130 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002131 do {
2132 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2133 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2134 offset = virtnet_rq_stats_desc[j].offset;
2135 data[idx + j] = *(u64 *)(stats_base + offset);
2136 }
2137 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2138 idx += VIRTNET_RQ_STATS_LEN;
2139 }
2140
2141 for (i = 0; i < vi->curr_queue_pairs; i++) {
2142 struct send_queue *sq = &vi->sq[i];
2143
2144 stats_base = (u8 *)&sq->stats;
2145 do {
2146 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2147 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2148 offset = virtnet_sq_stats_desc[j].offset;
2149 data[idx + j] = *(u64 *)(stats_base + offset);
2150 }
2151 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2152 idx += VIRTNET_SQ_STATS_LEN;
2153 }
2154}
2155
Jason Wangd73bcd22012-12-07 07:04:57 +00002156static void virtnet_get_channels(struct net_device *dev,
2157 struct ethtool_channels *channels)
2158{
2159 struct virtnet_info *vi = netdev_priv(dev);
2160
2161 channels->combined_count = vi->curr_queue_pairs;
2162 channels->max_combined = vi->max_queue_pairs;
2163 channels->max_other = 0;
2164 channels->rx_count = 0;
2165 channels->tx_count = 0;
2166 channels->other_count = 0;
2167}
2168
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002169/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002170static bool
2171virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002172{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002173 struct ethtool_link_ksettings diff1 = *cmd;
2174 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002175
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002176 /* cmd is always set so we need to clear it, validate the port type
2177 * and also without autonegotiation we can ignore advertising
2178 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002179 diff1.base.speed = 0;
2180 diff2.base.port = PORT_OTHER;
2181 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2182 diff1.base.duplex = 0;
2183 diff1.base.cmd = 0;
2184 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002185
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002186 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2187 bitmap_empty(diff1.link_modes.supported,
2188 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2189 bitmap_empty(diff1.link_modes.advertising,
2190 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2191 bitmap_empty(diff1.link_modes.lp_advertising,
2192 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002193}
2194
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002195static int virtnet_set_link_ksettings(struct net_device *dev,
2196 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002197{
2198 struct virtnet_info *vi = netdev_priv(dev);
2199 u32 speed;
2200
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002201 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002202 /* don't allow custom speed and duplex */
2203 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002204 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002205 !virtnet_validate_ethtool_cmd(cmd))
2206 return -EINVAL;
2207 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002208 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002209
2210 return 0;
2211}
2212
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002213static int virtnet_get_link_ksettings(struct net_device *dev,
2214 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002215{
2216 struct virtnet_info *vi = netdev_priv(dev);
2217
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002218 cmd->base.speed = vi->speed;
2219 cmd->base.duplex = vi->duplex;
2220 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002221
2222 return 0;
2223}
2224
Jason Wang0c465be2018-10-09 10:06:26 +08002225static int virtnet_set_coalesce(struct net_device *dev,
2226 struct ethtool_coalesce *ec)
2227{
2228 struct ethtool_coalesce ec_default = {
2229 .cmd = ETHTOOL_SCOALESCE,
2230 .rx_max_coalesced_frames = 1,
2231 };
2232 struct virtnet_info *vi = netdev_priv(dev);
2233 int i, napi_weight;
2234
2235 if (ec->tx_max_coalesced_frames > 1)
2236 return -EINVAL;
2237
2238 ec_default.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
2239 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
2240
2241 /* disallow changes to fields not explicitly tested above */
2242 if (memcmp(ec, &ec_default, sizeof(ec_default)))
2243 return -EINVAL;
2244
2245 if (napi_weight ^ vi->sq[0].napi.weight) {
2246 if (dev->flags & IFF_UP)
2247 return -EBUSY;
2248 for (i = 0; i < vi->max_queue_pairs; i++)
2249 vi->sq[i].napi.weight = napi_weight;
2250 }
2251
2252 return 0;
2253}
2254
2255static int virtnet_get_coalesce(struct net_device *dev,
2256 struct ethtool_coalesce *ec)
2257{
2258 struct ethtool_coalesce ec_default = {
2259 .cmd = ETHTOOL_GCOALESCE,
2260 .rx_max_coalesced_frames = 1,
2261 };
2262 struct virtnet_info *vi = netdev_priv(dev);
2263
2264 memcpy(ec, &ec_default, sizeof(ec_default));
2265
2266 if (vi->sq[0].napi.weight)
2267 ec->tx_max_coalesced_frames = 1;
2268
2269 return 0;
2270}
2271
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002272static void virtnet_init_settings(struct net_device *dev)
2273{
2274 struct virtnet_info *vi = netdev_priv(dev);
2275
2276 vi->speed = SPEED_UNKNOWN;
2277 vi->duplex = DUPLEX_UNKNOWN;
2278}
2279
Jason Baronfaa9b392018-01-05 17:44:54 -05002280static void virtnet_update_settings(struct virtnet_info *vi)
2281{
2282 u32 speed;
2283 u8 duplex;
2284
2285 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2286 return;
2287
2288 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2289 speed));
2290 if (ethtool_validate_speed(speed))
2291 vi->speed = speed;
2292 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2293 duplex));
2294 if (ethtool_validate_duplex(duplex))
2295 vi->duplex = duplex;
2296}
2297
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002298static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002299 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002300 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002301 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002302 .get_strings = virtnet_get_strings,
2303 .get_sset_count = virtnet_get_sset_count,
2304 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002305 .set_channels = virtnet_set_channels,
2306 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002307 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002308 .get_link_ksettings = virtnet_get_link_ksettings,
2309 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002310 .set_coalesce = virtnet_set_coalesce,
2311 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002312};
2313
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002314static void virtnet_freeze_down(struct virtio_device *vdev)
2315{
2316 struct virtnet_info *vi = vdev->priv;
2317 int i;
2318
2319 /* Make sure no work handler is accessing the device */
2320 flush_work(&vi->config_work);
2321
Ake Koomsin05c998b2018-10-17 19:44:12 +09002322 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002323 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002324 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002325 cancel_delayed_work_sync(&vi->refill);
2326
2327 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002328 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002329 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002330 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002331 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002332 }
2333}
2334
2335static int init_vqs(struct virtnet_info *vi);
2336
2337static int virtnet_restore_up(struct virtio_device *vdev)
2338{
2339 struct virtnet_info *vi = vdev->priv;
2340 int err, i;
2341
2342 err = init_vqs(vi);
2343 if (err)
2344 return err;
2345
2346 virtio_device_ready(vdev);
2347
2348 if (netif_running(vi->dev)) {
2349 for (i = 0; i < vi->curr_queue_pairs; i++)
2350 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2351 schedule_delayed_work(&vi->refill, 0);
2352
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002353 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002354 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002355 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2356 &vi->sq[i].napi);
2357 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002358 }
2359
Ake Koomsin05c998b2018-10-17 19:44:12 +09002360 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002361 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002362 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002363 return err;
2364}
2365
Jason Wang3f935222017-07-19 16:54:49 +08002366static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2367{
2368 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002369 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002370
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002371 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002372
2373 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2374 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
Yuval Shaia7934b482019-04-03 12:10:13 +03002375 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
Jason Wang3f935222017-07-19 16:54:49 +08002376 return -EINVAL;
2377 }
2378
2379 return 0;
2380}
2381
2382static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2383{
2384 u64 offloads = 0;
2385
2386 if (!vi->guest_offloads)
2387 return 0;
2388
Jason Wang3f935222017-07-19 16:54:49 +08002389 return virtnet_set_guest_offloads(vi, offloads);
2390}
2391
2392static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2393{
2394 u64 offloads = vi->guest_offloads;
2395
2396 if (!vi->guest_offloads)
2397 return 0;
Jason Wang3f935222017-07-19 16:54:49 +08002398
2399 return virtnet_set_guest_offloads(vi, offloads);
2400}
2401
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002402static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2403 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002404{
2405 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2406 struct virtnet_info *vi = netdev_priv(dev);
2407 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002408 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002409 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002410
Jason Wang3f935222017-07-19 16:54:49 +08002411 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2412 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2413 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2414 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
Jason Wang18ba58e2018-11-22 14:36:31 +08002415 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
2416 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) {
2417 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO/CSUM, disable LRO/CSUM first");
John Fastabendf600b692016-12-15 12:13:24 -08002418 return -EOPNOTSUPP;
2419 }
2420
2421 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002422 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002423 return -EINVAL;
2424 }
2425
2426 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002427 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002428 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2429 return -EINVAL;
2430 }
2431
John Fastabend672aafd2016-12-15 12:13:49 -08002432 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2433 if (prog)
2434 xdp_qp = nr_cpu_ids;
2435
2436 /* XDP requires extra queues for XDP_TX */
2437 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002438 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002439 netdev_warn(dev, "request %i queues but max is %i\n",
2440 curr_qp + xdp_qp, vi->max_queue_pairs);
2441 return -ENOMEM;
2442 }
2443
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002444 old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
2445 if (!prog && !old_prog)
2446 return 0;
2447
John Fastabend2de2f7f2017-02-02 19:16:29 -08002448 if (prog) {
2449 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2450 if (IS_ERR(prog))
2451 return PTR_ERR(prog);
2452 }
2453
Jason Wang4941d472017-07-19 16:54:48 +08002454 /* Make sure NAPI is not using any XDP TX queues for RX. */
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002455 if (netif_running(dev)) {
2456 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002457 napi_disable(&vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002458 virtnet_napi_tx_disable(&vi->sq[i].napi);
2459 }
2460 }
John Fastabendf600b692016-12-15 12:13:24 -08002461
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002462 if (!prog) {
2463 for (i = 0; i < vi->max_queue_pairs; i++) {
2464 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2465 if (i == 0)
2466 virtnet_restore_guest_offloads(vi);
2467 }
2468 synchronize_net();
2469 }
2470
Jason Wang4941d472017-07-19 16:54:48 +08002471 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2472 if (err)
2473 goto err;
Toshiaki Makita188313c2019-01-29 09:45:55 +09002474 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002475 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002476
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002477 if (prog) {
2478 for (i = 0; i < vi->max_queue_pairs; i++) {
2479 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2480 if (i == 0 && !old_prog)
Jason Wang3f935222017-07-19 16:54:49 +08002481 virtnet_clear_guest_offloads(vi);
Jason Wang3f935222017-07-19 16:54:49 +08002482 }
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002483 }
2484
2485 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabendf600b692016-12-15 12:13:24 -08002486 if (old_prog)
2487 bpf_prog_put(old_prog);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002488 if (netif_running(dev)) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002489 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002490 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2491 &vi->sq[i].napi);
2492 }
John Fastabendf600b692016-12-15 12:13:24 -08002493 }
2494
2495 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002496
Jason Wang4941d472017-07-19 16:54:48 +08002497err:
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002498 if (!prog) {
2499 virtnet_clear_guest_offloads(vi);
2500 for (i = 0; i < vi->max_queue_pairs; i++)
2501 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
2502 }
2503
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002504 if (netif_running(dev)) {
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002505 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002506 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002507 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2508 &vi->sq[i].napi);
2509 }
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002510 }
John Fastabend2de2f7f2017-02-02 19:16:29 -08002511 if (prog)
2512 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2513 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002514}
2515
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002516static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002517{
2518 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002519 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002520 int i;
2521
2522 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002523 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2524 if (xdp_prog)
2525 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002526 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002527 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002528}
2529
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002530static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002531{
2532 switch (xdp->command) {
2533 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002534 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002535 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002536 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002537 return 0;
2538 default:
2539 return -EINVAL;
2540 }
2541}
2542
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002543static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2544 size_t len)
2545{
2546 struct virtnet_info *vi = netdev_priv(dev);
2547 int ret;
2548
2549 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2550 return -EOPNOTSUPP;
2551
2552 ret = snprintf(buf, len, "sby");
2553 if (ret >= len)
2554 return -EOPNOTSUPP;
2555
2556 return 0;
2557}
2558
Willem de Bruijna02e8962018-12-20 17:14:54 -05002559static int virtnet_set_features(struct net_device *dev,
2560 netdev_features_t features)
2561{
2562 struct virtnet_info *vi = netdev_priv(dev);
2563 u64 offloads;
2564 int err;
2565
2566 if ((dev->features ^ features) & NETIF_F_LRO) {
2567 if (vi->xdp_queue_pairs)
2568 return -EBUSY;
2569
2570 if (features & NETIF_F_LRO)
2571 offloads = vi->guest_offloads_capable;
2572 else
2573 offloads = 0;
2574
2575 err = virtnet_set_guest_offloads(vi, offloads);
2576 if (err)
2577 return err;
2578 vi->guest_offloads = offloads;
2579 }
2580
2581 return 0;
2582}
2583
Stephen Hemminger76288b42009-01-06 10:44:22 -08002584static const struct net_device_ops virtnet_netdev = {
2585 .ndo_open = virtnet_open,
2586 .ndo_stop = virtnet_close,
2587 .ndo_start_xmit = start_xmit,
2588 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002589 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002590 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002591 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002592 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2593 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002594 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002595 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002596 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002597 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Willem de Bruijna02e8962018-12-20 17:14:54 -05002598 .ndo_set_features = virtnet_set_features,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002599};
2600
Jason Wang586d17c2012-04-11 20:43:52 +00002601static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002602{
Jason Wang586d17c2012-04-11 20:43:52 +00002603 struct virtnet_info *vi =
2604 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002605 u16 v;
2606
Rusty Russell855e0c52013-10-14 18:11:51 +10302607 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2608 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302609 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002610
2611 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002612 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002613 virtnet_ack_link_announce(vi);
2614 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002615
2616 /* Ignore unknown (future) status bits */
2617 v &= VIRTIO_NET_S_LINK_UP;
2618
2619 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302620 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002621
2622 vi->status = v;
2623
2624 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002625 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002626 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002627 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002628 } else {
2629 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002630 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002631 }
2632}
2633
2634static void virtnet_config_changed(struct virtio_device *vdev)
2635{
2636 struct virtnet_info *vi = vdev->priv;
2637
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002638 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002639}
2640
Jason Wang986a4f42012-12-07 07:04:56 +00002641static void virtnet_free_queues(struct virtnet_info *vi)
2642{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002643 int i;
2644
Jason Wangab3971b2015-03-12 13:57:44 +08002645 for (i = 0; i < vi->max_queue_pairs; i++) {
2646 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002647 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002648 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002649 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002650
Eric Dumazet963abe52016-11-15 22:24:12 -08002651 /* We called napi_hash_del() before netif_napi_del(),
2652 * we need to respect an RCU grace period before freeing vi->rq
2653 */
2654 synchronize_net();
2655
Jason Wang986a4f42012-12-07 07:04:56 +00002656 kfree(vi->rq);
2657 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002658 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002659}
2660
John Fastabend473153292017-02-02 19:14:32 -08002661static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002662{
John Fastabendf600b692016-12-15 12:13:24 -08002663 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002664 int i;
2665
2666 for (i = 0; i < vi->max_queue_pairs; i++) {
2667 while (vi->rq[i].pages)
2668 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002669
2670 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2671 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2672 if (old_prog)
2673 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002674 }
John Fastabend473153292017-02-02 19:14:32 -08002675}
2676
2677static void free_receive_bufs(struct virtnet_info *vi)
2678{
2679 rtnl_lock();
2680 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002681 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002682}
2683
Michael Daltonfb518792014-01-16 22:23:26 -08002684static void free_receive_page_frags(struct virtnet_info *vi)
2685{
2686 int i;
2687 for (i = 0; i < vi->max_queue_pairs; i++)
2688 if (vi->rq[i].alloc_frag.page)
2689 put_page(vi->rq[i].alloc_frag.page);
2690}
2691
Jason Wang986a4f42012-12-07 07:04:56 +00002692static void free_unused_bufs(struct virtnet_info *vi)
2693{
2694 void *buf;
2695 int i;
2696
2697 for (i = 0; i < vi->max_queue_pairs; i++) {
2698 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002699 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Toshiaki Makita50504712019-01-29 09:45:59 +09002700 if (!is_xdp_frame(buf))
John Fastabend56434a02016-12-15 12:14:13 -08002701 dev_kfree_skb(buf);
2702 else
Toshiaki Makita50504712019-01-29 09:45:59 +09002703 xdp_return_frame(ptr_to_xdp(buf));
John Fastabend56434a02016-12-15 12:14:13 -08002704 }
Jason Wang986a4f42012-12-07 07:04:56 +00002705 }
2706
2707 for (i = 0; i < vi->max_queue_pairs; i++) {
2708 struct virtqueue *vq = vi->rq[i].vq;
2709
2710 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002711 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002712 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002713 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002714 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002715 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002716 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002717 }
Jason Wang986a4f42012-12-07 07:04:56 +00002718 }
Jason Wang986a4f42012-12-07 07:04:56 +00002719 }
2720}
2721
Jason Wange9d74172012-12-07 07:04:55 +00002722static void virtnet_del_vqs(struct virtnet_info *vi)
2723{
2724 struct virtio_device *vdev = vi->vdev;
2725
Peter Xu310974f2019-03-18 14:56:06 +08002726 virtnet_clean_affinity(vi);
Jason Wang986a4f42012-12-07 07:04:56 +00002727
Jason Wange9d74172012-12-07 07:04:55 +00002728 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002729
2730 virtnet_free_queues(vi);
2731}
2732
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002733/* How large should a single buffer be so a queue full of these can fit at
2734 * least one full packet?
2735 * Logic below assumes the mergeable buffer header is used.
2736 */
2737static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2738{
2739 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2740 unsigned int rq_size = virtqueue_get_vring_size(vq);
2741 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2742 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2743 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2744
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002745 return max(max(min_buf_len, hdr_len) - hdr_len,
2746 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002747}
2748
Jason Wang986a4f42012-12-07 07:04:56 +00002749static int virtnet_find_vqs(struct virtnet_info *vi)
2750{
2751 vq_callback_t **callbacks;
2752 struct virtqueue **vqs;
2753 int ret = -ENOMEM;
2754 int i, total_vqs;
2755 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002756 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002757
2758 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2759 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2760 * possible control vq.
2761 */
2762 total_vqs = vi->max_queue_pairs * 2 +
2763 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2764
2765 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002766 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002767 if (!vqs)
2768 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002769 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002770 if (!callbacks)
2771 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002772 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002773 if (!names)
2774 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002775 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002776 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002777 if (!ctx)
2778 goto err_ctx;
2779 } else {
2780 ctx = NULL;
2781 }
Jason Wang986a4f42012-12-07 07:04:56 +00002782
2783 /* Parameters for control virtqueue, if any */
2784 if (vi->has_cvq) {
2785 callbacks[total_vqs - 1] = NULL;
2786 names[total_vqs - 1] = "control";
2787 }
2788
2789 /* Allocate/initialize parameters for send/receive virtqueues */
2790 for (i = 0; i < vi->max_queue_pairs; i++) {
2791 callbacks[rxq2vq(i)] = skb_recv_done;
2792 callbacks[txq2vq(i)] = skb_xmit_done;
2793 sprintf(vi->rq[i].name, "input.%d", i);
2794 sprintf(vi->sq[i].name, "output.%d", i);
2795 names[rxq2vq(i)] = vi->rq[i].name;
2796 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002797 if (ctx)
2798 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002799 }
2800
2801 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002802 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002803 if (ret)
2804 goto err_find;
2805
2806 if (vi->has_cvq) {
2807 vi->cvq = vqs[total_vqs - 1];
2808 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002809 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002810 }
2811
2812 for (i = 0; i < vi->max_queue_pairs; i++) {
2813 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002814 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002815 vi->sq[i].vq = vqs[txq2vq(i)];
2816 }
2817
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002818 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002819
Jason Wang986a4f42012-12-07 07:04:56 +00002820
2821err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002822 kfree(ctx);
2823err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002824 kfree(names);
2825err_names:
2826 kfree(callbacks);
2827err_callback:
2828 kfree(vqs);
2829err_vq:
2830 return ret;
2831}
2832
2833static int virtnet_alloc_queues(struct virtnet_info *vi)
2834{
2835 int i;
2836
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002837 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2838 if (!vi->ctrl)
2839 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002840 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002841 if (!vi->sq)
2842 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002843 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002844 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002845 goto err_rq;
2846
2847 INIT_DELAYED_WORK(&vi->refill, refill_work);
2848 for (i = 0; i < vi->max_queue_pairs; i++) {
2849 vi->rq[i].pages = NULL;
2850 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2851 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002852 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2853 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002854
2855 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002856 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002857 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002858
2859 u64_stats_init(&vi->rq[i].stats.syncp);
2860 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002861 }
2862
2863 return 0;
2864
2865err_rq:
2866 kfree(vi->sq);
2867err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002868 kfree(vi->ctrl);
2869err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002870 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002871}
2872
Amit Shah3f9c10b2011-12-22 16:58:31 +05302873static int init_vqs(struct virtnet_info *vi)
2874{
Jason Wang986a4f42012-12-07 07:04:56 +00002875 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302876
Jason Wang986a4f42012-12-07 07:04:56 +00002877 /* Allocate send & receive queues */
2878 ret = virtnet_alloc_queues(vi);
2879 if (ret)
2880 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302881
Jason Wang986a4f42012-12-07 07:04:56 +00002882 ret = virtnet_find_vqs(vi);
2883 if (ret)
2884 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302885
Wanlong Gao47be2472013-01-24 23:51:29 +00002886 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002887 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002888 put_online_cpus();
2889
Amit Shah3f9c10b2011-12-22 16:58:31 +05302890 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002891
2892err_free:
2893 virtnet_free_queues(vi);
2894err:
2895 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302896}
2897
Michael Daltonfbf28d72014-01-16 22:23:30 -08002898#ifdef CONFIG_SYSFS
2899static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002900 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002901{
2902 struct virtnet_info *vi = netdev_priv(queue->dev);
2903 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002904 unsigned int headroom = virtnet_get_headroom(vi);
2905 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002906 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002907
2908 BUG_ON(queue_index >= vi->max_queue_pairs);
2909 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002910 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002911 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2912 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002913}
2914
2915static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2916 __ATTR_RO(mergeable_rx_buffer_size);
2917
2918static struct attribute *virtio_net_mrg_rx_attrs[] = {
2919 &mergeable_rx_buffer_size_attribute.attr,
2920 NULL
2921};
2922
2923static const struct attribute_group virtio_net_mrg_rx_group = {
2924 .name = "virtio_net",
2925 .attrs = virtio_net_mrg_rx_attrs
2926};
2927#endif
2928
Jason Wang892d6eb2014-11-20 17:03:05 +08002929static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2930 unsigned int fbit,
2931 const char *fname, const char *dname)
2932{
2933 if (!virtio_has_feature(vdev, fbit))
2934 return false;
2935
2936 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2937 fname, dname);
2938
2939 return true;
2940}
2941
2942#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2943 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2944
2945static bool virtnet_validate_features(struct virtio_device *vdev)
2946{
2947 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2948 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2949 "VIRTIO_NET_F_CTRL_VQ") ||
2950 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2951 "VIRTIO_NET_F_CTRL_VQ") ||
2952 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2953 "VIRTIO_NET_F_CTRL_VQ") ||
2954 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2955 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2956 "VIRTIO_NET_F_CTRL_VQ"))) {
2957 return false;
2958 }
2959
2960 return true;
2961}
2962
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002963#define MIN_MTU ETH_MIN_MTU
2964#define MAX_MTU ETH_MAX_MTU
2965
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002966static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002967{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002968 if (!vdev->config->get) {
2969 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2970 __func__);
2971 return -EINVAL;
2972 }
2973
Jason Wang892d6eb2014-11-20 17:03:05 +08002974 if (!virtnet_validate_features(vdev))
2975 return -EINVAL;
2976
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002977 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2978 int mtu = virtio_cread16(vdev,
2979 offsetof(struct virtio_net_config,
2980 mtu));
2981 if (mtu < MIN_MTU)
2982 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2983 }
2984
2985 return 0;
2986}
2987
2988static int virtnet_probe(struct virtio_device *vdev)
2989{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002990 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002991 struct net_device *dev;
2992 struct virtnet_info *vi;
2993 u16 max_queue_pairs;
2994 int mtu;
2995
Jason Wang986a4f42012-12-07 07:04:56 +00002996 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302997 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2998 struct virtio_net_config,
2999 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003000
3001 /* We need at least 2 queue's */
3002 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
3003 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
3004 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3005 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10003006
3007 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00003008 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10003009 if (!dev)
3010 return -ENOMEM;
3011
3012 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00003013 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08003014 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10003015 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00003016
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00003017 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10003018 SET_NETDEV_DEV(dev, &vdev->dev);
3019
3020 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00003021 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10003022 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08003023 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003024 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08003025 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003026
3027 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07003028 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05003029 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
3030 }
Rusty Russell5539ae962008-05-02 21:50:46 -05003031 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00003032 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
3033 dev->hw_features |= NETIF_F_TSO;
3034 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
3035 dev->hw_features |= NETIF_F_TSO6;
3036 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
3037 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003038
Jason Wang41f2f122014-12-24 11:03:52 +08003039 dev->features |= NETIF_F_GSO_ROBUST;
3040
Michał Mirosław98e778c2011-03-31 01:01:35 +00003041 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07003042 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003043 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10003044 }
Thomas Huth4f491292013-08-27 17:09:02 +02003045 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
3046 dev->features |= NETIF_F_RXCSUM;
Willem de Bruijna02e8962018-12-20 17:14:54 -05003047 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3048 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
3049 dev->features |= NETIF_F_LRO;
3050 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
3051 dev->hw_features |= NETIF_F_LRO;
Rusty Russell296f96f2007-10-22 11:03:37 +10003052
Jason Wang4fda8302013-04-10 23:32:21 +00003053 dev->vlan_features = dev->features;
3054
Jarod Wilsond0c2c992016-10-20 13:55:21 -04003055 /* MTU range: 68 - 65535 */
3056 dev->min_mtu = MIN_MTU;
3057 dev->max_mtu = MAX_MTU;
3058
Rusty Russell296f96f2007-10-22 11:03:37 +10003059 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10303060 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
3061 virtio_cread_bytes(vdev,
3062 offsetof(struct virtio_net_config, mac),
3063 dev->dev_addr, dev->addr_len);
3064 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00003065 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003066
3067 /* Set up our device-specific information */
3068 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003069 vi->dev = dev;
3070 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01003071 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07003072
Jason Wang586d17c2012-04-11 20:43:52 +00003073 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10003074
Herbert Xu97402b92008-04-18 11:24:27 +08003075 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00003076 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3077 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05003078 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
3079 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08003080 vi->big_packets = true;
3081
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08003082 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
3083 vi->mergeable_rx_bufs = true;
3084
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03003085 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
3086 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003087 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
3088 else
3089 vi->hdr_len = sizeof(struct virtio_net_hdr);
3090
Michael S. Tsirkin75993302015-07-15 15:26:19 +03003091 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
3092 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303093 vi->any_header_sg = true;
3094
Jason Wang986a4f42012-12-07 07:04:56 +00003095 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3096 vi->has_cvq = true;
3097
Aaron Conole14de9d12016-06-03 16:57:12 -04003098 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3099 mtu = virtio_cread16(vdev,
3100 offsetof(struct virtio_net_config,
3101 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04003102 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003103 /* Should never trigger: MTU was previously validated
3104 * in virtnet_validate.
3105 */
Yuval Shaia7934b482019-04-03 12:10:13 +03003106 dev_err(&vdev->dev,
3107 "device MTU appears to have changed it is now %d < %d",
3108 mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003109 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003110 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003111
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003112 dev->mtu = mtu;
3113 dev->max_mtu = mtu;
3114
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003115 /* TODO: size buffers correctly in this case. */
3116 if (dev->mtu > ETH_DATA_LEN)
3117 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003118 }
3119
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003120 if (vi->any_header_sg)
3121 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003122
Jason Wang44900012016-11-25 12:37:26 +08003123 /* Enable multiqueue by default */
3124 if (num_online_cpus() >= max_queue_pairs)
3125 vi->curr_queue_pairs = max_queue_pairs;
3126 else
3127 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003128 vi->max_queue_pairs = max_queue_pairs;
3129
3130 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303131 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003132 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003133 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003134
Michael Daltonfbf28d72014-01-16 22:23:30 -08003135#ifdef CONFIG_SYSFS
3136 if (vi->mergeable_rx_bufs)
3137 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3138#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08003139 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3140 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003141
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003142 virtnet_init_settings(dev);
3143
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003144 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3145 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003146 if (IS_ERR(vi->failover)) {
3147 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003148 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003149 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003150 }
3151
Rusty Russell296f96f2007-10-22 11:03:37 +10003152 err = register_netdev(dev);
3153 if (err) {
3154 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003155 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003156 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003157
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303158 virtio_device_ready(vdev);
3159
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003160 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003161 if (err) {
3162 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003163 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003164 }
3165
Jason Wanga2208712016-12-13 14:23:05 +08003166 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003167
Jason Wang167c25e2010-11-10 14:45:41 +00003168 /* Assume link up if device can't report link status,
3169 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003170 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003171 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003172 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003173 } else {
3174 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003175 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003176 netif_carrier_on(dev);
3177 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003178
Jason Wang3f935222017-07-19 16:54:49 +08003179 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3180 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3181 set_bit(guest_offloads[i], &vi->guest_offloads);
Willem de Bruijna02e8962018-12-20 17:14:54 -05003182 vi->guest_offloads_capable = vi->guest_offloads;
Jason Wang3f935222017-07-19 16:54:49 +08003183
Jason Wang986a4f42012-12-07 07:04:56 +00003184 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3185 dev->name, max_queue_pairs);
3186
Rusty Russell296f96f2007-10-22 11:03:37 +10003187 return 0;
3188
wangyunjianf00e35e2016-05-31 11:52:43 +08003189free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303190 vi->vdev->config->reset(vdev);
3191
Rusty Russellb3369c12008-02-04 23:50:02 -05003192 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003193free_failover:
3194 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003195free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003196 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003197 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003198 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003199free:
3200 free_netdev(dev);
3201 return err;
3202}
3203
Amit Shah04486ed2011-12-22 16:58:32 +05303204static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003205{
Amit Shah04486ed2011-12-22 16:58:32 +05303206 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003207
3208 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003209 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003210
Jason Wang986a4f42012-12-07 07:04:56 +00003211 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003212
Michael Daltonfb518792014-01-16 22:23:26 -08003213 free_receive_page_frags(vi);
3214
Jason Wang986a4f42012-12-07 07:04:56 +00003215 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303216}
3217
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003218static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303219{
3220 struct virtnet_info *vi = vdev->priv;
3221
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003222 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003223
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303224 /* Make sure no work handler is accessing the device. */
3225 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003226
Amit Shah04486ed2011-12-22 16:58:32 +05303227 unregister_netdev(vi->dev);
3228
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003229 net_failover_destroy(vi->failover);
3230
Amit Shah04486ed2011-12-22 16:58:32 +05303231 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003232
Rusty Russell74b25532007-11-19 11:20:42 -05003233 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003234}
3235
Arnd Bergmann67a75192017-07-25 17:35:50 +02003236static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303237{
3238 struct virtnet_info *vi = vdev->priv;
3239
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003240 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003241 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303242 remove_vq_common(vi);
3243
3244 return 0;
3245}
3246
Arnd Bergmann67a75192017-07-25 17:35:50 +02003247static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303248{
3249 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003250 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303251
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003252 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303253 if (err)
3254 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003255 virtnet_set_queues(vi, vi->curr_queue_pairs);
3256
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003257 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003258 if (err)
3259 return err;
3260
Amit Shah0741bcb2011-12-22 16:58:33 +05303261 return 0;
3262}
Amit Shah0741bcb2011-12-22 16:58:33 +05303263
Rusty Russell296f96f2007-10-22 11:03:37 +10003264static struct virtio_device_id id_table[] = {
3265 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3266 { 0 },
3267};
3268
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003269#define VIRTNET_FEATURES \
3270 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3271 VIRTIO_NET_F_MAC, \
3272 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3273 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3274 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3275 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3276 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3277 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3278 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003279 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003280 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003281
Rusty Russellc45a6812008-05-02 21:50:50 -05003282static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003283 VIRTNET_FEATURES,
3284};
3285
3286static unsigned int features_legacy[] = {
3287 VIRTNET_FEATURES,
3288 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303289 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003290};
3291
Uwe Kleine-König22402522009-11-05 01:32:44 -08003292static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003293 .feature_table = features,
3294 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003295 .feature_table_legacy = features_legacy,
3296 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003297 .driver.name = KBUILD_MODNAME,
3298 .driver.owner = THIS_MODULE,
3299 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003300 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003301 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003302 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003303 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303304#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303305 .freeze = virtnet_freeze,
3306 .restore = virtnet_restore,
3307#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003308};
3309
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003310static __init int virtio_net_driver_init(void)
3311{
3312 int ret;
3313
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003314 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003315 virtnet_cpu_online,
3316 virtnet_cpu_down_prep);
3317 if (ret < 0)
3318 goto out;
3319 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003320 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003321 NULL, virtnet_cpu_dead);
3322 if (ret)
3323 goto err_dead;
3324
3325 ret = register_virtio_driver(&virtio_net_driver);
3326 if (ret)
3327 goto err_virtio;
3328 return 0;
3329err_virtio:
3330 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3331err_dead:
3332 cpuhp_remove_multi_state(virtionet_online);
3333out:
3334 return ret;
3335}
3336module_init(virtio_net_driver_init);
3337
3338static __exit void virtio_net_driver_exit(void)
3339{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003340 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003341 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3342 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003343}
3344module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003345
3346MODULE_DEVICE_TABLE(virtio, id_table);
3347MODULE_DESCRIPTION("Virtio network driver");
3348MODULE_LICENSE("GPL");