blob: 0024200c30ce46e2ae1b745e5b50f3fe4fab58eb [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
2 * Back-end of the driver for virtual network devices. This portion of the
3 * driver exports a 'unified' network-device interface that can be accessed
4 * by any operating system that implements a compatible front end. A
5 * reference front-end implementation can be found in:
6 * drivers/net/xen-netfront.c
7 *
8 * Copyright (c) 2002-2005, K A Fraser
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation; or, when distributed
13 * separately from the Linux kernel or incorporated into other
14 * software packages, subject to the following license:
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a copy
17 * of this source file (the "Software"), to deal in the Software without
18 * restriction, including without limitation the rights to use, copy, modify,
19 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
20 * and to permit persons to whom the Software is furnished to do so, subject to
21 * the following conditions:
22 *
23 * The above copyright notice and this permission notice shall be included in
24 * all copies or substantial portions of the Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32 * IN THE SOFTWARE.
33 */
34
35#include "common.h"
36
37#include <linux/kthread.h>
38#include <linux/if_vlan.h>
39#include <linux/udp.h>
Zoltan Kisse3377f32014-03-06 21:48:29 +000040#include <linux/highmem.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000041
42#include <net/tcp.h>
43
Stefano Stabellinica981632012-08-08 17:21:23 +000044#include <xen/xen.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000045#include <xen/events.h>
46#include <xen/interface/memory.h>
Julien Gralla9fd60e2015-06-17 15:28:02 +010047#include <xen/page.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000048
49#include <asm/xen/hypercall.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000050
Wei Liue1f00a692013-05-22 06:34:45 +000051/* Provide an option to disable split event channels at load time as
52 * event channels are limited resource. Split event channels are
53 * enabled by default.
54 */
Shailendra Vermac489dbb2015-05-25 23:19:31 +053055bool separate_tx_rx_irq = true;
Wei Liue1f00a692013-05-22 06:34:45 +000056module_param(separate_tx_rx_irq, bool, 0644);
57
David Vrabelf48da8b2014-10-22 14:08:54 +010058/* The time that packets can stay on the guest Rx internal queue
59 * before they are dropped.
Zoltan Kiss09350782014-03-06 21:48:30 +000060 */
61unsigned int rx_drain_timeout_msecs = 10000;
62module_param(rx_drain_timeout_msecs, uint, 0444);
Zoltan Kiss09350782014-03-06 21:48:30 +000063
David Vrabelecf08d22014-10-22 14:08:55 +010064/* The length of time before the frontend is considered unresponsive
65 * because it isn't providing Rx slots.
66 */
David Vrabel26c0e102014-12-18 11:13:06 +000067unsigned int rx_stall_timeout_msecs = 60000;
David Vrabelecf08d22014-10-22 14:08:55 +010068module_param(rx_stall_timeout_msecs, uint, 0444);
David Vrabelecf08d22014-10-22 14:08:55 +010069
Juergen Grossa1644f92017-01-10 14:32:52 +010070#define MAX_QUEUES_DEFAULT 8
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +010071unsigned int xenvif_max_queues;
72module_param_named(max_queues, xenvif_max_queues, uint, 0644);
73MODULE_PARM_DESC(max_queues,
74 "Maximum number of queues per virtual interface");
75
Wei Liu2810e5b2013-04-22 02:20:42 +000076/*
77 * This is the maximum slots a skb can have. If a guest sends a skb
78 * which exceeds this limit it is considered malicious.
79 */
Wei Liu37641492013-05-02 00:43:59 +000080#define FATAL_SKB_SLOTS_DEFAULT 20
81static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
82module_param(fatal_skb_slots, uint, 0444);
83
Malcolm Crossley7e5d7752014-11-05 10:50:22 +000084/* The amount to copy out of the first guest Tx slot into the skb's
85 * linear area. If the first slot has more data, it will be mapped
86 * and put into the first frag.
87 *
88 * This is sized to avoid pulling headers from the frags for most
89 * TCP/IP packets.
90 */
91#define XEN_NETBACK_TX_COPY_LEN 128
92
Paul Durrant40d8abd2016-05-13 09:37:27 +010093/* This is the maximum number of flows in the hash cache. */
94#define XENVIF_HASH_CACHE_SIZE_DEFAULT 64
95unsigned int xenvif_hash_cache_size = XENVIF_HASH_CACHE_SIZE_DEFAULT;
96module_param_named(hash_cache_size, xenvif_hash_cache_size, uint, 0644);
97MODULE_PARM_DESC(hash_cache_size, "Number of flows in the hash cache");
Malcolm Crossley7e5d7752014-11-05 10:50:22 +000098
Wei Liue9ce7cb2014-06-04 10:30:42 +010099static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +0100100 u8 status);
101
Wei Liue9ce7cb2014-06-04 10:30:42 +0100102static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +0000103 struct xen_netif_tx_request *txp,
Paul Durrant562abd32016-03-10 12:30:27 +0000104 unsigned int extra_count,
Ian Campbellf942dc22011-03-15 00:06:18 +0000105 s8 st);
David Vrabelc8a4d292015-03-11 15:27:59 +0000106static void push_tx_responses(struct xenvif_queue *queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100107
Wei Liue9ce7cb2014-06-04 10:30:42 +0100108static inline int tx_work_todo(struct xenvif_queue *queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100109
Wei Liue9ce7cb2014-06-04 10:30:42 +0100110static inline unsigned long idx_to_pfn(struct xenvif_queue *queue,
Ian Campbellea066ad2011-10-05 00:28:46 +0000111 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000112{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100113 return page_to_pfn(queue->mmap_pages[idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000114}
115
Wei Liue9ce7cb2014-06-04 10:30:42 +0100116static inline unsigned long idx_to_kaddr(struct xenvif_queue *queue,
Ian Campbellea066ad2011-10-05 00:28:46 +0000117 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000118{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100119 return (unsigned long)pfn_to_kaddr(idx_to_pfn(queue, idx));
Ian Campbellf942dc22011-03-15 00:06:18 +0000120}
121
Zoltan Kiss7aceb472014-03-24 23:59:51 +0000122#define callback_param(vif, pending_idx) \
123 (vif->pending_tx_info[pending_idx].callback_struct)
124
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000125/* Find the containing VIF's structure from a pointer in pending_tx_info array
126 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100127static inline struct xenvif_queue *ubuf_to_queue(const struct ubuf_info *ubuf)
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000128{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000129 u16 pending_idx = ubuf->desc;
130 struct pending_tx_info *temp =
131 container_of(ubuf, struct pending_tx_info, callback_struct);
132 return container_of(temp - pending_idx,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100133 struct xenvif_queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000134 pending_tx_info[0]);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000135}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000136
Ian Campbellea066ad2011-10-05 00:28:46 +0000137static u16 frag_get_pending_idx(skb_frag_t *frag)
138{
139 return (u16)frag->page_offset;
140}
141
142static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
143{
144 frag->page_offset = pending_idx;
145}
146
Ian Campbellf942dc22011-03-15 00:06:18 +0000147static inline pending_ring_idx_t pending_index(unsigned i)
148{
149 return i & (MAX_PENDING_REQS-1);
150}
151
Wei Liue9ce7cb2014-06-04 10:30:42 +0100152void xenvif_kick_thread(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000153{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100154 wake_up(&queue->wq);
Wei Liub3f980b2013-08-26 12:59:38 +0100155}
156
Wei Liue9ce7cb2014-06-04 10:30:42 +0100157void xenvif_napi_schedule_or_enable_events(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000158{
159 int more_to_do;
160
Wei Liue9ce7cb2014-06-04 10:30:42 +0100161 RING_FINAL_CHECK_FOR_REQUESTS(&queue->tx, more_to_do);
Ian Campbellf942dc22011-03-15 00:06:18 +0000162
163 if (more_to_do)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100164 napi_schedule(&queue->napi);
Juergen Gross7d720062020-11-03 15:35:22 +0100165 else if (atomic_fetch_andnot(NETBK_TX_EOI | NETBK_COMMON_EOI,
166 &queue->eoi_pending) &
167 (NETBK_TX_EOI | NETBK_COMMON_EOI))
168 xen_irq_lateeoi(queue->tx_irq, 0);
Ian Campbellf942dc22011-03-15 00:06:18 +0000169}
170
Wei Liue9ce7cb2014-06-04 10:30:42 +0100171static void tx_add_credit(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000172{
173 unsigned long max_burst, max_credit;
174
175 /*
176 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
177 * Otherwise the interface can seize up due to insufficient credit.
178 */
David Vrabel0f589962015-10-30 15:16:01 +0000179 max_burst = max(131072UL, queue->credit_bytes);
Ian Campbellf942dc22011-03-15 00:06:18 +0000180
181 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100182 max_credit = queue->remaining_credit + queue->credit_bytes;
183 if (max_credit < queue->remaining_credit)
Ian Campbellf942dc22011-03-15 00:06:18 +0000184 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
185
Wei Liue9ce7cb2014-06-04 10:30:42 +0100186 queue->remaining_credit = min(max_credit, max_burst);
Wei Liu816843a2017-06-21 10:21:22 +0100187 queue->rate_limited = false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000188}
189
Palik, Imreedafc132015-03-19 11:05:42 +0100190void xenvif_tx_credit_callback(unsigned long data)
Ian Campbellf942dc22011-03-15 00:06:18 +0000191{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100192 struct xenvif_queue *queue = (struct xenvif_queue *)data;
193 tx_add_credit(queue);
194 xenvif_napi_schedule_or_enable_events(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000195}
196
Wei Liue9ce7cb2014-06-04 10:30:42 +0100197static void xenvif_tx_err(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +0000198 struct xen_netif_tx_request *txp,
199 unsigned int extra_count, RING_IDX end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000200{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100201 RING_IDX cons = queue->tx.req_cons;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000202 unsigned long flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000203
204 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100205 spin_lock_irqsave(&queue->response_lock, flags);
Paul Durrant562abd32016-03-10 12:30:27 +0000206 make_tx_response(queue, txp, extra_count, XEN_NETIF_RSP_ERROR);
David Vrabelc8a4d292015-03-11 15:27:59 +0000207 push_tx_responses(queue);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100208 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellb9149722013-02-06 23:41:38 +0000209 if (cons == end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000210 break;
David Vrabel68a33bf2015-10-30 15:17:06 +0000211 RING_COPY_REQUEST(&queue->tx, cons++, txp);
Paul Durrant72eec922016-05-12 14:43:03 +0100212 extra_count = 0; /* only the first frag can have extras */
Ian Campbellf942dc22011-03-15 00:06:18 +0000213 } while (1);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100214 queue->tx.req_cons = cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000215}
216
Wei Liu73764192013-08-26 12:59:39 +0100217static void xenvif_fatal_tx_err(struct xenvif *vif)
Ian Campbell488562862013-02-06 23:41:35 +0000218{
219 netdev_err(vif->dev, "fatal error; disabling device\n");
Wei Liue9d8b2c2014-04-01 12:46:12 +0100220 vif->disabled = true;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100221 /* Disable the vif from queue 0's kthread */
222 if (vif->queues)
223 xenvif_kick_thread(&vif->queues[0]);
Ian Campbell488562862013-02-06 23:41:35 +0000224}
225
Wei Liue9ce7cb2014-06-04 10:30:42 +0100226static int xenvif_count_requests(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100227 struct xen_netif_tx_request *first,
Paul Durrant562abd32016-03-10 12:30:27 +0000228 unsigned int extra_count,
Wei Liu73764192013-08-26 12:59:39 +0100229 struct xen_netif_tx_request *txp,
230 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +0000231{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100232 RING_IDX cons = queue->tx.req_cons;
Wei Liu2810e5b2013-04-22 02:20:42 +0000233 int slots = 0;
234 int drop_err = 0;
Wei Liu59ccb4e2013-05-02 00:43:58 +0000235 int more_data;
Ian Campbellf942dc22011-03-15 00:06:18 +0000236
237 if (!(first->flags & XEN_NETTXF_more_data))
238 return 0;
239
240 do {
Wei Liu59ccb4e2013-05-02 00:43:58 +0000241 struct xen_netif_tx_request dropped_tx = { 0 };
242
Wei Liu2810e5b2013-04-22 02:20:42 +0000243 if (slots >= work_to_do) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100244 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000245 "Asked for %d slots but exceeds this limit\n",
246 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100247 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000248 return -ENODATA;
Ian Campbellf942dc22011-03-15 00:06:18 +0000249 }
250
Wei Liu2810e5b2013-04-22 02:20:42 +0000251 /* This guest is really using too many slots and
252 * considered malicious.
253 */
Wei Liu37641492013-05-02 00:43:59 +0000254 if (unlikely(slots >= fatal_skb_slots)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100255 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000256 "Malicious frontend using %d slots, threshold %u\n",
Wei Liu37641492013-05-02 00:43:59 +0000257 slots, fatal_skb_slots);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100258 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000259 return -E2BIG;
Ian Campbellf942dc22011-03-15 00:06:18 +0000260 }
261
Wei Liu2810e5b2013-04-22 02:20:42 +0000262 /* Xen network protocol had implicit dependency on
Wei Liu37641492013-05-02 00:43:59 +0000263 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
264 * the historical MAX_SKB_FRAGS value 18 to honor the
265 * same behavior as before. Any packet using more than
266 * 18 slots but less than fatal_skb_slots slots is
267 * dropped
Wei Liu2810e5b2013-04-22 02:20:42 +0000268 */
Wei Liu37641492013-05-02 00:43:59 +0000269 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000270 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100271 netdev_dbg(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000272 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
Wei Liu37641492013-05-02 00:43:59 +0000273 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu2810e5b2013-04-22 02:20:42 +0000274 drop_err = -E2BIG;
275 }
276
Wei Liu59ccb4e2013-05-02 00:43:58 +0000277 if (drop_err)
278 txp = &dropped_tx;
279
David Vrabel68a33bf2015-10-30 15:17:06 +0000280 RING_COPY_REQUEST(&queue->tx, cons + slots, txp);
Wei Liu03393fd52013-04-22 02:20:43 +0000281
282 /* If the guest submitted a frame >= 64 KiB then
283 * first->size overflowed and following slots will
284 * appear to be larger than the frame.
285 *
286 * This cannot be fatal error as there are buggy
287 * frontends that do this.
288 *
289 * Consume all slots and drop the packet.
290 */
291 if (!drop_err && txp->size > first->size) {
292 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100293 netdev_dbg(queue->vif->dev,
Wei Liu03393fd52013-04-22 02:20:43 +0000294 "Invalid tx request, slot size %u > remaining size %u\n",
295 txp->size, first->size);
296 drop_err = -EIO;
Ian Campbellf942dc22011-03-15 00:06:18 +0000297 }
298
299 first->size -= txp->size;
Wei Liu2810e5b2013-04-22 02:20:42 +0000300 slots++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000301
Julien Gralld0089e82015-05-05 13:15:29 +0100302 if (unlikely((txp->offset + txp->size) > XEN_PAGE_SIZE)) {
Julien Grall68946152015-06-16 20:10:48 +0100303 netdev_err(queue->vif->dev, "Cross page boundary, txp->offset: %u, size: %u\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000304 txp->offset, txp->size);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100305 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000306 return -EINVAL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000307 }
Wei Liu59ccb4e2013-05-02 00:43:58 +0000308
309 more_data = txp->flags & XEN_NETTXF_more_data;
310
311 if (!drop_err)
312 txp++;
313
314 } while (more_data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000315
316 if (drop_err) {
Paul Durrant562abd32016-03-10 12:30:27 +0000317 xenvif_tx_err(queue, first, extra_count, cons + slots);
Wei Liu2810e5b2013-04-22 02:20:42 +0000318 return drop_err;
319 }
320
321 return slots;
Ian Campbellf942dc22011-03-15 00:06:18 +0000322}
323
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000324
325struct xenvif_tx_cb {
326 u16 pending_idx;
327};
328
329#define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb)
330
Wei Liue9ce7cb2014-06-04 10:30:42 +0100331static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +0000332 u16 pending_idx,
333 struct xen_netif_tx_request *txp,
334 unsigned int extra_count,
335 struct gnttab_map_grant_ref *mop)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000336{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100337 queue->pages_to_map[mop-queue->tx_map_ops] = queue->mmap_pages[pending_idx];
338 gnttab_set_map_op(mop, idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000339 GNTMAP_host_map | GNTMAP_readonly,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100340 txp->gref, queue->vif->domid);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000341
Wei Liue9ce7cb2014-06-04 10:30:42 +0100342 memcpy(&queue->pending_tx_info[pending_idx].req, txp,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000343 sizeof(*txp));
Paul Durrant562abd32016-03-10 12:30:27 +0000344 queue->pending_tx_info[pending_idx].extra_count = extra_count;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000345}
346
Zoltan Kisse3377f32014-03-06 21:48:29 +0000347static inline struct sk_buff *xenvif_alloc_skb(unsigned int size)
348{
349 struct sk_buff *skb =
350 alloc_skb(size + NET_SKB_PAD + NET_IP_ALIGN,
351 GFP_ATOMIC | __GFP_NOWARN);
352 if (unlikely(skb == NULL))
353 return NULL;
354
355 /* Packets passed to netif_rx() must have some headroom. */
356 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
357
358 /* Initialize it here to avoid later surprises */
359 skb_shinfo(skb)->destructor_arg = NULL;
360
361 return skb;
362}
363
Wei Liue9ce7cb2014-06-04 10:30:42 +0100364static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000365 struct sk_buff *skb,
366 struct xen_netif_tx_request *txp,
Ross Lagerwall2475b222015-08-03 15:38:03 +0100367 struct gnttab_map_grant_ref *gop,
368 unsigned int frag_overflow,
369 struct sk_buff *nskb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000370{
371 struct skb_shared_info *shinfo = skb_shinfo(skb);
372 skb_frag_t *frags = shinfo->frags;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000373 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss62bad312014-03-06 21:48:27 +0000374 int start;
375 pending_ring_idx_t index;
Ross Lagerwall2475b222015-08-03 15:38:03 +0100376 unsigned int nr_slots;
Wei Liu2810e5b2013-04-22 02:20:42 +0000377
Wei Liu2810e5b2013-04-22 02:20:42 +0000378 nr_slots = shinfo->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000379
380 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +0000381 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000382
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000383 for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots;
384 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100385 index = pending_index(queue->pending_cons++);
386 pending_idx = queue->pending_ring[index];
Paul Durrant562abd32016-03-10 12:30:27 +0000387 xenvif_tx_create_map_op(queue, pending_idx, txp, 0, gop);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000388 frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000389 }
390
Zoltan Kisse3377f32014-03-06 21:48:29 +0000391 if (frag_overflow) {
Zoltan Kisse3377f32014-03-06 21:48:29 +0000392
393 shinfo = skb_shinfo(nskb);
394 frags = shinfo->frags;
395
396 for (shinfo->nr_frags = 0; shinfo->nr_frags < frag_overflow;
397 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100398 index = pending_index(queue->pending_cons++);
399 pending_idx = queue->pending_ring[index];
Paul Durrant562abd32016-03-10 12:30:27 +0000400 xenvif_tx_create_map_op(queue, pending_idx, txp, 0,
401 gop);
Zoltan Kisse3377f32014-03-06 21:48:29 +0000402 frag_set_pending_idx(&frags[shinfo->nr_frags],
403 pending_idx);
404 }
405
406 skb_shinfo(skb)->frag_list = nskb;
407 }
Wei Liu2810e5b2013-04-22 02:20:42 +0000408
Ian Campbellf942dc22011-03-15 00:06:18 +0000409 return gop;
410}
411
Wei Liue9ce7cb2014-06-04 10:30:42 +0100412static inline void xenvif_grant_handle_set(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000413 u16 pending_idx,
414 grant_handle_t handle)
415{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100416 if (unlikely(queue->grant_tx_handle[pending_idx] !=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000417 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100418 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +0100419 "Trying to overwrite active handle! pending_idx: 0x%x\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000420 pending_idx);
421 BUG();
422 }
Wei Liue9ce7cb2014-06-04 10:30:42 +0100423 queue->grant_tx_handle[pending_idx] = handle;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000424}
425
Wei Liue9ce7cb2014-06-04 10:30:42 +0100426static inline void xenvif_grant_handle_reset(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000427 u16 pending_idx)
428{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100429 if (unlikely(queue->grant_tx_handle[pending_idx] ==
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000430 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100431 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +0100432 "Trying to unmap invalid handle! pending_idx: 0x%x\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000433 pending_idx);
434 BUG();
435 }
Wei Liue9ce7cb2014-06-04 10:30:42 +0100436 queue->grant_tx_handle[pending_idx] = NETBACK_INVALID_HANDLE;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000437}
438
Wei Liue9ce7cb2014-06-04 10:30:42 +0100439static int xenvif_tx_check_gop(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100440 struct sk_buff *skb,
Zoltan Kissbdab8272014-04-02 18:04:58 +0100441 struct gnttab_map_grant_ref **gopp_map,
442 struct gnttab_copy **gopp_copy)
Ian Campbellf942dc22011-03-15 00:06:18 +0000443{
Zoltan Kiss9074ce22014-04-02 18:04:57 +0100444 struct gnttab_map_grant_ref *gop_map = *gopp_map;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000445 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100446 /* This always points to the shinfo of the skb being checked, which
447 * could be either the first or the one on the frag_list
448 */
Ian Campbellf942dc22011-03-15 00:06:18 +0000449 struct skb_shared_info *shinfo = skb_shinfo(skb);
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100450 /* If this is non-NULL, we are currently checking the frag_list skb, and
451 * this points to the shinfo of the first one
452 */
453 struct skb_shared_info *first_shinfo = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000454 int nr_frags = shinfo->nr_frags;
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100455 const bool sharedslot = nr_frags &&
456 frag_get_pending_idx(&shinfo->frags[0]) == pending_idx;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100457 int i, err;
Ian Campbellf942dc22011-03-15 00:06:18 +0000458
459 /* Check status of header. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100460 err = (*gopp_copy)->status;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100461 if (unlikely(err)) {
462 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100463 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +0100464 "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +0100465 (*gopp_copy)->status,
466 pending_idx,
467 (*gopp_copy)->source.u.ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100468 /* The first frag might still have this slot mapped */
469 if (!sharedslot)
470 xenvif_idx_release(queue, pending_idx,
471 XEN_NETIF_RSP_ERROR);
Zoltan Kissbdab8272014-04-02 18:04:58 +0100472 }
Zoltan Kissd8cfbfc2014-07-18 19:08:05 +0100473 (*gopp_copy)++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000474
Zoltan Kisse3377f32014-03-06 21:48:29 +0000475check_frags:
Zoltan Kissbdab8272014-04-02 18:04:58 +0100476 for (i = 0; i < nr_frags; i++, gop_map++) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000477 int j, newerr;
Ian Campbellf942dc22011-03-15 00:06:18 +0000478
Ian Campbellea066ad2011-10-05 00:28:46 +0000479 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000480
481 /* Check error status: if okay then remember grant handle. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100482 newerr = gop_map->status;
Wei Liu2810e5b2013-04-22 02:20:42 +0000483
Ian Campbellf942dc22011-03-15 00:06:18 +0000484 if (likely(!newerr)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100485 xenvif_grant_handle_set(queue,
Zoltan Kiss9074ce22014-04-02 18:04:57 +0100486 pending_idx,
487 gop_map->handle);
Ian Campbellf942dc22011-03-15 00:06:18 +0000488 /* Had a previous error? Invalidate this fragment. */
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100489 if (unlikely(err)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100490 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100491 /* If the mapping of the first frag was OK, but
492 * the header's copy failed, and they are
493 * sharing a slot, send an error
494 */
495 if (i == 0 && sharedslot)
496 xenvif_idx_release(queue, pending_idx,
497 XEN_NETIF_RSP_ERROR);
498 else
499 xenvif_idx_release(queue, pending_idx,
500 XEN_NETIF_RSP_OKAY);
501 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000502 continue;
503 }
504
505 /* Error on this fragment: respond to client with an error. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100506 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100507 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +0100508 "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +0100509 i,
510 gop_map->status,
511 pending_idx,
512 gop_map->ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100513
Wei Liue9ce7cb2014-06-04 10:30:42 +0100514 xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +0000515
516 /* Not the first error? Preceding frags already invalidated. */
517 if (err)
518 continue;
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100519
520 /* First error: if the header haven't shared a slot with the
521 * first frag, release it as well.
522 */
523 if (!sharedslot)
524 xenvif_idx_release(queue,
525 XENVIF_TX_CB(skb)->pending_idx,
526 XEN_NETIF_RSP_OKAY);
527
528 /* Invalidate preceding fragments of this skb. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100529 for (j = 0; j < i; j++) {
Jan Beulich5ccb3ea2011-11-18 05:42:05 +0000530 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100531 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100532 xenvif_idx_release(queue, pending_idx,
533 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +0000534 }
535
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100536 /* And if we found the error while checking the frag_list, unmap
537 * the first skb's frags
538 */
539 if (first_shinfo) {
540 for (j = 0; j < first_shinfo->nr_frags; j++) {
541 pending_idx = frag_get_pending_idx(&first_shinfo->frags[j]);
542 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100543 xenvif_idx_release(queue, pending_idx,
544 XEN_NETIF_RSP_OKAY);
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100545 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000546 }
547
548 /* Remember the error: invalidate all subsequent fragments. */
549 err = newerr;
550 }
551
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100552 if (skb_has_frag_list(skb) && !first_shinfo) {
553 first_shinfo = skb_shinfo(skb);
554 shinfo = skb_shinfo(skb_shinfo(skb)->frag_list);
Zoltan Kisse3377f32014-03-06 21:48:29 +0000555 nr_frags = shinfo->nr_frags;
Zoltan Kisse3377f32014-03-06 21:48:29 +0000556
557 goto check_frags;
558 }
559
Zoltan Kissbdab8272014-04-02 18:04:58 +0100560 *gopp_map = gop_map;
Ian Campbellf942dc22011-03-15 00:06:18 +0000561 return err;
562}
563
Wei Liue9ce7cb2014-06-04 10:30:42 +0100564static void xenvif_fill_frags(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000565{
566 struct skb_shared_info *shinfo = skb_shinfo(skb);
567 int nr_frags = shinfo->nr_frags;
568 int i;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000569 u16 prev_pending_idx = INVALID_PENDING_IDX;
570
Ian Campbellf942dc22011-03-15 00:06:18 +0000571 for (i = 0; i < nr_frags; i++) {
572 skb_frag_t *frag = shinfo->frags + i;
573 struct xen_netif_tx_request *txp;
Ian Campbellea066ad2011-10-05 00:28:46 +0000574 struct page *page;
575 u16 pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +0000576
Ian Campbellea066ad2011-10-05 00:28:46 +0000577 pending_idx = frag_get_pending_idx(frag);
Ian Campbellf942dc22011-03-15 00:06:18 +0000578
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000579 /* If this is not the first frag, chain it to the previous*/
Zoltan Kissbdab8272014-04-02 18:04:58 +0100580 if (prev_pending_idx == INVALID_PENDING_IDX)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000581 skb_shinfo(skb)->destructor_arg =
Wei Liue9ce7cb2014-06-04 10:30:42 +0100582 &callback_param(queue, pending_idx);
Zoltan Kissbdab8272014-04-02 18:04:58 +0100583 else
Wei Liue9ce7cb2014-06-04 10:30:42 +0100584 callback_param(queue, prev_pending_idx).ctx =
585 &callback_param(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000586
Wei Liue9ce7cb2014-06-04 10:30:42 +0100587 callback_param(queue, pending_idx).ctx = NULL;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000588 prev_pending_idx = pending_idx;
589
Wei Liue9ce7cb2014-06-04 10:30:42 +0100590 txp = &queue->pending_tx_info[pending_idx].req;
591 page = virt_to_page(idx_to_kaddr(queue, pending_idx));
Ian Campbellea066ad2011-10-05 00:28:46 +0000592 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
Ian Campbellf942dc22011-03-15 00:06:18 +0000593 skb->len += txp->size;
594 skb->data_len += txp->size;
595 skb->truesize += txp->size;
596
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000597 /* Take an extra reference to offset network stack's put_page */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100598 get_page(queue->mmap_pages[pending_idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000599 }
600}
601
Wei Liue9ce7cb2014-06-04 10:30:42 +0100602static int xenvif_get_extras(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +0000603 struct xen_netif_extra_info *extras,
604 unsigned int *extra_count,
605 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +0000606{
607 struct xen_netif_extra_info extra;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100608 RING_IDX cons = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000609
610 do {
611 if (unlikely(work_to_do-- <= 0)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100612 netdev_err(queue->vif->dev, "Missing extra info\n");
613 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000614 return -EBADR;
615 }
616
David Vrabel68a33bf2015-10-30 15:17:06 +0000617 RING_COPY_REQUEST(&queue->tx, cons, &extra);
Paul Durrant562abd32016-03-10 12:30:27 +0000618
619 queue->tx.req_cons = ++cons;
620 (*extra_count)++;
621
Ian Campbellf942dc22011-03-15 00:06:18 +0000622 if (unlikely(!extra.type ||
623 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100624 netdev_err(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +0000625 "Invalid extra type: %d\n", extra.type);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100626 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000627 return -EINVAL;
628 }
629
630 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
Ian Campbellf942dc22011-03-15 00:06:18 +0000631 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
632
633 return work_to_do;
634}
635
Wei Liu73764192013-08-26 12:59:39 +0100636static int xenvif_set_skb_gso(struct xenvif *vif,
637 struct sk_buff *skb,
638 struct xen_netif_extra_info *gso)
Ian Campbellf942dc22011-03-15 00:06:18 +0000639{
640 if (!gso->u.gso.size) {
Ian Campbell488562862013-02-06 23:41:35 +0000641 netdev_err(vif->dev, "GSO size must not be zero.\n");
Wei Liu73764192013-08-26 12:59:39 +0100642 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000643 return -EINVAL;
644 }
645
Paul Durranta9468582013-10-16 17:50:31 +0100646 switch (gso->u.gso.type) {
647 case XEN_NETIF_GSO_TYPE_TCPV4:
648 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
649 break;
650 case XEN_NETIF_GSO_TYPE_TCPV6:
651 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
652 break;
653 default:
Ian Campbell488562862013-02-06 23:41:35 +0000654 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
Wei Liu73764192013-08-26 12:59:39 +0100655 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000656 return -EINVAL;
657 }
658
659 skb_shinfo(skb)->gso_size = gso->u.gso.size;
Paul Durrantb89587a2013-12-17 11:44:35 +0000660 /* gso_segs will be calculated later */
Ian Campbellf942dc22011-03-15 00:06:18 +0000661
662 return 0;
663}
664
Wei Liue9ce7cb2014-06-04 10:30:42 +0100665static int checksum_setup(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000666{
Paul Durrant27216372014-01-09 10:02:47 +0000667 bool recalculate_partial_csum = false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000668
Paul Durrant2eba61d2013-10-16 17:50:29 +0100669 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
Ian Campbellf942dc22011-03-15 00:06:18 +0000670 * peers can fail to set NETRXF_csum_blank when sending a GSO
671 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
672 * recalculate the partial checksum.
673 */
674 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100675 queue->stats.rx_gso_checksum_fixup++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000676 skb->ip_summed = CHECKSUM_PARTIAL;
Paul Durrant27216372014-01-09 10:02:47 +0000677 recalculate_partial_csum = true;
Ian Campbellf942dc22011-03-15 00:06:18 +0000678 }
679
680 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
681 if (skb->ip_summed != CHECKSUM_PARTIAL)
682 return 0;
683
Paul Durrant27216372014-01-09 10:02:47 +0000684 return skb_checksum_setup(skb, recalculate_partial_csum);
Ian Campbellf942dc22011-03-15 00:06:18 +0000685}
686
Wei Liue9ce7cb2014-06-04 10:30:42 +0100687static bool tx_credit_exceeded(struct xenvif_queue *queue, unsigned size)
Ian Campbellf942dc22011-03-15 00:06:18 +0000688{
Wei Liu059dfa62013-10-28 12:07:57 +0000689 u64 now = get_jiffies_64();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100690 u64 next_credit = queue->credit_window_start +
691 msecs_to_jiffies(queue->credit_usec / 1000);
Ian Campbellf942dc22011-03-15 00:06:18 +0000692
693 /* Timer could already be pending in rare cases. */
Wei Liu816843a2017-06-21 10:21:22 +0100694 if (timer_pending(&queue->credit_timeout)) {
695 queue->rate_limited = true;
Ian Campbellf942dc22011-03-15 00:06:18 +0000696 return true;
Wei Liu816843a2017-06-21 10:21:22 +0100697 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000698
699 /* Passed the point where we can replenish credit? */
Wei Liu059dfa62013-10-28 12:07:57 +0000700 if (time_after_eq64(now, next_credit)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100701 queue->credit_window_start = now;
702 tx_add_credit(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000703 }
704
705 /* Still too big to send right now? Set a callback. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100706 if (size > queue->remaining_credit) {
707 queue->credit_timeout.data =
708 (unsigned long)queue;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100709 mod_timer(&queue->credit_timeout,
Ian Campbellf942dc22011-03-15 00:06:18 +0000710 next_credit);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100711 queue->credit_window_start = next_credit;
Wei Liu816843a2017-06-21 10:21:22 +0100712 queue->rate_limited = true;
Ian Campbellf942dc22011-03-15 00:06:18 +0000713
714 return true;
715 }
716
717 return false;
718}
719
Paul Durrant210c34d2015-09-02 17:58:36 +0100720/* No locking is required in xenvif_mcast_add/del() as they are
721 * only ever invoked from NAPI poll. An RCU list is used because
722 * xenvif_mcast_match() is called asynchronously, during start_xmit.
723 */
724
725static int xenvif_mcast_add(struct xenvif *vif, const u8 *addr)
726{
727 struct xenvif_mcast_addr *mcast;
728
729 if (vif->fe_mcast_count == XEN_NETBK_MCAST_MAX) {
730 if (net_ratelimit())
731 netdev_err(vif->dev,
732 "Too many multicast addresses\n");
733 return -ENOSPC;
734 }
735
736 mcast = kzalloc(sizeof(*mcast), GFP_ATOMIC);
737 if (!mcast)
738 return -ENOMEM;
739
740 ether_addr_copy(mcast->addr, addr);
741 list_add_tail_rcu(&mcast->entry, &vif->fe_mcast_addr);
742 vif->fe_mcast_count++;
743
744 return 0;
745}
746
747static void xenvif_mcast_del(struct xenvif *vif, const u8 *addr)
748{
749 struct xenvif_mcast_addr *mcast;
750
751 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
752 if (ether_addr_equal(addr, mcast->addr)) {
753 --vif->fe_mcast_count;
754 list_del_rcu(&mcast->entry);
755 kfree_rcu(mcast, rcu);
756 break;
757 }
758 }
759}
760
761bool xenvif_mcast_match(struct xenvif *vif, const u8 *addr)
762{
763 struct xenvif_mcast_addr *mcast;
764
765 rcu_read_lock();
766 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
767 if (ether_addr_equal(addr, mcast->addr)) {
768 rcu_read_unlock();
769 return true;
770 }
771 }
772 rcu_read_unlock();
773
774 return false;
775}
776
777void xenvif_mcast_addr_list_free(struct xenvif *vif)
778{
779 /* No need for locking or RCU here. NAPI poll and TX queue
780 * are stopped.
781 */
782 while (!list_empty(&vif->fe_mcast_addr)) {
783 struct xenvif_mcast_addr *mcast;
784
785 mcast = list_first_entry(&vif->fe_mcast_addr,
786 struct xenvif_mcast_addr,
787 entry);
788 --vif->fe_mcast_count;
789 list_del(&mcast->entry);
790 kfree(mcast);
791 }
792}
793
Wei Liue9ce7cb2014-06-04 10:30:42 +0100794static void xenvif_tx_build_gops(struct xenvif_queue *queue,
Zoltan Kissbdab8272014-04-02 18:04:58 +0100795 int budget,
796 unsigned *copy_ops,
797 unsigned *map_ops)
Ian Campbellf942dc22011-03-15 00:06:18 +0000798{
Ross Lagerwall2475b222015-08-03 15:38:03 +0100799 struct gnttab_map_grant_ref *gop = queue->tx_map_ops;
800 struct sk_buff *skb, *nskb;
Ian Campbellf942dc22011-03-15 00:06:18 +0000801 int ret;
Ross Lagerwall2475b222015-08-03 15:38:03 +0100802 unsigned int frag_overflow;
Ian Campbellf942dc22011-03-15 00:06:18 +0000803
Wei Liue9ce7cb2014-06-04 10:30:42 +0100804 while (skb_queue_len(&queue->tx_queue) < budget) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000805 struct xen_netif_tx_request txreq;
Wei Liu37641492013-05-02 00:43:59 +0000806 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
Ian Campbellf942dc22011-03-15 00:06:18 +0000807 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
Paul Durrant562abd32016-03-10 12:30:27 +0000808 unsigned int extra_count;
Ian Campbellf942dc22011-03-15 00:06:18 +0000809 u16 pending_idx;
810 RING_IDX idx;
811 int work_to_do;
812 unsigned int data_len;
813 pending_ring_idx_t index;
814
Wei Liue9ce7cb2014-06-04 10:30:42 +0100815 if (queue->tx.sring->req_prod - queue->tx.req_cons >
Ian Campbell488562862013-02-06 23:41:35 +0000816 XEN_NETIF_TX_RING_SIZE) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100817 netdev_err(queue->vif->dev,
Ian Campbell488562862013-02-06 23:41:35 +0000818 "Impossible number of requests. "
819 "req_prod %d, req_cons %d, size %ld\n",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100820 queue->tx.sring->req_prod, queue->tx.req_cons,
Ian Campbell488562862013-02-06 23:41:35 +0000821 XEN_NETIF_TX_RING_SIZE);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100822 xenvif_fatal_tx_err(queue->vif);
Wei Liue9d8b2c2014-04-01 12:46:12 +0100823 break;
Ian Campbell488562862013-02-06 23:41:35 +0000824 }
825
Wei Liue9ce7cb2014-06-04 10:30:42 +0100826 work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
Wei Liub3f980b2013-08-26 12:59:38 +0100827 if (!work_to_do)
828 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000829
Wei Liue9ce7cb2014-06-04 10:30:42 +0100830 idx = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000831 rmb(); /* Ensure that we see the request before we copy it. */
David Vrabel68a33bf2015-10-30 15:17:06 +0000832 RING_COPY_REQUEST(&queue->tx, idx, &txreq);
Ian Campbellf942dc22011-03-15 00:06:18 +0000833
834 /* Credit-based scheduling. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100835 if (txreq.size > queue->remaining_credit &&
836 tx_credit_exceeded(queue, txreq.size))
Wei Liub3f980b2013-08-26 12:59:38 +0100837 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000838
Wei Liue9ce7cb2014-06-04 10:30:42 +0100839 queue->remaining_credit -= txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000840
841 work_to_do--;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100842 queue->tx.req_cons = ++idx;
Ian Campbellf942dc22011-03-15 00:06:18 +0000843
844 memset(extras, 0, sizeof(extras));
Paul Durrant562abd32016-03-10 12:30:27 +0000845 extra_count = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000846 if (txreq.flags & XEN_NETTXF_extra_info) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100847 work_to_do = xenvif_get_extras(queue, extras,
Paul Durrant562abd32016-03-10 12:30:27 +0000848 &extra_count,
Wei Liu73764192013-08-26 12:59:39 +0100849 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100850 idx = queue->tx.req_cons;
Ian Campbell488562862013-02-06 23:41:35 +0000851 if (unlikely(work_to_do < 0))
Wei Liub3f980b2013-08-26 12:59:38 +0100852 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000853 }
854
Paul Durrant210c34d2015-09-02 17:58:36 +0100855 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1].type) {
856 struct xen_netif_extra_info *extra;
857
858 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1];
859 ret = xenvif_mcast_add(queue->vif, extra->u.mcast.addr);
860
Paul Durrant562abd32016-03-10 12:30:27 +0000861 make_tx_response(queue, &txreq, extra_count,
Paul Durrant210c34d2015-09-02 17:58:36 +0100862 (ret == 0) ?
863 XEN_NETIF_RSP_OKAY :
864 XEN_NETIF_RSP_ERROR);
865 push_tx_responses(queue);
866 continue;
867 }
868
869 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1].type) {
870 struct xen_netif_extra_info *extra;
871
872 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1];
873 xenvif_mcast_del(queue->vif, extra->u.mcast.addr);
874
Paul Durrant562abd32016-03-10 12:30:27 +0000875 make_tx_response(queue, &txreq, extra_count,
876 XEN_NETIF_RSP_OKAY);
Paul Durrant210c34d2015-09-02 17:58:36 +0100877 push_tx_responses(queue);
878 continue;
879 }
880
Paul Durrant562abd32016-03-10 12:30:27 +0000881 ret = xenvif_count_requests(queue, &txreq, extra_count,
882 txfrags, work_to_do);
Ian Campbell488562862013-02-06 23:41:35 +0000883 if (unlikely(ret < 0))
Wei Liub3f980b2013-08-26 12:59:38 +0100884 break;
Ian Campbell488562862013-02-06 23:41:35 +0000885
Ian Campbellf942dc22011-03-15 00:06:18 +0000886 idx += ret;
887
888 if (unlikely(txreq.size < ETH_HLEN)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100889 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +0000890 "Bad packet size: %d\n", txreq.size);
Paul Durrant562abd32016-03-10 12:30:27 +0000891 xenvif_tx_err(queue, &txreq, extra_count, idx);
Wei Liub3f980b2013-08-26 12:59:38 +0100892 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000893 }
894
895 /* No crossing a page as the payload mustn't fragment. */
Julien Gralld0089e82015-05-05 13:15:29 +0100896 if (unlikely((txreq.offset + txreq.size) > XEN_PAGE_SIZE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100897 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +0100898 "txreq.offset: %u, size: %u, end: %lu\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000899 txreq.offset, txreq.size,
Julien Gralld0089e82015-05-05 13:15:29 +0100900 (unsigned long)(txreq.offset&~XEN_PAGE_MASK) + txreq.size);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100901 xenvif_fatal_tx_err(queue->vif);
Wei Liub3f980b2013-08-26 12:59:38 +0100902 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000903 }
904
Wei Liue9ce7cb2014-06-04 10:30:42 +0100905 index = pending_index(queue->pending_cons);
906 pending_idx = queue->pending_ring[index];
Ian Campbellf942dc22011-03-15 00:06:18 +0000907
Malcolm Crossley7e5d7752014-11-05 10:50:22 +0000908 data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN &&
Wei Liu37641492013-05-02 00:43:59 +0000909 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
Malcolm Crossley7e5d7752014-11-05 10:50:22 +0000910 XEN_NETBACK_TX_COPY_LEN : txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000911
Zoltan Kisse3377f32014-03-06 21:48:29 +0000912 skb = xenvif_alloc_skb(data_len);
Ian Campbellf942dc22011-03-15 00:06:18 +0000913 if (unlikely(skb == NULL)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100914 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +0000915 "Can't allocate a skb in start_xmit.\n");
Paul Durrant562abd32016-03-10 12:30:27 +0000916 xenvif_tx_err(queue, &txreq, extra_count, idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000917 break;
918 }
919
Ross Lagerwall2475b222015-08-03 15:38:03 +0100920 skb_shinfo(skb)->nr_frags = ret;
921 if (data_len < txreq.size)
922 skb_shinfo(skb)->nr_frags++;
923 /* At this point shinfo->nr_frags is in fact the number of
924 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
925 */
926 frag_overflow = 0;
927 nskb = NULL;
928 if (skb_shinfo(skb)->nr_frags > MAX_SKB_FRAGS) {
929 frag_overflow = skb_shinfo(skb)->nr_frags - MAX_SKB_FRAGS;
930 BUG_ON(frag_overflow > MAX_SKB_FRAGS);
931 skb_shinfo(skb)->nr_frags = MAX_SKB_FRAGS;
932 nskb = xenvif_alloc_skb(0);
933 if (unlikely(nskb == NULL)) {
Ross Lagerwall47fd4df2019-08-05 16:34:34 +0100934 skb_shinfo(skb)->nr_frags = 0;
Ross Lagerwall2475b222015-08-03 15:38:03 +0100935 kfree_skb(skb);
Paul Durrant562abd32016-03-10 12:30:27 +0000936 xenvif_tx_err(queue, &txreq, extra_count, idx);
Ross Lagerwall2475b222015-08-03 15:38:03 +0100937 if (net_ratelimit())
938 netdev_err(queue->vif->dev,
939 "Can't allocate the frag_list skb.\n");
940 break;
941 }
942 }
943
Ian Campbellf942dc22011-03-15 00:06:18 +0000944 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
945 struct xen_netif_extra_info *gso;
946 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
947
Wei Liue9ce7cb2014-06-04 10:30:42 +0100948 if (xenvif_set_skb_gso(queue->vif, skb, gso)) {
Wei Liu73764192013-08-26 12:59:39 +0100949 /* Failure in xenvif_set_skb_gso is fatal. */
Ross Lagerwall47fd4df2019-08-05 16:34:34 +0100950 skb_shinfo(skb)->nr_frags = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000951 kfree_skb(skb);
Ross Lagerwall2475b222015-08-03 15:38:03 +0100952 kfree_skb(nskb);
Wei Liub3f980b2013-08-26 12:59:38 +0100953 break;
Ian Campbellf942dc22011-03-15 00:06:18 +0000954 }
955 }
956
Paul Durrantc2d09fd2016-05-13 09:37:29 +0100957 if (extras[XEN_NETIF_EXTRA_TYPE_HASH - 1].type) {
958 struct xen_netif_extra_info *extra;
959 enum pkt_hash_types type = PKT_HASH_TYPE_NONE;
960
961 extra = &extras[XEN_NETIF_EXTRA_TYPE_HASH - 1];
962
963 switch (extra->u.hash.type) {
964 case _XEN_NETIF_CTRL_HASH_TYPE_IPV4:
965 case _XEN_NETIF_CTRL_HASH_TYPE_IPV6:
966 type = PKT_HASH_TYPE_L3;
967 break;
968
969 case _XEN_NETIF_CTRL_HASH_TYPE_IPV4_TCP:
970 case _XEN_NETIF_CTRL_HASH_TYPE_IPV6_TCP:
971 type = PKT_HASH_TYPE_L4;
972 break;
973
974 default:
975 break;
976 }
977
978 if (type != PKT_HASH_TYPE_NONE)
979 skb_set_hash(skb,
980 *(u32 *)extra->u.hash.value,
981 type);
982 }
983
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000984 XENVIF_TX_CB(skb)->pending_idx = pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +0000985
986 __skb_put(skb, data_len);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100987 queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref;
988 queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid;
989 queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100990
Wei Liue9ce7cb2014-06-04 10:30:42 +0100991 queue->tx_copy_ops[*copy_ops].dest.u.gmfn =
Julien Grall0df4f262015-08-07 17:34:37 +0100992 virt_to_gfn(skb->data);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100993 queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF;
994 queue->tx_copy_ops[*copy_ops].dest.offset =
Julien Gralld0089e82015-05-05 13:15:29 +0100995 offset_in_page(skb->data) & ~XEN_PAGE_MASK;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100996
Wei Liue9ce7cb2014-06-04 10:30:42 +0100997 queue->tx_copy_ops[*copy_ops].len = data_len;
998 queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100999
1000 (*copy_ops)++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001001
Ian Campbellf942dc22011-03-15 00:06:18 +00001002 if (data_len < txreq.size) {
Ian Campbellea066ad2011-10-05 00:28:46 +00001003 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1004 pending_idx);
Paul Durrant562abd32016-03-10 12:30:27 +00001005 xenvif_tx_create_map_op(queue, pending_idx, &txreq,
1006 extra_count, gop);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001007 gop++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001008 } else {
Ian Campbellea066ad2011-10-05 00:28:46 +00001009 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1010 INVALID_PENDING_IDX);
Paul Durrant562abd32016-03-10 12:30:27 +00001011 memcpy(&queue->pending_tx_info[pending_idx].req,
1012 &txreq, sizeof(txreq));
1013 queue->pending_tx_info[pending_idx].extra_count =
1014 extra_count;
Ian Campbellf942dc22011-03-15 00:06:18 +00001015 }
1016
Wei Liue9ce7cb2014-06-04 10:30:42 +01001017 queue->pending_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001018
Ross Lagerwall2475b222015-08-03 15:38:03 +01001019 gop = xenvif_get_requests(queue, skb, txfrags, gop,
1020 frag_overflow, nskb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001021
Wei Liue9ce7cb2014-06-04 10:30:42 +01001022 __skb_queue_tail(&queue->tx_queue, skb);
Annie Li1e0b6ea2012-06-27 00:46:58 +00001023
Wei Liue9ce7cb2014-06-04 10:30:42 +01001024 queue->tx.req_cons = idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001025
Wei Liue9ce7cb2014-06-04 10:30:42 +01001026 if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) ||
1027 (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001028 break;
1029 }
1030
Wei Liue9ce7cb2014-06-04 10:30:42 +01001031 (*map_ops) = gop - queue->tx_map_ops;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001032 return;
Ian Campbellf942dc22011-03-15 00:06:18 +00001033}
1034
Zoltan Kisse3377f32014-03-06 21:48:29 +00001035/* Consolidate skb with a frag_list into a brand new one with local pages on
1036 * frags. Returns 0 or -ENOMEM if can't allocate new pages.
1037 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001038static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *skb)
Zoltan Kisse3377f32014-03-06 21:48:29 +00001039{
1040 unsigned int offset = skb_headlen(skb);
1041 skb_frag_t frags[MAX_SKB_FRAGS];
David Vrabel49d99912015-03-04 11:14:47 +00001042 int i, f;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001043 struct ubuf_info *uarg;
1044 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1045
Wei Liue9ce7cb2014-06-04 10:30:42 +01001046 queue->stats.tx_zerocopy_sent += 2;
1047 queue->stats.tx_frag_overflow++;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001048
Wei Liue9ce7cb2014-06-04 10:30:42 +01001049 xenvif_fill_frags(queue, nskb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001050 /* Subtract frags size, we will correct it later */
1051 skb->truesize -= skb->data_len;
1052 skb->len += nskb->len;
1053 skb->data_len += nskb->len;
1054
1055 /* create a brand new frags array and coalesce there */
1056 for (i = 0; offset < skb->len; i++) {
1057 struct page *page;
1058 unsigned int len;
1059
1060 BUG_ON(i >= MAX_SKB_FRAGS);
Zoltan Kiss44cc8ed2014-10-28 15:29:31 +00001061 page = alloc_page(GFP_ATOMIC);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001062 if (!page) {
1063 int j;
1064 skb->truesize += skb->data_len;
1065 for (j = 0; j < i; j++)
1066 put_page(frags[j].page.p);
1067 return -ENOMEM;
1068 }
1069
1070 if (offset + PAGE_SIZE < skb->len)
1071 len = PAGE_SIZE;
1072 else
1073 len = skb->len - offset;
1074 if (skb_copy_bits(skb, offset, page_address(page), len))
1075 BUG();
1076
1077 offset += len;
1078 frags[i].page.p = page;
1079 frags[i].page_offset = 0;
1080 skb_frag_size_set(&frags[i], len);
1081 }
David Vrabel49d99912015-03-04 11:14:47 +00001082
1083 /* Release all the original (foreign) frags. */
1084 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1085 skb_frag_unref(skb, f);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001086 uarg = skb_shinfo(skb)->destructor_arg;
Wei Liua64bd932014-08-12 11:48:07 +01001087 /* increase inflight counter to offset decrement in callback */
1088 atomic_inc(&queue->inflight_packets);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001089 uarg->callback(uarg, true);
1090 skb_shinfo(skb)->destructor_arg = NULL;
1091
David Vrabelb0c21ba2015-03-04 11:14:48 +00001092 /* Fill the skb with the new (local) frags. */
1093 memcpy(skb_shinfo(skb)->frags, frags, i * sizeof(skb_frag_t));
1094 skb_shinfo(skb)->nr_frags = i;
1095 skb->truesize += i * PAGE_SIZE;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001096
1097 return 0;
1098}
Ian Campbellf942dc22011-03-15 00:06:18 +00001099
Wei Liue9ce7cb2014-06-04 10:30:42 +01001100static int xenvif_tx_submit(struct xenvif_queue *queue)
Wei Liub3f980b2013-08-26 12:59:38 +01001101{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001102 struct gnttab_map_grant_ref *gop_map = queue->tx_map_ops;
1103 struct gnttab_copy *gop_copy = queue->tx_copy_ops;
Wei Liub3f980b2013-08-26 12:59:38 +01001104 struct sk_buff *skb;
1105 int work_done = 0;
1106
Wei Liue9ce7cb2014-06-04 10:30:42 +01001107 while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001108 struct xen_netif_tx_request *txp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001109 u16 pending_idx;
1110 unsigned data_len;
1111
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001112 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001113 txp = &queue->pending_tx_info[pending_idx].req;
Ian Campbellf942dc22011-03-15 00:06:18 +00001114
1115 /* Check the remap error code. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001116 if (unlikely(xenvif_tx_check_gop(queue, skb, &gop_map, &gop_copy))) {
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001117 /* If there was an error, xenvif_tx_check_gop is
1118 * expected to release all the frags which were mapped,
1119 * so kfree_skb shouldn't do it again
1120 */
Ian Campbellf942dc22011-03-15 00:06:18 +00001121 skb_shinfo(skb)->nr_frags = 0;
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001122 if (skb_has_frag_list(skb)) {
1123 struct sk_buff *nskb =
1124 skb_shinfo(skb)->frag_list;
1125 skb_shinfo(nskb)->nr_frags = 0;
1126 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001127 kfree_skb(skb);
1128 continue;
1129 }
1130
1131 data_len = skb->len;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001132 callback_param(queue, pending_idx).ctx = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001133 if (data_len < txp->size) {
1134 /* Append the packet payload as a fragment. */
1135 txp->offset += data_len;
1136 txp->size -= data_len;
1137 } else {
1138 /* Schedule a response immediately. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001139 xenvif_idx_release(queue, pending_idx,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001140 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001141 }
1142
1143 if (txp->flags & XEN_NETTXF_csum_blank)
1144 skb->ip_summed = CHECKSUM_PARTIAL;
1145 else if (txp->flags & XEN_NETTXF_data_validated)
1146 skb->ip_summed = CHECKSUM_UNNECESSARY;
1147
Wei Liue9ce7cb2014-06-04 10:30:42 +01001148 xenvif_fill_frags(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001149
Zoltan Kisse3377f32014-03-06 21:48:29 +00001150 if (unlikely(skb_has_frag_list(skb))) {
Igor Druzhinin07745892019-02-28 12:48:03 +00001151 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1152 xenvif_skb_zerocopy_prepare(queue, nskb);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001153 if (xenvif_handle_frag_list(queue, skb)) {
Zoltan Kisse3377f32014-03-06 21:48:29 +00001154 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001155 netdev_err(queue->vif->dev,
Zoltan Kisse3377f32014-03-06 21:48:29 +00001156 "Not enough memory to consolidate frag_list!\n");
Wei Liua64bd932014-08-12 11:48:07 +01001157 xenvif_skb_zerocopy_prepare(queue, skb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001158 kfree_skb(skb);
1159 continue;
1160 }
Igor Druzhinin07745892019-02-28 12:48:03 +00001161 /* Copied all the bits from the frag list -- free it. */
1162 skb_frag_list_init(skb);
1163 kfree_skb(nskb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001164 }
1165
Wei Liue9ce7cb2014-06-04 10:30:42 +01001166 skb->dev = queue->vif->dev;
Ian Campbellf942dc22011-03-15 00:06:18 +00001167 skb->protocol = eth_type_trans(skb, skb->dev);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001168 skb_reset_network_header(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001169
Wei Liue9ce7cb2014-06-04 10:30:42 +01001170 if (checksum_setup(queue, skb)) {
1171 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001172 "Can't setup checksum in net_tx_action\n");
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001173 /* We have to set this flag to trigger the callback */
1174 if (skb_shinfo(skb)->destructor_arg)
Wei Liua64bd932014-08-12 11:48:07 +01001175 xenvif_skb_zerocopy_prepare(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001176 kfree_skb(skb);
1177 continue;
1178 }
1179
Jason Wang40893fd2013-03-26 23:11:22 +00001180 skb_probe_transport_header(skb, 0);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001181
Paul Durrantb89587a2013-12-17 11:44:35 +00001182 /* If the packet is GSO then we will have just set up the
1183 * transport header offset in checksum_setup so it's now
1184 * straightforward to calculate gso_segs.
1185 */
1186 if (skb_is_gso(skb)) {
1187 int mss = skb_shinfo(skb)->gso_size;
1188 int hdrlen = skb_transport_header(skb) -
1189 skb_mac_header(skb) +
1190 tcp_hdrlen(skb);
1191
1192 skb_shinfo(skb)->gso_segs =
1193 DIV_ROUND_UP(skb->len - hdrlen, mss);
1194 }
1195
Wei Liue9ce7cb2014-06-04 10:30:42 +01001196 queue->stats.rx_bytes += skb->len;
1197 queue->stats.rx_packets++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001198
Wei Liub3f980b2013-08-26 12:59:38 +01001199 work_done++;
1200
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001201 /* Set this flag right before netif_receive_skb, otherwise
1202 * someone might think this packet already left netback, and
1203 * do a skb_copy_ubufs while we are still in control of the
1204 * skb. E.g. the __pskb_pull_tail earlier can do such thing.
1205 */
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001206 if (skb_shinfo(skb)->destructor_arg) {
Wei Liua64bd932014-08-12 11:48:07 +01001207 xenvif_skb_zerocopy_prepare(queue, skb);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001208 queue->stats.tx_zerocopy_sent++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001209 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001210
Wei Liub3f980b2013-08-26 12:59:38 +01001211 netif_receive_skb(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001212 }
Wei Liub3f980b2013-08-26 12:59:38 +01001213
1214 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001215}
1216
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001217void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success)
1218{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001219 unsigned long flags;
1220 pending_ring_idx_t index;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001221 struct xenvif_queue *queue = ubuf_to_queue(ubuf);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001222
1223 /* This is the only place where we grab this lock, to protect callbacks
1224 * from each other.
1225 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001226 spin_lock_irqsave(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001227 do {
1228 u16 pending_idx = ubuf->desc;
1229 ubuf = (struct ubuf_info *) ubuf->ctx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001230 BUG_ON(queue->dealloc_prod - queue->dealloc_cons >=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001231 MAX_PENDING_REQS);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001232 index = pending_index(queue->dealloc_prod);
1233 queue->dealloc_ring[index] = pending_idx;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001234 /* Sync with xenvif_tx_dealloc_action:
1235 * insert idx then incr producer.
1236 */
1237 smp_wmb();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001238 queue->dealloc_prod++;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001239 } while (ubuf);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001240 spin_unlock_irqrestore(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001241
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001242 if (likely(zerocopy_success))
Wei Liue9ce7cb2014-06-04 10:30:42 +01001243 queue->stats.tx_zerocopy_success++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001244 else
Wei Liue9ce7cb2014-06-04 10:30:42 +01001245 queue->stats.tx_zerocopy_fail++;
Wei Liua64bd932014-08-12 11:48:07 +01001246 xenvif_skb_zerocopy_complete(queue);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001247}
1248
Wei Liue9ce7cb2014-06-04 10:30:42 +01001249static inline void xenvif_tx_dealloc_action(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001250{
1251 struct gnttab_unmap_grant_ref *gop;
1252 pending_ring_idx_t dc, dp;
1253 u16 pending_idx, pending_idx_release[MAX_PENDING_REQS];
1254 unsigned int i = 0;
1255
Wei Liue9ce7cb2014-06-04 10:30:42 +01001256 dc = queue->dealloc_cons;
1257 gop = queue->tx_unmap_ops;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001258
1259 /* Free up any grants we have finished using */
1260 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001261 dp = queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001262
1263 /* Ensure we see all indices enqueued by all
1264 * xenvif_zerocopy_callback().
1265 */
1266 smp_rmb();
1267
1268 while (dc != dp) {
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001269 BUG_ON(gop - queue->tx_unmap_ops >= MAX_PENDING_REQS);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001270 pending_idx =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001271 queue->dealloc_ring[pending_index(dc++)];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001272
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001273 pending_idx_release[gop - queue->tx_unmap_ops] =
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001274 pending_idx;
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001275 queue->pages_to_unmap[gop - queue->tx_unmap_ops] =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001276 queue->mmap_pages[pending_idx];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001277 gnttab_set_unmap_op(gop,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001278 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001279 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001280 queue->grant_tx_handle[pending_idx]);
1281 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001282 ++gop;
1283 }
1284
Wei Liue9ce7cb2014-06-04 10:30:42 +01001285 } while (dp != queue->dealloc_prod);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001286
Wei Liue9ce7cb2014-06-04 10:30:42 +01001287 queue->dealloc_cons = dc;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001288
Wei Liue9ce7cb2014-06-04 10:30:42 +01001289 if (gop - queue->tx_unmap_ops > 0) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001290 int ret;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001291 ret = gnttab_unmap_refs(queue->tx_unmap_ops,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001292 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001293 queue->pages_to_unmap,
1294 gop - queue->tx_unmap_ops);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001295 if (ret) {
Julien Grall68946152015-06-16 20:10:48 +01001296 netdev_err(queue->vif->dev, "Unmap fail: nr_ops %tu ret %d\n",
Wei Liue9ce7cb2014-06-04 10:30:42 +01001297 gop - queue->tx_unmap_ops, ret);
1298 for (i = 0; i < gop - queue->tx_unmap_ops; ++i) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001299 if (gop[i].status != GNTST_okay)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001300 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +01001301 " host_addr: 0x%llx handle: 0x%x status: %d\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001302 gop[i].host_addr,
1303 gop[i].handle,
1304 gop[i].status);
1305 }
1306 BUG();
1307 }
1308 }
1309
Wei Liue9ce7cb2014-06-04 10:30:42 +01001310 for (i = 0; i < gop - queue->tx_unmap_ops; ++i)
1311 xenvif_idx_release(queue, pending_idx_release[i],
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001312 XEN_NETIF_RSP_OKAY);
1313}
1314
1315
Ian Campbellf942dc22011-03-15 00:06:18 +00001316/* Called after netfront has transmitted */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001317int xenvif_tx_action(struct xenvif_queue *queue, int budget)
Ian Campbellf942dc22011-03-15 00:06:18 +00001318{
Zoltan Kissbdab8272014-04-02 18:04:58 +01001319 unsigned nr_mops, nr_cops = 0;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001320 int work_done, ret;
Ian Campbellf942dc22011-03-15 00:06:18 +00001321
Wei Liue9ce7cb2014-06-04 10:30:42 +01001322 if (unlikely(!tx_work_todo(queue)))
Wei Liub3f980b2013-08-26 12:59:38 +01001323 return 0;
1324
Wei Liue9ce7cb2014-06-04 10:30:42 +01001325 xenvif_tx_build_gops(queue, budget, &nr_cops, &nr_mops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001326
Zoltan Kissbdab8272014-04-02 18:04:58 +01001327 if (nr_cops == 0)
Wei Liub3f980b2013-08-26 12:59:38 +01001328 return 0;
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +00001329
Wei Liue9ce7cb2014-06-04 10:30:42 +01001330 gnttab_batch_copy(queue->tx_copy_ops, nr_cops);
Jan Beulicha0e570a2021-02-15 08:55:31 +01001331 if (nr_mops != 0)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001332 ret = gnttab_map_refs(queue->tx_map_ops,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001333 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001334 queue->pages_to_map,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001335 nr_mops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001336
Wei Liue9ce7cb2014-06-04 10:30:42 +01001337 work_done = xenvif_tx_submit(queue);
Wei Liub3f980b2013-08-26 12:59:38 +01001338
1339 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001340}
1341
Wei Liue9ce7cb2014-06-04 10:30:42 +01001342static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +01001343 u8 status)
Ian Campbellf942dc22011-03-15 00:06:18 +00001344{
Ian Campbellf942dc22011-03-15 00:06:18 +00001345 struct pending_tx_info *pending_tx_info;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001346 pending_ring_idx_t index;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001347 unsigned long flags;
Wei Liu2810e5b2013-04-22 02:20:42 +00001348
Wei Liue9ce7cb2014-06-04 10:30:42 +01001349 pending_tx_info = &queue->pending_tx_info[pending_idx];
David Vrabel7fbb9d82015-02-24 11:17:59 +00001350
Wei Liue9ce7cb2014-06-04 10:30:42 +01001351 spin_lock_irqsave(&queue->response_lock, flags);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001352
Paul Durrant562abd32016-03-10 12:30:27 +00001353 make_tx_response(queue, &pending_tx_info->req,
1354 pending_tx_info->extra_count, status);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001355
1356 /* Release the pending index before pusing the Tx response so
1357 * its available before a new Tx request is pushed by the
1358 * frontend.
1359 */
1360 index = pending_index(queue->pending_prod++);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001361 queue->pending_ring[index] = pending_idx;
David Vrabel7fbb9d82015-02-24 11:17:59 +00001362
David Vrabelc8a4d292015-03-11 15:27:59 +00001363 push_tx_responses(queue);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001364
Wei Liue9ce7cb2014-06-04 10:30:42 +01001365 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellf942dc22011-03-15 00:06:18 +00001366}
1367
Wei Liu2810e5b2013-04-22 02:20:42 +00001368
Wei Liue9ce7cb2014-06-04 10:30:42 +01001369static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001370 struct xen_netif_tx_request *txp,
Paul Durrant562abd32016-03-10 12:30:27 +00001371 unsigned int extra_count,
Ian Campbellf942dc22011-03-15 00:06:18 +00001372 s8 st)
1373{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001374 RING_IDX i = queue->tx.rsp_prod_pvt;
Ian Campbellf942dc22011-03-15 00:06:18 +00001375 struct xen_netif_tx_response *resp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001376
Wei Liue9ce7cb2014-06-04 10:30:42 +01001377 resp = RING_GET_RESPONSE(&queue->tx, i);
Ian Campbellf942dc22011-03-15 00:06:18 +00001378 resp->id = txp->id;
1379 resp->status = st;
1380
Paul Durrant562abd32016-03-10 12:30:27 +00001381 while (extra_count-- != 0)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001382 RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001383
Wei Liue9ce7cb2014-06-04 10:30:42 +01001384 queue->tx.rsp_prod_pvt = ++i;
Ian Campbellf942dc22011-03-15 00:06:18 +00001385}
1386
David Vrabelc8a4d292015-03-11 15:27:59 +00001387static void push_tx_responses(struct xenvif_queue *queue)
1388{
1389 int notify;
1390
1391 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify);
1392 if (notify)
1393 notify_remote_via_irq(queue->tx_irq);
1394}
1395
Wei Liue9ce7cb2014-06-04 10:30:42 +01001396void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001397{
1398 int ret;
1399 struct gnttab_unmap_grant_ref tx_unmap_op;
1400
1401 gnttab_set_unmap_op(&tx_unmap_op,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001402 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001403 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001404 queue->grant_tx_handle[pending_idx]);
1405 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001406
1407 ret = gnttab_unmap_refs(&tx_unmap_op, NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001408 &queue->mmap_pages[pending_idx], 1);
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001409 if (ret) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001410 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +01001411 "Unmap fail: ret: %d pending_idx: %d host_addr: %llx handle: 0x%x status: %d\n",
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001412 ret,
1413 pending_idx,
1414 tx_unmap_op.host_addr,
1415 tx_unmap_op.handle,
1416 tx_unmap_op.status);
1417 BUG();
1418 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001419}
1420
Wei Liue9ce7cb2014-06-04 10:30:42 +01001421static inline int tx_work_todo(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001422{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001423 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&queue->tx)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001424 return 1;
1425
1426 return 0;
1427}
1428
Wei Liue9ce7cb2014-06-04 10:30:42 +01001429static inline bool tx_dealloc_work_todo(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001430{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001431 return queue->dealloc_cons != queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001432}
1433
Paul Durrant4e15ee22016-05-13 09:37:26 +01001434void xenvif_unmap_frontend_data_rings(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001435{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001436 if (queue->tx.sring)
1437 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1438 queue->tx.sring);
1439 if (queue->rx.sring)
1440 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1441 queue->rx.sring);
Ian Campbellf942dc22011-03-15 00:06:18 +00001442}
1443
Paul Durrant4e15ee22016-05-13 09:37:26 +01001444int xenvif_map_frontend_data_rings(struct xenvif_queue *queue,
1445 grant_ref_t tx_ring_ref,
1446 grant_ref_t rx_ring_ref)
Ian Campbellf942dc22011-03-15 00:06:18 +00001447{
David Vrabelc9d63692011-09-29 16:53:31 +01001448 void *addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001449 struct xen_netif_tx_sring *txs;
1450 struct xen_netif_rx_sring *rxs;
1451
1452 int err = -ENOMEM;
1453
Wei Liue9ce7cb2014-06-04 10:30:42 +01001454 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
Wei Liuccc9d902015-04-03 14:44:59 +08001455 &tx_ring_ref, 1, &addr);
David Vrabelc9d63692011-09-29 16:53:31 +01001456 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001457 goto err;
1458
David Vrabelc9d63692011-09-29 16:53:31 +01001459 txs = (struct xen_netif_tx_sring *)addr;
Julien Gralld0089e82015-05-05 13:15:29 +01001460 BACK_RING_INIT(&queue->tx, txs, XEN_PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001461
Wei Liue9ce7cb2014-06-04 10:30:42 +01001462 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
Wei Liuccc9d902015-04-03 14:44:59 +08001463 &rx_ring_ref, 1, &addr);
David Vrabelc9d63692011-09-29 16:53:31 +01001464 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001465 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001466
David Vrabelc9d63692011-09-29 16:53:31 +01001467 rxs = (struct xen_netif_rx_sring *)addr;
Julien Gralld0089e82015-05-05 13:15:29 +01001468 BACK_RING_INIT(&queue->rx, rxs, XEN_PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001469
1470 return 0;
1471
1472err:
Paul Durrant4e15ee22016-05-13 09:37:26 +01001473 xenvif_unmap_frontend_data_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001474 return err;
1475}
1476
Wei Liua64bd932014-08-12 11:48:07 +01001477static bool xenvif_dealloc_kthread_should_stop(struct xenvif_queue *queue)
1478{
1479 /* Dealloc thread must remain running until all inflight
1480 * packets complete.
1481 */
1482 return kthread_should_stop() &&
1483 !atomic_read(&queue->inflight_packets);
1484}
1485
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001486int xenvif_dealloc_kthread(void *data)
1487{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001488 struct xenvif_queue *queue = data;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001489
Wei Liua64bd932014-08-12 11:48:07 +01001490 for (;;) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001491 wait_event_interruptible(queue->dealloc_wq,
1492 tx_dealloc_work_todo(queue) ||
Wei Liua64bd932014-08-12 11:48:07 +01001493 xenvif_dealloc_kthread_should_stop(queue));
1494 if (xenvif_dealloc_kthread_should_stop(queue))
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001495 break;
1496
Wei Liue9ce7cb2014-06-04 10:30:42 +01001497 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001498 cond_resched();
1499 }
1500
1501 /* Unmap anything remaining*/
Wei Liue9ce7cb2014-06-04 10:30:42 +01001502 if (tx_dealloc_work_todo(queue))
1503 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001504
1505 return 0;
1506}
1507
Paul Durrant4e15ee22016-05-13 09:37:26 +01001508static void make_ctrl_response(struct xenvif *vif,
1509 const struct xen_netif_ctrl_request *req,
1510 u32 status, u32 data)
1511{
1512 RING_IDX idx = vif->ctrl.rsp_prod_pvt;
1513 struct xen_netif_ctrl_response rsp = {
1514 .id = req->id,
1515 .type = req->type,
1516 .status = status,
1517 .data = data,
1518 };
1519
1520 *RING_GET_RESPONSE(&vif->ctrl, idx) = rsp;
1521 vif->ctrl.rsp_prod_pvt = ++idx;
1522}
1523
1524static void push_ctrl_response(struct xenvif *vif)
1525{
1526 int notify;
1527
1528 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->ctrl, notify);
1529 if (notify)
1530 notify_remote_via_irq(vif->ctrl_irq);
1531}
1532
1533static void process_ctrl_request(struct xenvif *vif,
1534 const struct xen_netif_ctrl_request *req)
1535{
Paul Durrant40d8abd2016-05-13 09:37:27 +01001536 u32 status = XEN_NETIF_CTRL_STATUS_NOT_SUPPORTED;
1537 u32 data = 0;
1538
1539 switch (req->type) {
1540 case XEN_NETIF_CTRL_TYPE_SET_HASH_ALGORITHM:
1541 status = xenvif_set_hash_alg(vif, req->data[0]);
1542 break;
1543
1544 case XEN_NETIF_CTRL_TYPE_GET_HASH_FLAGS:
1545 status = xenvif_get_hash_flags(vif, &data);
1546 break;
1547
1548 case XEN_NETIF_CTRL_TYPE_SET_HASH_FLAGS:
1549 status = xenvif_set_hash_flags(vif, req->data[0]);
1550 break;
1551
1552 case XEN_NETIF_CTRL_TYPE_SET_HASH_KEY:
1553 status = xenvif_set_hash_key(vif, req->data[0],
1554 req->data[1]);
1555 break;
1556
1557 case XEN_NETIF_CTRL_TYPE_GET_HASH_MAPPING_SIZE:
1558 status = XEN_NETIF_CTRL_STATUS_SUCCESS;
1559 data = XEN_NETBK_MAX_HASH_MAPPING_SIZE;
1560 break;
1561
1562 case XEN_NETIF_CTRL_TYPE_SET_HASH_MAPPING_SIZE:
1563 status = xenvif_set_hash_mapping_size(vif,
1564 req->data[0]);
1565 break;
1566
1567 case XEN_NETIF_CTRL_TYPE_SET_HASH_MAPPING:
1568 status = xenvif_set_hash_mapping(vif, req->data[0],
1569 req->data[1],
1570 req->data[2]);
1571 break;
1572
1573 default:
1574 break;
1575 }
1576
1577 make_ctrl_response(vif, req, status, data);
Paul Durrant4e15ee22016-05-13 09:37:26 +01001578 push_ctrl_response(vif);
1579}
1580
1581static void xenvif_ctrl_action(struct xenvif *vif)
1582{
1583 for (;;) {
1584 RING_IDX req_prod, req_cons;
1585
1586 req_prod = vif->ctrl.sring->req_prod;
1587 req_cons = vif->ctrl.req_cons;
1588
1589 /* Make sure we can see requests before we process them. */
1590 rmb();
1591
1592 if (req_cons == req_prod)
1593 break;
1594
1595 while (req_cons != req_prod) {
1596 struct xen_netif_ctrl_request req;
1597
1598 RING_COPY_REQUEST(&vif->ctrl, req_cons, &req);
1599 req_cons++;
1600
1601 process_ctrl_request(vif, &req);
1602 }
1603
1604 vif->ctrl.req_cons = req_cons;
1605 vif->ctrl.sring->req_event = req_cons + 1;
1606 }
1607}
1608
1609static bool xenvif_ctrl_work_todo(struct xenvif *vif)
1610{
1611 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->ctrl)))
1612 return 1;
1613
1614 return 0;
1615}
1616
Juergen Gross0364a882016-09-22 11:06:25 +02001617irqreturn_t xenvif_ctrl_irq_fn(int irq, void *data)
Paul Durrant4e15ee22016-05-13 09:37:26 +01001618{
1619 struct xenvif *vif = data;
Juergen Gross7d720062020-11-03 15:35:22 +01001620 unsigned int eoi_flag = XEN_EOI_FLAG_SPURIOUS;
Paul Durrant4e15ee22016-05-13 09:37:26 +01001621
Juergen Gross7d720062020-11-03 15:35:22 +01001622 while (xenvif_ctrl_work_todo(vif)) {
Juergen Gross0364a882016-09-22 11:06:25 +02001623 xenvif_ctrl_action(vif);
Juergen Gross7d720062020-11-03 15:35:22 +01001624 eoi_flag = 0;
1625 }
1626
1627 xen_irq_lateeoi(irq, eoi_flag);
Paul Durrant4e15ee22016-05-13 09:37:26 +01001628
Juergen Gross0364a882016-09-22 11:06:25 +02001629 return IRQ_HANDLED;
Paul Durrant4e15ee22016-05-13 09:37:26 +01001630}
1631
Ian Campbellf942dc22011-03-15 00:06:18 +00001632static int __init netback_init(void)
1633{
Ian Campbellf942dc22011-03-15 00:06:18 +00001634 int rc = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00001635
Daniel De Graaf2a14b2442011-12-14 15:12:13 -05001636 if (!xen_domain())
Ian Campbellf942dc22011-03-15 00:06:18 +00001637 return -ENODEV;
1638
Juergen Grossa1644f92017-01-10 14:32:52 +01001639 /* Allow as many queues as there are CPUs but max. 8 if user has not
Wei Liu4c82ac32015-09-10 11:18:57 +01001640 * specified a value.
1641 */
1642 if (xenvif_max_queues == 0)
Juergen Grossa1644f92017-01-10 14:32:52 +01001643 xenvif_max_queues = min_t(unsigned int, MAX_QUEUES_DEFAULT,
1644 num_online_cpus());
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +01001645
Wei Liu37641492013-05-02 00:43:59 +00001646 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
Joe Perches383eda32013-06-27 21:57:49 -07001647 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
1648 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu37641492013-05-02 00:43:59 +00001649 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
Wei Liu2810e5b2013-04-22 02:20:42 +00001650 }
1651
Ian Campbellf942dc22011-03-15 00:06:18 +00001652 rc = xenvif_xenbus_init();
1653 if (rc)
1654 goto failed_init;
1655
Zoltan Kissf51de242014-07-08 19:49:14 +01001656#ifdef CONFIG_DEBUG_FS
1657 xen_netback_dbg_root = debugfs_create_dir("xen-netback", NULL);
1658 if (IS_ERR_OR_NULL(xen_netback_dbg_root))
1659 pr_warn("Init of debugfs returned %ld!\n",
1660 PTR_ERR(xen_netback_dbg_root));
1661#endif /* CONFIG_DEBUG_FS */
1662
Ian Campbellf942dc22011-03-15 00:06:18 +00001663 return 0;
1664
1665failed_init:
Ian Campbellf942dc22011-03-15 00:06:18 +00001666 return rc;
Ian Campbellf942dc22011-03-15 00:06:18 +00001667}
1668
1669module_init(netback_init);
1670
Wei Liub103f352013-05-16 23:26:11 +00001671static void __exit netback_fini(void)
1672{
Zoltan Kissf51de242014-07-08 19:49:14 +01001673#ifdef CONFIG_DEBUG_FS
1674 if (!IS_ERR_OR_NULL(xen_netback_dbg_root))
1675 debugfs_remove_recursive(xen_netback_dbg_root);
1676#endif /* CONFIG_DEBUG_FS */
Wei Liub103f352013-05-16 23:26:11 +00001677 xenvif_xenbus_fini();
Wei Liub103f352013-05-16 23:26:11 +00001678}
1679module_exit(netback_fini);
1680
Ian Campbellf942dc22011-03-15 00:06:18 +00001681MODULE_LICENSE("Dual BSD/GPL");
Bastian Blankf984cec2011-06-30 11:19:09 -07001682MODULE_ALIAS("xen-backend:vif");