Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1 | /* A network driver using virtio. |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2 | * |
| 3 | * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
Jeff Kirsher | adf8d3f | 2013-12-06 06:28:47 -0800 | [diff] [blame] | 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 17 | */ |
| 18 | //#define DEBUG |
| 19 | #include <linux/netdevice.h> |
| 20 | #include <linux/etherdevice.h> |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 21 | #include <linux/ethtool.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/virtio.h> |
| 24 | #include <linux/virtio_net.h> |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 25 | #include <linux/bpf.h> |
Daniel Borkmann | a67edbf | 2017-01-25 02:28:18 +0100 | [diff] [blame] | 26 | #include <linux/bpf_trace.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 27 | #include <linux/scatterlist.h> |
Alex Williamson | e918085a | 2009-01-25 18:06:26 -0800 | [diff] [blame] | 28 | #include <linux/if_vlan.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 30 | #include <linux/cpu.h> |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 31 | #include <linux/average.h> |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 32 | #include <linux/filter.h> |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 33 | #include <net/route.h> |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 34 | #include <net/xdp.h> |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 35 | |
Amerigo Wang | d34710e | 2013-05-09 19:50:51 +0000 | [diff] [blame] | 36 | static int napi_weight = NAPI_POLL_WEIGHT; |
Dor Laor | 6c0cd7c | 2007-12-16 15:19:43 +0200 | [diff] [blame] | 37 | module_param(napi_weight, int, 0444); |
| 38 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 39 | static bool csum = true, gso = true, napi_tx; |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 40 | module_param(csum, bool, 0444); |
| 41 | module_param(gso, bool, 0444); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 42 | module_param(napi_tx, bool, 0644); |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 43 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 44 | /* FIXME: MTU in config. */ |
Michael Dalton | 5061de3 | 2013-11-14 10:41:04 -0800 | [diff] [blame] | 45 | #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 46 | #define GOOD_COPY_LEN 128 |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 47 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 48 | #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD) |
| 49 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 50 | /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */ |
| 51 | #define VIRTIO_XDP_HEADROOM 256 |
| 52 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 53 | /* RX packet size EWMA. The average packet size is used to determine the packet |
| 54 | * buffer size when refilling RX rings. As the entire RX ring may be refilled |
| 55 | * at once, the weight is chosen so that the EWMA will be insensitive to short- |
| 56 | * term, transient changes in packet size. |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 57 | */ |
Johannes Berg | eb1e011 | 2017-02-15 09:49:26 +0100 | [diff] [blame] | 58 | DECLARE_EWMA(pkt_len, 0, 64) |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 59 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 60 | #define VIRTNET_DRIVER_VERSION "1.0.0" |
Alex Williamson | 2a41f71 | 2009-02-04 09:02:34 +0000 | [diff] [blame] | 61 | |
Colin Ian King | 7acd432 | 2017-08-12 22:45:53 +0100 | [diff] [blame] | 62 | static const unsigned long guest_offloads[] = { |
| 63 | VIRTIO_NET_F_GUEST_TSO4, |
| 64 | VIRTIO_NET_F_GUEST_TSO6, |
| 65 | VIRTIO_NET_F_GUEST_ECN, |
| 66 | VIRTIO_NET_F_GUEST_UFO |
| 67 | }; |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 68 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 69 | struct virtnet_stat_desc { |
| 70 | char desc[ETH_GSTRING_LEN]; |
| 71 | size_t offset; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 74 | struct virtnet_sq_stats { |
| 75 | struct u64_stats_sync syncp; |
| 76 | u64 packets; |
| 77 | u64 bytes; |
| 78 | }; |
| 79 | |
| 80 | struct virtnet_rq_stats { |
| 81 | struct u64_stats_sync syncp; |
| 82 | u64 packets; |
| 83 | u64 bytes; |
| 84 | }; |
| 85 | |
| 86 | #define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m) |
| 87 | #define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m) |
| 88 | |
| 89 | static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = { |
| 90 | { "packets", VIRTNET_SQ_STAT(packets) }, |
| 91 | { "bytes", VIRTNET_SQ_STAT(bytes) }, |
| 92 | }; |
| 93 | |
| 94 | static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = { |
| 95 | { "packets", VIRTNET_RQ_STAT(packets) }, |
| 96 | { "bytes", VIRTNET_RQ_STAT(bytes) }, |
| 97 | }; |
| 98 | |
| 99 | #define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc) |
| 100 | #define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc) |
| 101 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 102 | /* Internal representation of a send virtqueue */ |
| 103 | struct send_queue { |
| 104 | /* Virtqueue associated with this send _queue */ |
| 105 | struct virtqueue *vq; |
| 106 | |
| 107 | /* TX: fragments + linear part + virtio header */ |
| 108 | struct scatterlist sg[MAX_SKB_FRAGS + 2]; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 109 | |
| 110 | /* Name of the send queue: output.$index */ |
| 111 | char name[40]; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 112 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 113 | struct virtnet_sq_stats stats; |
| 114 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 115 | struct napi_struct napi; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | /* Internal representation of a receive virtqueue */ |
| 119 | struct receive_queue { |
| 120 | /* Virtqueue associated with this receive_queue */ |
| 121 | struct virtqueue *vq; |
| 122 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 123 | struct napi_struct napi; |
| 124 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 125 | struct bpf_prog __rcu *xdp_prog; |
| 126 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 127 | struct virtnet_rq_stats stats; |
| 128 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 129 | /* Chain pages by the private ptr. */ |
| 130 | struct page *pages; |
| 131 | |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 132 | /* Average packet length for mergeable receive buffers. */ |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 133 | struct ewma_pkt_len mrg_avg_pkt_len; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 134 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 135 | /* Page frag for packet buffer allocation. */ |
| 136 | struct page_frag alloc_frag; |
| 137 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 138 | /* RX: fragments + linear part + virtio header */ |
| 139 | struct scatterlist sg[MAX_SKB_FRAGS + 2]; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 140 | |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 141 | /* Min single buffer size for mergeable buffers case. */ |
| 142 | unsigned int min_buf_len; |
| 143 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 144 | /* Name of this receive queue: input.$index */ |
| 145 | char name[40]; |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 146 | |
| 147 | struct xdp_rxq_info xdp_rxq; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 148 | }; |
| 149 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 150 | /* Control VQ buffers: protected by the rtnl lock */ |
| 151 | struct control_buf { |
| 152 | struct virtio_net_ctrl_hdr hdr; |
| 153 | virtio_net_ctrl_ack status; |
| 154 | struct virtio_net_ctrl_mq mq; |
| 155 | u8 promisc; |
| 156 | u8 allmulti; |
Michael S. Tsirkin | d7fad4c | 2018-04-19 08:30:49 +0300 | [diff] [blame] | 157 | __virtio16 vid; |
Michael S. Tsirkin | f4ee703 | 2018-04-19 08:30:50 +0300 | [diff] [blame] | 158 | __virtio64 offloads; |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 159 | }; |
| 160 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 161 | struct virtnet_info { |
| 162 | struct virtio_device *vdev; |
| 163 | struct virtqueue *cvq; |
| 164 | struct net_device *dev; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 165 | struct send_queue *sq; |
| 166 | struct receive_queue *rq; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 167 | unsigned int status; |
| 168 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 169 | /* Max # of queue pairs supported by the device */ |
| 170 | u16 max_queue_pairs; |
| 171 | |
| 172 | /* # of queue pairs currently used by the driver */ |
| 173 | u16 curr_queue_pairs; |
| 174 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 175 | /* # of XDP queue pairs currently used by the driver */ |
| 176 | u16 xdp_queue_pairs; |
| 177 | |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 178 | /* I like... big packets and I cannot lie! */ |
| 179 | bool big_packets; |
| 180 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 181 | /* Host will merge rx buffers for big packets (shake it! shake it!) */ |
| 182 | bool mergeable_rx_bufs; |
| 183 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 184 | /* Has control virtqueue */ |
| 185 | bool has_cvq; |
| 186 | |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 187 | /* Host can handle any s/g split between our header and packet data */ |
| 188 | bool any_header_sg; |
| 189 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 190 | /* Packet virtio header size */ |
| 191 | u8 hdr_len; |
| 192 | |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 193 | /* Work struct for refilling if we run low on memory. */ |
| 194 | struct delayed_work refill; |
| 195 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 196 | /* Work struct for config space updates */ |
| 197 | struct work_struct config_work; |
| 198 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 199 | /* Does the affinity hint is set for virtqueues? */ |
| 200 | bool affinity_hint_set; |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 201 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 202 | /* CPU hotplug instances for online & dead */ |
| 203 | struct hlist_node node; |
| 204 | struct hlist_node node_dead; |
Michael S. Tsirkin | 2ac4603 | 2015-11-15 15:11:00 +0200 | [diff] [blame] | 205 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 206 | struct control_buf *ctrl; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 207 | |
| 208 | /* Ethtool settings */ |
| 209 | u8 duplex; |
| 210 | u32 speed; |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 211 | |
| 212 | unsigned long guest_offloads; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 213 | }; |
| 214 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 215 | struct padded_vnet_hdr { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 216 | struct virtio_net_hdr_mrg_rxbuf hdr; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 217 | /* |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 218 | * hdr is in a separate sg buffer, and data sg buffer shares same page |
| 219 | * with this header sg. This padding makes next sg 16 byte aligned |
| 220 | * after the header. |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 221 | */ |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 222 | char padding[4]; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 223 | }; |
| 224 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 225 | /* Converting between virtqueue no. and kernel tx/rx queue no. |
| 226 | * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq |
| 227 | */ |
| 228 | static int vq2txq(struct virtqueue *vq) |
| 229 | { |
Rusty Russell | 9d0ca6e | 2013-03-21 14:17:34 +0000 | [diff] [blame] | 230 | return (vq->index - 1) / 2; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | static int txq2vq(int txq) |
| 234 | { |
| 235 | return txq * 2 + 1; |
| 236 | } |
| 237 | |
| 238 | static int vq2rxq(struct virtqueue *vq) |
| 239 | { |
Rusty Russell | 9d0ca6e | 2013-03-21 14:17:34 +0000 | [diff] [blame] | 240 | return vq->index / 2; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static int rxq2vq(int rxq) |
| 244 | { |
| 245 | return rxq * 2; |
| 246 | } |
| 247 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 248 | static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 249 | { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 250 | return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 251 | } |
| 252 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 253 | /* |
| 254 | * private is used to chain pages for big packets, put the whole |
| 255 | * most recent used list in the beginning for reuse |
| 256 | */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 257 | static void give_pages(struct receive_queue *rq, struct page *page) |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 258 | { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 259 | struct page *end; |
| 260 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 261 | /* Find end of list, sew whole thing into vi->rq.pages. */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 262 | for (end = page; end->private; end = (struct page *)end->private); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 263 | end->private = (unsigned long)rq->pages; |
| 264 | rq->pages = page; |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 265 | } |
| 266 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 267 | static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask) |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 268 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 269 | struct page *p = rq->pages; |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 270 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 271 | if (p) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 272 | rq->pages = (struct page *)p->private; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 273 | /* clear private here, it is used to chain pages */ |
| 274 | p->private = 0; |
| 275 | } else |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 276 | p = alloc_page(gfp_mask); |
| 277 | return p; |
| 278 | } |
| 279 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 280 | static void virtqueue_napi_schedule(struct napi_struct *napi, |
| 281 | struct virtqueue *vq) |
| 282 | { |
| 283 | if (napi_schedule_prep(napi)) { |
| 284 | virtqueue_disable_cb(vq); |
| 285 | __napi_schedule(napi); |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | static void virtqueue_napi_complete(struct napi_struct *napi, |
| 290 | struct virtqueue *vq, int processed) |
| 291 | { |
| 292 | int opaque; |
| 293 | |
| 294 | opaque = virtqueue_enable_cb_prepare(vq); |
Toshiaki Makita | fdaa767 | 2017-12-07 13:15:15 +0900 | [diff] [blame] | 295 | if (napi_complete_done(napi, processed)) { |
| 296 | if (unlikely(virtqueue_poll(vq, opaque))) |
| 297 | virtqueue_napi_schedule(napi, vq); |
| 298 | } else { |
| 299 | virtqueue_disable_cb(vq); |
| 300 | } |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 301 | } |
| 302 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 303 | static void skb_xmit_done(struct virtqueue *vq) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 304 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 305 | struct virtnet_info *vi = vq->vdev->priv; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 306 | struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 307 | |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 308 | /* Suppress further interrupts. */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 309 | virtqueue_disable_cb(vq); |
Rusty Russell | 11a3a15 | 2008-05-26 17:48:13 +1000 | [diff] [blame] | 310 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 311 | if (napi->weight) |
| 312 | virtqueue_napi_schedule(napi, vq); |
| 313 | else |
| 314 | /* We were probably waiting for more output buffers. */ |
| 315 | netif_wake_subqueue(vi->dev, vq2txq(vq)); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 316 | } |
| 317 | |
Jason Wang | 28b39bc | 2017-07-19 16:54:46 +0800 | [diff] [blame] | 318 | #define MRG_CTX_HEADER_SHIFT 22 |
| 319 | static void *mergeable_len_to_ctx(unsigned int truesize, |
| 320 | unsigned int headroom) |
| 321 | { |
| 322 | return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize); |
| 323 | } |
| 324 | |
| 325 | static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx) |
| 326 | { |
| 327 | return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT; |
| 328 | } |
| 329 | |
| 330 | static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx) |
| 331 | { |
| 332 | return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1); |
| 333 | } |
| 334 | |
Mike Waychison | 3464645 | 2012-01-04 12:52:32 +0000 | [diff] [blame] | 335 | /* Called from bottom half context */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 336 | static struct sk_buff *page_to_skb(struct virtnet_info *vi, |
| 337 | struct receive_queue *rq, |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 338 | struct page *page, unsigned int offset, |
| 339 | unsigned int len, unsigned int truesize) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 340 | { |
| 341 | struct sk_buff *skb; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 342 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 343 | unsigned int copy, hdr_len, hdr_padded_len; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 344 | char *p; |
| 345 | |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 346 | p = page_address(page) + offset; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 347 | |
| 348 | /* copy small packet so we can reuse these pages for small data */ |
Paolo Abeni | c67f5db | 2016-03-17 15:44:00 +0100 | [diff] [blame] | 349 | skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 350 | if (unlikely(!skb)) |
| 351 | return NULL; |
| 352 | |
| 353 | hdr = skb_vnet_hdr(skb); |
| 354 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 355 | hdr_len = vi->hdr_len; |
| 356 | if (vi->mergeable_rx_bufs) |
stephen hemminger | a4a7650 | 2017-08-15 10:29:17 -0700 | [diff] [blame] | 357 | hdr_padded_len = sizeof(*hdr); |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 358 | else |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 359 | hdr_padded_len = sizeof(struct padded_vnet_hdr); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 360 | |
| 361 | memcpy(hdr, p, hdr_len); |
| 362 | |
| 363 | len -= hdr_len; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 364 | offset += hdr_padded_len; |
| 365 | p += hdr_padded_len; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 366 | |
| 367 | copy = len; |
| 368 | if (copy > skb_tailroom(skb)) |
| 369 | copy = skb_tailroom(skb); |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 370 | skb_put_data(skb, p, copy); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 371 | |
| 372 | len -= copy; |
| 373 | offset += copy; |
| 374 | |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 375 | if (vi->mergeable_rx_bufs) { |
| 376 | if (len) |
| 377 | skb_add_rx_frag(skb, 0, page, offset, len, truesize); |
| 378 | else |
| 379 | put_page(page); |
| 380 | return skb; |
| 381 | } |
| 382 | |
Sasha Levin | e878d78 | 2011-09-28 04:40:54 +0000 | [diff] [blame] | 383 | /* |
| 384 | * Verify that we can indeed put this data into a skb. |
| 385 | * This is here to handle cases when the device erroneously |
| 386 | * tries to receive more than is possible. This is usually |
| 387 | * the case of a broken device. |
| 388 | */ |
| 389 | if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) { |
Amerigo Wang | be44389 | 2012-11-08 17:47:28 +0000 | [diff] [blame] | 390 | net_dbg_ratelimited("%s: too much data\n", skb->dev->name); |
Sasha Levin | e878d78 | 2011-09-28 04:40:54 +0000 | [diff] [blame] | 391 | dev_kfree_skb(skb); |
| 392 | return NULL; |
| 393 | } |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 394 | BUG_ON(offset >= PAGE_SIZE); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 395 | while (len) { |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 396 | unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len); |
| 397 | skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset, |
| 398 | frag_size, truesize); |
| 399 | len -= frag_size; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 400 | page = (struct page *)page->private; |
| 401 | offset = 0; |
| 402 | } |
| 403 | |
| 404 | if (page) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 405 | give_pages(rq, page); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 406 | |
| 407 | return skb; |
| 408 | } |
| 409 | |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 410 | static void virtnet_xdp_flush(struct net_device *dev) |
| 411 | { |
| 412 | struct virtnet_info *vi = netdev_priv(dev); |
| 413 | struct send_queue *sq; |
| 414 | unsigned int qp; |
| 415 | |
| 416 | qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id(); |
| 417 | sq = &vi->sq[qp]; |
| 418 | |
| 419 | virtqueue_kick(sq->vq); |
| 420 | } |
| 421 | |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 422 | static int __virtnet_xdp_xmit_one(struct virtnet_info *vi, |
| 423 | struct send_queue *sq, |
| 424 | struct xdp_frame *xdpf) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 425 | { |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 426 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 427 | int err; |
| 428 | |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 429 | /* virtqueue want to use data area in-front of packet */ |
| 430 | if (unlikely(xdpf->metasize > 0)) |
| 431 | return -EOPNOTSUPP; |
| 432 | |
| 433 | if (unlikely(xdpf->headroom < vi->hdr_len)) |
| 434 | return -EOVERFLOW; |
| 435 | |
| 436 | /* Make room for virtqueue hdr (also change xdpf->headroom?) */ |
| 437 | xdpf->data -= vi->hdr_len; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 438 | /* Zero header and leave csum up to XDP layers */ |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 439 | hdr = xdpf->data; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 440 | memset(hdr, 0, vi->hdr_len); |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 441 | xdpf->len += vi->hdr_len; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 442 | |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 443 | sg_init_one(sq->sg, xdpf->data, xdpf->len); |
Jason Wang | bb91acc | 2016-12-23 22:37:32 +0800 | [diff] [blame] | 444 | |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 445 | err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC); |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 446 | if (unlikely(err)) |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 447 | return -ENOSPC; /* Caller handle free/refcnt */ |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 448 | |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 449 | return 0; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 450 | } |
| 451 | |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 452 | static int __virtnet_xdp_tx_xmit(struct virtnet_info *vi, |
| 453 | struct xdp_frame *xdpf) |
| 454 | { |
| 455 | struct xdp_frame *xdpf_sent; |
| 456 | struct send_queue *sq; |
| 457 | unsigned int len; |
| 458 | unsigned int qp; |
| 459 | |
| 460 | qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id(); |
| 461 | sq = &vi->sq[qp]; |
| 462 | |
| 463 | /* Free up any pending old buffers before queueing new ones. */ |
| 464 | while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) |
| 465 | xdp_return_frame(xdpf_sent); |
| 466 | |
| 467 | return __virtnet_xdp_xmit_one(vi, sq, xdpf); |
| 468 | } |
| 469 | |
| 470 | static int virtnet_xdp_xmit(struct net_device *dev, |
| 471 | int n, struct xdp_frame **frames) |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 472 | { |
| 473 | struct virtnet_info *vi = netdev_priv(dev); |
Jesper Dangaard Brouer | 8dcc5b0 | 2018-02-20 14:32:20 +0100 | [diff] [blame] | 474 | struct receive_queue *rq = vi->rq; |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 475 | struct xdp_frame *xdpf_sent; |
Jesper Dangaard Brouer | 8dcc5b0 | 2018-02-20 14:32:20 +0100 | [diff] [blame] | 476 | struct bpf_prog *xdp_prog; |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 477 | struct send_queue *sq; |
| 478 | unsigned int len; |
| 479 | unsigned int qp; |
| 480 | int drops = 0; |
| 481 | int err; |
| 482 | int i; |
| 483 | |
| 484 | qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id(); |
| 485 | sq = &vi->sq[qp]; |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 486 | |
Jesper Dangaard Brouer | 8dcc5b0 | 2018-02-20 14:32:20 +0100 | [diff] [blame] | 487 | /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this |
| 488 | * indicate XDP resources have been successfully allocated. |
| 489 | */ |
| 490 | xdp_prog = rcu_dereference(rq->xdp_prog); |
| 491 | if (!xdp_prog) |
| 492 | return -ENXIO; |
| 493 | |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 494 | /* Free up any pending old buffers before queueing new ones. */ |
| 495 | while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) |
| 496 | xdp_return_frame(xdpf_sent); |
| 497 | |
| 498 | for (i = 0; i < n; i++) { |
| 499 | struct xdp_frame *xdpf = frames[i]; |
| 500 | |
| 501 | err = __virtnet_xdp_xmit_one(vi, sq, xdpf); |
| 502 | if (err) { |
| 503 | xdp_return_frame_rx_napi(xdpf); |
| 504 | drops++; |
| 505 | } |
| 506 | } |
| 507 | return n - drops; |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 508 | } |
| 509 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 510 | static unsigned int virtnet_get_headroom(struct virtnet_info *vi) |
| 511 | { |
| 512 | return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0; |
| 513 | } |
| 514 | |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 515 | /* We copy the packet for XDP in the following cases: |
| 516 | * |
| 517 | * 1) Packet is scattered across multiple rx buffers. |
| 518 | * 2) Headroom space is insufficient. |
| 519 | * |
| 520 | * This is inefficient but it's a temporary condition that |
| 521 | * we hit right after XDP is enabled and until queue is refilled |
| 522 | * with large buffers with sufficient headroom - so it should affect |
| 523 | * at most queue size packets. |
| 524 | * Afterwards, the conditions to enable |
| 525 | * XDP should preclude the underlying device from sending packets |
| 526 | * across multiple buffers (num_buf > 1), and we make sure buffers |
| 527 | * have enough headroom. |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 528 | */ |
| 529 | static struct page *xdp_linearize_page(struct receive_queue *rq, |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 530 | u16 *num_buf, |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 531 | struct page *p, |
| 532 | int offset, |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 533 | int page_off, |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 534 | unsigned int *len) |
| 535 | { |
| 536 | struct page *page = alloc_page(GFP_ATOMIC); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 537 | |
| 538 | if (!page) |
| 539 | return NULL; |
| 540 | |
| 541 | memcpy(page_address(page) + page_off, page_address(p) + offset, *len); |
| 542 | page_off += *len; |
| 543 | |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 544 | while (--*num_buf) { |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 545 | int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 546 | unsigned int buflen; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 547 | void *buf; |
| 548 | int off; |
| 549 | |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 550 | buf = virtqueue_get_buf(rq->vq, &buflen); |
| 551 | if (unlikely(!buf)) |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 552 | goto err_buf; |
| 553 | |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 554 | p = virt_to_head_page(buf); |
| 555 | off = buf - page_address(p); |
| 556 | |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 557 | /* guard against a misconfigured or uncooperative backend that |
| 558 | * is sending packet larger than the MTU. |
| 559 | */ |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 560 | if ((page_off + buflen + tailroom) > PAGE_SIZE) { |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 561 | put_page(p); |
| 562 | goto err_buf; |
| 563 | } |
| 564 | |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 565 | memcpy(page_address(page) + page_off, |
| 566 | page_address(p) + off, buflen); |
| 567 | page_off += buflen; |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 568 | put_page(p); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 569 | } |
| 570 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 571 | /* Headroom does not contribute to packet length */ |
| 572 | *len = page_off - VIRTIO_XDP_HEADROOM; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 573 | return page; |
| 574 | err_buf: |
| 575 | __free_pages(page, 0); |
| 576 | return NULL; |
| 577 | } |
| 578 | |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 579 | static struct sk_buff *receive_small(struct net_device *dev, |
| 580 | struct virtnet_info *vi, |
| 581 | struct receive_queue *rq, |
| 582 | void *buf, void *ctx, |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 583 | unsigned int len, |
| 584 | bool *xdp_xmit) |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 585 | { |
| 586 | struct sk_buff *skb; |
| 587 | struct bpf_prog *xdp_prog; |
| 588 | unsigned int xdp_headroom = (unsigned long)ctx; |
| 589 | unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom; |
| 590 | unsigned int headroom = vi->hdr_len + header_offset; |
| 591 | unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + |
| 592 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 593 | struct page *page = virt_to_head_page(buf); |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 594 | unsigned int delta = 0; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 595 | struct page *xdp_page; |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 596 | int err; |
| 597 | |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 598 | len -= vi->hdr_len; |
| 599 | |
| 600 | rcu_read_lock(); |
| 601 | xdp_prog = rcu_dereference(rq->xdp_prog); |
| 602 | if (xdp_prog) { |
| 603 | struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset; |
Jesper Dangaard Brouer | 44fa2db | 2018-04-17 16:46:37 +0200 | [diff] [blame] | 604 | struct xdp_frame *xdpf; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 605 | struct xdp_buff xdp; |
| 606 | void *orig_data; |
| 607 | u32 act; |
| 608 | |
Jesper Dangaard Brouer | 95dbe9e | 2018-02-20 14:32:10 +0100 | [diff] [blame] | 609 | if (unlikely(hdr->hdr.gso_type)) |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 610 | goto err_xdp; |
| 611 | |
| 612 | if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) { |
| 613 | int offset = buf - page_address(page) + header_offset; |
| 614 | unsigned int tlen = len + vi->hdr_len; |
| 615 | u16 num_buf = 1; |
| 616 | |
| 617 | xdp_headroom = virtnet_get_headroom(vi); |
| 618 | header_offset = VIRTNET_RX_PAD + xdp_headroom; |
| 619 | headroom = vi->hdr_len + header_offset; |
| 620 | buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) + |
| 621 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 622 | xdp_page = xdp_linearize_page(rq, &num_buf, page, |
| 623 | offset, header_offset, |
| 624 | &tlen); |
| 625 | if (!xdp_page) |
| 626 | goto err_xdp; |
| 627 | |
| 628 | buf = page_address(xdp_page); |
| 629 | put_page(page); |
| 630 | page = xdp_page; |
| 631 | } |
| 632 | |
| 633 | xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len; |
| 634 | xdp.data = xdp.data_hard_start + xdp_headroom; |
Daniel Borkmann | de8f3a8 | 2017-09-25 02:25:51 +0200 | [diff] [blame] | 635 | xdp_set_data_meta_invalid(&xdp); |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 636 | xdp.data_end = xdp.data + len; |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 637 | xdp.rxq = &rq->xdp_rxq; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 638 | orig_data = xdp.data; |
| 639 | act = bpf_prog_run_xdp(xdp_prog, &xdp); |
| 640 | |
| 641 | switch (act) { |
| 642 | case XDP_PASS: |
| 643 | /* Recalculate length in case bpf program changed it */ |
| 644 | delta = orig_data - xdp.data; |
Nikita V. Shirokov | 6870de4 | 2018-04-17 21:42:20 -0700 | [diff] [blame] | 645 | len = xdp.data_end - xdp.data; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 646 | break; |
| 647 | case XDP_TX: |
Jesper Dangaard Brouer | 44fa2db | 2018-04-17 16:46:37 +0200 | [diff] [blame] | 648 | xdpf = convert_to_xdp_frame(&xdp); |
| 649 | if (unlikely(!xdpf)) |
| 650 | goto err_xdp; |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 651 | err = __virtnet_xdp_tx_xmit(vi, xdpf); |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 652 | if (unlikely(err)) { |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 653 | trace_xdp_exception(vi->dev, xdp_prog, act); |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 654 | goto err_xdp; |
| 655 | } |
| 656 | *xdp_xmit = true; |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 657 | rcu_read_unlock(); |
| 658 | goto xdp_xmit; |
| 659 | case XDP_REDIRECT: |
| 660 | err = xdp_do_redirect(dev, &xdp, xdp_prog); |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 661 | if (err) |
| 662 | goto err_xdp; |
| 663 | *xdp_xmit = true; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 664 | rcu_read_unlock(); |
| 665 | goto xdp_xmit; |
| 666 | default: |
| 667 | bpf_warn_invalid_xdp_action(act); |
| 668 | case XDP_ABORTED: |
| 669 | trace_xdp_exception(vi->dev, xdp_prog, act); |
| 670 | case XDP_DROP: |
| 671 | goto err_xdp; |
| 672 | } |
| 673 | } |
| 674 | rcu_read_unlock(); |
| 675 | |
| 676 | skb = build_skb(buf, buflen); |
| 677 | if (!skb) { |
| 678 | put_page(page); |
| 679 | goto err; |
| 680 | } |
| 681 | skb_reserve(skb, headroom - delta); |
Nikita V. Shirokov | 6870de4 | 2018-04-17 21:42:20 -0700 | [diff] [blame] | 682 | skb_put(skb, len); |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 683 | if (!delta) { |
| 684 | buf += header_offset; |
| 685 | memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len); |
| 686 | } /* keep zeroed vnet hdr since packet was changed by bpf */ |
| 687 | |
| 688 | err: |
| 689 | return skb; |
| 690 | |
| 691 | err_xdp: |
| 692 | rcu_read_unlock(); |
| 693 | dev->stats.rx_dropped++; |
| 694 | put_page(page); |
| 695 | xdp_xmit: |
| 696 | return NULL; |
| 697 | } |
| 698 | |
| 699 | static struct sk_buff *receive_big(struct net_device *dev, |
| 700 | struct virtnet_info *vi, |
| 701 | struct receive_queue *rq, |
| 702 | void *buf, |
| 703 | unsigned int len) |
| 704 | { |
| 705 | struct page *page = buf; |
| 706 | struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE); |
| 707 | |
| 708 | if (unlikely(!skb)) |
| 709 | goto err; |
| 710 | |
| 711 | return skb; |
| 712 | |
| 713 | err: |
| 714 | dev->stats.rx_dropped++; |
| 715 | give_pages(rq, page); |
| 716 | return NULL; |
| 717 | } |
| 718 | |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 719 | static struct sk_buff *receive_mergeable(struct net_device *dev, |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 720 | struct virtnet_info *vi, |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 721 | struct receive_queue *rq, |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 722 | void *buf, |
| 723 | void *ctx, |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 724 | unsigned int len, |
| 725 | bool *xdp_xmit) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 726 | { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 727 | struct virtio_net_hdr_mrg_rxbuf *hdr = buf; |
| 728 | u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 729 | struct page *page = virt_to_head_page(buf); |
| 730 | int offset = buf - page_address(page); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 731 | struct sk_buff *head_skb, *curr_skb; |
| 732 | struct bpf_prog *xdp_prog; |
| 733 | unsigned int truesize; |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 734 | unsigned int headroom = mergeable_ctx_to_headroom(ctx); |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 735 | int err; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 736 | |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 737 | head_skb = NULL; |
| 738 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 739 | rcu_read_lock(); |
| 740 | xdp_prog = rcu_dereference(rq->xdp_prog); |
| 741 | if (xdp_prog) { |
Jesper Dangaard Brouer | 44fa2db | 2018-04-17 16:46:37 +0200 | [diff] [blame] | 742 | struct xdp_frame *xdpf; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 743 | struct page *xdp_page; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 744 | struct xdp_buff xdp; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 745 | void *data; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 746 | u32 act; |
| 747 | |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 748 | /* This happens when rx buffer size is underestimated |
| 749 | * or headroom is not enough because of the buffer |
| 750 | * was refilled before XDP is set. This should only |
| 751 | * happen for the first several packets, so we don't |
| 752 | * care much about its performance. |
| 753 | */ |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 754 | if (unlikely(num_buf > 1 || |
| 755 | headroom < virtnet_get_headroom(vi))) { |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 756 | /* linearize data for XDP */ |
Jason Wang | 56a86f8 | 2016-12-23 22:37:26 +0800 | [diff] [blame] | 757 | xdp_page = xdp_linearize_page(rq, &num_buf, |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 758 | page, offset, |
| 759 | VIRTIO_XDP_HEADROOM, |
| 760 | &len); |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 761 | if (!xdp_page) |
| 762 | goto err_xdp; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 763 | offset = VIRTIO_XDP_HEADROOM; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 764 | } else { |
| 765 | xdp_page = page; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | /* Transient failure which in theory could occur if |
| 769 | * in-flight packets from before XDP was enabled reach |
| 770 | * the receive path after XDP is loaded. In practice I |
| 771 | * was not able to create this condition. |
| 772 | */ |
Jason Wang | b00f70b | 2016-12-23 22:37:28 +0800 | [diff] [blame] | 773 | if (unlikely(hdr->hdr.gso_type)) |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 774 | goto err_xdp; |
| 775 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 776 | /* Allow consuming headroom but reserve enough space to push |
| 777 | * the descriptor on if we get an XDP_TX return code. |
| 778 | */ |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 779 | data = page_address(xdp_page) + offset; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 780 | xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len; |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 781 | xdp.data = data + vi->hdr_len; |
Daniel Borkmann | de8f3a8 | 2017-09-25 02:25:51 +0200 | [diff] [blame] | 782 | xdp_set_data_meta_invalid(&xdp); |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 783 | xdp.data_end = xdp.data + (len - vi->hdr_len); |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 784 | xdp.rxq = &rq->xdp_rxq; |
| 785 | |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 786 | act = bpf_prog_run_xdp(xdp_prog, &xdp); |
| 787 | |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 788 | switch (act) { |
| 789 | case XDP_PASS: |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 790 | /* recalculate offset to account for any header |
| 791 | * adjustments. Note other cases do not build an |
| 792 | * skb and avoid using offset |
| 793 | */ |
| 794 | offset = xdp.data - |
| 795 | page_address(xdp_page) - vi->hdr_len; |
| 796 | |
Nikita V. Shirokov | 6870de4 | 2018-04-17 21:42:20 -0700 | [diff] [blame] | 797 | /* recalculate len if xdp.data or xdp.data_end were |
| 798 | * adjusted |
| 799 | */ |
Nikita V. Shirokov | aaa6452 | 2018-04-22 21:16:48 -0700 | [diff] [blame] | 800 | len = xdp.data_end - xdp.data + vi->hdr_len; |
Jason Wang | 1830f89 | 2016-12-23 22:37:27 +0800 | [diff] [blame] | 801 | /* We can only create skb based on xdp_page. */ |
| 802 | if (unlikely(xdp_page != page)) { |
| 803 | rcu_read_unlock(); |
| 804 | put_page(page); |
| 805 | head_skb = page_to_skb(vi, rq, xdp_page, |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 806 | offset, len, PAGE_SIZE); |
Jason Wang | 1830f89 | 2016-12-23 22:37:27 +0800 | [diff] [blame] | 807 | return head_skb; |
| 808 | } |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 809 | break; |
| 810 | case XDP_TX: |
Jesper Dangaard Brouer | 44fa2db | 2018-04-17 16:46:37 +0200 | [diff] [blame] | 811 | xdpf = convert_to_xdp_frame(&xdp); |
| 812 | if (unlikely(!xdpf)) |
| 813 | goto err_xdp; |
Jesper Dangaard Brouer | 735fc40 | 2018-05-24 16:46:12 +0200 | [diff] [blame^] | 814 | err = __virtnet_xdp_tx_xmit(vi, xdpf); |
Jesper Dangaard Brouer | cac320c | 2018-04-17 16:45:52 +0200 | [diff] [blame] | 815 | if (unlikely(err)) { |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 816 | trace_xdp_exception(vi->dev, xdp_prog, act); |
Jesper Dangaard Brouer | 11b7d897 | 2018-02-20 14:32:15 +0100 | [diff] [blame] | 817 | if (unlikely(xdp_page != page)) |
| 818 | put_page(xdp_page); |
| 819 | goto err_xdp; |
| 820 | } |
| 821 | *xdp_xmit = true; |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 822 | if (unlikely(xdp_page != page)) |
| 823 | goto err_xdp; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 824 | rcu_read_unlock(); |
| 825 | goto xdp_xmit; |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 826 | case XDP_REDIRECT: |
| 827 | err = xdp_do_redirect(dev, &xdp, xdp_prog); |
| 828 | if (err) { |
| 829 | if (unlikely(xdp_page != page)) |
| 830 | put_page(xdp_page); |
| 831 | goto err_xdp; |
| 832 | } |
| 833 | *xdp_xmit = true; |
| 834 | if (unlikely(xdp_page != page)) |
| 835 | goto err_xdp; |
| 836 | rcu_read_unlock(); |
| 837 | goto xdp_xmit; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 838 | default: |
John Fastabend | 0354e4d | 2017-02-02 19:15:01 -0800 | [diff] [blame] | 839 | bpf_warn_invalid_xdp_action(act); |
| 840 | case XDP_ABORTED: |
| 841 | trace_xdp_exception(vi->dev, xdp_prog, act); |
| 842 | case XDP_DROP: |
John Fastabend | 72979a6 | 2016-12-15 12:14:36 -0800 | [diff] [blame] | 843 | if (unlikely(xdp_page != page)) |
| 844 | __free_pages(xdp_page, 0); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 845 | goto err_xdp; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 846 | } |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 847 | } |
| 848 | rcu_read_unlock(); |
| 849 | |
Jason Wang | 28b39bc | 2017-07-19 16:54:46 +0800 | [diff] [blame] | 850 | truesize = mergeable_ctx_to_truesize(ctx); |
| 851 | if (unlikely(len > truesize)) { |
Dan Carpenter | 56da5fd | 2017-04-06 12:04:47 +0300 | [diff] [blame] | 852 | pr_debug("%s: rx error: len %u exceeds truesize %lu\n", |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 853 | dev->name, len, (unsigned long)ctx); |
| 854 | dev->stats.rx_length_errors++; |
| 855 | goto err_skb; |
| 856 | } |
Jason Wang | 28b39bc | 2017-07-19 16:54:46 +0800 | [diff] [blame] | 857 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 858 | head_skb = page_to_skb(vi, rq, page, offset, len, truesize); |
| 859 | curr_skb = head_skb; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 860 | |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 861 | if (unlikely(!curr_skb)) |
| 862 | goto err_skb; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 863 | while (--num_buf) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 864 | int num_skb_frags; |
| 865 | |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 866 | buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx); |
Yunjian Wang | 03e9f8a | 2017-12-04 14:02:19 +0800 | [diff] [blame] | 867 | if (unlikely(!buf)) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 868 | pr_debug("%s: rx error: %d buffers out of %d missing\n", |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 869 | dev->name, num_buf, |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 870 | virtio16_to_cpu(vi->vdev, |
| 871 | hdr->num_buffers)); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 872 | dev->stats.rx_length_errors++; |
| 873 | goto err_buf; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 874 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 875 | |
| 876 | page = virt_to_head_page(buf); |
Jason Wang | 28b39bc | 2017-07-19 16:54:46 +0800 | [diff] [blame] | 877 | |
| 878 | truesize = mergeable_ctx_to_truesize(ctx); |
| 879 | if (unlikely(len > truesize)) { |
Dan Carpenter | 56da5fd | 2017-04-06 12:04:47 +0300 | [diff] [blame] | 880 | pr_debug("%s: rx error: len %u exceeds truesize %lu\n", |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 881 | dev->name, len, (unsigned long)ctx); |
| 882 | dev->stats.rx_length_errors++; |
| 883 | goto err_skb; |
| 884 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 885 | |
| 886 | num_skb_frags = skb_shinfo(curr_skb)->nr_frags; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 887 | if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) { |
| 888 | struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 889 | |
| 890 | if (unlikely(!nskb)) |
| 891 | goto err_skb; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 892 | if (curr_skb == head_skb) |
| 893 | skb_shinfo(curr_skb)->frag_list = nskb; |
| 894 | else |
| 895 | curr_skb->next = nskb; |
| 896 | curr_skb = nskb; |
| 897 | head_skb->truesize += nskb->truesize; |
| 898 | num_skb_frags = 0; |
| 899 | } |
| 900 | if (curr_skb != head_skb) { |
| 901 | head_skb->data_len += len; |
| 902 | head_skb->len += len; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 903 | head_skb->truesize += truesize; |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 904 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 905 | offset = buf - page_address(page); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 906 | if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) { |
| 907 | put_page(page); |
| 908 | skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1, |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 909 | len, truesize); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 910 | } else { |
| 911 | skb_add_rx_frag(curr_skb, num_skb_frags, page, |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 912 | offset, len, truesize); |
Jason Wang | ba27524 | 2013-11-01 14:07:48 +0800 | [diff] [blame] | 913 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 914 | } |
| 915 | |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 916 | ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 917 | return head_skb; |
| 918 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 919 | err_xdp: |
| 920 | rcu_read_unlock(); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 921 | err_skb: |
| 922 | put_page(page); |
| 923 | while (--num_buf) { |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 924 | buf = virtqueue_get_buf(rq->vq, &len); |
| 925 | if (unlikely(!buf)) { |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 926 | pr_debug("%s: rx error: %d buffers missing\n", |
| 927 | dev->name, num_buf); |
| 928 | dev->stats.rx_length_errors++; |
| 929 | break; |
| 930 | } |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 931 | page = virt_to_head_page(buf); |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 932 | put_page(page); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 933 | } |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 934 | err_buf: |
| 935 | dev->stats.rx_dropped++; |
| 936 | dev_kfree_skb(head_skb); |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 937 | xdp_xmit: |
Michael S. Tsirkin | 8fc3b9e | 2013-11-28 13:30:55 +0200 | [diff] [blame] | 938 | return NULL; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 939 | } |
| 940 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 941 | static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq, |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 942 | void *buf, unsigned int len, void **ctx, bool *xdp_xmit) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 943 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 944 | struct net_device *dev = vi->dev; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 945 | struct sk_buff *skb; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 946 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 947 | int ret; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 948 | |
Michael S. Tsirkin | bcff316 | 2014-10-24 00:22:11 +0300 | [diff] [blame] | 949 | if (unlikely(len < vi->hdr_len + ETH_HLEN)) { |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 950 | pr_debug("%s: short packet %i\n", dev->name, len); |
| 951 | dev->stats.rx_length_errors++; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 952 | if (vi->mergeable_rx_bufs) { |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 953 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 954 | } else if (vi->big_packets) { |
Michael Dalton | 98bfd23 | 2013-12-05 13:14:05 -0800 | [diff] [blame] | 955 | give_pages(rq, buf); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 956 | } else { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 957 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 958 | } |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 959 | return 0; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 960 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 961 | |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 962 | if (vi->mergeable_rx_bufs) |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 963 | skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 964 | else if (vi->big_packets) |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 965 | skb = receive_big(dev, vi, rq, buf, len); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 966 | else |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 967 | skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit); |
Michael S. Tsirkin | f121159 | 2013-11-28 13:30:59 +0200 | [diff] [blame] | 968 | |
| 969 | if (unlikely(!skb)) |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 970 | return 0; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 971 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 972 | hdr = skb_vnet_hdr(skb); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 973 | |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 974 | ret = skb->len; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 975 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 976 | if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) |
Jason Wang | 10a8d94 | 2011-06-10 00:56:17 +0000 | [diff] [blame] | 977 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 978 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 979 | if (virtio_net_hdr_to_skb(skb, &hdr->hdr, |
| 980 | virtio_is_little_endian(vi->vdev))) { |
| 981 | net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n", |
| 982 | dev->name, hdr->hdr.gso_type, |
| 983 | hdr->hdr.gso_size); |
| 984 | goto frame_err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 985 | } |
| 986 | |
Mike Rapoport | d1dc06d | 2016-06-14 08:29:38 +0300 | [diff] [blame] | 987 | skb->protocol = eth_type_trans(skb, dev); |
| 988 | pr_debug("Receiving skb proto 0x%04x len %i type %i\n", |
| 989 | ntohs(skb->protocol), skb->len, skb->pkt_type); |
| 990 | |
Eric Dumazet | 0fbd050 | 2015-07-31 18:25:17 +0200 | [diff] [blame] | 991 | napi_gro_receive(&rq->napi, skb); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 992 | return ret; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 993 | |
| 994 | frame_err: |
| 995 | dev->stats.rx_frame_errors++; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 996 | dev_kfree_skb(skb); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 997 | return 0; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 998 | } |
| 999 | |
Jason Wang | 192f68c | 2017-07-19 16:54:47 +0800 | [diff] [blame] | 1000 | /* Unlike mergeable buffers, all buffers are allocated to the |
| 1001 | * same size, except for the headroom. For this reason we do |
| 1002 | * not need to use mergeable_len_to_ctx here - it is enough |
| 1003 | * to store the headroom as the context ignoring the truesize. |
| 1004 | */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1005 | static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq, |
| 1006 | gfp_t gfp) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1007 | { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 1008 | struct page_frag *alloc_frag = &rq->alloc_frag; |
| 1009 | char *buf; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1010 | unsigned int xdp_headroom = virtnet_get_headroom(vi); |
Jason Wang | 192f68c | 2017-07-19 16:54:47 +0800 | [diff] [blame] | 1011 | void *ctx = (void *)(unsigned long)xdp_headroom; |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 1012 | int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1013 | int err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1014 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 1015 | len = SKB_DATA_ALIGN(len) + |
| 1016 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 1017 | if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp))) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1018 | return -ENOMEM; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1019 | |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 1020 | buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; |
| 1021 | get_page(alloc_frag->page); |
| 1022 | alloc_frag->offset += len; |
| 1023 | sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom, |
| 1024 | vi->hdr_len + GOOD_PACKET_LEN); |
Jason Wang | 192f68c | 2017-07-19 16:54:47 +0800 | [diff] [blame] | 1025 | err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1026 | if (err < 0) |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 1027 | put_page(virt_to_head_page(buf)); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1028 | return err; |
| 1029 | } |
| 1030 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1031 | static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq, |
| 1032 | gfp_t gfp) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1033 | { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1034 | struct page *first, *list = NULL; |
| 1035 | char *p; |
| 1036 | int i, err, offset; |
| 1037 | |
Rusty Russell | a583544 | 2014-09-11 10:17:36 +0930 | [diff] [blame] | 1038 | sg_init_table(rq->sg, MAX_SKB_FRAGS + 2); |
| 1039 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1040 | /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1041 | for (i = MAX_SKB_FRAGS + 1; i > 1; --i) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1042 | first = get_a_page(rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1043 | if (!first) { |
| 1044 | if (list) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1045 | give_pages(rq, list); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1046 | return -ENOMEM; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1047 | } |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1048 | sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1049 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1050 | /* chain new page in list head to match sg */ |
| 1051 | first->private = (unsigned long)list; |
| 1052 | list = first; |
| 1053 | } |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1054 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1055 | first = get_a_page(rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1056 | if (!first) { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1057 | give_pages(rq, list); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1058 | return -ENOMEM; |
| 1059 | } |
| 1060 | p = page_address(first); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 1061 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1062 | /* rq->sg[0], rq->sg[1] share the same page */ |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1063 | /* a separated rq->sg[0] for header - required in case !any_header_sg */ |
| 1064 | sg_set_buf(&rq->sg[0], p, vi->hdr_len); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 1065 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1066 | /* rq->sg[1] for data packet, from offset */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1067 | offset = sizeof(struct padded_vnet_hdr); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1068 | sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 1069 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1070 | /* chain first in list head */ |
| 1071 | first->private = (unsigned long)list; |
Rusty Russell | 9dc7b9e | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1072 | err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2, |
| 1073 | first, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1074 | if (err < 0) |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1075 | give_pages(rq, first); |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 1076 | |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1077 | return err; |
| 1078 | } |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 1079 | |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 1080 | static unsigned int get_mergeable_buf_len(struct receive_queue *rq, |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1081 | struct ewma_pkt_len *avg_pkt_len, |
| 1082 | unsigned int room) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1083 | { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 1084 | const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 1085 | unsigned int len; |
| 1086 | |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1087 | if (room) |
| 1088 | return PAGE_SIZE - room; |
| 1089 | |
| 1090 | len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len), |
Michael S. Tsirkin | f0c3192 | 2017-06-02 17:54:33 +0300 | [diff] [blame] | 1091 | rq->min_buf_len, PAGE_SIZE - hdr_len); |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1092 | |
Michael S. Tsirkin | e377fcc | 2017-03-06 22:21:35 +0200 | [diff] [blame] | 1093 | return ALIGN(len, L1_CACHE_BYTES); |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 1094 | } |
| 1095 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1096 | static int add_recvbuf_mergeable(struct virtnet_info *vi, |
| 1097 | struct receive_queue *rq, gfp_t gfp) |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 1098 | { |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1099 | struct page_frag *alloc_frag = &rq->alloc_frag; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1100 | unsigned int headroom = virtnet_get_headroom(vi); |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1101 | unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; |
| 1102 | unsigned int room = SKB_DATA_ALIGN(headroom + tailroom); |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1103 | char *buf; |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 1104 | void *ctx; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1105 | int err; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1106 | unsigned int len, hole; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1107 | |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1108 | /* Extra tailroom is needed to satisfy XDP's assumption. This |
| 1109 | * means rx frags coalescing won't work, but consider we've |
| 1110 | * disabled GSO for XDP, it won't be a big issue. |
| 1111 | */ |
| 1112 | len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room); |
| 1113 | if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp))) |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1114 | return -ENOMEM; |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 1115 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1116 | buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1117 | buf += headroom; /* advance address leaving hole at front of pkt */ |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1118 | get_page(alloc_frag->page); |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1119 | alloc_frag->offset += len + room; |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1120 | hole = alloc_frag->size - alloc_frag->offset; |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 1121 | if (hole < len + room) { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 1122 | /* To avoid internal fragmentation, if there is very likely not |
| 1123 | * enough space for another buffer, add the remaining space to |
Michael S. Tsirkin | 1daa879 | 2017-07-31 21:49:49 +0300 | [diff] [blame] | 1124 | * the current buffer. |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 1125 | */ |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1126 | len += hole; |
| 1127 | alloc_frag->offset += hole; |
| 1128 | } |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1129 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 1130 | sg_init_one(rq->sg, buf, len); |
David S. Miller | 29fda25 | 2017-08-01 10:07:50 -0700 | [diff] [blame] | 1131 | ctx = mergeable_len_to_ctx(len, headroom); |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 1132 | err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1133 | if (err < 0) |
Michael Dalton | 2613af0 | 2013-10-28 15:44:18 -0700 | [diff] [blame] | 1134 | put_page(virt_to_head_page(buf)); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1135 | |
| 1136 | return err; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1137 | } |
| 1138 | |
Rusty Russell | b2baed6 | 2011-12-29 00:42:38 +0000 | [diff] [blame] | 1139 | /* |
| 1140 | * Returns false if we couldn't fill entirely (OOM). |
| 1141 | * |
| 1142 | * Normally run in the receive path, but can also be run from ndo_open |
| 1143 | * before we're receiving packets, or from refill_work which is |
| 1144 | * careful to disable receiving (using napi_disable). |
| 1145 | */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1146 | static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq, |
| 1147 | gfp_t gfp) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1148 | { |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1149 | int err; |
Michael S. Tsirkin | 1788f495 | 2010-07-02 16:32:55 +0000 | [diff] [blame] | 1150 | bool oom; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1151 | |
Amit Shah | 0aea51c | 2009-08-26 14:58:28 +0530 | [diff] [blame] | 1152 | do { |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1153 | if (vi->mergeable_rx_bufs) |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 1154 | err = add_recvbuf_mergeable(vi, rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1155 | else if (vi->big_packets) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1156 | err = add_recvbuf_big(vi, rq, gfp); |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1157 | else |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1158 | err = add_recvbuf_small(vi, rq, gfp); |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1159 | |
Michael S. Tsirkin | 1788f495 | 2010-07-02 16:32:55 +0000 | [diff] [blame] | 1160 | oom = err == -ENOMEM; |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1161 | if (err) |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1162 | break; |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1163 | } while (rq->vq->num_free); |
Jason Wang | 681daee2 | 2014-03-26 13:03:00 +0800 | [diff] [blame] | 1164 | virtqueue_kick(rq->vq); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1165 | return !oom; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1166 | } |
| 1167 | |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 1168 | static void skb_recv_done(struct virtqueue *rvq) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1169 | { |
| 1170 | struct virtnet_info *vi = rvq->vdev->priv; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1171 | struct receive_queue *rq = &vi->rq[vq2rxq(rvq)]; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1172 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1173 | virtqueue_napi_schedule(&rq->napi, rvq); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1174 | } |
| 1175 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1176 | static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi) |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 1177 | { |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1178 | napi_enable(napi); |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 1179 | |
| 1180 | /* If all buffers were filled by other side before we napi_enabled, we |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1181 | * won't get another interrupt, so process any outstanding packets now. |
| 1182 | * Call local_bh_enable after to trigger softIRQ processing. |
| 1183 | */ |
| 1184 | local_bh_disable(); |
| 1185 | virtqueue_napi_schedule(napi, vq); |
| 1186 | local_bh_enable(); |
Bruce Rogers | 3e9d08e | 2011-02-10 11:03:31 -0800 | [diff] [blame] | 1187 | } |
| 1188 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1189 | static void virtnet_napi_tx_enable(struct virtnet_info *vi, |
| 1190 | struct virtqueue *vq, |
| 1191 | struct napi_struct *napi) |
| 1192 | { |
| 1193 | if (!napi->weight) |
| 1194 | return; |
| 1195 | |
| 1196 | /* Tx napi touches cachelines on the cpu handling tx interrupts. Only |
| 1197 | * enable the feature if this is likely affine with the transmit path. |
| 1198 | */ |
| 1199 | if (!vi->affinity_hint_set) { |
| 1200 | napi->weight = 0; |
| 1201 | return; |
| 1202 | } |
| 1203 | |
| 1204 | return virtnet_napi_enable(vq, napi); |
| 1205 | } |
| 1206 | |
Willem de Bruijn | 78a57b4 | 2017-04-25 15:59:17 -0400 | [diff] [blame] | 1207 | static void virtnet_napi_tx_disable(struct napi_struct *napi) |
| 1208 | { |
| 1209 | if (napi->weight) |
| 1210 | napi_disable(napi); |
| 1211 | } |
| 1212 | |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1213 | static void refill_work(struct work_struct *work) |
| 1214 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1215 | struct virtnet_info *vi = |
| 1216 | container_of(work, struct virtnet_info, refill.work); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1217 | bool still_empty; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1218 | int i; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1219 | |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1220 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1221 | struct receive_queue *rq = &vi->rq[i]; |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1222 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1223 | napi_disable(&rq->napi); |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1224 | still_empty = !try_fill_recv(vi, rq, GFP_KERNEL); |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1225 | virtnet_napi_enable(rq->vq, &rq->napi); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1226 | |
| 1227 | /* In theory, this can happen: if we don't get any buffers in |
| 1228 | * we will *never* try to fill again. |
| 1229 | */ |
| 1230 | if (still_empty) |
| 1231 | schedule_delayed_work(&vi->refill, HZ/2); |
| 1232 | } |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1233 | } |
| 1234 | |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1235 | static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1236 | { |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1237 | struct virtnet_info *vi = rq->vq->vdev->priv; |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1238 | unsigned int len, received = 0, bytes = 0; |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 1239 | void *buf; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1240 | |
Jason Wang | 192f68c | 2017-07-19 16:54:47 +0800 | [diff] [blame] | 1241 | if (!vi->big_packets || vi->mergeable_rx_bufs) { |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 1242 | void *ctx; |
| 1243 | |
| 1244 | while (received < budget && |
| 1245 | (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) { |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1246 | bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit); |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 1247 | received++; |
| 1248 | } |
| 1249 | } else { |
| 1250 | while (received < budget && |
| 1251 | (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) { |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1252 | bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit); |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 1253 | received++; |
| 1254 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1255 | } |
| 1256 | |
Jason Wang | be121f4 | 2014-01-16 14:45:24 +0800 | [diff] [blame] | 1257 | if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) { |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1258 | if (!try_fill_recv(vi, rq, GFP_ATOMIC)) |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 1259 | schedule_delayed_work(&vi->refill, 0); |
Rusty Russell | 3161e45 | 2009-08-26 12:22:32 -0700 | [diff] [blame] | 1260 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1261 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1262 | u64_stats_update_begin(&rq->stats.syncp); |
| 1263 | rq->stats.bytes += bytes; |
| 1264 | rq->stats.packets += received; |
| 1265 | u64_stats_update_end(&rq->stats.syncp); |
Jason Wang | 61845d2 | 2017-02-17 11:33:09 +0800 | [diff] [blame] | 1266 | |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1267 | return received; |
| 1268 | } |
| 1269 | |
Willem de Bruijn | ea7735d | 2017-04-24 13:49:28 -0400 | [diff] [blame] | 1270 | static void free_old_xmit_skbs(struct send_queue *sq) |
| 1271 | { |
| 1272 | struct sk_buff *skb; |
| 1273 | unsigned int len; |
Willem de Bruijn | ea7735d | 2017-04-24 13:49:28 -0400 | [diff] [blame] | 1274 | unsigned int packets = 0; |
| 1275 | unsigned int bytes = 0; |
| 1276 | |
| 1277 | while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) { |
| 1278 | pr_debug("Sent skb %p\n", skb); |
| 1279 | |
| 1280 | bytes += skb->len; |
| 1281 | packets++; |
| 1282 | |
Eric Dumazet | dadc073 | 2017-08-24 09:02:49 -0700 | [diff] [blame] | 1283 | dev_consume_skb_any(skb); |
Willem de Bruijn | ea7735d | 2017-04-24 13:49:28 -0400 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | /* Avoid overhead when no packets have been processed |
| 1287 | * happens when called speculatively from start_xmit. |
| 1288 | */ |
| 1289 | if (!packets) |
| 1290 | return; |
| 1291 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1292 | u64_stats_update_begin(&sq->stats.syncp); |
| 1293 | sq->stats.bytes += bytes; |
| 1294 | sq->stats.packets += packets; |
| 1295 | u64_stats_update_end(&sq->stats.syncp); |
Willem de Bruijn | ea7735d | 2017-04-24 13:49:28 -0400 | [diff] [blame] | 1296 | } |
| 1297 | |
Willem de Bruijn | 7b0411e | 2017-04-24 13:49:29 -0400 | [diff] [blame] | 1298 | static void virtnet_poll_cleantx(struct receive_queue *rq) |
| 1299 | { |
| 1300 | struct virtnet_info *vi = rq->vq->vdev->priv; |
| 1301 | unsigned int index = vq2rxq(rq->vq); |
| 1302 | struct send_queue *sq = &vi->sq[index]; |
| 1303 | struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index); |
| 1304 | |
| 1305 | if (!sq->napi.weight) |
| 1306 | return; |
| 1307 | |
| 1308 | if (__netif_tx_trylock(txq)) { |
| 1309 | free_old_xmit_skbs(sq); |
| 1310 | __netif_tx_unlock(txq); |
| 1311 | } |
| 1312 | |
| 1313 | if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) |
| 1314 | netif_tx_wake_queue(txq); |
| 1315 | } |
| 1316 | |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1317 | static int virtnet_poll(struct napi_struct *napi, int budget) |
| 1318 | { |
| 1319 | struct receive_queue *rq = |
| 1320 | container_of(napi, struct receive_queue, napi); |
Jason Wang | 9267c43 | 2018-04-13 14:58:25 +0800 | [diff] [blame] | 1321 | struct virtnet_info *vi = rq->vq->vdev->priv; |
| 1322 | struct send_queue *sq; |
| 1323 | unsigned int received, qp; |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1324 | bool xdp_xmit = false; |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1325 | |
Willem de Bruijn | 7b0411e | 2017-04-24 13:49:29 -0400 | [diff] [blame] | 1326 | virtnet_poll_cleantx(rq); |
| 1327 | |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1328 | received = virtnet_receive(rq, budget, &xdp_xmit); |
Jason Wang | 2ffa759 | 2014-07-23 16:33:54 +0800 | [diff] [blame] | 1329 | |
Rusty Russell | 8329d98 | 2007-11-19 11:20:43 -0500 | [diff] [blame] | 1330 | /* Out of packets? */ |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1331 | if (received < budget) |
| 1332 | virtqueue_napi_complete(napi, rq->vq, received); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1333 | |
Jason Wang | 9267c43 | 2018-04-13 14:58:25 +0800 | [diff] [blame] | 1334 | if (xdp_xmit) { |
| 1335 | qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + |
| 1336 | smp_processor_id(); |
| 1337 | sq = &vi->sq[qp]; |
| 1338 | virtqueue_kick(sq->vq); |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1339 | xdp_do_flush_map(); |
Jason Wang | 9267c43 | 2018-04-13 14:58:25 +0800 | [diff] [blame] | 1340 | } |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 1341 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1342 | return received; |
| 1343 | } |
| 1344 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1345 | static int virtnet_open(struct net_device *dev) |
| 1346 | { |
| 1347 | struct virtnet_info *vi = netdev_priv(dev); |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 1348 | int i, err; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1349 | |
Jason Wang | e416662 | 2013-05-21 20:03:58 +0000 | [diff] [blame] | 1350 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1351 | if (i < vi->curr_queue_pairs) |
| 1352 | /* Make sure we have some buffers: if oom use wq. */ |
Michael S. Tsirkin | 946fa56 | 2014-10-24 00:12:10 +0300 | [diff] [blame] | 1353 | if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) |
Jason Wang | e416662 | 2013-05-21 20:03:58 +0000 | [diff] [blame] | 1354 | schedule_delayed_work(&vi->refill, 0); |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 1355 | |
| 1356 | err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i); |
| 1357 | if (err < 0) |
| 1358 | return err; |
| 1359 | |
Jesper Dangaard Brouer | 8d5d885 | 2018-04-17 16:46:12 +0200 | [diff] [blame] | 1360 | err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq, |
| 1361 | MEM_TYPE_PAGE_SHARED, NULL); |
| 1362 | if (err < 0) { |
| 1363 | xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); |
| 1364 | return err; |
| 1365 | } |
| 1366 | |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 1367 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1368 | virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | return 0; |
| 1372 | } |
| 1373 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1374 | static int virtnet_poll_tx(struct napi_struct *napi, int budget) |
| 1375 | { |
| 1376 | struct send_queue *sq = container_of(napi, struct send_queue, napi); |
| 1377 | struct virtnet_info *vi = sq->vq->vdev->priv; |
| 1378 | struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq)); |
| 1379 | |
| 1380 | __netif_tx_lock(txq, raw_smp_processor_id()); |
| 1381 | free_old_xmit_skbs(sq); |
| 1382 | __netif_tx_unlock(txq); |
| 1383 | |
| 1384 | virtqueue_napi_complete(napi, sq->vq, 0); |
| 1385 | |
| 1386 | if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) |
| 1387 | netif_tx_wake_queue(txq); |
| 1388 | |
| 1389 | return 0; |
| 1390 | } |
| 1391 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1392 | static int xmit_skb(struct send_queue *sq, struct sk_buff *skb) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1393 | { |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1394 | struct virtio_net_hdr_mrg_rxbuf *hdr; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1395 | const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1396 | struct virtnet_info *vi = sq->vq->vdev->priv; |
Jason A. Donenfeld | e2fcad5 | 2017-06-04 04:16:26 +0200 | [diff] [blame] | 1397 | int num_sg; |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1398 | unsigned hdr_len = vi->hdr_len; |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1399 | bool can_push; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1400 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1401 | pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1402 | |
| 1403 | can_push = vi->any_header_sg && |
| 1404 | !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) && |
| 1405 | !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len; |
| 1406 | /* Even if we can, don't push here yet as this would skew |
| 1407 | * csum_start offset below. */ |
| 1408 | if (can_push) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1409 | hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1410 | else |
| 1411 | hdr = skb_vnet_hdr(skb); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1412 | |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 1413 | if (virtio_net_hdr_from_skb(skb, &hdr->hdr, |
Jason Wang | 6391a44 | 2017-01-20 14:32:42 +0800 | [diff] [blame] | 1414 | virtio_is_little_endian(vi->vdev), false)) |
Mike Rapoport | e858fae | 2016-06-08 16:09:21 +0300 | [diff] [blame] | 1415 | BUG(); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1416 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1417 | if (vi->mergeable_rx_bufs) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 1418 | hdr->num_buffers = 0; |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 1419 | |
Jason Wang | 547c890 | 2015-08-27 14:53:06 +0800 | [diff] [blame] | 1420 | sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2)); |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1421 | if (can_push) { |
| 1422 | __skb_push(skb, hdr_len); |
| 1423 | num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len); |
Jason A. Donenfeld | e2fcad5 | 2017-06-04 04:16:26 +0200 | [diff] [blame] | 1424 | if (unlikely(num_sg < 0)) |
| 1425 | return num_sg; |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1426 | /* Pull header back to avoid skew in tx bytes calculations. */ |
| 1427 | __skb_pull(skb, hdr_len); |
| 1428 | } else { |
| 1429 | sg_set_buf(sq->sg, hdr, hdr_len); |
Jason A. Donenfeld | e2fcad5 | 2017-06-04 04:16:26 +0200 | [diff] [blame] | 1430 | num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len); |
| 1431 | if (unlikely(num_sg < 0)) |
| 1432 | return num_sg; |
| 1433 | num_sg++; |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 1434 | } |
Rusty Russell | 9dc7b9e | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1435 | return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC); |
Rusty Russell | 11a3a15 | 2008-05-26 17:48:13 +1000 | [diff] [blame] | 1436 | } |
| 1437 | |
Stephen Hemminger | 424efe9 | 2009-08-31 19:50:51 +0000 | [diff] [blame] | 1438 | static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1439 | { |
| 1440 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1441 | int qnum = skb_get_queue_mapping(skb); |
| 1442 | struct send_queue *sq = &vi->sq[qnum]; |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1443 | int err; |
Michael S. Tsirkin | 4b7fd2e6 | 2014-10-15 16:23:28 +0300 | [diff] [blame] | 1444 | struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); |
| 1445 | bool kick = !skb->xmit_more; |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1446 | bool use_napi = sq->napi.weight; |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1447 | |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1448 | /* Free up any pending old buffers before queueing new ones. */ |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1449 | free_old_xmit_skbs(sq); |
Rusty Russell | 2cb9c6b | 2008-02-04 23:50:07 -0500 | [diff] [blame] | 1450 | |
Willem de Bruijn | bdb12e0 | 2017-04-24 13:49:30 -0400 | [diff] [blame] | 1451 | if (use_napi && kick) |
| 1452 | virtqueue_enable_cb_delayed(sq->vq); |
| 1453 | |
Jacob Keller | 074c358 | 2014-06-25 02:37:13 +0000 | [diff] [blame] | 1454 | /* timestamp packet in software */ |
| 1455 | skb_tx_timestamp(skb); |
| 1456 | |
Michael S. Tsirkin | 03f191b | 2009-10-28 04:03:38 -0700 | [diff] [blame] | 1457 | /* Try to transmit */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1458 | err = xmit_skb(sq, skb); |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1459 | |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1460 | /* This should not happen! */ |
Jason Wang | 681daee2 | 2014-03-26 13:03:00 +0800 | [diff] [blame] | 1461 | if (unlikely(err)) { |
Rusty Russell | 9ed4cb0 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 1462 | dev->stats.tx_fifo_errors++; |
| 1463 | if (net_ratelimit()) |
| 1464 | dev_warn(&dev->dev, |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1465 | "Unexpected TXQ (%d) queue failure: %d\n", qnum, err); |
Rusty Russell | 58eba97d | 2010-07-02 16:34:01 +0000 | [diff] [blame] | 1466 | dev->stats.tx_dropped++; |
Eric W. Biederman | 85e9452 | 2014-03-15 18:43:33 -0700 | [diff] [blame] | 1467 | dev_kfree_skb_any(skb); |
Rusty Russell | 58eba97d | 2010-07-02 16:34:01 +0000 | [diff] [blame] | 1468 | return NETDEV_TX_OK; |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1469 | } |
Michael S. Tsirkin | 03f191b | 2009-10-28 04:03:38 -0700 | [diff] [blame] | 1470 | |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1471 | /* Don't wait up for transmitted skbs to be freed. */ |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1472 | if (!use_napi) { |
| 1473 | skb_orphan(skb); |
| 1474 | nf_reset(skb); |
| 1475 | } |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1476 | |
Michael S. Tsirkin | 60302ff | 2015-04-02 13:05:47 +0200 | [diff] [blame] | 1477 | /* If running out of space, stop queue to avoid getting packets that we |
| 1478 | * are then unable to transmit. |
| 1479 | * An alternative would be to force queuing layer to requeue the skb by |
| 1480 | * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be |
| 1481 | * returned in a normal path of operation: it means that driver is not |
| 1482 | * maintaining the TX queue stop/start state properly, and causes |
| 1483 | * the stack to do a non-trivial amount of useless work. |
| 1484 | * Since most packets only take 1 or 2 ring slots, stopping the queue |
| 1485 | * early means 16 slots are typically wasted. |
stephen hemminger | d631b94 | 2015-03-24 16:22:07 -0700 | [diff] [blame] | 1486 | */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1487 | if (sq->vq->num_free < 2+MAX_SKB_FRAGS) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1488 | netif_stop_subqueue(dev, qnum); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1489 | if (!use_napi && |
| 1490 | unlikely(!virtqueue_enable_cb_delayed(sq->vq))) { |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1491 | /* More just got used, free them then recheck. */ |
Linus Torvalds | b7dfde9 | 2012-12-20 08:37:04 -0800 | [diff] [blame] | 1492 | free_old_xmit_skbs(sq); |
| 1493 | if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1494 | netif_start_subqueue(dev, qnum); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 1495 | virtqueue_disable_cb(sq->vq); |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1496 | } |
| 1497 | } |
Rusty Russell | 99ffc69 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 1498 | } |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1499 | |
Michael S. Tsirkin | 4b7fd2e6 | 2014-10-15 16:23:28 +0300 | [diff] [blame] | 1500 | if (kick || netif_xmit_stopped(txq)) |
David S. Miller | 0b725a2 | 2014-08-25 15:51:53 -0700 | [diff] [blame] | 1501 | virtqueue_kick(sq->vq); |
| 1502 | |
Rusty Russell | 48925e3 | 2009-09-24 09:59:20 -0600 | [diff] [blame] | 1503 | return NETDEV_TX_OK; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1504 | } |
| 1505 | |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1506 | /* |
| 1507 | * Send command via the control virtqueue and check status. Commands |
| 1508 | * supported by the hypervisor, as indicated by feature bits, should |
stephen hemminger | 788a8b6 | 2013-12-09 16:18:45 -0800 | [diff] [blame] | 1509 | * never fail unless improperly formatted. |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1510 | */ |
| 1511 | static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1512 | struct scatterlist *out) |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1513 | { |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1514 | struct scatterlist *sgs[4], hdr, stat; |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1515 | unsigned out_num = 0, tmp; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1516 | |
| 1517 | /* Caller should know better */ |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1518 | BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)); |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1519 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1520 | vi->ctrl->status = ~0; |
| 1521 | vi->ctrl->hdr.class = class; |
| 1522 | vi->ctrl->hdr.cmd = cmd; |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1523 | /* Add header */ |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1524 | sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr)); |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1525 | sgs[out_num++] = &hdr; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1526 | |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1527 | if (out) |
| 1528 | sgs[out_num++] = out; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1529 | |
Rusty Russell | f7bc959 | 2013-03-20 15:44:28 +1030 | [diff] [blame] | 1530 | /* Add return status. */ |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1531 | sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status)); |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1532 | sgs[out_num] = &stat; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1533 | |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1534 | BUG_ON(out_num + 1 > ARRAY_SIZE(sgs)); |
Rusty Russell | a7c5814 | 2014-03-13 11:23:39 +1030 | [diff] [blame] | 1535 | virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC); |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1536 | |
Heinz Graalfs | 6797590 | 2013-10-29 09:40:02 +1030 | [diff] [blame] | 1537 | if (unlikely(!virtqueue_kick(vi->cvq))) |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1538 | return vi->ctrl->status == VIRTIO_NET_OK; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1539 | |
| 1540 | /* Spin for a response, the kick causes an ioport write, trapping |
| 1541 | * into the hypervisor, so the request should be handled immediately. |
| 1542 | */ |
Heinz Graalfs | 047b9b9 | 2013-10-29 09:40:47 +1030 | [diff] [blame] | 1543 | while (!virtqueue_get_buf(vi->cvq, &tmp) && |
| 1544 | !virtqueue_is_broken(vi->cvq)) |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1545 | cpu_relax(); |
| 1546 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1547 | return vi->ctrl->status == VIRTIO_NET_OK; |
Amos Kong | 40cbfc3 | 2013-01-21 01:17:21 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1550 | static int virtnet_set_mac_address(struct net_device *dev, void *p) |
| 1551 | { |
| 1552 | struct virtnet_info *vi = netdev_priv(dev); |
| 1553 | struct virtio_device *vdev = vi->vdev; |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 1554 | int ret; |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1555 | struct sockaddr *addr; |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1556 | struct scatterlist sg; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1557 | |
Shyam Saini | 801822d | 2016-12-24 00:44:58 +0530 | [diff] [blame] | 1558 | addr = kmemdup(p, sizeof(*addr), GFP_KERNEL); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1559 | if (!addr) |
| 1560 | return -ENOMEM; |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1561 | |
| 1562 | ret = eth_prepare_mac_addr_change(dev, addr); |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 1563 | if (ret) |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1564 | goto out; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1565 | |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1566 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) { |
| 1567 | sg_init_one(&sg, addr->sa_data, dev->addr_len); |
| 1568 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1569 | VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) { |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1570 | dev_warn(&vdev->dev, |
| 1571 | "Failed to set mac address by vq command.\n"); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1572 | ret = -EINVAL; |
| 1573 | goto out; |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1574 | } |
Michael S. Tsirkin | 7e93a02 | 2014-11-26 15:58:28 +0200 | [diff] [blame] | 1575 | } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) && |
| 1576 | !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) { |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 1577 | unsigned int i; |
| 1578 | |
| 1579 | /* Naturally, this has an atomicity problem. */ |
| 1580 | for (i = 0; i < dev->addr_len; i++) |
| 1581 | virtio_cwrite8(vdev, |
| 1582 | offsetof(struct virtio_net_config, mac) + |
| 1583 | i, addr->sa_data[i]); |
Amos Kong | 7e58d5a | 2013-01-21 01:17:23 +0000 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | eth_commit_mac_addr_change(dev, p); |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1587 | ret = 0; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1588 | |
Andy Lutomirski | e37e2ff | 2016-12-05 18:10:58 -0800 | [diff] [blame] | 1589 | out: |
| 1590 | kfree(addr); |
| 1591 | return ret; |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 1592 | } |
| 1593 | |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 1594 | static void virtnet_stats(struct net_device *dev, |
| 1595 | struct rtnl_link_stats64 *tot) |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1596 | { |
| 1597 | struct virtnet_info *vi = netdev_priv(dev); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1598 | unsigned int start; |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1599 | int i; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1600 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1601 | for (i = 0; i < vi->max_queue_pairs; i++) { |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1602 | u64 tpackets, tbytes, rpackets, rbytes; |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1603 | struct receive_queue *rq = &vi->rq[i]; |
| 1604 | struct send_queue *sq = &vi->sq[i]; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1605 | |
| 1606 | do { |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1607 | start = u64_stats_fetch_begin_irq(&sq->stats.syncp); |
| 1608 | tpackets = sq->stats.packets; |
| 1609 | tbytes = sq->stats.bytes; |
| 1610 | } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start)); |
Eric Dumazet | 83a2705 | 2012-06-05 22:35:24 +0000 | [diff] [blame] | 1611 | |
| 1612 | do { |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1613 | start = u64_stats_fetch_begin_irq(&rq->stats.syncp); |
| 1614 | rpackets = rq->stats.packets; |
| 1615 | rbytes = rq->stats.bytes; |
| 1616 | } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start)); |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1617 | |
| 1618 | tot->rx_packets += rpackets; |
| 1619 | tot->tx_packets += tpackets; |
| 1620 | tot->rx_bytes += rbytes; |
| 1621 | tot->tx_bytes += tbytes; |
| 1622 | } |
| 1623 | |
| 1624 | tot->tx_dropped = dev->stats.tx_dropped; |
Rick Jones | 021ac8d | 2011-11-21 09:28:17 +0000 | [diff] [blame] | 1625 | tot->tx_fifo_errors = dev->stats.tx_fifo_errors; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1626 | tot->rx_dropped = dev->stats.rx_dropped; |
| 1627 | tot->rx_length_errors = dev->stats.rx_length_errors; |
| 1628 | tot->rx_frame_errors = dev->stats.rx_frame_errors; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 1629 | } |
| 1630 | |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1631 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1632 | static void virtnet_netpoll(struct net_device *dev) |
| 1633 | { |
| 1634 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1635 | int i; |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1636 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1637 | for (i = 0; i < vi->curr_queue_pairs; i++) |
| 1638 | napi_schedule(&vi->rq[i].napi); |
Amit Shah | da74e89 | 2008-02-29 16:24:50 +0530 | [diff] [blame] | 1639 | } |
| 1640 | #endif |
| 1641 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1642 | static void virtnet_ack_link_announce(struct virtnet_info *vi) |
| 1643 | { |
| 1644 | rtnl_lock(); |
| 1645 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1646 | VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL)) |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 1647 | dev_warn(&vi->dev->dev, "Failed to ack link announce.\n"); |
| 1648 | rtnl_unlock(); |
| 1649 | } |
| 1650 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1651 | static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1652 | { |
| 1653 | struct scatterlist sg; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1654 | struct net_device *dev = vi->dev; |
| 1655 | |
| 1656 | if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ)) |
| 1657 | return 0; |
| 1658 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1659 | vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs); |
| 1660 | sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq)); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1661 | |
| 1662 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1663 | VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1664 | dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n", |
| 1665 | queue_pairs); |
| 1666 | return -EINVAL; |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1667 | } else { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1668 | vi->curr_queue_pairs = queue_pairs; |
Jason Wang | 35ed159 | 2013-10-15 11:18:59 +0800 | [diff] [blame] | 1669 | /* virtnet_open() will refill when device is going to up. */ |
| 1670 | if (dev->flags & IFF_UP) |
| 1671 | schedule_delayed_work(&vi->refill, 0); |
Sasha Levin | 55257d7 | 2013-04-29 12:00:08 +0930 | [diff] [blame] | 1672 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1673 | |
| 1674 | return 0; |
| 1675 | } |
| 1676 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1677 | static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs) |
| 1678 | { |
| 1679 | int err; |
| 1680 | |
| 1681 | rtnl_lock(); |
| 1682 | err = _virtnet_set_queues(vi, queue_pairs); |
| 1683 | rtnl_unlock(); |
| 1684 | return err; |
| 1685 | } |
| 1686 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1687 | static int virtnet_close(struct net_device *dev) |
| 1688 | { |
| 1689 | struct virtnet_info *vi = netdev_priv(dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1690 | int i; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1691 | |
Rusty Russell | b2baed6 | 2011-12-29 00:42:38 +0000 | [diff] [blame] | 1692 | /* Make sure refill_work doesn't re-enable napi! */ |
| 1693 | cancel_delayed_work_sync(&vi->refill); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1694 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1695 | for (i = 0; i < vi->max_queue_pairs; i++) { |
Jesper Dangaard Brouer | 754b8a2 | 2018-01-03 11:26:04 +0100 | [diff] [blame] | 1696 | xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1697 | napi_disable(&vi->rq[i].napi); |
Willem de Bruijn | 78a57b4 | 2017-04-25 15:59:17 -0400 | [diff] [blame] | 1698 | virtnet_napi_tx_disable(&vi->sq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 1699 | } |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1700 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 1701 | return 0; |
| 1702 | } |
| 1703 | |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1704 | static void virtnet_set_rx_mode(struct net_device *dev) |
| 1705 | { |
| 1706 | struct virtnet_info *vi = netdev_priv(dev); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1707 | struct scatterlist sg[2]; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1708 | struct virtio_net_ctrl_mac *mac_data; |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1709 | struct netdev_hw_addr *ha; |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1710 | int uc_count; |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1711 | int mc_count; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1712 | void *buf; |
| 1713 | int i; |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1714 | |
stephen hemminger | 788a8b6 | 2013-12-09 16:18:45 -0800 | [diff] [blame] | 1715 | /* We can't dynamically set ndo_set_rx_mode, so return gracefully */ |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1716 | if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX)) |
| 1717 | return; |
| 1718 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1719 | vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0); |
| 1720 | vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1721 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1722 | sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc)); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1723 | |
| 1724 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1725 | VIRTIO_NET_CTRL_RX_PROMISC, sg)) |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1726 | dev_warn(&dev->dev, "Failed to %sable promisc mode.\n", |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1727 | vi->ctrl->promisc ? "en" : "dis"); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1728 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1729 | sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti)); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1730 | |
| 1731 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1732 | VIRTIO_NET_CTRL_RX_ALLMULTI, sg)) |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1733 | dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n", |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1734 | vi->ctrl->allmulti ? "en" : "dis"); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1735 | |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1736 | uc_count = netdev_uc_count(dev); |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1737 | mc_count = netdev_mc_count(dev); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1738 | /* MAC filter - use one buffer for both lists */ |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1739 | buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) + |
| 1740 | (2 * sizeof(mac_data->entries)), GFP_ATOMIC); |
| 1741 | mac_data = buf; |
Joe Perches | e68ed8f | 2013-02-03 17:28:15 +0000 | [diff] [blame] | 1742 | if (!buf) |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1743 | return; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1744 | |
Alex Williamson | 23e258e | 2009-05-01 17:27:56 +0000 | [diff] [blame] | 1745 | sg_init_table(sg, 2); |
| 1746 | |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1747 | /* Store the unicast list and count in the front of the buffer */ |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 1748 | mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count); |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1749 | i = 0; |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1750 | netdev_for_each_uc_addr(ha, dev) |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 1751 | memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1752 | |
| 1753 | sg_set_buf(&sg[0], mac_data, |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1754 | sizeof(mac_data->entries) + (uc_count * ETH_ALEN)); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1755 | |
| 1756 | /* multicast list and count fill the end */ |
Jiri Pirko | 32e7bfc | 2010-01-25 13:36:10 -0800 | [diff] [blame] | 1757 | mac_data = (void *)&mac_data->macs[uc_count][0]; |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1758 | |
Michael S. Tsirkin | fdd819b | 2014-10-07 16:39:48 +0200 | [diff] [blame] | 1759 | mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count); |
Jiri Pirko | 567ec87 | 2010-02-23 23:17:07 +0000 | [diff] [blame] | 1760 | i = 0; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1761 | netdev_for_each_mc_addr(ha, dev) |
| 1762 | memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1763 | |
| 1764 | sg_set_buf(&sg[1], mac_data, |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1765 | sizeof(mac_data->entries) + (mc_count * ETH_ALEN)); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1766 | |
| 1767 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1768 | VIRTIO_NET_CTRL_MAC_TABLE_SET, sg)) |
Thomas Huth | 99e872a | 2013-11-29 10:02:19 +0100 | [diff] [blame] | 1769 | dev_warn(&dev->dev, "Failed to set MAC filter table.\n"); |
Alex Williamson | f565a7c | 2009-02-04 09:02:45 +0000 | [diff] [blame] | 1770 | |
| 1771 | kfree(buf); |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1774 | static int virtnet_vlan_rx_add_vid(struct net_device *dev, |
| 1775 | __be16 proto, u16 vid) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1776 | { |
| 1777 | struct virtnet_info *vi = netdev_priv(dev); |
| 1778 | struct scatterlist sg; |
| 1779 | |
Michael S. Tsirkin | d7fad4c | 2018-04-19 08:30:49 +0300 | [diff] [blame] | 1780 | vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid); |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1781 | sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid)); |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1782 | |
| 1783 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1784 | VIRTIO_NET_CTRL_VLAN_ADD, &sg)) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1785 | dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1786 | return 0; |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1787 | } |
| 1788 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 1789 | static int virtnet_vlan_rx_kill_vid(struct net_device *dev, |
| 1790 | __be16 proto, u16 vid) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1791 | { |
| 1792 | struct virtnet_info *vi = netdev_priv(dev); |
| 1793 | struct scatterlist sg; |
| 1794 | |
Michael S. Tsirkin | d7fad4c | 2018-04-19 08:30:49 +0300 | [diff] [blame] | 1795 | vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid); |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 1796 | sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid)); |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1797 | |
| 1798 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN, |
stephen hemminger | d24bae3 | 2013-12-09 16:17:40 -0800 | [diff] [blame] | 1799 | VIRTIO_NET_CTRL_VLAN_DEL, &sg)) |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1800 | dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 1801 | return 0; |
Alex Williamson | 0bde9569 | 2009-02-04 09:02:50 +0000 | [diff] [blame] | 1802 | } |
| 1803 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1804 | static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1805 | { |
| 1806 | int i; |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1807 | |
| 1808 | if (vi->affinity_hint_set) { |
| 1809 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 1810 | virtqueue_set_affinity(vi->rq[i].vq, -1); |
| 1811 | virtqueue_set_affinity(vi->sq[i].vq, -1); |
| 1812 | } |
| 1813 | |
| 1814 | vi->affinity_hint_set = false; |
| 1815 | } |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1816 | } |
| 1817 | |
| 1818 | static void virtnet_set_affinity(struct virtnet_info *vi) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1819 | { |
| 1820 | int i; |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1821 | int cpu; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1822 | |
| 1823 | /* In multiqueue mode, when the number of cpu is equal to the number of |
| 1824 | * queue pairs, we let the queue pairs to be private to one cpu by |
| 1825 | * setting the affinity hint to eliminate the contention. |
| 1826 | */ |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1827 | if (vi->curr_queue_pairs == 1 || |
| 1828 | vi->max_queue_pairs != num_online_cpus()) { |
| 1829 | virtnet_clean_affinity(vi, -1); |
| 1830 | return; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1831 | } |
| 1832 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1833 | i = 0; |
| 1834 | for_each_online_cpu(cpu) { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1835 | virtqueue_set_affinity(vi->rq[i].vq, cpu); |
| 1836 | virtqueue_set_affinity(vi->sq[i].vq, cpu); |
Jason Wang | 9bb8ca8 | 2013-11-05 18:19:45 +0800 | [diff] [blame] | 1837 | netif_set_xps_queue(vi->dev, cpumask_of(cpu), i); |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1838 | i++; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1839 | } |
| 1840 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1841 | vi->affinity_hint_set = true; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1842 | } |
| 1843 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1844 | static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node) |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 1845 | { |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1846 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1847 | node); |
| 1848 | virtnet_set_affinity(vi); |
| 1849 | return 0; |
| 1850 | } |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 1851 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1852 | static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node) |
| 1853 | { |
| 1854 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1855 | node_dead); |
| 1856 | virtnet_set_affinity(vi); |
| 1857 | return 0; |
| 1858 | } |
Jason Wang | 3ab098d | 2013-10-15 11:18:58 +0800 | [diff] [blame] | 1859 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 1860 | static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node) |
| 1861 | { |
| 1862 | struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info, |
| 1863 | node); |
| 1864 | |
| 1865 | virtnet_clean_affinity(vi, cpu); |
| 1866 | return 0; |
| 1867 | } |
| 1868 | |
| 1869 | static enum cpuhp_state virtionet_online; |
| 1870 | |
| 1871 | static int virtnet_cpu_notif_add(struct virtnet_info *vi) |
| 1872 | { |
| 1873 | int ret; |
| 1874 | |
| 1875 | ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node); |
| 1876 | if (ret) |
| 1877 | return ret; |
| 1878 | ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD, |
| 1879 | &vi->node_dead); |
| 1880 | if (!ret) |
| 1881 | return ret; |
| 1882 | cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); |
| 1883 | return ret; |
| 1884 | } |
| 1885 | |
| 1886 | static void virtnet_cpu_notif_remove(struct virtnet_info *vi) |
| 1887 | { |
| 1888 | cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node); |
| 1889 | cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD, |
| 1890 | &vi->node_dead); |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 1891 | } |
| 1892 | |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1893 | static void virtnet_get_ringparam(struct net_device *dev, |
| 1894 | struct ethtool_ringparam *ring) |
| 1895 | { |
| 1896 | struct virtnet_info *vi = netdev_priv(dev); |
| 1897 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 1898 | ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq); |
| 1899 | ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq); |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1900 | ring->rx_pending = ring->rx_max_pending; |
| 1901 | ring->tx_pending = ring->tx_max_pending; |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 1902 | } |
| 1903 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 1904 | |
| 1905 | static void virtnet_get_drvinfo(struct net_device *dev, |
| 1906 | struct ethtool_drvinfo *info) |
| 1907 | { |
| 1908 | struct virtnet_info *vi = netdev_priv(dev); |
| 1909 | struct virtio_device *vdev = vi->vdev; |
| 1910 | |
| 1911 | strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); |
| 1912 | strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version)); |
| 1913 | strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info)); |
| 1914 | |
| 1915 | } |
| 1916 | |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1917 | /* TODO: Eliminate OOO packets during switching */ |
| 1918 | static int virtnet_set_channels(struct net_device *dev, |
| 1919 | struct ethtool_channels *channels) |
| 1920 | { |
| 1921 | struct virtnet_info *vi = netdev_priv(dev); |
| 1922 | u16 queue_pairs = channels->combined_count; |
| 1923 | int err; |
| 1924 | |
| 1925 | /* We don't support separate rx/tx channels. |
| 1926 | * We don't allow setting 'other' channels. |
| 1927 | */ |
| 1928 | if (channels->rx_count || channels->tx_count || channels->other_count) |
| 1929 | return -EINVAL; |
| 1930 | |
Amos Kong | c18e9cd | 2014-04-18 13:45:41 +0800 | [diff] [blame] | 1931 | if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0) |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1932 | return -EINVAL; |
| 1933 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 1934 | /* For now we don't support modifying channels while XDP is loaded |
| 1935 | * also when XDP is loaded all RX queues have XDP programs so we only |
| 1936 | * need to check a single RX queue. |
| 1937 | */ |
| 1938 | if (vi->rq[0].xdp_prog) |
| 1939 | return -EINVAL; |
| 1940 | |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1941 | get_online_cpus(); |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 1942 | err = _virtnet_set_queues(vi, queue_pairs); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1943 | if (!err) { |
| 1944 | netif_set_real_num_tx_queues(dev, queue_pairs); |
| 1945 | netif_set_real_num_rx_queues(dev, queue_pairs); |
| 1946 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 1947 | virtnet_set_affinity(vi); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1948 | } |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 1949 | put_online_cpus(); |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 1950 | |
| 1951 | return err; |
| 1952 | } |
| 1953 | |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 1954 | static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data) |
| 1955 | { |
| 1956 | struct virtnet_info *vi = netdev_priv(dev); |
| 1957 | char *p = (char *)data; |
| 1958 | unsigned int i, j; |
| 1959 | |
| 1960 | switch (stringset) { |
| 1961 | case ETH_SS_STATS: |
| 1962 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
| 1963 | for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) { |
| 1964 | snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s", |
| 1965 | i, virtnet_rq_stats_desc[j].desc); |
| 1966 | p += ETH_GSTRING_LEN; |
| 1967 | } |
| 1968 | } |
| 1969 | |
| 1970 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
| 1971 | for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) { |
| 1972 | snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s", |
| 1973 | i, virtnet_sq_stats_desc[j].desc); |
| 1974 | p += ETH_GSTRING_LEN; |
| 1975 | } |
| 1976 | } |
| 1977 | break; |
| 1978 | } |
| 1979 | } |
| 1980 | |
| 1981 | static int virtnet_get_sset_count(struct net_device *dev, int sset) |
| 1982 | { |
| 1983 | struct virtnet_info *vi = netdev_priv(dev); |
| 1984 | |
| 1985 | switch (sset) { |
| 1986 | case ETH_SS_STATS: |
| 1987 | return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN + |
| 1988 | VIRTNET_SQ_STATS_LEN); |
| 1989 | default: |
| 1990 | return -EOPNOTSUPP; |
| 1991 | } |
| 1992 | } |
| 1993 | |
| 1994 | static void virtnet_get_ethtool_stats(struct net_device *dev, |
| 1995 | struct ethtool_stats *stats, u64 *data) |
| 1996 | { |
| 1997 | struct virtnet_info *vi = netdev_priv(dev); |
| 1998 | unsigned int idx = 0, start, i, j; |
| 1999 | const u8 *stats_base; |
| 2000 | size_t offset; |
| 2001 | |
| 2002 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
| 2003 | struct receive_queue *rq = &vi->rq[i]; |
| 2004 | |
| 2005 | stats_base = (u8 *)&rq->stats; |
| 2006 | do { |
| 2007 | start = u64_stats_fetch_begin_irq(&rq->stats.syncp); |
| 2008 | for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) { |
| 2009 | offset = virtnet_rq_stats_desc[j].offset; |
| 2010 | data[idx + j] = *(u64 *)(stats_base + offset); |
| 2011 | } |
| 2012 | } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start)); |
| 2013 | idx += VIRTNET_RQ_STATS_LEN; |
| 2014 | } |
| 2015 | |
| 2016 | for (i = 0; i < vi->curr_queue_pairs; i++) { |
| 2017 | struct send_queue *sq = &vi->sq[i]; |
| 2018 | |
| 2019 | stats_base = (u8 *)&sq->stats; |
| 2020 | do { |
| 2021 | start = u64_stats_fetch_begin_irq(&sq->stats.syncp); |
| 2022 | for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) { |
| 2023 | offset = virtnet_sq_stats_desc[j].offset; |
| 2024 | data[idx + j] = *(u64 *)(stats_base + offset); |
| 2025 | } |
| 2026 | } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start)); |
| 2027 | idx += VIRTNET_SQ_STATS_LEN; |
| 2028 | } |
| 2029 | } |
| 2030 | |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 2031 | static void virtnet_get_channels(struct net_device *dev, |
| 2032 | struct ethtool_channels *channels) |
| 2033 | { |
| 2034 | struct virtnet_info *vi = netdev_priv(dev); |
| 2035 | |
| 2036 | channels->combined_count = vi->curr_queue_pairs; |
| 2037 | channels->max_combined = vi->max_queue_pairs; |
| 2038 | channels->max_other = 0; |
| 2039 | channels->rx_count = 0; |
| 2040 | channels->tx_count = 0; |
| 2041 | channels->other_count = 0; |
| 2042 | } |
| 2043 | |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2044 | /* Check if the user is trying to change anything besides speed/duplex */ |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2045 | static bool |
| 2046 | virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2047 | { |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2048 | struct ethtool_link_ksettings diff1 = *cmd; |
| 2049 | struct ethtool_link_ksettings diff2 = {}; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2050 | |
Nikolay Aleksandrov | 0cf3ace | 2016-02-07 21:52:24 +0100 | [diff] [blame] | 2051 | /* cmd is always set so we need to clear it, validate the port type |
| 2052 | * and also without autonegotiation we can ignore advertising |
| 2053 | */ |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2054 | diff1.base.speed = 0; |
| 2055 | diff2.base.port = PORT_OTHER; |
| 2056 | ethtool_link_ksettings_zero_link_mode(&diff1, advertising); |
| 2057 | diff1.base.duplex = 0; |
| 2058 | diff1.base.cmd = 0; |
| 2059 | diff1.base.link_mode_masks_nwords = 0; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2060 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2061 | return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) && |
| 2062 | bitmap_empty(diff1.link_modes.supported, |
| 2063 | __ETHTOOL_LINK_MODE_MASK_NBITS) && |
| 2064 | bitmap_empty(diff1.link_modes.advertising, |
| 2065 | __ETHTOOL_LINK_MODE_MASK_NBITS) && |
| 2066 | bitmap_empty(diff1.link_modes.lp_advertising, |
| 2067 | __ETHTOOL_LINK_MODE_MASK_NBITS); |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2068 | } |
| 2069 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2070 | static int virtnet_set_link_ksettings(struct net_device *dev, |
| 2071 | const struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2072 | { |
| 2073 | struct virtnet_info *vi = netdev_priv(dev); |
| 2074 | u32 speed; |
| 2075 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2076 | speed = cmd->base.speed; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2077 | /* don't allow custom speed and duplex */ |
| 2078 | if (!ethtool_validate_speed(speed) || |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2079 | !ethtool_validate_duplex(cmd->base.duplex) || |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2080 | !virtnet_validate_ethtool_cmd(cmd)) |
| 2081 | return -EINVAL; |
| 2082 | vi->speed = speed; |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2083 | vi->duplex = cmd->base.duplex; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2084 | |
| 2085 | return 0; |
| 2086 | } |
| 2087 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2088 | static int virtnet_get_link_ksettings(struct net_device *dev, |
| 2089 | struct ethtool_link_ksettings *cmd) |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2090 | { |
| 2091 | struct virtnet_info *vi = netdev_priv(dev); |
| 2092 | |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2093 | cmd->base.speed = vi->speed; |
| 2094 | cmd->base.duplex = vi->duplex; |
| 2095 | cmd->base.port = PORT_OTHER; |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2096 | |
| 2097 | return 0; |
| 2098 | } |
| 2099 | |
| 2100 | static void virtnet_init_settings(struct net_device *dev) |
| 2101 | { |
| 2102 | struct virtnet_info *vi = netdev_priv(dev); |
| 2103 | |
| 2104 | vi->speed = SPEED_UNKNOWN; |
| 2105 | vi->duplex = DUPLEX_UNKNOWN; |
| 2106 | } |
| 2107 | |
Jason Baron | faa9b39 | 2018-01-05 17:44:54 -0500 | [diff] [blame] | 2108 | static void virtnet_update_settings(struct virtnet_info *vi) |
| 2109 | { |
| 2110 | u32 speed; |
| 2111 | u8 duplex; |
| 2112 | |
| 2113 | if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX)) |
| 2114 | return; |
| 2115 | |
| 2116 | speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config, |
| 2117 | speed)); |
| 2118 | if (ethtool_validate_speed(speed)) |
| 2119 | vi->speed = speed; |
| 2120 | duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config, |
| 2121 | duplex)); |
| 2122 | if (ethtool_validate_duplex(duplex)) |
| 2123 | vi->duplex = duplex; |
| 2124 | } |
| 2125 | |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 2126 | static const struct ethtool_ops virtnet_ethtool_ops = { |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 2127 | .get_drvinfo = virtnet_get_drvinfo, |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2128 | .get_link = ethtool_op_get_link, |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame] | 2129 | .get_ringparam = virtnet_get_ringparam, |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 2130 | .get_strings = virtnet_get_strings, |
| 2131 | .get_sset_count = virtnet_get_sset_count, |
| 2132 | .get_ethtool_stats = virtnet_get_ethtool_stats, |
Jason Wang | d73bcd2 | 2012-12-07 07:04:57 +0000 | [diff] [blame] | 2133 | .set_channels = virtnet_set_channels, |
| 2134 | .get_channels = virtnet_get_channels, |
Jacob Keller | 074c358 | 2014-06-25 02:37:13 +0000 | [diff] [blame] | 2135 | .get_ts_info = ethtool_op_get_ts_info, |
Philippe Reynes | ebb6b4b | 2017-03-21 23:24:24 +0100 | [diff] [blame] | 2136 | .get_link_ksettings = virtnet_get_link_ksettings, |
| 2137 | .set_link_ksettings = virtnet_set_link_ksettings, |
Herbert Xu | a9ea3fc | 2008-04-18 11:21:42 +0800 | [diff] [blame] | 2138 | }; |
| 2139 | |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2140 | static void virtnet_freeze_down(struct virtio_device *vdev) |
| 2141 | { |
| 2142 | struct virtnet_info *vi = vdev->priv; |
| 2143 | int i; |
| 2144 | |
| 2145 | /* Make sure no work handler is accessing the device */ |
| 2146 | flush_work(&vi->config_work); |
| 2147 | |
| 2148 | netif_device_detach(vi->dev); |
Jason Wang | 713a98d | 2017-06-28 09:51:03 +0800 | [diff] [blame] | 2149 | netif_tx_disable(vi->dev); |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2150 | cancel_delayed_work_sync(&vi->refill); |
| 2151 | |
| 2152 | if (netif_running(vi->dev)) { |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 2153 | for (i = 0; i < vi->max_queue_pairs; i++) { |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2154 | napi_disable(&vi->rq[i].napi); |
Willem de Bruijn | 78a57b4 | 2017-04-25 15:59:17 -0400 | [diff] [blame] | 2155 | virtnet_napi_tx_disable(&vi->sq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 2156 | } |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2157 | } |
| 2158 | } |
| 2159 | |
| 2160 | static int init_vqs(struct virtnet_info *vi); |
| 2161 | |
| 2162 | static int virtnet_restore_up(struct virtio_device *vdev) |
| 2163 | { |
| 2164 | struct virtnet_info *vi = vdev->priv; |
| 2165 | int err, i; |
| 2166 | |
| 2167 | err = init_vqs(vi); |
| 2168 | if (err) |
| 2169 | return err; |
| 2170 | |
| 2171 | virtio_device_ready(vdev); |
| 2172 | |
| 2173 | if (netif_running(vi->dev)) { |
| 2174 | for (i = 0; i < vi->curr_queue_pairs; i++) |
| 2175 | if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) |
| 2176 | schedule_delayed_work(&vi->refill, 0); |
| 2177 | |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 2178 | for (i = 0; i < vi->max_queue_pairs; i++) { |
Willem de Bruijn | e4e8452 | 2017-04-24 13:49:26 -0400 | [diff] [blame] | 2179 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 2180 | virtnet_napi_tx_enable(vi, vi->sq[i].vq, |
| 2181 | &vi->sq[i].napi); |
| 2182 | } |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2183 | } |
| 2184 | |
| 2185 | netif_device_attach(vi->dev); |
| 2186 | return err; |
| 2187 | } |
| 2188 | |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2189 | static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads) |
| 2190 | { |
| 2191 | struct scatterlist sg; |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 2192 | vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads); |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2193 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 2194 | sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads)); |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2195 | |
| 2196 | if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS, |
| 2197 | VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) { |
| 2198 | dev_warn(&vi->dev->dev, "Fail to set guest offload. \n"); |
| 2199 | return -EINVAL; |
| 2200 | } |
| 2201 | |
| 2202 | return 0; |
| 2203 | } |
| 2204 | |
| 2205 | static int virtnet_clear_guest_offloads(struct virtnet_info *vi) |
| 2206 | { |
| 2207 | u64 offloads = 0; |
| 2208 | |
| 2209 | if (!vi->guest_offloads) |
| 2210 | return 0; |
| 2211 | |
| 2212 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM)) |
| 2213 | offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM; |
| 2214 | |
| 2215 | return virtnet_set_guest_offloads(vi, offloads); |
| 2216 | } |
| 2217 | |
| 2218 | static int virtnet_restore_guest_offloads(struct virtnet_info *vi) |
| 2219 | { |
| 2220 | u64 offloads = vi->guest_offloads; |
| 2221 | |
| 2222 | if (!vi->guest_offloads) |
| 2223 | return 0; |
| 2224 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM)) |
| 2225 | offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM; |
| 2226 | |
| 2227 | return virtnet_set_guest_offloads(vi, offloads); |
| 2228 | } |
| 2229 | |
Jakub Kicinski | 9861ce0 | 2017-04-30 21:46:48 -0700 | [diff] [blame] | 2230 | static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog, |
| 2231 | struct netlink_ext_ack *extack) |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2232 | { |
| 2233 | unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr); |
| 2234 | struct virtnet_info *vi = netdev_priv(dev); |
| 2235 | struct bpf_prog *old_prog; |
Jason Wang | 017b29c | 2017-02-20 11:50:20 +0800 | [diff] [blame] | 2236 | u16 xdp_qp = 0, curr_qp; |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 2237 | int i, err; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2238 | |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2239 | if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) |
| 2240 | && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) || |
| 2241 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) || |
| 2242 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || |
| 2243 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) { |
Daniel Borkmann | 4d463c4 | 2017-05-03 00:39:17 +0200 | [diff] [blame] | 2244 | NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first"); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2245 | return -EOPNOTSUPP; |
| 2246 | } |
| 2247 | |
| 2248 | if (vi->mergeable_rx_bufs && !vi->any_header_sg) { |
Daniel Borkmann | 4d463c4 | 2017-05-03 00:39:17 +0200 | [diff] [blame] | 2249 | NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required"); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2250 | return -EINVAL; |
| 2251 | } |
| 2252 | |
| 2253 | if (dev->mtu > max_sz) { |
Daniel Borkmann | 4d463c4 | 2017-05-03 00:39:17 +0200 | [diff] [blame] | 2254 | NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP"); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2255 | netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz); |
| 2256 | return -EINVAL; |
| 2257 | } |
| 2258 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 2259 | curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs; |
| 2260 | if (prog) |
| 2261 | xdp_qp = nr_cpu_ids; |
| 2262 | |
| 2263 | /* XDP requires extra queues for XDP_TX */ |
| 2264 | if (curr_qp + xdp_qp > vi->max_queue_pairs) { |
Daniel Borkmann | 4d463c4 | 2017-05-03 00:39:17 +0200 | [diff] [blame] | 2265 | NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available"); |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 2266 | netdev_warn(dev, "request %i queues but max is %i\n", |
| 2267 | curr_qp + xdp_qp, vi->max_queue_pairs); |
| 2268 | return -ENOMEM; |
| 2269 | } |
| 2270 | |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 2271 | if (prog) { |
| 2272 | prog = bpf_prog_add(prog, vi->max_queue_pairs - 1); |
| 2273 | if (IS_ERR(prog)) |
| 2274 | return PTR_ERR(prog); |
| 2275 | } |
| 2276 | |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 2277 | /* Make sure NAPI is not using any XDP TX queues for RX. */ |
Jason Wang | 4e09ff5 | 2018-02-28 18:20:04 +0800 | [diff] [blame] | 2278 | if (netif_running(dev)) |
| 2279 | for (i = 0; i < vi->max_queue_pairs; i++) |
| 2280 | napi_disable(&vi->rq[i].napi); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2281 | |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 2282 | netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp); |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 2283 | err = _virtnet_set_queues(vi, curr_qp + xdp_qp); |
| 2284 | if (err) |
| 2285 | goto err; |
| 2286 | vi->xdp_queue_pairs = xdp_qp; |
John Fastabend | 672aafd | 2016-12-15 12:13:49 -0800 | [diff] [blame] | 2287 | |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2288 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2289 | old_prog = rtnl_dereference(vi->rq[i].xdp_prog); |
| 2290 | rcu_assign_pointer(vi->rq[i].xdp_prog, prog); |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2291 | if (i == 0) { |
| 2292 | if (!old_prog) |
| 2293 | virtnet_clear_guest_offloads(vi); |
| 2294 | if (!prog) |
| 2295 | virtnet_restore_guest_offloads(vi); |
| 2296 | } |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2297 | if (old_prog) |
| 2298 | bpf_prog_put(old_prog); |
Jason Wang | 4e09ff5 | 2018-02-28 18:20:04 +0800 | [diff] [blame] | 2299 | if (netif_running(dev)) |
| 2300 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | return 0; |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 2304 | |
Jason Wang | 4941d47 | 2017-07-19 16:54:48 +0800 | [diff] [blame] | 2305 | err: |
| 2306 | for (i = 0; i < vi->max_queue_pairs; i++) |
| 2307 | virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); |
John Fastabend | 2de2f7f | 2017-02-02 19:16:29 -0800 | [diff] [blame] | 2308 | if (prog) |
| 2309 | bpf_prog_sub(prog, vi->max_queue_pairs - 1); |
| 2310 | return err; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2311 | } |
| 2312 | |
Martin KaFai Lau | 5b0e662 | 2017-06-15 17:29:12 -0700 | [diff] [blame] | 2313 | static u32 virtnet_xdp_query(struct net_device *dev) |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2314 | { |
| 2315 | struct virtnet_info *vi = netdev_priv(dev); |
Martin KaFai Lau | 5b0e662 | 2017-06-15 17:29:12 -0700 | [diff] [blame] | 2316 | const struct bpf_prog *xdp_prog; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2317 | int i; |
| 2318 | |
| 2319 | for (i = 0; i < vi->max_queue_pairs; i++) { |
Martin KaFai Lau | 5b0e662 | 2017-06-15 17:29:12 -0700 | [diff] [blame] | 2320 | xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog); |
| 2321 | if (xdp_prog) |
| 2322 | return xdp_prog->aux->id; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2323 | } |
Martin KaFai Lau | 5b0e662 | 2017-06-15 17:29:12 -0700 | [diff] [blame] | 2324 | return 0; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2325 | } |
| 2326 | |
Jakub Kicinski | f4e6352 | 2017-11-03 13:56:16 -0700 | [diff] [blame] | 2327 | static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp) |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2328 | { |
| 2329 | switch (xdp->command) { |
| 2330 | case XDP_SETUP_PROG: |
Jakub Kicinski | 9861ce0 | 2017-04-30 21:46:48 -0700 | [diff] [blame] | 2331 | return virtnet_xdp_set(dev, xdp->prog, xdp->extack); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2332 | case XDP_QUERY_PROG: |
Martin KaFai Lau | 5b0e662 | 2017-06-15 17:29:12 -0700 | [diff] [blame] | 2333 | xdp->prog_id = virtnet_xdp_query(dev); |
| 2334 | xdp->prog_attached = !!xdp->prog_id; |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2335 | return 0; |
| 2336 | default: |
| 2337 | return -EINVAL; |
| 2338 | } |
| 2339 | } |
| 2340 | |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 2341 | static const struct net_device_ops virtnet_netdev = { |
| 2342 | .ndo_open = virtnet_open, |
| 2343 | .ndo_stop = virtnet_close, |
| 2344 | .ndo_start_xmit = start_xmit, |
| 2345 | .ndo_validate_addr = eth_validate_addr, |
Alex Williamson | 9c46f6d | 2009-02-04 16:36:34 -0800 | [diff] [blame] | 2346 | .ndo_set_mac_address = virtnet_set_mac_address, |
Alex Williamson | 2af7698 | 2009-02-04 09:02:40 +0000 | [diff] [blame] | 2347 | .ndo_set_rx_mode = virtnet_set_rx_mode, |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 2348 | .ndo_get_stats64 = virtnet_stats, |
Alex Williamson | 1824a98 | 2009-05-01 17:31:10 +0000 | [diff] [blame] | 2349 | .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid, |
| 2350 | .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid, |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 2351 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 2352 | .ndo_poll_controller = virtnet_netpoll, |
| 2353 | #endif |
Jakub Kicinski | f4e6352 | 2017-11-03 13:56:16 -0700 | [diff] [blame] | 2354 | .ndo_bpf = virtnet_xdp, |
Jason Wang | 186b3c9 | 2017-09-19 17:42:43 +0800 | [diff] [blame] | 2355 | .ndo_xdp_xmit = virtnet_xdp_xmit, |
| 2356 | .ndo_xdp_flush = virtnet_xdp_flush, |
Vlad Yasevich | 2836b4f | 2017-05-23 13:38:43 -0400 | [diff] [blame] | 2357 | .ndo_features_check = passthru_features_check, |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 2358 | }; |
| 2359 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2360 | static void virtnet_config_changed_work(struct work_struct *work) |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2361 | { |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2362 | struct virtnet_info *vi = |
| 2363 | container_of(work, struct virtnet_info, config_work); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2364 | u16 v; |
| 2365 | |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 2366 | if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS, |
| 2367 | struct virtio_net_config, status, &v) < 0) |
Michael S. Tsirkin | 507613b | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 2368 | return; |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2369 | |
| 2370 | if (v & VIRTIO_NET_S_ANNOUNCE) { |
Amerigo Wang | ee89bab | 2012-08-09 22:14:56 +0000 | [diff] [blame] | 2371 | netdev_notify_peers(vi->dev); |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2372 | virtnet_ack_link_announce(vi); |
| 2373 | } |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2374 | |
| 2375 | /* Ignore unknown (future) status bits */ |
| 2376 | v &= VIRTIO_NET_S_LINK_UP; |
| 2377 | |
| 2378 | if (vi->status == v) |
Michael S. Tsirkin | 507613b | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 2379 | return; |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2380 | |
| 2381 | vi->status = v; |
| 2382 | |
| 2383 | if (vi->status & VIRTIO_NET_S_LINK_UP) { |
Jason Baron | faa9b39 | 2018-01-05 17:44:54 -0500 | [diff] [blame] | 2384 | virtnet_update_settings(vi); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2385 | netif_carrier_on(vi->dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2386 | netif_tx_wake_all_queues(vi->dev); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2387 | } else { |
| 2388 | netif_carrier_off(vi->dev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2389 | netif_tx_stop_all_queues(vi->dev); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2390 | } |
| 2391 | } |
| 2392 | |
| 2393 | static void virtnet_config_changed(struct virtio_device *vdev) |
| 2394 | { |
| 2395 | struct virtnet_info *vi = vdev->priv; |
| 2396 | |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 2397 | schedule_work(&vi->config_work); |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2398 | } |
| 2399 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2400 | static void virtnet_free_queues(struct virtnet_info *vi) |
| 2401 | { |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2402 | int i; |
| 2403 | |
Jason Wang | ab3971b | 2015-03-12 13:57:44 +0800 | [diff] [blame] | 2404 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2405 | napi_hash_del(&vi->rq[i].napi); |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2406 | netif_napi_del(&vi->rq[i].napi); |
Willem de Bruijn | b92f1e6 | 2017-04-24 13:49:27 -0400 | [diff] [blame] | 2407 | netif_napi_del(&vi->sq[i].napi); |
Jason Wang | ab3971b | 2015-03-12 13:57:44 +0800 | [diff] [blame] | 2408 | } |
Andrey Vagin | d4fb84e | 2013-12-05 18:36:21 +0400 | [diff] [blame] | 2409 | |
Eric Dumazet | 963abe5 | 2016-11-15 22:24:12 -0800 | [diff] [blame] | 2410 | /* We called napi_hash_del() before netif_napi_del(), |
| 2411 | * we need to respect an RCU grace period before freeing vi->rq |
| 2412 | */ |
| 2413 | synchronize_net(); |
| 2414 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2415 | kfree(vi->rq); |
| 2416 | kfree(vi->sq); |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 2417 | kfree(vi->ctrl); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2418 | } |
| 2419 | |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 2420 | static void _free_receive_bufs(struct virtnet_info *vi) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2421 | { |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2422 | struct bpf_prog *old_prog; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2423 | int i; |
| 2424 | |
| 2425 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2426 | while (vi->rq[i].pages) |
| 2427 | __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2428 | |
| 2429 | old_prog = rtnl_dereference(vi->rq[i].xdp_prog); |
| 2430 | RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL); |
| 2431 | if (old_prog) |
| 2432 | bpf_prog_put(old_prog); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2433 | } |
John Fastabend | 47315329 | 2017-02-02 19:14:32 -0800 | [diff] [blame] | 2434 | } |
| 2435 | |
| 2436 | static void free_receive_bufs(struct virtnet_info *vi) |
| 2437 | { |
| 2438 | rtnl_lock(); |
| 2439 | _free_receive_bufs(vi); |
John Fastabend | f600b69 | 2016-12-15 12:13:24 -0800 | [diff] [blame] | 2440 | rtnl_unlock(); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2441 | } |
| 2442 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2443 | static void free_receive_page_frags(struct virtnet_info *vi) |
| 2444 | { |
| 2445 | int i; |
| 2446 | for (i = 0; i < vi->max_queue_pairs; i++) |
| 2447 | if (vi->rq[i].alloc_frag.page) |
| 2448 | put_page(vi->rq[i].alloc_frag.page); |
| 2449 | } |
| 2450 | |
John Fastabend | b68df01 | 2017-01-25 18:22:48 -0800 | [diff] [blame] | 2451 | static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2452 | { |
| 2453 | if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs)) |
| 2454 | return false; |
| 2455 | else if (q < vi->curr_queue_pairs) |
| 2456 | return true; |
| 2457 | else |
| 2458 | return false; |
| 2459 | } |
| 2460 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2461 | static void free_unused_bufs(struct virtnet_info *vi) |
| 2462 | { |
| 2463 | void *buf; |
| 2464 | int i; |
| 2465 | |
| 2466 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2467 | struct virtqueue *vq = vi->sq[i].vq; |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2468 | while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { |
John Fastabend | b68df01 | 2017-01-25 18:22:48 -0800 | [diff] [blame] | 2469 | if (!is_xdp_raw_buffer_queue(vi, i)) |
John Fastabend | 56434a0 | 2016-12-15 12:14:13 -0800 | [diff] [blame] | 2470 | dev_kfree_skb(buf); |
| 2471 | else |
| 2472 | put_page(virt_to_head_page(buf)); |
| 2473 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2474 | } |
| 2475 | |
| 2476 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2477 | struct virtqueue *vq = vi->rq[i].vq; |
| 2478 | |
| 2479 | while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) { |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2480 | if (vi->mergeable_rx_bufs) { |
Michael S. Tsirkin | 680557c | 2017-03-06 21:29:47 +0200 | [diff] [blame] | 2481 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2482 | } else if (vi->big_packets) { |
Andrey Vagin | fa9fac1 | 2013-12-05 18:36:20 +0400 | [diff] [blame] | 2483 | give_pages(&vi->rq[i], buf); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2484 | } else { |
Jason Wang | f6b1020 | 2017-02-21 16:46:28 +0800 | [diff] [blame] | 2485 | put_page(virt_to_head_page(buf)); |
Michael Dalton | ab7db91 | 2014-01-16 22:23:27 -0800 | [diff] [blame] | 2486 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2487 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2488 | } |
| 2489 | } |
| 2490 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2491 | static void virtnet_del_vqs(struct virtnet_info *vi) |
| 2492 | { |
| 2493 | struct virtio_device *vdev = vi->vdev; |
| 2494 | |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 2495 | virtnet_clean_affinity(vi, -1); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2496 | |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2497 | vdev->config->del_vqs(vdev); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2498 | |
| 2499 | virtnet_free_queues(vi); |
| 2500 | } |
| 2501 | |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 2502 | /* How large should a single buffer be so a queue full of these can fit at |
| 2503 | * least one full packet? |
| 2504 | * Logic below assumes the mergeable buffer header is used. |
| 2505 | */ |
| 2506 | static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq) |
| 2507 | { |
| 2508 | const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); |
| 2509 | unsigned int rq_size = virtqueue_get_vring_size(vq); |
| 2510 | unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu; |
| 2511 | unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len; |
| 2512 | unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size); |
| 2513 | |
Michael S. Tsirkin | f0c3192 | 2017-06-02 17:54:33 +0300 | [diff] [blame] | 2514 | return max(max(min_buf_len, hdr_len) - hdr_len, |
| 2515 | (unsigned int)GOOD_PACKET_LEN); |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 2516 | } |
| 2517 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2518 | static int virtnet_find_vqs(struct virtnet_info *vi) |
| 2519 | { |
| 2520 | vq_callback_t **callbacks; |
| 2521 | struct virtqueue **vqs; |
| 2522 | int ret = -ENOMEM; |
| 2523 | int i, total_vqs; |
| 2524 | const char **names; |
Michael S. Tsirkin | d45b897 | 2017-03-06 20:31:21 +0200 | [diff] [blame] | 2525 | bool *ctx; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2526 | |
| 2527 | /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by |
| 2528 | * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by |
| 2529 | * possible control vq. |
| 2530 | */ |
| 2531 | total_vqs = vi->max_queue_pairs * 2 + |
| 2532 | virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ); |
| 2533 | |
| 2534 | /* Allocate space for find_vqs parameters */ |
| 2535 | vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL); |
| 2536 | if (!vqs) |
| 2537 | goto err_vq; |
| 2538 | callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL); |
| 2539 | if (!callbacks) |
| 2540 | goto err_callback; |
| 2541 | names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL); |
| 2542 | if (!names) |
| 2543 | goto err_names; |
Jason Wang | 192f68c | 2017-07-19 16:54:47 +0800 | [diff] [blame] | 2544 | if (!vi->big_packets || vi->mergeable_rx_bufs) { |
Michael S. Tsirkin | d45b897 | 2017-03-06 20:31:21 +0200 | [diff] [blame] | 2545 | ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL); |
| 2546 | if (!ctx) |
| 2547 | goto err_ctx; |
| 2548 | } else { |
| 2549 | ctx = NULL; |
| 2550 | } |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2551 | |
| 2552 | /* Parameters for control virtqueue, if any */ |
| 2553 | if (vi->has_cvq) { |
| 2554 | callbacks[total_vqs - 1] = NULL; |
| 2555 | names[total_vqs - 1] = "control"; |
| 2556 | } |
| 2557 | |
| 2558 | /* Allocate/initialize parameters for send/receive virtqueues */ |
| 2559 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2560 | callbacks[rxq2vq(i)] = skb_recv_done; |
| 2561 | callbacks[txq2vq(i)] = skb_xmit_done; |
| 2562 | sprintf(vi->rq[i].name, "input.%d", i); |
| 2563 | sprintf(vi->sq[i].name, "output.%d", i); |
| 2564 | names[rxq2vq(i)] = vi->rq[i].name; |
| 2565 | names[txq2vq(i)] = vi->sq[i].name; |
Michael S. Tsirkin | d45b897 | 2017-03-06 20:31:21 +0200 | [diff] [blame] | 2566 | if (ctx) |
| 2567 | ctx[rxq2vq(i)] = true; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2568 | } |
| 2569 | |
| 2570 | ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks, |
Michael S. Tsirkin | d45b897 | 2017-03-06 20:31:21 +0200 | [diff] [blame] | 2571 | names, ctx, NULL); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2572 | if (ret) |
| 2573 | goto err_find; |
| 2574 | |
| 2575 | if (vi->has_cvq) { |
| 2576 | vi->cvq = vqs[total_vqs - 1]; |
| 2577 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN)) |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 2578 | vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2579 | } |
| 2580 | |
| 2581 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2582 | vi->rq[i].vq = vqs[rxq2vq(i)]; |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 2583 | vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2584 | vi->sq[i].vq = vqs[txq2vq(i)]; |
| 2585 | } |
| 2586 | |
| 2587 | kfree(names); |
| 2588 | kfree(callbacks); |
| 2589 | kfree(vqs); |
Jason Wang | 5528162 | 2017-07-07 19:56:09 +0800 | [diff] [blame] | 2590 | kfree(ctx); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2591 | |
| 2592 | return 0; |
| 2593 | |
| 2594 | err_find: |
Michael S. Tsirkin | d45b897 | 2017-03-06 20:31:21 +0200 | [diff] [blame] | 2595 | kfree(ctx); |
| 2596 | err_ctx: |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2597 | kfree(names); |
| 2598 | err_names: |
| 2599 | kfree(callbacks); |
| 2600 | err_callback: |
| 2601 | kfree(vqs); |
| 2602 | err_vq: |
| 2603 | return ret; |
| 2604 | } |
| 2605 | |
| 2606 | static int virtnet_alloc_queues(struct virtnet_info *vi) |
| 2607 | { |
| 2608 | int i; |
| 2609 | |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 2610 | vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL); |
| 2611 | if (!vi->ctrl) |
| 2612 | goto err_ctrl; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2613 | vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL); |
| 2614 | if (!vi->sq) |
| 2615 | goto err_sq; |
| 2616 | vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL); |
Amerigo Wang | 008d427 | 2012-12-10 02:24:08 +0000 | [diff] [blame] | 2617 | if (!vi->rq) |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2618 | goto err_rq; |
| 2619 | |
| 2620 | INIT_DELAYED_WORK(&vi->refill, refill_work); |
| 2621 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 2622 | vi->rq[i].pages = NULL; |
| 2623 | netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll, |
| 2624 | napi_weight); |
Willem de Bruijn | 1d11e73 | 2017-04-27 20:37:58 -0400 | [diff] [blame] | 2625 | netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx, |
| 2626 | napi_tx ? napi_weight : 0); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2627 | |
| 2628 | sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg)); |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 2629 | ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2630 | sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg)); |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 2631 | |
| 2632 | u64_stats_init(&vi->rq[i].stats.syncp); |
| 2633 | u64_stats_init(&vi->sq[i].stats.syncp); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | return 0; |
| 2637 | |
| 2638 | err_rq: |
| 2639 | kfree(vi->sq); |
| 2640 | err_sq: |
Michael S. Tsirkin | 12e5716 | 2018-04-19 08:30:48 +0300 | [diff] [blame] | 2641 | kfree(vi->ctrl); |
| 2642 | err_ctrl: |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2643 | return -ENOMEM; |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2644 | } |
| 2645 | |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2646 | static int init_vqs(struct virtnet_info *vi) |
| 2647 | { |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2648 | int ret; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2649 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2650 | /* Allocate send & receive queues */ |
| 2651 | ret = virtnet_alloc_queues(vi); |
| 2652 | if (ret) |
| 2653 | goto err; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2654 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2655 | ret = virtnet_find_vqs(vi); |
| 2656 | if (ret) |
| 2657 | goto err_free; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2658 | |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 2659 | get_online_cpus(); |
Wanlong Gao | 8898c21 | 2013-01-24 23:51:30 +0000 | [diff] [blame] | 2660 | virtnet_set_affinity(vi); |
Wanlong Gao | 47be247 | 2013-01-24 23:51:29 +0000 | [diff] [blame] | 2661 | put_online_cpus(); |
| 2662 | |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2663 | return 0; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2664 | |
| 2665 | err_free: |
| 2666 | virtnet_free_queues(vi); |
| 2667 | err: |
| 2668 | return ret; |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2669 | } |
| 2670 | |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2671 | #ifdef CONFIG_SYSFS |
| 2672 | static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 2673 | char *buf) |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2674 | { |
| 2675 | struct virtnet_info *vi = netdev_priv(queue->dev); |
| 2676 | unsigned int queue_index = get_netdev_rx_queue_index(queue); |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 2677 | unsigned int headroom = virtnet_get_headroom(vi); |
| 2678 | unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0; |
Johannes Berg | 5377d758 | 2015-08-19 09:48:40 +0200 | [diff] [blame] | 2679 | struct ewma_pkt_len *avg; |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2680 | |
| 2681 | BUG_ON(queue_index >= vi->max_queue_pairs); |
| 2682 | avg = &vi->rq[queue_index].mrg_avg_pkt_len; |
Michael S. Tsirkin | d85b758f7 | 2017-03-09 02:21:21 +0200 | [diff] [blame] | 2683 | return sprintf(buf, "%u\n", |
Jason Wang | 3cc81a9 | 2018-03-02 17:29:14 +0800 | [diff] [blame] | 2684 | get_mergeable_buf_len(&vi->rq[queue_index], avg, |
| 2685 | SKB_DATA_ALIGN(headroom + tailroom))); |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2686 | } |
| 2687 | |
| 2688 | static struct rx_queue_attribute mergeable_rx_buffer_size_attribute = |
| 2689 | __ATTR_RO(mergeable_rx_buffer_size); |
| 2690 | |
| 2691 | static struct attribute *virtio_net_mrg_rx_attrs[] = { |
| 2692 | &mergeable_rx_buffer_size_attribute.attr, |
| 2693 | NULL |
| 2694 | }; |
| 2695 | |
| 2696 | static const struct attribute_group virtio_net_mrg_rx_group = { |
| 2697 | .name = "virtio_net", |
| 2698 | .attrs = virtio_net_mrg_rx_attrs |
| 2699 | }; |
| 2700 | #endif |
| 2701 | |
Jason Wang | 892d6eb | 2014-11-20 17:03:05 +0800 | [diff] [blame] | 2702 | static bool virtnet_fail_on_feature(struct virtio_device *vdev, |
| 2703 | unsigned int fbit, |
| 2704 | const char *fname, const char *dname) |
| 2705 | { |
| 2706 | if (!virtio_has_feature(vdev, fbit)) |
| 2707 | return false; |
| 2708 | |
| 2709 | dev_err(&vdev->dev, "device advertises feature %s but not %s", |
| 2710 | fname, dname); |
| 2711 | |
| 2712 | return true; |
| 2713 | } |
| 2714 | |
| 2715 | #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \ |
| 2716 | virtnet_fail_on_feature(vdev, fbit, #fbit, dbit) |
| 2717 | |
| 2718 | static bool virtnet_validate_features(struct virtio_device *vdev) |
| 2719 | { |
| 2720 | if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) && |
| 2721 | (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX, |
| 2722 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2723 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN, |
| 2724 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2725 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE, |
| 2726 | "VIRTIO_NET_F_CTRL_VQ") || |
| 2727 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") || |
| 2728 | VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR, |
| 2729 | "VIRTIO_NET_F_CTRL_VQ"))) { |
| 2730 | return false; |
| 2731 | } |
| 2732 | |
| 2733 | return true; |
| 2734 | } |
| 2735 | |
Jarod Wilson | d0c2c99 | 2016-10-20 13:55:21 -0400 | [diff] [blame] | 2736 | #define MIN_MTU ETH_MIN_MTU |
| 2737 | #define MAX_MTU ETH_MAX_MTU |
| 2738 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2739 | static int virtnet_validate(struct virtio_device *vdev) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2740 | { |
Michael S. Tsirkin | 6ba4224 | 2015-01-12 16:23:37 +0200 | [diff] [blame] | 2741 | if (!vdev->config->get) { |
| 2742 | dev_err(&vdev->dev, "%s failure: config access disabled\n", |
| 2743 | __func__); |
| 2744 | return -EINVAL; |
| 2745 | } |
| 2746 | |
Jason Wang | 892d6eb | 2014-11-20 17:03:05 +0800 | [diff] [blame] | 2747 | if (!virtnet_validate_features(vdev)) |
| 2748 | return -EINVAL; |
| 2749 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2750 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { |
| 2751 | int mtu = virtio_cread16(vdev, |
| 2752 | offsetof(struct virtio_net_config, |
| 2753 | mtu)); |
| 2754 | if (mtu < MIN_MTU) |
| 2755 | __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU); |
| 2756 | } |
| 2757 | |
| 2758 | return 0; |
| 2759 | } |
| 2760 | |
| 2761 | static int virtnet_probe(struct virtio_device *vdev) |
| 2762 | { |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 2763 | int i, err = -ENOMEM; |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2764 | struct net_device *dev; |
| 2765 | struct virtnet_info *vi; |
| 2766 | u16 max_queue_pairs; |
| 2767 | int mtu; |
| 2768 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2769 | /* Find if host supports multiqueue virtio_net device */ |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 2770 | err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ, |
| 2771 | struct virtio_net_config, |
| 2772 | max_virtqueue_pairs, &max_queue_pairs); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2773 | |
| 2774 | /* We need at least 2 queue's */ |
| 2775 | if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN || |
| 2776 | max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX || |
| 2777 | !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) |
| 2778 | max_queue_pairs = 1; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2779 | |
| 2780 | /* Allocate ourselves a network device with room for our info */ |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2781 | dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2782 | if (!dev) |
| 2783 | return -ENOMEM; |
| 2784 | |
| 2785 | /* Set up network device as normal. */ |
Jiri Pirko | f2f2c8b | 2012-06-29 05:10:06 +0000 | [diff] [blame] | 2786 | dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE; |
Stephen Hemminger | 76288b4 | 2009-01-06 10:44:22 -0800 | [diff] [blame] | 2787 | dev->netdev_ops = &virtnet_netdev; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2788 | dev->features = NETIF_F_HIGHDMA; |
stephen hemminger | 3fa2a1d | 2011-06-15 06:36:29 +0000 | [diff] [blame] | 2789 | |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 2790 | dev->ethtool_ops = &virtnet_ethtool_ops; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2791 | SET_NETDEV_DEV(dev, &vdev->dev); |
| 2792 | |
| 2793 | /* Do we support "hardware" checksums? */ |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2794 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) { |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2795 | /* This opens up the world of extra features. */ |
Jason Wang | 48900cb | 2015-08-05 10:34:04 +0800 | [diff] [blame] | 2796 | dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2797 | if (csum) |
Jason Wang | 48900cb | 2015-08-05 10:34:04 +0800 | [diff] [blame] | 2798 | dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2799 | |
| 2800 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) { |
David S. Miller | e078de0 | 2017-07-03 06:37:32 -0700 | [diff] [blame] | 2801 | dev->hw_features |= NETIF_F_TSO |
Rusty Russell | 34a4857 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2802 | | NETIF_F_TSO_ECN | NETIF_F_TSO6; |
| 2803 | } |
Rusty Russell | 5539ae96 | 2008-05-02 21:50:46 -0500 | [diff] [blame] | 2804 | /* Individual feature bits: what can host handle? */ |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2805 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4)) |
| 2806 | dev->hw_features |= NETIF_F_TSO; |
| 2807 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6)) |
| 2808 | dev->hw_features |= NETIF_F_TSO6; |
| 2809 | if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN)) |
| 2810 | dev->hw_features |= NETIF_F_TSO_ECN; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2811 | |
Jason Wang | 41f2f12 | 2014-12-24 11:03:52 +0800 | [diff] [blame] | 2812 | dev->features |= NETIF_F_GSO_ROBUST; |
| 2813 | |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2814 | if (gso) |
David S. Miller | e078de0 | 2017-07-03 06:37:32 -0700 | [diff] [blame] | 2815 | dev->features |= dev->hw_features & NETIF_F_ALL_TSO; |
Michał Mirosław | 98e778c | 2011-03-31 01:01:35 +0000 | [diff] [blame] | 2816 | /* (!csum && gso) case will be fixed by register_netdev() */ |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2817 | } |
Thomas Huth | 4f49129 | 2013-08-27 17:09:02 +0200 | [diff] [blame] | 2818 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM)) |
| 2819 | dev->features |= NETIF_F_RXCSUM; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2820 | |
Jason Wang | 4fda830 | 2013-04-10 23:32:21 +0000 | [diff] [blame] | 2821 | dev->vlan_features = dev->features; |
| 2822 | |
Jarod Wilson | d0c2c99 | 2016-10-20 13:55:21 -0400 | [diff] [blame] | 2823 | /* MTU range: 68 - 65535 */ |
| 2824 | dev->min_mtu = MIN_MTU; |
| 2825 | dev->max_mtu = MAX_MTU; |
| 2826 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2827 | /* Configuration may specify what MAC to use. Otherwise random. */ |
Rusty Russell | 855e0c5 | 2013-10-14 18:11:51 +1030 | [diff] [blame] | 2828 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) |
| 2829 | virtio_cread_bytes(vdev, |
| 2830 | offsetof(struct virtio_net_config, mac), |
| 2831 | dev->dev_addr, dev->addr_len); |
| 2832 | else |
Danny Kukawka | f2cedb6 | 2012-02-15 06:45:39 +0000 | [diff] [blame] | 2833 | eth_hw_addr_random(dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2834 | |
| 2835 | /* Set up our device-specific information */ |
| 2836 | vi = netdev_priv(dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2837 | vi->dev = dev; |
| 2838 | vi->vdev = vdev; |
Christian Borntraeger | d9d5dcc | 2008-02-18 10:02:51 +0100 | [diff] [blame] | 2839 | vdev->priv = vi; |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 2840 | |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2841 | INIT_WORK(&vi->config_work, virtnet_config_changed_work); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2842 | |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 2843 | /* If we can receive ANY GSO packets, we must allocate large ones. */ |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 2844 | if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || |
| 2845 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) || |
Vlad Yasevich | e3e3c42 | 2015-02-03 16:36:17 -0500 | [diff] [blame] | 2846 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) || |
| 2847 | virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO)) |
Herbert Xu | 97402b9 | 2008-04-18 11:24:27 +0800 | [diff] [blame] | 2848 | vi->big_packets = true; |
| 2849 | |
Mark McLoughlin | 3f2c31d | 2008-11-16 22:41:34 -0800 | [diff] [blame] | 2850 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) |
| 2851 | vi->mergeable_rx_bufs = true; |
| 2852 | |
Michael S. Tsirkin | d04302b | 2014-10-24 00:24:03 +0300 | [diff] [blame] | 2853 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) || |
| 2854 | virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 2855 | vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); |
| 2856 | else |
| 2857 | vi->hdr_len = sizeof(struct virtio_net_hdr); |
| 2858 | |
Michael S. Tsirkin | 7599330 | 2015-07-15 15:26:19 +0300 | [diff] [blame] | 2859 | if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) || |
| 2860 | virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 2861 | vi->any_header_sg = true; |
| 2862 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2863 | if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) |
| 2864 | vi->has_cvq = true; |
| 2865 | |
Aaron Conole | 14de9d1 | 2016-06-03 16:57:12 -0400 | [diff] [blame] | 2866 | if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) { |
| 2867 | mtu = virtio_cread16(vdev, |
| 2868 | offsetof(struct virtio_net_config, |
| 2869 | mtu)); |
Aaron Conole | 93a205e | 2016-10-25 16:12:12 -0400 | [diff] [blame] | 2870 | if (mtu < dev->min_mtu) { |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2871 | /* Should never trigger: MTU was previously validated |
| 2872 | * in virtnet_validate. |
| 2873 | */ |
| 2874 | dev_err(&vdev->dev, "device MTU appears to have changed " |
| 2875 | "it is now %d < %d", mtu, dev->min_mtu); |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 2876 | goto free; |
Aaron Conole | 93a205e | 2016-10-25 16:12:12 -0400 | [diff] [blame] | 2877 | } |
Michael S. Tsirkin | 2e123b4 | 2017-03-08 02:14:25 +0200 | [diff] [blame] | 2878 | |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 2879 | dev->mtu = mtu; |
| 2880 | dev->max_mtu = mtu; |
| 2881 | |
Michael S. Tsirkin | 2e123b4 | 2017-03-08 02:14:25 +0200 | [diff] [blame] | 2882 | /* TODO: size buffers correctly in this case. */ |
| 2883 | if (dev->mtu > ETH_DATA_LEN) |
| 2884 | vi->big_packets = true; |
Aaron Conole | 14de9d1 | 2016-06-03 16:57:12 -0400 | [diff] [blame] | 2885 | } |
| 2886 | |
Michael S. Tsirkin | 012873d | 2014-10-24 16:55:57 +0300 | [diff] [blame] | 2887 | if (vi->any_header_sg) |
| 2888 | dev->needed_headroom = vi->hdr_len; |
Zhangjie \(HZ\) | 6ebbc1a | 2014-04-29 18:43:22 +0800 | [diff] [blame] | 2889 | |
Jason Wang | 4490001 | 2016-11-25 12:37:26 +0800 | [diff] [blame] | 2890 | /* Enable multiqueue by default */ |
| 2891 | if (num_online_cpus() >= max_queue_pairs) |
| 2892 | vi->curr_queue_pairs = max_queue_pairs; |
| 2893 | else |
| 2894 | vi->curr_queue_pairs = num_online_cpus(); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2895 | vi->max_queue_pairs = max_queue_pairs; |
| 2896 | |
| 2897 | /* Allocate/initialize the rx/tx queues, and invoke find_vqs */ |
Amit Shah | 3f9c10b | 2011-12-22 16:58:31 +0530 | [diff] [blame] | 2898 | err = init_vqs(vi); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2899 | if (err) |
Toshiaki Makita | d7dfc5c | 2018-01-17 15:38:25 +0900 | [diff] [blame] | 2900 | goto free; |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2901 | |
Michael Dalton | fbf28d7 | 2014-01-16 22:23:30 -0800 | [diff] [blame] | 2902 | #ifdef CONFIG_SYSFS |
| 2903 | if (vi->mergeable_rx_bufs) |
| 2904 | dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group; |
| 2905 | #endif |
Zhi Yong Wu | 0f13b66b | 2013-11-18 21:19:27 +0800 | [diff] [blame] | 2906 | netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs); |
| 2907 | netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs); |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2908 | |
Nikolay Aleksandrov | 16032be | 2016-02-03 04:04:37 +0100 | [diff] [blame] | 2909 | virtnet_init_settings(dev); |
| 2910 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2911 | err = register_netdev(dev); |
| 2912 | if (err) { |
| 2913 | pr_debug("virtio_net: registering device failed\n"); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2914 | goto free_vqs; |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2915 | } |
Rusty Russell | b3369c1 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2916 | |
Michael S. Tsirkin | 4baf1e3 | 2014-10-15 10:22:30 +1030 | [diff] [blame] | 2917 | virtio_device_ready(vdev); |
| 2918 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2919 | err = virtnet_cpu_notif_add(vi); |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2920 | if (err) { |
| 2921 | pr_debug("virtio_net: registering cpu notifier failed\n"); |
wangyunjian | f00e35e | 2016-05-31 11:52:43 +0800 | [diff] [blame] | 2922 | goto free_unregister_netdev; |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2923 | } |
| 2924 | |
Jason Wang | a220871 | 2016-12-13 14:23:05 +0800 | [diff] [blame] | 2925 | virtnet_set_queues(vi, vi->curr_queue_pairs); |
Jason Wang | 4490001 | 2016-11-25 12:37:26 +0800 | [diff] [blame] | 2926 | |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2927 | /* Assume link up if device can't report link status, |
| 2928 | otherwise get link status from config. */ |
Jay Vosburgh | bda7fab | 2018-03-22 14:42:41 +0000 | [diff] [blame] | 2929 | netif_carrier_off(dev); |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2930 | if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) { |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 2931 | schedule_work(&vi->config_work); |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2932 | } else { |
| 2933 | vi->status = VIRTIO_NET_S_LINK_UP; |
Jason Baron | faa9b39 | 2018-01-05 17:44:54 -0500 | [diff] [blame] | 2934 | virtnet_update_settings(vi); |
Jason Wang | 167c25e | 2010-11-10 14:45:41 +0000 | [diff] [blame] | 2935 | netif_carrier_on(dev); |
| 2936 | } |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 2937 | |
Jason Wang | 3f93522 | 2017-07-19 16:54:49 +0800 | [diff] [blame] | 2938 | for (i = 0; i < ARRAY_SIZE(guest_offloads); i++) |
| 2939 | if (virtio_has_feature(vi->vdev, guest_offloads[i])) |
| 2940 | set_bit(guest_offloads[i], &vi->guest_offloads); |
| 2941 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2942 | pr_debug("virtnet: registered device %s with %d RX and TX vq's\n", |
| 2943 | dev->name, max_queue_pairs); |
| 2944 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2945 | return 0; |
| 2946 | |
wangyunjian | f00e35e | 2016-05-31 11:52:43 +0800 | [diff] [blame] | 2947 | free_unregister_netdev: |
Michael S. Tsirkin | 0246555 | 2014-10-15 10:22:31 +1030 | [diff] [blame] | 2948 | vi->vdev->config->reset(vdev); |
| 2949 | |
Rusty Russell | b3369c1 | 2008-02-04 23:50:02 -0500 | [diff] [blame] | 2950 | unregister_netdev(dev); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2951 | free_vqs: |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2952 | cancel_delayed_work_sync(&vi->refill); |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2953 | free_receive_page_frags(vi); |
Jason Wang | e9d7417 | 2012-12-07 07:04:55 +0000 | [diff] [blame] | 2954 | virtnet_del_vqs(vi); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2955 | free: |
| 2956 | free_netdev(dev); |
| 2957 | return err; |
| 2958 | } |
| 2959 | |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2960 | static void remove_vq_common(struct virtnet_info *vi) |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2961 | { |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2962 | vi->vdev->config->reset(vi->vdev); |
Shirley Ma | 830a8a9 | 2010-02-08 14:14:42 +0000 | [diff] [blame] | 2963 | |
| 2964 | /* Free unused buffers in both send and recv, if any. */ |
Shirley Ma | 9ab86bb | 2010-01-29 03:20:04 +0000 | [diff] [blame] | 2965 | free_unused_bufs(vi); |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 2966 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2967 | free_receive_bufs(vi); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 2968 | |
Michael Dalton | fb51879 | 2014-01-16 22:23:26 -0800 | [diff] [blame] | 2969 | free_receive_page_frags(vi); |
| 2970 | |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 2971 | virtnet_del_vqs(vi); |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2972 | } |
| 2973 | |
Bill Pemberton | 8cc085d | 2012-12-03 09:24:15 -0500 | [diff] [blame] | 2974 | static void virtnet_remove(struct virtio_device *vdev) |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2975 | { |
| 2976 | struct virtnet_info *vi = vdev->priv; |
| 2977 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2978 | virtnet_cpu_notif_remove(vi); |
Wanlong Gao | 8de4b2f | 2013-01-24 23:51:31 +0000 | [diff] [blame] | 2979 | |
Michael S. Tsirkin | 102a278 | 2014-10-15 10:22:29 +1030 | [diff] [blame] | 2980 | /* Make sure no work handler is accessing the device. */ |
| 2981 | flush_work(&vi->config_work); |
Jason Wang | 586d17c | 2012-04-11 20:43:52 +0000 | [diff] [blame] | 2982 | |
Amit Shah | 04486ed | 2011-12-22 16:58:32 +0530 | [diff] [blame] | 2983 | unregister_netdev(vi->dev); |
| 2984 | |
| 2985 | remove_vq_common(vi); |
Rusty Russell | fb6813f | 2008-07-25 12:06:01 -0500 | [diff] [blame] | 2986 | |
Rusty Russell | 74b2553 | 2007-11-19 11:20:42 -0500 | [diff] [blame] | 2987 | free_netdev(vi->dev); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 2988 | } |
| 2989 | |
Arnd Bergmann | 67a7519 | 2017-07-25 17:35:50 +0200 | [diff] [blame] | 2990 | static __maybe_unused int virtnet_freeze(struct virtio_device *vdev) |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2991 | { |
| 2992 | struct virtnet_info *vi = vdev->priv; |
| 2993 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 2994 | virtnet_cpu_notif_remove(vi); |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 2995 | virtnet_freeze_down(vdev); |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 2996 | remove_vq_common(vi); |
| 2997 | |
| 2998 | return 0; |
| 2999 | } |
| 3000 | |
Arnd Bergmann | 67a7519 | 2017-07-25 17:35:50 +0200 | [diff] [blame] | 3001 | static __maybe_unused int virtnet_restore(struct virtio_device *vdev) |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3002 | { |
| 3003 | struct virtnet_info *vi = vdev->priv; |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 3004 | int err; |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3005 | |
John Fastabend | 9fe7bfc | 2017-02-02 19:16:01 -0800 | [diff] [blame] | 3006 | err = virtnet_restore_up(vdev); |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3007 | if (err) |
| 3008 | return err; |
Jason Wang | 986a4f4 | 2012-12-07 07:04:56 +0000 | [diff] [blame] | 3009 | virtnet_set_queues(vi, vi->curr_queue_pairs); |
| 3010 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3011 | err = virtnet_cpu_notif_add(vi); |
Jason Wang | ec9debb | 2013-10-29 15:11:07 +0800 | [diff] [blame] | 3012 | if (err) |
| 3013 | return err; |
| 3014 | |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3015 | return 0; |
| 3016 | } |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3017 | |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3018 | static struct virtio_device_id id_table[] = { |
| 3019 | { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID }, |
| 3020 | { 0 }, |
| 3021 | }; |
| 3022 | |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 3023 | #define VIRTNET_FEATURES \ |
| 3024 | VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ |
| 3025 | VIRTIO_NET_F_MAC, \ |
| 3026 | VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ |
| 3027 | VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ |
| 3028 | VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ |
| 3029 | VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ |
| 3030 | VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ |
| 3031 | VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ |
| 3032 | VIRTIO_NET_F_CTRL_MAC_ADDR, \ |
Jason Baron | faa9b39 | 2018-01-05 17:44:54 -0500 | [diff] [blame] | 3033 | VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \ |
| 3034 | VIRTIO_NET_F_SPEED_DUPLEX |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 3035 | |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 3036 | static unsigned int features[] = { |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 3037 | VIRTNET_FEATURES, |
| 3038 | }; |
| 3039 | |
| 3040 | static unsigned int features_legacy[] = { |
| 3041 | VIRTNET_FEATURES, |
| 3042 | VIRTIO_NET_F_GSO, |
Michael S. Tsirkin | e7428e9 | 2013-07-25 10:20:23 +0930 | [diff] [blame] | 3043 | VIRTIO_F_ANY_LAYOUT, |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 3044 | }; |
| 3045 | |
Uwe Kleine-König | 2240252 | 2009-11-05 01:32:44 -0800 | [diff] [blame] | 3046 | static struct virtio_driver virtio_net_driver = { |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 3047 | .feature_table = features, |
| 3048 | .feature_table_size = ARRAY_SIZE(features), |
Michael S. Tsirkin | f335850 | 2016-11-04 12:55:36 +0200 | [diff] [blame] | 3049 | .feature_table_legacy = features_legacy, |
| 3050 | .feature_table_size_legacy = ARRAY_SIZE(features_legacy), |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3051 | .driver.name = KBUILD_MODNAME, |
| 3052 | .driver.owner = THIS_MODULE, |
| 3053 | .id_table = id_table, |
Michael S. Tsirkin | fe36cbe | 2017-03-29 19:09:14 +0300 | [diff] [blame] | 3054 | .validate = virtnet_validate, |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3055 | .probe = virtnet_probe, |
Bill Pemberton | 8cc085d | 2012-12-03 09:24:15 -0500 | [diff] [blame] | 3056 | .remove = virtnet_remove, |
Mark McLoughlin | 9f4d26d | 2009-01-19 17:09:49 -0800 | [diff] [blame] | 3057 | .config_changed = virtnet_config_changed, |
Aaron Lu | 8910700 | 2013-09-17 09:25:23 +0930 | [diff] [blame] | 3058 | #ifdef CONFIG_PM_SLEEP |
Amit Shah | 0741bcb | 2011-12-22 16:58:33 +0530 | [diff] [blame] | 3059 | .freeze = virtnet_freeze, |
| 3060 | .restore = virtnet_restore, |
| 3061 | #endif |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3062 | }; |
| 3063 | |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3064 | static __init int virtio_net_driver_init(void) |
| 3065 | { |
| 3066 | int ret; |
| 3067 | |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 3068 | ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online", |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3069 | virtnet_cpu_online, |
| 3070 | virtnet_cpu_down_prep); |
| 3071 | if (ret < 0) |
| 3072 | goto out; |
| 3073 | virtionet_online = ret; |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 3074 | ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead", |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3075 | NULL, virtnet_cpu_dead); |
| 3076 | if (ret) |
| 3077 | goto err_dead; |
| 3078 | |
| 3079 | ret = register_virtio_driver(&virtio_net_driver); |
| 3080 | if (ret) |
| 3081 | goto err_virtio; |
| 3082 | return 0; |
| 3083 | err_virtio: |
| 3084 | cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); |
| 3085 | err_dead: |
| 3086 | cpuhp_remove_multi_state(virtionet_online); |
| 3087 | out: |
| 3088 | return ret; |
| 3089 | } |
| 3090 | module_init(virtio_net_driver_init); |
| 3091 | |
| 3092 | static __exit void virtio_net_driver_exit(void) |
| 3093 | { |
Andrew Jones | cfa0ebc | 2017-07-24 15:38:32 +0200 | [diff] [blame] | 3094 | unregister_virtio_driver(&virtio_net_driver); |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3095 | cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD); |
| 3096 | cpuhp_remove_multi_state(virtionet_online); |
Sebastian Andrzej Siewior | 8017c27 | 2016-08-12 19:49:43 +0200 | [diff] [blame] | 3097 | } |
| 3098 | module_exit(virtio_net_driver_exit); |
Rusty Russell | 296f96f | 2007-10-22 11:03:37 +1000 | [diff] [blame] | 3099 | |
| 3100 | MODULE_DEVICE_TABLE(virtio, id_table); |
| 3101 | MODULE_DESCRIPTION("Virtio network driver"); |
| 3102 | MODULE_LICENSE("GPL"); |