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