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