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