blob: 1916ab332d60571652bd5098b8cf4e433b725098 [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
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +010070unsigned int xenvif_max_queues;
71module_param_named(max_queues, xenvif_max_queues, uint, 0644);
72MODULE_PARM_DESC(max_queues,
73 "Maximum number of queues per virtual interface");
74
Wei Liu2810e5b2013-04-22 02:20:42 +000075/*
76 * This is the maximum slots a skb can have. If a guest sends a skb
77 * which exceeds this limit it is considered malicious.
78 */
Wei Liu37641492013-05-02 00:43:59 +000079#define FATAL_SKB_SLOTS_DEFAULT 20
80static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
81module_param(fatal_skb_slots, uint, 0444);
82
Malcolm Crossley7e5d7752014-11-05 10:50:22 +000083/* The amount to copy out of the first guest Tx slot into the skb's
84 * linear area. If the first slot has more data, it will be mapped
85 * and put into the first frag.
86 *
87 * This is sized to avoid pulling headers from the frags for most
88 * TCP/IP packets.
89 */
90#define XEN_NETBACK_TX_COPY_LEN 128
91
Paul Durrant40d8abd2016-05-13 09:37:27 +010092/* This is the maximum number of flows in the hash cache. */
93#define XENVIF_HASH_CACHE_SIZE_DEFAULT 64
94unsigned int xenvif_hash_cache_size = XENVIF_HASH_CACHE_SIZE_DEFAULT;
95module_param_named(hash_cache_size, xenvif_hash_cache_size, uint, 0644);
96MODULE_PARM_DESC(hash_cache_size, "Number of flows in the hash cache");
Malcolm Crossley7e5d7752014-11-05 10:50:22 +000097
Wei Liue9ce7cb2014-06-04 10:30:42 +010098static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +010099 u8 status);
100
Wei Liue9ce7cb2014-06-04 10:30:42 +0100101static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +0000102 struct xen_netif_tx_request *txp,
Paul Durrant562abd32016-03-10 12:30:27 +0000103 unsigned int extra_count,
Ian Campbellf942dc22011-03-15 00:06:18 +0000104 s8 st);
David Vrabelc8a4d292015-03-11 15:27:59 +0000105static void push_tx_responses(struct xenvif_queue *queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100106
Wei Liue9ce7cb2014-06-04 10:30:42 +0100107static inline int tx_work_todo(struct xenvif_queue *queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100108
Wei Liue9ce7cb2014-06-04 10:30:42 +0100109static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +0000110 u16 id,
111 s8 st,
112 u16 offset,
113 u16 size,
114 u16 flags);
115
Wei Liue9ce7cb2014-06-04 10:30:42 +0100116static inline unsigned long idx_to_pfn(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 page_to_pfn(queue->mmap_pages[idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000120}
121
Wei Liue9ce7cb2014-06-04 10:30:42 +0100122static inline unsigned long idx_to_kaddr(struct xenvif_queue *queue,
Ian Campbellea066ad2011-10-05 00:28:46 +0000123 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000124{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100125 return (unsigned long)pfn_to_kaddr(idx_to_pfn(queue, idx));
Ian Campbellf942dc22011-03-15 00:06:18 +0000126}
127
Zoltan Kiss7aceb472014-03-24 23:59:51 +0000128#define callback_param(vif, pending_idx) \
129 (vif->pending_tx_info[pending_idx].callback_struct)
130
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000131/* Find the containing VIF's structure from a pointer in pending_tx_info array
132 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100133static inline struct xenvif_queue *ubuf_to_queue(const struct ubuf_info *ubuf)
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000134{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000135 u16 pending_idx = ubuf->desc;
136 struct pending_tx_info *temp =
137 container_of(ubuf, struct pending_tx_info, callback_struct);
138 return container_of(temp - pending_idx,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100139 struct xenvif_queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000140 pending_tx_info[0]);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000141}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000142
Ian Campbellea066ad2011-10-05 00:28:46 +0000143static u16 frag_get_pending_idx(skb_frag_t *frag)
144{
145 return (u16)frag->page_offset;
146}
147
148static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
149{
150 frag->page_offset = pending_idx;
151}
152
Ian Campbellf942dc22011-03-15 00:06:18 +0000153static inline pending_ring_idx_t pending_index(unsigned i)
154{
155 return i & (MAX_PENDING_REQS-1);
156}
157
David Vrabel1d5d4852015-09-08 14:25:14 +0100158static bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000159{
Paul Durrantca2f09f2013-12-06 16:36:07 +0000160 RING_IDX prod, cons;
David Vrabel99a2dea2016-01-15 14:55:34 +0000161 struct sk_buff *skb;
David Vrabel1d5d4852015-09-08 14:25:14 +0100162 int needed;
163
David Vrabel99a2dea2016-01-15 14:55:34 +0000164 skb = skb_peek(&queue->rx_queue);
165 if (!skb)
166 return false;
167
168 needed = DIV_ROUND_UP(skb->len, XEN_PAGE_SIZE);
169 if (skb_is_gso(skb))
170 needed++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000171
Paul Durrantca2f09f2013-12-06 16:36:07 +0000172 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100173 prod = queue->rx.sring->req_prod;
174 cons = queue->rx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000175
Paul Durrantca2f09f2013-12-06 16:36:07 +0000176 if (prod - cons >= needed)
177 return true;
Ian Campbellf942dc22011-03-15 00:06:18 +0000178
Wei Liue9ce7cb2014-06-04 10:30:42 +0100179 queue->rx.sring->req_event = prod + 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000180
Paul Durrantca2f09f2013-12-06 16:36:07 +0000181 /* Make sure event is visible before we check prod
182 * again.
183 */
184 mb();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100185 } while (queue->rx.sring->req_prod != prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000186
Paul Durrantca2f09f2013-12-06 16:36:07 +0000187 return false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000188}
189
David Vrabelf48da8b2014-10-22 14:08:54 +0100190void xenvif_rx_queue_tail(struct xenvif_queue *queue, struct sk_buff *skb)
191{
192 unsigned long flags;
193
194 spin_lock_irqsave(&queue->rx_queue.lock, flags);
195
196 __skb_queue_tail(&queue->rx_queue, skb);
197
198 queue->rx_queue_len += skb->len;
199 if (queue->rx_queue_len > queue->rx_queue_max)
200 netif_tx_stop_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
201
202 spin_unlock_irqrestore(&queue->rx_queue.lock, flags);
203}
204
205static struct sk_buff *xenvif_rx_dequeue(struct xenvif_queue *queue)
206{
207 struct sk_buff *skb;
208
209 spin_lock_irq(&queue->rx_queue.lock);
210
211 skb = __skb_dequeue(&queue->rx_queue);
212 if (skb)
213 queue->rx_queue_len -= skb->len;
214
215 spin_unlock_irq(&queue->rx_queue.lock);
216
217 return skb;
218}
219
220static void xenvif_rx_queue_maybe_wake(struct xenvif_queue *queue)
221{
222 spin_lock_irq(&queue->rx_queue.lock);
223
224 if (queue->rx_queue_len < queue->rx_queue_max)
225 netif_tx_wake_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
226
227 spin_unlock_irq(&queue->rx_queue.lock);
228}
229
230
231static void xenvif_rx_queue_purge(struct xenvif_queue *queue)
232{
233 struct sk_buff *skb;
234 while ((skb = xenvif_rx_dequeue(queue)) != NULL)
235 kfree_skb(skb);
236}
237
238static void xenvif_rx_queue_drop_expired(struct xenvif_queue *queue)
239{
240 struct sk_buff *skb;
241
242 for(;;) {
243 skb = skb_peek(&queue->rx_queue);
244 if (!skb)
245 break;
246 if (time_before(jiffies, XENVIF_RX_CB(skb)->expires))
247 break;
248 xenvif_rx_dequeue(queue);
249 kfree_skb(skb);
250 }
251}
252
Ian Campbellf942dc22011-03-15 00:06:18 +0000253struct netrx_pending_operations {
254 unsigned copy_prod, copy_cons;
255 unsigned meta_prod, meta_cons;
256 struct gnttab_copy *copy;
Wei Liub3f980b2013-08-26 12:59:38 +0100257 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000258 int copy_off;
259 grant_ref_t copy_gref;
260};
261
Wei Liue9ce7cb2014-06-04 10:30:42 +0100262static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif_queue *queue,
Wei Liub3f980b2013-08-26 12:59:38 +0100263 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000264{
Wei Liub3f980b2013-08-26 12:59:38 +0100265 struct xenvif_rx_meta *meta;
David Vrabel68a33bf2015-10-30 15:17:06 +0000266 struct xen_netif_rx_request req;
Ian Campbellf942dc22011-03-15 00:06:18 +0000267
David Vrabel68a33bf2015-10-30 15:17:06 +0000268 RING_COPY_REQUEST(&queue->rx, queue->rx.req_cons++, &req);
Ian Campbellf942dc22011-03-15 00:06:18 +0000269
270 meta = npo->meta + npo->meta_prod++;
Paul Durrant82cada22013-10-16 17:50:32 +0100271 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000272 meta->gso_size = 0;
273 meta->size = 0;
David Vrabel68a33bf2015-10-30 15:17:06 +0000274 meta->id = req.id;
Ian Campbellf942dc22011-03-15 00:06:18 +0000275
276 npo->copy_off = 0;
David Vrabel68a33bf2015-10-30 15:17:06 +0000277 npo->copy_gref = req.gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000278
279 return meta;
280}
281
Julien Gralld0089e82015-05-05 13:15:29 +0100282struct gop_frag_copy {
283 struct xenvif_queue *queue;
284 struct netrx_pending_operations *npo;
285 struct xenvif_rx_meta *meta;
286 int head;
287 int gso_type;
288
289 struct page *page;
290};
291
292static void xenvif_setup_copy_gop(unsigned long gfn,
293 unsigned int offset,
294 unsigned int *len,
295 struct gop_frag_copy *info)
296{
297 struct gnttab_copy *copy_gop;
298 struct xen_page_foreign *foreign;
299 /* Convenient aliases */
300 struct xenvif_queue *queue = info->queue;
301 struct netrx_pending_operations *npo = info->npo;
302 struct page *page = info->page;
303
304 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
305
306 if (npo->copy_off == MAX_BUFFER_OFFSET)
307 info->meta = get_next_rx_buffer(queue, npo);
308
309 if (npo->copy_off + *len > MAX_BUFFER_OFFSET)
310 *len = MAX_BUFFER_OFFSET - npo->copy_off;
311
312 copy_gop = npo->copy + npo->copy_prod++;
313 copy_gop->flags = GNTCOPY_dest_gref;
314 copy_gop->len = *len;
315
316 foreign = xen_page_foreign(page);
317 if (foreign) {
318 copy_gop->source.domid = foreign->domid;
319 copy_gop->source.u.ref = foreign->gref;
320 copy_gop->flags |= GNTCOPY_source_gref;
321 } else {
322 copy_gop->source.domid = DOMID_SELF;
323 copy_gop->source.u.gmfn = gfn;
324 }
325 copy_gop->source.offset = offset;
326
327 copy_gop->dest.domid = queue->vif->domid;
328 copy_gop->dest.offset = npo->copy_off;
329 copy_gop->dest.u.ref = npo->copy_gref;
330
331 npo->copy_off += *len;
332 info->meta->size += *len;
333
334 /* Leave a gap for the GSO descriptor. */
335 if (info->head && ((1 << info->gso_type) & queue->vif->gso_mask))
336 queue->rx.req_cons++;
337
338 info->head = 0; /* There must be something in this buffer now */
339}
340
341static void xenvif_gop_frag_copy_grant(unsigned long gfn,
342 unsigned offset,
343 unsigned int len,
344 void *data)
345{
346 unsigned int bytes;
347
348 while (len) {
349 bytes = len;
350 xenvif_setup_copy_gop(gfn, offset, &bytes, data);
351 offset += bytes;
352 len -= bytes;
353 }
354}
355
Wei Liu33bc8012013-10-08 10:54:21 +0100356/*
357 * Set up the grant operations for this fragment. If it's a flipping
358 * interface, we also set up the unmap request from here.
359 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100360static void xenvif_gop_frag_copy(struct xenvif_queue *queue, struct sk_buff *skb,
Wei Liu73764192013-08-26 12:59:39 +0100361 struct netrx_pending_operations *npo,
362 struct page *page, unsigned long size,
Jennifer Herbertc2677a62015-01-05 14:45:10 +0000363 unsigned long offset, int *head)
Ian Campbellf942dc22011-03-15 00:06:18 +0000364{
Julien Gralld0089e82015-05-05 13:15:29 +0100365 struct gop_frag_copy info = {
366 .queue = queue,
367 .npo = npo,
368 .head = *head,
369 .gso_type = XEN_NETIF_GSO_TYPE_NONE,
370 };
Ian Campbellf942dc22011-03-15 00:06:18 +0000371 unsigned long bytes;
372
Julien Gralla0f2e802015-06-24 18:03:14 +0100373 if (skb_is_gso(skb)) {
374 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
Julien Gralld0089e82015-05-05 13:15:29 +0100375 info.gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
Julien Gralla0f2e802015-06-24 18:03:14 +0100376 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Julien Gralld0089e82015-05-05 13:15:29 +0100377 info.gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
Julien Gralla0f2e802015-06-24 18:03:14 +0100378 }
379
Ian Campbellf942dc22011-03-15 00:06:18 +0000380 /* Data must not cross a page boundary. */
Ian Campbell6a8ed462012-10-10 03:48:42 +0000381 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000382
Julien Gralld0089e82015-05-05 13:15:29 +0100383 info.meta = npo->meta + npo->meta_prod - 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000384
Ian Campbell6a8ed462012-10-10 03:48:42 +0000385 /* Skip unused frames from start of page */
386 page += offset >> PAGE_SHIFT;
387 offset &= ~PAGE_MASK;
388
Ian Campbellf942dc22011-03-15 00:06:18 +0000389 while (size > 0) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000390 BUG_ON(offset >= PAGE_SIZE);
Ian Campbell6a8ed462012-10-10 03:48:42 +0000391
David Vrabel1650d542015-01-20 14:49:52 +0000392 bytes = PAGE_SIZE - offset;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000393 if (bytes > size)
394 bytes = size;
395
Julien Gralld0089e82015-05-05 13:15:29 +0100396 info.page = page;
397 gnttab_foreach_grant_in_range(page, offset, bytes,
398 xenvif_gop_frag_copy_grant,
399 &info);
Ian Campbellf942dc22011-03-15 00:06:18 +0000400 size -= bytes;
Julien Gralld0089e82015-05-05 13:15:29 +0100401 offset = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000402
Julien Gralld0089e82015-05-05 13:15:29 +0100403 /* Next page */
404 if (size) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000405 BUG_ON(!PageCompound(page));
406 page++;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000407 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000408 }
Julien Gralld0089e82015-05-05 13:15:29 +0100409
410 *head = info.head;
Ian Campbellf942dc22011-03-15 00:06:18 +0000411}
412
413/*
414 * Prepare an SKB to be transmitted to the frontend.
415 *
416 * This function is responsible for allocating grant operations, meta
417 * structures, etc.
418 *
419 * It returns the number of meta structures consumed. The number of
420 * ring slots used is always equal to the number of meta slots used
421 * plus the number of GSO descriptors used. Currently, we use either
422 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
423 * frontend-side LRO).
424 */
Wei Liu73764192013-08-26 12:59:39 +0100425static int xenvif_gop_skb(struct sk_buff *skb,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100426 struct netrx_pending_operations *npo,
427 struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000428{
429 struct xenvif *vif = netdev_priv(skb->dev);
430 int nr_frags = skb_shinfo(skb)->nr_frags;
431 int i;
David Vrabel68a33bf2015-10-30 15:17:06 +0000432 struct xen_netif_rx_request req;
Wei Liub3f980b2013-08-26 12:59:38 +0100433 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000434 unsigned char *data;
Wei Liu33bc8012013-10-08 10:54:21 +0100435 int head = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000436 int old_meta_prod;
Paul Durrant82cada22013-10-16 17:50:32 +0100437 int gso_type;
Ian Campbellf942dc22011-03-15 00:06:18 +0000438
439 old_meta_prod = npo->meta_prod;
440
Annie Li5bd07672014-03-10 22:58:34 +0800441 gso_type = XEN_NETIF_GSO_TYPE_NONE;
442 if (skb_is_gso(skb)) {
443 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
444 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
445 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
446 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
Paul Durrant82cada22013-10-16 17:50:32 +0100447 }
448
Ian Campbellf942dc22011-03-15 00:06:18 +0000449 /* Set up a GSO prefix descriptor, if necessary */
Paul Durranta3314f32013-12-12 14:20:13 +0000450 if ((1 << gso_type) & vif->gso_prefix_mask) {
David Vrabel68a33bf2015-10-30 15:17:06 +0000451 RING_COPY_REQUEST(&queue->rx, queue->rx.req_cons++, &req);
Ian Campbellf942dc22011-03-15 00:06:18 +0000452 meta = npo->meta + npo->meta_prod++;
Paul Durrant82cada22013-10-16 17:50:32 +0100453 meta->gso_type = gso_type;
Annie Li5bd07672014-03-10 22:58:34 +0800454 meta->gso_size = skb_shinfo(skb)->gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000455 meta->size = 0;
David Vrabel68a33bf2015-10-30 15:17:06 +0000456 meta->id = req.id;
Ian Campbellf942dc22011-03-15 00:06:18 +0000457 }
458
David Vrabel68a33bf2015-10-30 15:17:06 +0000459 RING_COPY_REQUEST(&queue->rx, queue->rx.req_cons++, &req);
Ian Campbellf942dc22011-03-15 00:06:18 +0000460 meta = npo->meta + npo->meta_prod++;
461
Paul Durrant82cada22013-10-16 17:50:32 +0100462 if ((1 << gso_type) & vif->gso_mask) {
463 meta->gso_type = gso_type;
Annie Li5bd07672014-03-10 22:58:34 +0800464 meta->gso_size = skb_shinfo(skb)->gso_size;
Paul Durrant82cada22013-10-16 17:50:32 +0100465 } else {
466 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000467 meta->gso_size = 0;
Paul Durrant82cada22013-10-16 17:50:32 +0100468 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000469
470 meta->size = 0;
David Vrabel68a33bf2015-10-30 15:17:06 +0000471 meta->id = req.id;
Ian Campbellf942dc22011-03-15 00:06:18 +0000472 npo->copy_off = 0;
David Vrabel68a33bf2015-10-30 15:17:06 +0000473 npo->copy_gref = req.gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000474
475 data = skb->data;
476 while (data < skb_tail_pointer(skb)) {
477 unsigned int offset = offset_in_page(data);
478 unsigned int len = PAGE_SIZE - offset;
479
480 if (data + len > skb_tail_pointer(skb))
481 len = skb_tail_pointer(skb) - data;
482
Wei Liue9ce7cb2014-06-04 10:30:42 +0100483 xenvif_gop_frag_copy(queue, skb, npo,
Jennifer Herbertc2677a62015-01-05 14:45:10 +0000484 virt_to_page(data), len, offset, &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000485 data += len;
486 }
487
488 for (i = 0; i < nr_frags; i++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100489 xenvif_gop_frag_copy(queue, skb, npo,
Wei Liu73764192013-08-26 12:59:39 +0100490 skb_frag_page(&skb_shinfo(skb)->frags[i]),
491 skb_frag_size(&skb_shinfo(skb)->frags[i]),
492 skb_shinfo(skb)->frags[i].page_offset,
Jennifer Herbertc2677a62015-01-05 14:45:10 +0000493 &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000494 }
495
496 return npo->meta_prod - old_meta_prod;
497}
498
499/*
Wei Liu73764192013-08-26 12:59:39 +0100500 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
Ian Campbellf942dc22011-03-15 00:06:18 +0000501 * used to set up the operations on the top of
502 * netrx_pending_operations, which have since been done. Check that
503 * they didn't give any errors and advance over them.
504 */
Wei Liu73764192013-08-26 12:59:39 +0100505static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
506 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000507{
508 struct gnttab_copy *copy_op;
509 int status = XEN_NETIF_RSP_OKAY;
510 int i;
511
512 for (i = 0; i < nr_meta_slots; i++) {
513 copy_op = npo->copy + npo->copy_cons++;
514 if (copy_op->status != GNTST_okay) {
515 netdev_dbg(vif->dev,
516 "Bad status %d from copy to DOM%d.\n",
517 copy_op->status, vif->domid);
518 status = XEN_NETIF_RSP_ERROR;
519 }
520 }
521
522 return status;
523}
524
Wei Liue9ce7cb2014-06-04 10:30:42 +0100525static void xenvif_add_frag_responses(struct xenvif_queue *queue, int status,
Wei Liu73764192013-08-26 12:59:39 +0100526 struct xenvif_rx_meta *meta,
527 int nr_meta_slots)
Ian Campbellf942dc22011-03-15 00:06:18 +0000528{
529 int i;
530 unsigned long offset;
531
532 /* No fragments used */
533 if (nr_meta_slots <= 1)
534 return;
535
536 nr_meta_slots--;
537
538 for (i = 0; i < nr_meta_slots; i++) {
539 int flags;
540 if (i == nr_meta_slots - 1)
541 flags = 0;
542 else
543 flags = XEN_NETRXF_more_data;
544
545 offset = 0;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100546 make_rx_response(queue, meta[i].id, status, offset,
Ian Campbellf942dc22011-03-15 00:06:18 +0000547 meta[i].size, flags);
548 }
549}
550
Wei Liue9ce7cb2014-06-04 10:30:42 +0100551void xenvif_kick_thread(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000552{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100553 wake_up(&queue->wq);
Wei Liub3f980b2013-08-26 12:59:38 +0100554}
555
Wei Liue9ce7cb2014-06-04 10:30:42 +0100556static void xenvif_rx_action(struct xenvif_queue *queue)
Wei Liub3f980b2013-08-26 12:59:38 +0100557{
Ian Campbellf942dc22011-03-15 00:06:18 +0000558 s8 status;
Wei Liue1f00a692013-05-22 06:34:45 +0000559 u16 flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000560 struct xen_netif_rx_response *resp;
561 struct sk_buff_head rxq;
562 struct sk_buff *skb;
563 LIST_HEAD(notify);
564 int ret;
Ian Campbellf942dc22011-03-15 00:06:18 +0000565 unsigned long offset;
Paul Durrant11b57f92014-01-08 12:41:58 +0000566 bool need_to_notify = false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000567
568 struct netrx_pending_operations npo = {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100569 .copy = queue->grant_copy_op,
570 .meta = queue->meta,
Ian Campbellf942dc22011-03-15 00:06:18 +0000571 };
572
573 skb_queue_head_init(&rxq);
574
David Vrabel1d5d4852015-09-08 14:25:14 +0100575 while (xenvif_rx_ring_slots_available(queue)
David Vrabelf48da8b2014-10-22 14:08:54 +0100576 && (skb = xenvif_rx_dequeue(queue)) != NULL) {
David Vrabelecf08d22014-10-22 14:08:55 +0100577 queue->last_rx_time = jiffies;
578
Wei Liue9ce7cb2014-06-04 10:30:42 +0100579 XENVIF_RX_CB(skb)->meta_slots_used = xenvif_gop_skb(skb, &npo, queue);
Paul Durrant1425c7a2014-03-28 11:39:07 +0000580
Ian Campbellf942dc22011-03-15 00:06:18 +0000581 __skb_queue_tail(&rxq, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000582 }
583
Wei Liue9ce7cb2014-06-04 10:30:42 +0100584 BUG_ON(npo.meta_prod > ARRAY_SIZE(queue->meta));
Ian Campbellf942dc22011-03-15 00:06:18 +0000585
586 if (!npo.copy_prod)
Paul Durrantca2f09f2013-12-06 16:36:07 +0000587 goto done;
Ian Campbellf942dc22011-03-15 00:06:18 +0000588
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000589 BUG_ON(npo.copy_prod > MAX_GRANT_COPY_OPS);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100590 gnttab_batch_copy(queue->grant_copy_op, npo.copy_prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000591
592 while ((skb = __skb_dequeue(&rxq)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000593
Wei Liue9ce7cb2014-06-04 10:30:42 +0100594 if ((1 << queue->meta[npo.meta_cons].gso_type) &
595 queue->vif->gso_prefix_mask) {
596 resp = RING_GET_RESPONSE(&queue->rx,
597 queue->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000598
599 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
600
Wei Liue9ce7cb2014-06-04 10:30:42 +0100601 resp->offset = queue->meta[npo.meta_cons].gso_size;
602 resp->id = queue->meta[npo.meta_cons].id;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000603 resp->status = XENVIF_RX_CB(skb)->meta_slots_used;
Ian Campbellf942dc22011-03-15 00:06:18 +0000604
605 npo.meta_cons++;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000606 XENVIF_RX_CB(skb)->meta_slots_used--;
Ian Campbellf942dc22011-03-15 00:06:18 +0000607 }
608
609
Wei Liue9ce7cb2014-06-04 10:30:42 +0100610 queue->stats.tx_bytes += skb->len;
611 queue->stats.tx_packets++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000612
Wei Liue9ce7cb2014-06-04 10:30:42 +0100613 status = xenvif_check_gop(queue->vif,
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000614 XENVIF_RX_CB(skb)->meta_slots_used,
615 &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000616
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000617 if (XENVIF_RX_CB(skb)->meta_slots_used == 1)
Ian Campbellf942dc22011-03-15 00:06:18 +0000618 flags = 0;
619 else
620 flags = XEN_NETRXF_more_data;
621
622 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
623 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
624 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
625 /* remote but checksummed. */
626 flags |= XEN_NETRXF_data_validated;
627
628 offset = 0;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100629 resp = make_rx_response(queue, queue->meta[npo.meta_cons].id,
Ian Campbellf942dc22011-03-15 00:06:18 +0000630 status, offset,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100631 queue->meta[npo.meta_cons].size,
Ian Campbellf942dc22011-03-15 00:06:18 +0000632 flags);
633
Wei Liue9ce7cb2014-06-04 10:30:42 +0100634 if ((1 << queue->meta[npo.meta_cons].gso_type) &
635 queue->vif->gso_mask) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000636 struct xen_netif_extra_info *gso =
637 (struct xen_netif_extra_info *)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100638 RING_GET_RESPONSE(&queue->rx,
639 queue->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000640
641 resp->flags |= XEN_NETRXF_extra_info;
642
Wei Liue9ce7cb2014-06-04 10:30:42 +0100643 gso->u.gso.type = queue->meta[npo.meta_cons].gso_type;
644 gso->u.gso.size = queue->meta[npo.meta_cons].gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000645 gso->u.gso.pad = 0;
646 gso->u.gso.features = 0;
647
648 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
649 gso->flags = 0;
650 }
651
Wei Liue9ce7cb2014-06-04 10:30:42 +0100652 xenvif_add_frag_responses(queue, status,
653 queue->meta + npo.meta_cons + 1,
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000654 XENVIF_RX_CB(skb)->meta_slots_used);
Ian Campbellf942dc22011-03-15 00:06:18 +0000655
Wei Liue9ce7cb2014-06-04 10:30:42 +0100656 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->rx, ret);
Ian Campbellf942dc22011-03-15 00:06:18 +0000657
Paul Durrant11b57f92014-01-08 12:41:58 +0000658 need_to_notify |= !!ret;
Wei Liub3f980b2013-08-26 12:59:38 +0100659
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000660 npo.meta_cons += XENVIF_RX_CB(skb)->meta_slots_used;
Ian Campbellf942dc22011-03-15 00:06:18 +0000661 dev_kfree_skb(skb);
662 }
663
Paul Durrantca2f09f2013-12-06 16:36:07 +0000664done:
Wei Liub3f980b2013-08-26 12:59:38 +0100665 if (need_to_notify)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100666 notify_remote_via_irq(queue->rx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +0000667}
668
Wei Liue9ce7cb2014-06-04 10:30:42 +0100669void xenvif_napi_schedule_or_enable_events(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000670{
671 int more_to_do;
672
Wei Liue9ce7cb2014-06-04 10:30:42 +0100673 RING_FINAL_CHECK_FOR_REQUESTS(&queue->tx, more_to_do);
Ian Campbellf942dc22011-03-15 00:06:18 +0000674
675 if (more_to_do)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100676 napi_schedule(&queue->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +0000677}
678
Wei Liue9ce7cb2014-06-04 10:30:42 +0100679static void tx_add_credit(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000680{
681 unsigned long max_burst, max_credit;
682
683 /*
684 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
685 * Otherwise the interface can seize up due to insufficient credit.
686 */
David Vrabel0f589962015-10-30 15:16:01 +0000687 max_burst = max(131072UL, queue->credit_bytes);
Ian Campbellf942dc22011-03-15 00:06:18 +0000688
689 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100690 max_credit = queue->remaining_credit + queue->credit_bytes;
691 if (max_credit < queue->remaining_credit)
Ian Campbellf942dc22011-03-15 00:06:18 +0000692 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
693
Wei Liue9ce7cb2014-06-04 10:30:42 +0100694 queue->remaining_credit = min(max_credit, max_burst);
Ian Campbellf942dc22011-03-15 00:06:18 +0000695}
696
Palik, Imreedafc132015-03-19 11:05:42 +0100697void xenvif_tx_credit_callback(unsigned long data)
Ian Campbellf942dc22011-03-15 00:06:18 +0000698{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100699 struct xenvif_queue *queue = (struct xenvif_queue *)data;
700 tx_add_credit(queue);
701 xenvif_napi_schedule_or_enable_events(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000702}
703
Wei Liue9ce7cb2014-06-04 10:30:42 +0100704static void xenvif_tx_err(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +0000705 struct xen_netif_tx_request *txp,
706 unsigned int extra_count, RING_IDX end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000707{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100708 RING_IDX cons = queue->tx.req_cons;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000709 unsigned long flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000710
711 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100712 spin_lock_irqsave(&queue->response_lock, flags);
Paul Durrant562abd32016-03-10 12:30:27 +0000713 make_tx_response(queue, txp, extra_count, XEN_NETIF_RSP_ERROR);
David Vrabelc8a4d292015-03-11 15:27:59 +0000714 push_tx_responses(queue);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100715 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellb9149722013-02-06 23:41:38 +0000716 if (cons == end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000717 break;
David Vrabel68a33bf2015-10-30 15:17:06 +0000718 RING_COPY_REQUEST(&queue->tx, cons++, txp);
Paul Durrant72eec922016-05-12 14:43:03 +0100719 extra_count = 0; /* only the first frag can have extras */
Ian Campbellf942dc22011-03-15 00:06:18 +0000720 } while (1);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100721 queue->tx.req_cons = cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000722}
723
Wei Liu73764192013-08-26 12:59:39 +0100724static void xenvif_fatal_tx_err(struct xenvif *vif)
Ian Campbell488562862013-02-06 23:41:35 +0000725{
726 netdev_err(vif->dev, "fatal error; disabling device\n");
Wei Liue9d8b2c2014-04-01 12:46:12 +0100727 vif->disabled = true;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100728 /* Disable the vif from queue 0's kthread */
729 if (vif->queues)
730 xenvif_kick_thread(&vif->queues[0]);
Ian Campbell488562862013-02-06 23:41:35 +0000731}
732
Wei Liue9ce7cb2014-06-04 10:30:42 +0100733static int xenvif_count_requests(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100734 struct xen_netif_tx_request *first,
Paul Durrant562abd32016-03-10 12:30:27 +0000735 unsigned int extra_count,
Wei Liu73764192013-08-26 12:59:39 +0100736 struct xen_netif_tx_request *txp,
737 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +0000738{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100739 RING_IDX cons = queue->tx.req_cons;
Wei Liu2810e5b2013-04-22 02:20:42 +0000740 int slots = 0;
741 int drop_err = 0;
Wei Liu59ccb4e2013-05-02 00:43:58 +0000742 int more_data;
Ian Campbellf942dc22011-03-15 00:06:18 +0000743
744 if (!(first->flags & XEN_NETTXF_more_data))
745 return 0;
746
747 do {
Wei Liu59ccb4e2013-05-02 00:43:58 +0000748 struct xen_netif_tx_request dropped_tx = { 0 };
749
Wei Liu2810e5b2013-04-22 02:20:42 +0000750 if (slots >= work_to_do) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100751 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000752 "Asked for %d slots but exceeds this limit\n",
753 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100754 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000755 return -ENODATA;
Ian Campbellf942dc22011-03-15 00:06:18 +0000756 }
757
Wei Liu2810e5b2013-04-22 02:20:42 +0000758 /* This guest is really using too many slots and
759 * considered malicious.
760 */
Wei Liu37641492013-05-02 00:43:59 +0000761 if (unlikely(slots >= fatal_skb_slots)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100762 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000763 "Malicious frontend using %d slots, threshold %u\n",
Wei Liu37641492013-05-02 00:43:59 +0000764 slots, fatal_skb_slots);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100765 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000766 return -E2BIG;
Ian Campbellf942dc22011-03-15 00:06:18 +0000767 }
768
Wei Liu2810e5b2013-04-22 02:20:42 +0000769 /* Xen network protocol had implicit dependency on
Wei Liu37641492013-05-02 00:43:59 +0000770 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
771 * the historical MAX_SKB_FRAGS value 18 to honor the
772 * same behavior as before. Any packet using more than
773 * 18 slots but less than fatal_skb_slots slots is
774 * dropped
Wei Liu2810e5b2013-04-22 02:20:42 +0000775 */
Wei Liu37641492013-05-02 00:43:59 +0000776 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000777 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100778 netdev_dbg(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000779 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
Wei Liu37641492013-05-02 00:43:59 +0000780 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu2810e5b2013-04-22 02:20:42 +0000781 drop_err = -E2BIG;
782 }
783
Wei Liu59ccb4e2013-05-02 00:43:58 +0000784 if (drop_err)
785 txp = &dropped_tx;
786
David Vrabel68a33bf2015-10-30 15:17:06 +0000787 RING_COPY_REQUEST(&queue->tx, cons + slots, txp);
Wei Liu03393fd52013-04-22 02:20:43 +0000788
789 /* If the guest submitted a frame >= 64 KiB then
790 * first->size overflowed and following slots will
791 * appear to be larger than the frame.
792 *
793 * This cannot be fatal error as there are buggy
794 * frontends that do this.
795 *
796 * Consume all slots and drop the packet.
797 */
798 if (!drop_err && txp->size > first->size) {
799 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100800 netdev_dbg(queue->vif->dev,
Wei Liu03393fd52013-04-22 02:20:43 +0000801 "Invalid tx request, slot size %u > remaining size %u\n",
802 txp->size, first->size);
803 drop_err = -EIO;
Ian Campbellf942dc22011-03-15 00:06:18 +0000804 }
805
806 first->size -= txp->size;
Wei Liu2810e5b2013-04-22 02:20:42 +0000807 slots++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000808
Julien Gralld0089e82015-05-05 13:15:29 +0100809 if (unlikely((txp->offset + txp->size) > XEN_PAGE_SIZE)) {
Julien Grall68946152015-06-16 20:10:48 +0100810 netdev_err(queue->vif->dev, "Cross page boundary, txp->offset: %u, size: %u\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000811 txp->offset, txp->size);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100812 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000813 return -EINVAL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000814 }
Wei Liu59ccb4e2013-05-02 00:43:58 +0000815
816 more_data = txp->flags & XEN_NETTXF_more_data;
817
818 if (!drop_err)
819 txp++;
820
821 } while (more_data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000822
823 if (drop_err) {
Paul Durrant562abd32016-03-10 12:30:27 +0000824 xenvif_tx_err(queue, first, extra_count, cons + slots);
Wei Liu2810e5b2013-04-22 02:20:42 +0000825 return drop_err;
826 }
827
828 return slots;
Ian Campbellf942dc22011-03-15 00:06:18 +0000829}
830
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000831
832struct xenvif_tx_cb {
833 u16 pending_idx;
834};
835
836#define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb)
837
Wei Liue9ce7cb2014-06-04 10:30:42 +0100838static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +0000839 u16 pending_idx,
840 struct xen_netif_tx_request *txp,
841 unsigned int extra_count,
842 struct gnttab_map_grant_ref *mop)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000843{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100844 queue->pages_to_map[mop-queue->tx_map_ops] = queue->mmap_pages[pending_idx];
845 gnttab_set_map_op(mop, idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000846 GNTMAP_host_map | GNTMAP_readonly,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100847 txp->gref, queue->vif->domid);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000848
Wei Liue9ce7cb2014-06-04 10:30:42 +0100849 memcpy(&queue->pending_tx_info[pending_idx].req, txp,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000850 sizeof(*txp));
Paul Durrant562abd32016-03-10 12:30:27 +0000851 queue->pending_tx_info[pending_idx].extra_count = extra_count;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000852}
853
Zoltan Kisse3377f32014-03-06 21:48:29 +0000854static inline struct sk_buff *xenvif_alloc_skb(unsigned int size)
855{
856 struct sk_buff *skb =
857 alloc_skb(size + NET_SKB_PAD + NET_IP_ALIGN,
858 GFP_ATOMIC | __GFP_NOWARN);
859 if (unlikely(skb == NULL))
860 return NULL;
861
862 /* Packets passed to netif_rx() must have some headroom. */
863 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
864
865 /* Initialize it here to avoid later surprises */
866 skb_shinfo(skb)->destructor_arg = NULL;
867
868 return skb;
869}
870
Wei Liue9ce7cb2014-06-04 10:30:42 +0100871static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000872 struct sk_buff *skb,
873 struct xen_netif_tx_request *txp,
Ross Lagerwall2475b222015-08-03 15:38:03 +0100874 struct gnttab_map_grant_ref *gop,
875 unsigned int frag_overflow,
876 struct sk_buff *nskb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000877{
878 struct skb_shared_info *shinfo = skb_shinfo(skb);
879 skb_frag_t *frags = shinfo->frags;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000880 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss62bad312014-03-06 21:48:27 +0000881 int start;
882 pending_ring_idx_t index;
Ross Lagerwall2475b222015-08-03 15:38:03 +0100883 unsigned int nr_slots;
Wei Liu2810e5b2013-04-22 02:20:42 +0000884
Wei Liu2810e5b2013-04-22 02:20:42 +0000885 nr_slots = shinfo->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000886
887 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +0000888 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000889
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000890 for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots;
891 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100892 index = pending_index(queue->pending_cons++);
893 pending_idx = queue->pending_ring[index];
Paul Durrant562abd32016-03-10 12:30:27 +0000894 xenvif_tx_create_map_op(queue, pending_idx, txp, 0, gop);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000895 frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000896 }
897
Zoltan Kisse3377f32014-03-06 21:48:29 +0000898 if (frag_overflow) {
Zoltan Kisse3377f32014-03-06 21:48:29 +0000899
900 shinfo = skb_shinfo(nskb);
901 frags = shinfo->frags;
902
903 for (shinfo->nr_frags = 0; shinfo->nr_frags < frag_overflow;
904 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100905 index = pending_index(queue->pending_cons++);
906 pending_idx = queue->pending_ring[index];
Paul Durrant562abd32016-03-10 12:30:27 +0000907 xenvif_tx_create_map_op(queue, pending_idx, txp, 0,
908 gop);
Zoltan Kisse3377f32014-03-06 21:48:29 +0000909 frag_set_pending_idx(&frags[shinfo->nr_frags],
910 pending_idx);
911 }
912
913 skb_shinfo(skb)->frag_list = nskb;
914 }
Wei Liu2810e5b2013-04-22 02:20:42 +0000915
Ian Campbellf942dc22011-03-15 00:06:18 +0000916 return gop;
917}
918
Wei Liue9ce7cb2014-06-04 10:30:42 +0100919static inline void xenvif_grant_handle_set(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000920 u16 pending_idx,
921 grant_handle_t handle)
922{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100923 if (unlikely(queue->grant_tx_handle[pending_idx] !=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000924 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100925 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +0100926 "Trying to overwrite active handle! pending_idx: 0x%x\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000927 pending_idx);
928 BUG();
929 }
Wei Liue9ce7cb2014-06-04 10:30:42 +0100930 queue->grant_tx_handle[pending_idx] = handle;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000931}
932
Wei Liue9ce7cb2014-06-04 10:30:42 +0100933static inline void xenvif_grant_handle_reset(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000934 u16 pending_idx)
935{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100936 if (unlikely(queue->grant_tx_handle[pending_idx] ==
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000937 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100938 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +0100939 "Trying to unmap invalid handle! pending_idx: 0x%x\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000940 pending_idx);
941 BUG();
942 }
Wei Liue9ce7cb2014-06-04 10:30:42 +0100943 queue->grant_tx_handle[pending_idx] = NETBACK_INVALID_HANDLE;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000944}
945
Wei Liue9ce7cb2014-06-04 10:30:42 +0100946static int xenvif_tx_check_gop(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100947 struct sk_buff *skb,
Zoltan Kissbdab8272014-04-02 18:04:58 +0100948 struct gnttab_map_grant_ref **gopp_map,
949 struct gnttab_copy **gopp_copy)
Ian Campbellf942dc22011-03-15 00:06:18 +0000950{
Zoltan Kiss9074ce22014-04-02 18:04:57 +0100951 struct gnttab_map_grant_ref *gop_map = *gopp_map;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000952 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100953 /* This always points to the shinfo of the skb being checked, which
954 * could be either the first or the one on the frag_list
955 */
Ian Campbellf942dc22011-03-15 00:06:18 +0000956 struct skb_shared_info *shinfo = skb_shinfo(skb);
Zoltan Kiss1a998d32014-07-18 19:08:02 +0100957 /* If this is non-NULL, we are currently checking the frag_list skb, and
958 * this points to the shinfo of the first one
959 */
960 struct skb_shared_info *first_shinfo = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000961 int nr_frags = shinfo->nr_frags;
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100962 const bool sharedslot = nr_frags &&
963 frag_get_pending_idx(&shinfo->frags[0]) == pending_idx;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100964 int i, err;
Ian Campbellf942dc22011-03-15 00:06:18 +0000965
966 /* Check status of header. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100967 err = (*gopp_copy)->status;
Zoltan Kissbdab8272014-04-02 18:04:58 +0100968 if (unlikely(err)) {
969 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100970 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +0100971 "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +0100972 (*gopp_copy)->status,
973 pending_idx,
974 (*gopp_copy)->source.u.ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100975 /* The first frag might still have this slot mapped */
976 if (!sharedslot)
977 xenvif_idx_release(queue, pending_idx,
978 XEN_NETIF_RSP_ERROR);
Zoltan Kissbdab8272014-04-02 18:04:58 +0100979 }
Zoltan Kissd8cfbfc2014-07-18 19:08:05 +0100980 (*gopp_copy)++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000981
Zoltan Kisse3377f32014-03-06 21:48:29 +0000982check_frags:
Zoltan Kissbdab8272014-04-02 18:04:58 +0100983 for (i = 0; i < nr_frags; i++, gop_map++) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000984 int j, newerr;
Ian Campbellf942dc22011-03-15 00:06:18 +0000985
Ian Campbellea066ad2011-10-05 00:28:46 +0000986 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000987
988 /* Check error status: if okay then remember grant handle. */
Zoltan Kissbdab8272014-04-02 18:04:58 +0100989 newerr = gop_map->status;
Wei Liu2810e5b2013-04-22 02:20:42 +0000990
Ian Campbellf942dc22011-03-15 00:06:18 +0000991 if (likely(!newerr)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100992 xenvif_grant_handle_set(queue,
Zoltan Kiss9074ce22014-04-02 18:04:57 +0100993 pending_idx,
994 gop_map->handle);
Ian Campbellf942dc22011-03-15 00:06:18 +0000995 /* Had a previous error? Invalidate this fragment. */
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100996 if (unlikely(err)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100997 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +0100998 /* If the mapping of the first frag was OK, but
999 * the header's copy failed, and they are
1000 * sharing a slot, send an error
1001 */
1002 if (i == 0 && sharedslot)
1003 xenvif_idx_release(queue, pending_idx,
1004 XEN_NETIF_RSP_ERROR);
1005 else
1006 xenvif_idx_release(queue, pending_idx,
1007 XEN_NETIF_RSP_OKAY);
1008 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001009 continue;
1010 }
1011
1012 /* Error on this fragment: respond to client with an error. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001013 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001014 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +01001015 "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +01001016 i,
1017 gop_map->status,
1018 pending_idx,
1019 gop_map->ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001020
Wei Liue9ce7cb2014-06-04 10:30:42 +01001021 xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +00001022
1023 /* Not the first error? Preceding frags already invalidated. */
1024 if (err)
1025 continue;
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001026
1027 /* First error: if the header haven't shared a slot with the
1028 * first frag, release it as well.
1029 */
1030 if (!sharedslot)
1031 xenvif_idx_release(queue,
1032 XENVIF_TX_CB(skb)->pending_idx,
1033 XEN_NETIF_RSP_OKAY);
1034
1035 /* Invalidate preceding fragments of this skb. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001036 for (j = 0; j < i; j++) {
Jan Beulich5ccb3ea2011-11-18 05:42:05 +00001037 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001038 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001039 xenvif_idx_release(queue, pending_idx,
1040 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001041 }
1042
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001043 /* And if we found the error while checking the frag_list, unmap
1044 * the first skb's frags
1045 */
1046 if (first_shinfo) {
1047 for (j = 0; j < first_shinfo->nr_frags; j++) {
1048 pending_idx = frag_get_pending_idx(&first_shinfo->frags[j]);
1049 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001050 xenvif_idx_release(queue, pending_idx,
1051 XEN_NETIF_RSP_OKAY);
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001052 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001053 }
1054
1055 /* Remember the error: invalidate all subsequent fragments. */
1056 err = newerr;
1057 }
1058
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001059 if (skb_has_frag_list(skb) && !first_shinfo) {
1060 first_shinfo = skb_shinfo(skb);
1061 shinfo = skb_shinfo(skb_shinfo(skb)->frag_list);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001062 nr_frags = shinfo->nr_frags;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001063
1064 goto check_frags;
1065 }
1066
Zoltan Kissbdab8272014-04-02 18:04:58 +01001067 *gopp_map = gop_map;
Ian Campbellf942dc22011-03-15 00:06:18 +00001068 return err;
1069}
1070
Wei Liue9ce7cb2014-06-04 10:30:42 +01001071static void xenvif_fill_frags(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001072{
1073 struct skb_shared_info *shinfo = skb_shinfo(skb);
1074 int nr_frags = shinfo->nr_frags;
1075 int i;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001076 u16 prev_pending_idx = INVALID_PENDING_IDX;
1077
Ian Campbellf942dc22011-03-15 00:06:18 +00001078 for (i = 0; i < nr_frags; i++) {
1079 skb_frag_t *frag = shinfo->frags + i;
1080 struct xen_netif_tx_request *txp;
Ian Campbellea066ad2011-10-05 00:28:46 +00001081 struct page *page;
1082 u16 pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001083
Ian Campbellea066ad2011-10-05 00:28:46 +00001084 pending_idx = frag_get_pending_idx(frag);
Ian Campbellf942dc22011-03-15 00:06:18 +00001085
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001086 /* If this is not the first frag, chain it to the previous*/
Zoltan Kissbdab8272014-04-02 18:04:58 +01001087 if (prev_pending_idx == INVALID_PENDING_IDX)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001088 skb_shinfo(skb)->destructor_arg =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001089 &callback_param(queue, pending_idx);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001090 else
Wei Liue9ce7cb2014-06-04 10:30:42 +01001091 callback_param(queue, prev_pending_idx).ctx =
1092 &callback_param(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001093
Wei Liue9ce7cb2014-06-04 10:30:42 +01001094 callback_param(queue, pending_idx).ctx = NULL;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001095 prev_pending_idx = pending_idx;
1096
Wei Liue9ce7cb2014-06-04 10:30:42 +01001097 txp = &queue->pending_tx_info[pending_idx].req;
1098 page = virt_to_page(idx_to_kaddr(queue, pending_idx));
Ian Campbellea066ad2011-10-05 00:28:46 +00001099 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
Ian Campbellf942dc22011-03-15 00:06:18 +00001100 skb->len += txp->size;
1101 skb->data_len += txp->size;
1102 skb->truesize += txp->size;
1103
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001104 /* Take an extra reference to offset network stack's put_page */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001105 get_page(queue->mmap_pages[pending_idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +00001106 }
1107}
1108
Wei Liue9ce7cb2014-06-04 10:30:42 +01001109static int xenvif_get_extras(struct xenvif_queue *queue,
Paul Durrant562abd32016-03-10 12:30:27 +00001110 struct xen_netif_extra_info *extras,
1111 unsigned int *extra_count,
1112 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +00001113{
1114 struct xen_netif_extra_info extra;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001115 RING_IDX cons = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +00001116
1117 do {
1118 if (unlikely(work_to_do-- <= 0)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001119 netdev_err(queue->vif->dev, "Missing extra info\n");
1120 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001121 return -EBADR;
1122 }
1123
David Vrabel68a33bf2015-10-30 15:17:06 +00001124 RING_COPY_REQUEST(&queue->tx, cons, &extra);
Paul Durrant562abd32016-03-10 12:30:27 +00001125
1126 queue->tx.req_cons = ++cons;
1127 (*extra_count)++;
1128
Ian Campbellf942dc22011-03-15 00:06:18 +00001129 if (unlikely(!extra.type ||
1130 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001131 netdev_err(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001132 "Invalid extra type: %d\n", extra.type);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001133 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001134 return -EINVAL;
1135 }
1136
1137 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
Ian Campbellf942dc22011-03-15 00:06:18 +00001138 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1139
1140 return work_to_do;
1141}
1142
Wei Liu73764192013-08-26 12:59:39 +01001143static int xenvif_set_skb_gso(struct xenvif *vif,
1144 struct sk_buff *skb,
1145 struct xen_netif_extra_info *gso)
Ian Campbellf942dc22011-03-15 00:06:18 +00001146{
1147 if (!gso->u.gso.size) {
Ian Campbell488562862013-02-06 23:41:35 +00001148 netdev_err(vif->dev, "GSO size must not be zero.\n");
Wei Liu73764192013-08-26 12:59:39 +01001149 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001150 return -EINVAL;
1151 }
1152
Paul Durranta9468582013-10-16 17:50:31 +01001153 switch (gso->u.gso.type) {
1154 case XEN_NETIF_GSO_TYPE_TCPV4:
1155 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1156 break;
1157 case XEN_NETIF_GSO_TYPE_TCPV6:
1158 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1159 break;
1160 default:
Ian Campbell488562862013-02-06 23:41:35 +00001161 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
Wei Liu73764192013-08-26 12:59:39 +01001162 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001163 return -EINVAL;
1164 }
1165
1166 skb_shinfo(skb)->gso_size = gso->u.gso.size;
Paul Durrantb89587a2013-12-17 11:44:35 +00001167 /* gso_segs will be calculated later */
Ian Campbellf942dc22011-03-15 00:06:18 +00001168
1169 return 0;
1170}
1171
Wei Liue9ce7cb2014-06-04 10:30:42 +01001172static int checksum_setup(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001173{
Paul Durrant27216372014-01-09 10:02:47 +00001174 bool recalculate_partial_csum = false;
Ian Campbellf942dc22011-03-15 00:06:18 +00001175
Paul Durrant2eba61d2013-10-16 17:50:29 +01001176 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
Ian Campbellf942dc22011-03-15 00:06:18 +00001177 * peers can fail to set NETRXF_csum_blank when sending a GSO
1178 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1179 * recalculate the partial checksum.
1180 */
1181 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001182 queue->stats.rx_gso_checksum_fixup++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001183 skb->ip_summed = CHECKSUM_PARTIAL;
Paul Durrant27216372014-01-09 10:02:47 +00001184 recalculate_partial_csum = true;
Ian Campbellf942dc22011-03-15 00:06:18 +00001185 }
1186
1187 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1188 if (skb->ip_summed != CHECKSUM_PARTIAL)
1189 return 0;
1190
Paul Durrant27216372014-01-09 10:02:47 +00001191 return skb_checksum_setup(skb, recalculate_partial_csum);
Ian Campbellf942dc22011-03-15 00:06:18 +00001192}
1193
Wei Liue9ce7cb2014-06-04 10:30:42 +01001194static bool tx_credit_exceeded(struct xenvif_queue *queue, unsigned size)
Ian Campbellf942dc22011-03-15 00:06:18 +00001195{
Wei Liu059dfa62013-10-28 12:07:57 +00001196 u64 now = get_jiffies_64();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001197 u64 next_credit = queue->credit_window_start +
1198 msecs_to_jiffies(queue->credit_usec / 1000);
Ian Campbellf942dc22011-03-15 00:06:18 +00001199
1200 /* Timer could already be pending in rare cases. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001201 if (timer_pending(&queue->credit_timeout))
Ian Campbellf942dc22011-03-15 00:06:18 +00001202 return true;
1203
1204 /* Passed the point where we can replenish credit? */
Wei Liu059dfa62013-10-28 12:07:57 +00001205 if (time_after_eq64(now, next_credit)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001206 queue->credit_window_start = now;
1207 tx_add_credit(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001208 }
1209
1210 /* Still too big to send right now? Set a callback. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001211 if (size > queue->remaining_credit) {
1212 queue->credit_timeout.data =
1213 (unsigned long)queue;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001214 mod_timer(&queue->credit_timeout,
Ian Campbellf942dc22011-03-15 00:06:18 +00001215 next_credit);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001216 queue->credit_window_start = next_credit;
Ian Campbellf942dc22011-03-15 00:06:18 +00001217
1218 return true;
1219 }
1220
1221 return false;
1222}
1223
Paul Durrant210c34d2015-09-02 17:58:36 +01001224/* No locking is required in xenvif_mcast_add/del() as they are
1225 * only ever invoked from NAPI poll. An RCU list is used because
1226 * xenvif_mcast_match() is called asynchronously, during start_xmit.
1227 */
1228
1229static int xenvif_mcast_add(struct xenvif *vif, const u8 *addr)
1230{
1231 struct xenvif_mcast_addr *mcast;
1232
1233 if (vif->fe_mcast_count == XEN_NETBK_MCAST_MAX) {
1234 if (net_ratelimit())
1235 netdev_err(vif->dev,
1236 "Too many multicast addresses\n");
1237 return -ENOSPC;
1238 }
1239
1240 mcast = kzalloc(sizeof(*mcast), GFP_ATOMIC);
1241 if (!mcast)
1242 return -ENOMEM;
1243
1244 ether_addr_copy(mcast->addr, addr);
1245 list_add_tail_rcu(&mcast->entry, &vif->fe_mcast_addr);
1246 vif->fe_mcast_count++;
1247
1248 return 0;
1249}
1250
1251static void xenvif_mcast_del(struct xenvif *vif, const u8 *addr)
1252{
1253 struct xenvif_mcast_addr *mcast;
1254
1255 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
1256 if (ether_addr_equal(addr, mcast->addr)) {
1257 --vif->fe_mcast_count;
1258 list_del_rcu(&mcast->entry);
1259 kfree_rcu(mcast, rcu);
1260 break;
1261 }
1262 }
1263}
1264
1265bool xenvif_mcast_match(struct xenvif *vif, const u8 *addr)
1266{
1267 struct xenvif_mcast_addr *mcast;
1268
1269 rcu_read_lock();
1270 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
1271 if (ether_addr_equal(addr, mcast->addr)) {
1272 rcu_read_unlock();
1273 return true;
1274 }
1275 }
1276 rcu_read_unlock();
1277
1278 return false;
1279}
1280
1281void xenvif_mcast_addr_list_free(struct xenvif *vif)
1282{
1283 /* No need for locking or RCU here. NAPI poll and TX queue
1284 * are stopped.
1285 */
1286 while (!list_empty(&vif->fe_mcast_addr)) {
1287 struct xenvif_mcast_addr *mcast;
1288
1289 mcast = list_first_entry(&vif->fe_mcast_addr,
1290 struct xenvif_mcast_addr,
1291 entry);
1292 --vif->fe_mcast_count;
1293 list_del(&mcast->entry);
1294 kfree(mcast);
1295 }
1296}
1297
Wei Liue9ce7cb2014-06-04 10:30:42 +01001298static void xenvif_tx_build_gops(struct xenvif_queue *queue,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001299 int budget,
1300 unsigned *copy_ops,
1301 unsigned *map_ops)
Ian Campbellf942dc22011-03-15 00:06:18 +00001302{
Ross Lagerwall2475b222015-08-03 15:38:03 +01001303 struct gnttab_map_grant_ref *gop = queue->tx_map_ops;
1304 struct sk_buff *skb, *nskb;
Ian Campbellf942dc22011-03-15 00:06:18 +00001305 int ret;
Ross Lagerwall2475b222015-08-03 15:38:03 +01001306 unsigned int frag_overflow;
Ian Campbellf942dc22011-03-15 00:06:18 +00001307
Wei Liue9ce7cb2014-06-04 10:30:42 +01001308 while (skb_queue_len(&queue->tx_queue) < budget) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001309 struct xen_netif_tx_request txreq;
Wei Liu37641492013-05-02 00:43:59 +00001310 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
Ian Campbellf942dc22011-03-15 00:06:18 +00001311 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
Paul Durrant562abd32016-03-10 12:30:27 +00001312 unsigned int extra_count;
Ian Campbellf942dc22011-03-15 00:06:18 +00001313 u16 pending_idx;
1314 RING_IDX idx;
1315 int work_to_do;
1316 unsigned int data_len;
1317 pending_ring_idx_t index;
1318
Wei Liue9ce7cb2014-06-04 10:30:42 +01001319 if (queue->tx.sring->req_prod - queue->tx.req_cons >
Ian Campbell488562862013-02-06 23:41:35 +00001320 XEN_NETIF_TX_RING_SIZE) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001321 netdev_err(queue->vif->dev,
Ian Campbell488562862013-02-06 23:41:35 +00001322 "Impossible number of requests. "
1323 "req_prod %d, req_cons %d, size %ld\n",
Wei Liue9ce7cb2014-06-04 10:30:42 +01001324 queue->tx.sring->req_prod, queue->tx.req_cons,
Ian Campbell488562862013-02-06 23:41:35 +00001325 XEN_NETIF_TX_RING_SIZE);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001326 xenvif_fatal_tx_err(queue->vif);
Wei Liue9d8b2c2014-04-01 12:46:12 +01001327 break;
Ian Campbell488562862013-02-06 23:41:35 +00001328 }
1329
Wei Liue9ce7cb2014-06-04 10:30:42 +01001330 work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
Wei Liub3f980b2013-08-26 12:59:38 +01001331 if (!work_to_do)
1332 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001333
Wei Liue9ce7cb2014-06-04 10:30:42 +01001334 idx = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +00001335 rmb(); /* Ensure that we see the request before we copy it. */
David Vrabel68a33bf2015-10-30 15:17:06 +00001336 RING_COPY_REQUEST(&queue->tx, idx, &txreq);
Ian Campbellf942dc22011-03-15 00:06:18 +00001337
1338 /* Credit-based scheduling. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001339 if (txreq.size > queue->remaining_credit &&
1340 tx_credit_exceeded(queue, txreq.size))
Wei Liub3f980b2013-08-26 12:59:38 +01001341 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001342
Wei Liue9ce7cb2014-06-04 10:30:42 +01001343 queue->remaining_credit -= txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +00001344
1345 work_to_do--;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001346 queue->tx.req_cons = ++idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001347
1348 memset(extras, 0, sizeof(extras));
Paul Durrant562abd32016-03-10 12:30:27 +00001349 extra_count = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00001350 if (txreq.flags & XEN_NETTXF_extra_info) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001351 work_to_do = xenvif_get_extras(queue, extras,
Paul Durrant562abd32016-03-10 12:30:27 +00001352 &extra_count,
Wei Liu73764192013-08-26 12:59:39 +01001353 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001354 idx = queue->tx.req_cons;
Ian Campbell488562862013-02-06 23:41:35 +00001355 if (unlikely(work_to_do < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001356 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001357 }
1358
Paul Durrant210c34d2015-09-02 17:58:36 +01001359 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1].type) {
1360 struct xen_netif_extra_info *extra;
1361
1362 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1];
1363 ret = xenvif_mcast_add(queue->vif, extra->u.mcast.addr);
1364
Paul Durrant562abd32016-03-10 12:30:27 +00001365 make_tx_response(queue, &txreq, extra_count,
Paul Durrant210c34d2015-09-02 17:58:36 +01001366 (ret == 0) ?
1367 XEN_NETIF_RSP_OKAY :
1368 XEN_NETIF_RSP_ERROR);
1369 push_tx_responses(queue);
1370 continue;
1371 }
1372
1373 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1].type) {
1374 struct xen_netif_extra_info *extra;
1375
1376 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1];
1377 xenvif_mcast_del(queue->vif, extra->u.mcast.addr);
1378
Paul Durrant562abd32016-03-10 12:30:27 +00001379 make_tx_response(queue, &txreq, extra_count,
1380 XEN_NETIF_RSP_OKAY);
Paul Durrant210c34d2015-09-02 17:58:36 +01001381 push_tx_responses(queue);
1382 continue;
1383 }
1384
Paul Durrant562abd32016-03-10 12:30:27 +00001385 ret = xenvif_count_requests(queue, &txreq, extra_count,
1386 txfrags, work_to_do);
Ian Campbell488562862013-02-06 23:41:35 +00001387 if (unlikely(ret < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001388 break;
Ian Campbell488562862013-02-06 23:41:35 +00001389
Ian Campbellf942dc22011-03-15 00:06:18 +00001390 idx += ret;
1391
1392 if (unlikely(txreq.size < ETH_HLEN)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001393 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001394 "Bad packet size: %d\n", txreq.size);
Paul Durrant562abd32016-03-10 12:30:27 +00001395 xenvif_tx_err(queue, &txreq, extra_count, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001396 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001397 }
1398
1399 /* No crossing a page as the payload mustn't fragment. */
Julien Gralld0089e82015-05-05 13:15:29 +01001400 if (unlikely((txreq.offset + txreq.size) > XEN_PAGE_SIZE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001401 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +01001402 "txreq.offset: %u, size: %u, end: %lu\n",
Ian Campbellf942dc22011-03-15 00:06:18 +00001403 txreq.offset, txreq.size,
Julien Gralld0089e82015-05-05 13:15:29 +01001404 (unsigned long)(txreq.offset&~XEN_PAGE_MASK) + txreq.size);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001405 xenvif_fatal_tx_err(queue->vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001406 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001407 }
1408
Wei Liue9ce7cb2014-06-04 10:30:42 +01001409 index = pending_index(queue->pending_cons);
1410 pending_idx = queue->pending_ring[index];
Ian Campbellf942dc22011-03-15 00:06:18 +00001411
Malcolm Crossley7e5d7752014-11-05 10:50:22 +00001412 data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN &&
Wei Liu37641492013-05-02 00:43:59 +00001413 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
Malcolm Crossley7e5d7752014-11-05 10:50:22 +00001414 XEN_NETBACK_TX_COPY_LEN : txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +00001415
Zoltan Kisse3377f32014-03-06 21:48:29 +00001416 skb = xenvif_alloc_skb(data_len);
Ian Campbellf942dc22011-03-15 00:06:18 +00001417 if (unlikely(skb == NULL)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001418 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001419 "Can't allocate a skb in start_xmit.\n");
Paul Durrant562abd32016-03-10 12:30:27 +00001420 xenvif_tx_err(queue, &txreq, extra_count, idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001421 break;
1422 }
1423
Ross Lagerwall2475b222015-08-03 15:38:03 +01001424 skb_shinfo(skb)->nr_frags = ret;
1425 if (data_len < txreq.size)
1426 skb_shinfo(skb)->nr_frags++;
1427 /* At this point shinfo->nr_frags is in fact the number of
1428 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
1429 */
1430 frag_overflow = 0;
1431 nskb = NULL;
1432 if (skb_shinfo(skb)->nr_frags > MAX_SKB_FRAGS) {
1433 frag_overflow = skb_shinfo(skb)->nr_frags - MAX_SKB_FRAGS;
1434 BUG_ON(frag_overflow > MAX_SKB_FRAGS);
1435 skb_shinfo(skb)->nr_frags = MAX_SKB_FRAGS;
1436 nskb = xenvif_alloc_skb(0);
1437 if (unlikely(nskb == NULL)) {
1438 kfree_skb(skb);
Paul Durrant562abd32016-03-10 12:30:27 +00001439 xenvif_tx_err(queue, &txreq, extra_count, idx);
Ross Lagerwall2475b222015-08-03 15:38:03 +01001440 if (net_ratelimit())
1441 netdev_err(queue->vif->dev,
1442 "Can't allocate the frag_list skb.\n");
1443 break;
1444 }
1445 }
1446
Ian Campbellf942dc22011-03-15 00:06:18 +00001447 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1448 struct xen_netif_extra_info *gso;
1449 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1450
Wei Liue9ce7cb2014-06-04 10:30:42 +01001451 if (xenvif_set_skb_gso(queue->vif, skb, gso)) {
Wei Liu73764192013-08-26 12:59:39 +01001452 /* Failure in xenvif_set_skb_gso is fatal. */
Ian Campbellf942dc22011-03-15 00:06:18 +00001453 kfree_skb(skb);
Ross Lagerwall2475b222015-08-03 15:38:03 +01001454 kfree_skb(nskb);
Wei Liub3f980b2013-08-26 12:59:38 +01001455 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001456 }
1457 }
1458
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001459 XENVIF_TX_CB(skb)->pending_idx = pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001460
1461 __skb_put(skb, data_len);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001462 queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref;
1463 queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid;
1464 queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001465
Wei Liue9ce7cb2014-06-04 10:30:42 +01001466 queue->tx_copy_ops[*copy_ops].dest.u.gmfn =
Julien Grall0df4f262015-08-07 17:34:37 +01001467 virt_to_gfn(skb->data);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001468 queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF;
1469 queue->tx_copy_ops[*copy_ops].dest.offset =
Julien Gralld0089e82015-05-05 13:15:29 +01001470 offset_in_page(skb->data) & ~XEN_PAGE_MASK;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001471
Wei Liue9ce7cb2014-06-04 10:30:42 +01001472 queue->tx_copy_ops[*copy_ops].len = data_len;
1473 queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001474
1475 (*copy_ops)++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001476
Ian Campbellf942dc22011-03-15 00:06:18 +00001477 if (data_len < txreq.size) {
Ian Campbellea066ad2011-10-05 00:28:46 +00001478 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1479 pending_idx);
Paul Durrant562abd32016-03-10 12:30:27 +00001480 xenvif_tx_create_map_op(queue, pending_idx, &txreq,
1481 extra_count, gop);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001482 gop++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001483 } else {
Ian Campbellea066ad2011-10-05 00:28:46 +00001484 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1485 INVALID_PENDING_IDX);
Paul Durrant562abd32016-03-10 12:30:27 +00001486 memcpy(&queue->pending_tx_info[pending_idx].req,
1487 &txreq, sizeof(txreq));
1488 queue->pending_tx_info[pending_idx].extra_count =
1489 extra_count;
Ian Campbellf942dc22011-03-15 00:06:18 +00001490 }
1491
Wei Liue9ce7cb2014-06-04 10:30:42 +01001492 queue->pending_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001493
Ross Lagerwall2475b222015-08-03 15:38:03 +01001494 gop = xenvif_get_requests(queue, skb, txfrags, gop,
1495 frag_overflow, nskb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001496
Wei Liue9ce7cb2014-06-04 10:30:42 +01001497 __skb_queue_tail(&queue->tx_queue, skb);
Annie Li1e0b6ea2012-06-27 00:46:58 +00001498
Wei Liue9ce7cb2014-06-04 10:30:42 +01001499 queue->tx.req_cons = idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001500
Wei Liue9ce7cb2014-06-04 10:30:42 +01001501 if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) ||
1502 (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001503 break;
1504 }
1505
Wei Liue9ce7cb2014-06-04 10:30:42 +01001506 (*map_ops) = gop - queue->tx_map_ops;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001507 return;
Ian Campbellf942dc22011-03-15 00:06:18 +00001508}
1509
Zoltan Kisse3377f32014-03-06 21:48:29 +00001510/* Consolidate skb with a frag_list into a brand new one with local pages on
1511 * frags. Returns 0 or -ENOMEM if can't allocate new pages.
1512 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001513static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *skb)
Zoltan Kisse3377f32014-03-06 21:48:29 +00001514{
1515 unsigned int offset = skb_headlen(skb);
1516 skb_frag_t frags[MAX_SKB_FRAGS];
David Vrabel49d99912015-03-04 11:14:47 +00001517 int i, f;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001518 struct ubuf_info *uarg;
1519 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1520
Wei Liue9ce7cb2014-06-04 10:30:42 +01001521 queue->stats.tx_zerocopy_sent += 2;
1522 queue->stats.tx_frag_overflow++;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001523
Wei Liue9ce7cb2014-06-04 10:30:42 +01001524 xenvif_fill_frags(queue, nskb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001525 /* Subtract frags size, we will correct it later */
1526 skb->truesize -= skb->data_len;
1527 skb->len += nskb->len;
1528 skb->data_len += nskb->len;
1529
1530 /* create a brand new frags array and coalesce there */
1531 for (i = 0; offset < skb->len; i++) {
1532 struct page *page;
1533 unsigned int len;
1534
1535 BUG_ON(i >= MAX_SKB_FRAGS);
Zoltan Kiss44cc8ed2014-10-28 15:29:31 +00001536 page = alloc_page(GFP_ATOMIC);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001537 if (!page) {
1538 int j;
1539 skb->truesize += skb->data_len;
1540 for (j = 0; j < i; j++)
1541 put_page(frags[j].page.p);
1542 return -ENOMEM;
1543 }
1544
1545 if (offset + PAGE_SIZE < skb->len)
1546 len = PAGE_SIZE;
1547 else
1548 len = skb->len - offset;
1549 if (skb_copy_bits(skb, offset, page_address(page), len))
1550 BUG();
1551
1552 offset += len;
1553 frags[i].page.p = page;
1554 frags[i].page_offset = 0;
1555 skb_frag_size_set(&frags[i], len);
1556 }
David Vrabel49d99912015-03-04 11:14:47 +00001557
David Vrabelb0c21ba2015-03-04 11:14:48 +00001558 /* Copied all the bits from the frag list -- free it. */
1559 skb_frag_list_init(skb);
1560 xenvif_skb_zerocopy_prepare(queue, nskb);
1561 kfree_skb(nskb);
1562
David Vrabel49d99912015-03-04 11:14:47 +00001563 /* Release all the original (foreign) frags. */
1564 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1565 skb_frag_unref(skb, f);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001566 uarg = skb_shinfo(skb)->destructor_arg;
Wei Liua64bd932014-08-12 11:48:07 +01001567 /* increase inflight counter to offset decrement in callback */
1568 atomic_inc(&queue->inflight_packets);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001569 uarg->callback(uarg, true);
1570 skb_shinfo(skb)->destructor_arg = NULL;
1571
David Vrabelb0c21ba2015-03-04 11:14:48 +00001572 /* Fill the skb with the new (local) frags. */
1573 memcpy(skb_shinfo(skb)->frags, frags, i * sizeof(skb_frag_t));
1574 skb_shinfo(skb)->nr_frags = i;
1575 skb->truesize += i * PAGE_SIZE;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001576
1577 return 0;
1578}
Ian Campbellf942dc22011-03-15 00:06:18 +00001579
Wei Liue9ce7cb2014-06-04 10:30:42 +01001580static int xenvif_tx_submit(struct xenvif_queue *queue)
Wei Liub3f980b2013-08-26 12:59:38 +01001581{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001582 struct gnttab_map_grant_ref *gop_map = queue->tx_map_ops;
1583 struct gnttab_copy *gop_copy = queue->tx_copy_ops;
Wei Liub3f980b2013-08-26 12:59:38 +01001584 struct sk_buff *skb;
1585 int work_done = 0;
1586
Wei Liue9ce7cb2014-06-04 10:30:42 +01001587 while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001588 struct xen_netif_tx_request *txp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001589 u16 pending_idx;
1590 unsigned data_len;
1591
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001592 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001593 txp = &queue->pending_tx_info[pending_idx].req;
Ian Campbellf942dc22011-03-15 00:06:18 +00001594
1595 /* Check the remap error code. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001596 if (unlikely(xenvif_tx_check_gop(queue, skb, &gop_map, &gop_copy))) {
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001597 /* If there was an error, xenvif_tx_check_gop is
1598 * expected to release all the frags which were mapped,
1599 * so kfree_skb shouldn't do it again
1600 */
Ian Campbellf942dc22011-03-15 00:06:18 +00001601 skb_shinfo(skb)->nr_frags = 0;
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001602 if (skb_has_frag_list(skb)) {
1603 struct sk_buff *nskb =
1604 skb_shinfo(skb)->frag_list;
1605 skb_shinfo(nskb)->nr_frags = 0;
1606 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001607 kfree_skb(skb);
1608 continue;
1609 }
1610
1611 data_len = skb->len;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001612 callback_param(queue, pending_idx).ctx = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001613 if (data_len < txp->size) {
1614 /* Append the packet payload as a fragment. */
1615 txp->offset += data_len;
1616 txp->size -= data_len;
1617 } else {
1618 /* Schedule a response immediately. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001619 xenvif_idx_release(queue, pending_idx,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001620 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001621 }
1622
1623 if (txp->flags & XEN_NETTXF_csum_blank)
1624 skb->ip_summed = CHECKSUM_PARTIAL;
1625 else if (txp->flags & XEN_NETTXF_data_validated)
1626 skb->ip_summed = CHECKSUM_UNNECESSARY;
1627
Wei Liue9ce7cb2014-06-04 10:30:42 +01001628 xenvif_fill_frags(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001629
Zoltan Kisse3377f32014-03-06 21:48:29 +00001630 if (unlikely(skb_has_frag_list(skb))) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001631 if (xenvif_handle_frag_list(queue, skb)) {
Zoltan Kisse3377f32014-03-06 21:48:29 +00001632 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001633 netdev_err(queue->vif->dev,
Zoltan Kisse3377f32014-03-06 21:48:29 +00001634 "Not enough memory to consolidate frag_list!\n");
Wei Liua64bd932014-08-12 11:48:07 +01001635 xenvif_skb_zerocopy_prepare(queue, skb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001636 kfree_skb(skb);
1637 continue;
1638 }
1639 }
1640
Wei Liue9ce7cb2014-06-04 10:30:42 +01001641 skb->dev = queue->vif->dev;
Ian Campbellf942dc22011-03-15 00:06:18 +00001642 skb->protocol = eth_type_trans(skb, skb->dev);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001643 skb_reset_network_header(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001644
Wei Liue9ce7cb2014-06-04 10:30:42 +01001645 if (checksum_setup(queue, skb)) {
1646 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001647 "Can't setup checksum in net_tx_action\n");
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001648 /* We have to set this flag to trigger the callback */
1649 if (skb_shinfo(skb)->destructor_arg)
Wei Liua64bd932014-08-12 11:48:07 +01001650 xenvif_skb_zerocopy_prepare(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001651 kfree_skb(skb);
1652 continue;
1653 }
1654
Jason Wang40893fd2013-03-26 23:11:22 +00001655 skb_probe_transport_header(skb, 0);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001656
Paul Durrantb89587a2013-12-17 11:44:35 +00001657 /* If the packet is GSO then we will have just set up the
1658 * transport header offset in checksum_setup so it's now
1659 * straightforward to calculate gso_segs.
1660 */
1661 if (skb_is_gso(skb)) {
1662 int mss = skb_shinfo(skb)->gso_size;
1663 int hdrlen = skb_transport_header(skb) -
1664 skb_mac_header(skb) +
1665 tcp_hdrlen(skb);
1666
1667 skb_shinfo(skb)->gso_segs =
1668 DIV_ROUND_UP(skb->len - hdrlen, mss);
1669 }
1670
Wei Liue9ce7cb2014-06-04 10:30:42 +01001671 queue->stats.rx_bytes += skb->len;
1672 queue->stats.rx_packets++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001673
Wei Liub3f980b2013-08-26 12:59:38 +01001674 work_done++;
1675
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001676 /* Set this flag right before netif_receive_skb, otherwise
1677 * someone might think this packet already left netback, and
1678 * do a skb_copy_ubufs while we are still in control of the
1679 * skb. E.g. the __pskb_pull_tail earlier can do such thing.
1680 */
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001681 if (skb_shinfo(skb)->destructor_arg) {
Wei Liua64bd932014-08-12 11:48:07 +01001682 xenvif_skb_zerocopy_prepare(queue, skb);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001683 queue->stats.tx_zerocopy_sent++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001684 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001685
Wei Liub3f980b2013-08-26 12:59:38 +01001686 netif_receive_skb(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001687 }
Wei Liub3f980b2013-08-26 12:59:38 +01001688
1689 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001690}
1691
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001692void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success)
1693{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001694 unsigned long flags;
1695 pending_ring_idx_t index;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001696 struct xenvif_queue *queue = ubuf_to_queue(ubuf);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001697
1698 /* This is the only place where we grab this lock, to protect callbacks
1699 * from each other.
1700 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001701 spin_lock_irqsave(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001702 do {
1703 u16 pending_idx = ubuf->desc;
1704 ubuf = (struct ubuf_info *) ubuf->ctx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001705 BUG_ON(queue->dealloc_prod - queue->dealloc_cons >=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001706 MAX_PENDING_REQS);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001707 index = pending_index(queue->dealloc_prod);
1708 queue->dealloc_ring[index] = pending_idx;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001709 /* Sync with xenvif_tx_dealloc_action:
1710 * insert idx then incr producer.
1711 */
1712 smp_wmb();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001713 queue->dealloc_prod++;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001714 } while (ubuf);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001715 spin_unlock_irqrestore(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001716
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001717 if (likely(zerocopy_success))
Wei Liue9ce7cb2014-06-04 10:30:42 +01001718 queue->stats.tx_zerocopy_success++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001719 else
Wei Liue9ce7cb2014-06-04 10:30:42 +01001720 queue->stats.tx_zerocopy_fail++;
Wei Liua64bd932014-08-12 11:48:07 +01001721 xenvif_skb_zerocopy_complete(queue);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001722}
1723
Wei Liue9ce7cb2014-06-04 10:30:42 +01001724static inline void xenvif_tx_dealloc_action(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001725{
1726 struct gnttab_unmap_grant_ref *gop;
1727 pending_ring_idx_t dc, dp;
1728 u16 pending_idx, pending_idx_release[MAX_PENDING_REQS];
1729 unsigned int i = 0;
1730
Wei Liue9ce7cb2014-06-04 10:30:42 +01001731 dc = queue->dealloc_cons;
1732 gop = queue->tx_unmap_ops;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001733
1734 /* Free up any grants we have finished using */
1735 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001736 dp = queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001737
1738 /* Ensure we see all indices enqueued by all
1739 * xenvif_zerocopy_callback().
1740 */
1741 smp_rmb();
1742
1743 while (dc != dp) {
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001744 BUG_ON(gop - queue->tx_unmap_ops >= MAX_PENDING_REQS);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001745 pending_idx =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001746 queue->dealloc_ring[pending_index(dc++)];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001747
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001748 pending_idx_release[gop - queue->tx_unmap_ops] =
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001749 pending_idx;
Dan Carpenter50c2e4d2015-07-12 01:20:55 +03001750 queue->pages_to_unmap[gop - queue->tx_unmap_ops] =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001751 queue->mmap_pages[pending_idx];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001752 gnttab_set_unmap_op(gop,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001753 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001754 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001755 queue->grant_tx_handle[pending_idx]);
1756 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001757 ++gop;
1758 }
1759
Wei Liue9ce7cb2014-06-04 10:30:42 +01001760 } while (dp != queue->dealloc_prod);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001761
Wei Liue9ce7cb2014-06-04 10:30:42 +01001762 queue->dealloc_cons = dc;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001763
Wei Liue9ce7cb2014-06-04 10:30:42 +01001764 if (gop - queue->tx_unmap_ops > 0) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001765 int ret;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001766 ret = gnttab_unmap_refs(queue->tx_unmap_ops,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001767 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001768 queue->pages_to_unmap,
1769 gop - queue->tx_unmap_ops);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001770 if (ret) {
Julien Grall68946152015-06-16 20:10:48 +01001771 netdev_err(queue->vif->dev, "Unmap fail: nr_ops %tu ret %d\n",
Wei Liue9ce7cb2014-06-04 10:30:42 +01001772 gop - queue->tx_unmap_ops, ret);
1773 for (i = 0; i < gop - queue->tx_unmap_ops; ++i) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001774 if (gop[i].status != GNTST_okay)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001775 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +01001776 " host_addr: 0x%llx handle: 0x%x status: %d\n",
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001777 gop[i].host_addr,
1778 gop[i].handle,
1779 gop[i].status);
1780 }
1781 BUG();
1782 }
1783 }
1784
Wei Liue9ce7cb2014-06-04 10:30:42 +01001785 for (i = 0; i < gop - queue->tx_unmap_ops; ++i)
1786 xenvif_idx_release(queue, pending_idx_release[i],
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001787 XEN_NETIF_RSP_OKAY);
1788}
1789
1790
Ian Campbellf942dc22011-03-15 00:06:18 +00001791/* Called after netfront has transmitted */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001792int xenvif_tx_action(struct xenvif_queue *queue, int budget)
Ian Campbellf942dc22011-03-15 00:06:18 +00001793{
Zoltan Kissbdab8272014-04-02 18:04:58 +01001794 unsigned nr_mops, nr_cops = 0;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001795 int work_done, ret;
Ian Campbellf942dc22011-03-15 00:06:18 +00001796
Wei Liue9ce7cb2014-06-04 10:30:42 +01001797 if (unlikely(!tx_work_todo(queue)))
Wei Liub3f980b2013-08-26 12:59:38 +01001798 return 0;
1799
Wei Liue9ce7cb2014-06-04 10:30:42 +01001800 xenvif_tx_build_gops(queue, budget, &nr_cops, &nr_mops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001801
Zoltan Kissbdab8272014-04-02 18:04:58 +01001802 if (nr_cops == 0)
Wei Liub3f980b2013-08-26 12:59:38 +01001803 return 0;
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +00001804
Wei Liue9ce7cb2014-06-04 10:30:42 +01001805 gnttab_batch_copy(queue->tx_copy_ops, nr_cops);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001806 if (nr_mops != 0) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001807 ret = gnttab_map_refs(queue->tx_map_ops,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001808 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001809 queue->pages_to_map,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001810 nr_mops);
1811 BUG_ON(ret);
1812 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001813
Wei Liue9ce7cb2014-06-04 10:30:42 +01001814 work_done = xenvif_tx_submit(queue);
Wei Liub3f980b2013-08-26 12:59:38 +01001815
1816 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001817}
1818
Wei Liue9ce7cb2014-06-04 10:30:42 +01001819static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +01001820 u8 status)
Ian Campbellf942dc22011-03-15 00:06:18 +00001821{
Ian Campbellf942dc22011-03-15 00:06:18 +00001822 struct pending_tx_info *pending_tx_info;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001823 pending_ring_idx_t index;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001824 unsigned long flags;
Wei Liu2810e5b2013-04-22 02:20:42 +00001825
Wei Liue9ce7cb2014-06-04 10:30:42 +01001826 pending_tx_info = &queue->pending_tx_info[pending_idx];
David Vrabel7fbb9d82015-02-24 11:17:59 +00001827
Wei Liue9ce7cb2014-06-04 10:30:42 +01001828 spin_lock_irqsave(&queue->response_lock, flags);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001829
Paul Durrant562abd32016-03-10 12:30:27 +00001830 make_tx_response(queue, &pending_tx_info->req,
1831 pending_tx_info->extra_count, status);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001832
1833 /* Release the pending index before pusing the Tx response so
1834 * its available before a new Tx request is pushed by the
1835 * frontend.
1836 */
1837 index = pending_index(queue->pending_prod++);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001838 queue->pending_ring[index] = pending_idx;
David Vrabel7fbb9d82015-02-24 11:17:59 +00001839
David Vrabelc8a4d292015-03-11 15:27:59 +00001840 push_tx_responses(queue);
David Vrabel7fbb9d82015-02-24 11:17:59 +00001841
Wei Liue9ce7cb2014-06-04 10:30:42 +01001842 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellf942dc22011-03-15 00:06:18 +00001843}
1844
Wei Liu2810e5b2013-04-22 02:20:42 +00001845
Wei Liue9ce7cb2014-06-04 10:30:42 +01001846static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001847 struct xen_netif_tx_request *txp,
Paul Durrant562abd32016-03-10 12:30:27 +00001848 unsigned int extra_count,
Ian Campbellf942dc22011-03-15 00:06:18 +00001849 s8 st)
1850{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001851 RING_IDX i = queue->tx.rsp_prod_pvt;
Ian Campbellf942dc22011-03-15 00:06:18 +00001852 struct xen_netif_tx_response *resp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001853
Wei Liue9ce7cb2014-06-04 10:30:42 +01001854 resp = RING_GET_RESPONSE(&queue->tx, i);
Ian Campbellf942dc22011-03-15 00:06:18 +00001855 resp->id = txp->id;
1856 resp->status = st;
1857
Paul Durrant562abd32016-03-10 12:30:27 +00001858 while (extra_count-- != 0)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001859 RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001860
Wei Liue9ce7cb2014-06-04 10:30:42 +01001861 queue->tx.rsp_prod_pvt = ++i;
Ian Campbellf942dc22011-03-15 00:06:18 +00001862}
1863
David Vrabelc8a4d292015-03-11 15:27:59 +00001864static void push_tx_responses(struct xenvif_queue *queue)
1865{
1866 int notify;
1867
1868 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify);
1869 if (notify)
1870 notify_remote_via_irq(queue->tx_irq);
1871}
1872
Wei Liue9ce7cb2014-06-04 10:30:42 +01001873static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001874 u16 id,
1875 s8 st,
1876 u16 offset,
1877 u16 size,
1878 u16 flags)
1879{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001880 RING_IDX i = queue->rx.rsp_prod_pvt;
Ian Campbellf942dc22011-03-15 00:06:18 +00001881 struct xen_netif_rx_response *resp;
1882
Wei Liue9ce7cb2014-06-04 10:30:42 +01001883 resp = RING_GET_RESPONSE(&queue->rx, i);
Ian Campbellf942dc22011-03-15 00:06:18 +00001884 resp->offset = offset;
1885 resp->flags = flags;
1886 resp->id = id;
1887 resp->status = (s16)size;
1888 if (st < 0)
1889 resp->status = (s16)st;
1890
Wei Liue9ce7cb2014-06-04 10:30:42 +01001891 queue->rx.rsp_prod_pvt = ++i;
Ian Campbellf942dc22011-03-15 00:06:18 +00001892
1893 return resp;
1894}
1895
Wei Liue9ce7cb2014-06-04 10:30:42 +01001896void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001897{
1898 int ret;
1899 struct gnttab_unmap_grant_ref tx_unmap_op;
1900
1901 gnttab_set_unmap_op(&tx_unmap_op,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001902 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001903 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001904 queue->grant_tx_handle[pending_idx]);
1905 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001906
1907 ret = gnttab_unmap_refs(&tx_unmap_op, NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001908 &queue->mmap_pages[pending_idx], 1);
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001909 if (ret) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001910 netdev_err(queue->vif->dev,
Julien Grall68946152015-06-16 20:10:48 +01001911 "Unmap fail: ret: %d pending_idx: %d host_addr: %llx handle: 0x%x status: %d\n",
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001912 ret,
1913 pending_idx,
1914 tx_unmap_op.host_addr,
1915 tx_unmap_op.handle,
1916 tx_unmap_op.status);
1917 BUG();
1918 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001919}
1920
Wei Liue9ce7cb2014-06-04 10:30:42 +01001921static inline int tx_work_todo(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001922{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001923 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&queue->tx)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001924 return 1;
1925
1926 return 0;
1927}
1928
Wei Liue9ce7cb2014-06-04 10:30:42 +01001929static inline bool tx_dealloc_work_todo(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001930{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001931 return queue->dealloc_cons != queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001932}
1933
Paul Durrant4e15ee22016-05-13 09:37:26 +01001934void xenvif_unmap_frontend_data_rings(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001935{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001936 if (queue->tx.sring)
1937 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1938 queue->tx.sring);
1939 if (queue->rx.sring)
1940 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1941 queue->rx.sring);
Ian Campbellf942dc22011-03-15 00:06:18 +00001942}
1943
Paul Durrant4e15ee22016-05-13 09:37:26 +01001944int xenvif_map_frontend_data_rings(struct xenvif_queue *queue,
1945 grant_ref_t tx_ring_ref,
1946 grant_ref_t rx_ring_ref)
Ian Campbellf942dc22011-03-15 00:06:18 +00001947{
David Vrabelc9d63692011-09-29 16:53:31 +01001948 void *addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001949 struct xen_netif_tx_sring *txs;
1950 struct xen_netif_rx_sring *rxs;
1951
1952 int err = -ENOMEM;
1953
Wei Liue9ce7cb2014-06-04 10:30:42 +01001954 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
Wei Liuccc9d902015-04-03 14:44:59 +08001955 &tx_ring_ref, 1, &addr);
David Vrabelc9d63692011-09-29 16:53:31 +01001956 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001957 goto err;
1958
David Vrabelc9d63692011-09-29 16:53:31 +01001959 txs = (struct xen_netif_tx_sring *)addr;
Julien Gralld0089e82015-05-05 13:15:29 +01001960 BACK_RING_INIT(&queue->tx, txs, XEN_PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001961
Wei Liue9ce7cb2014-06-04 10:30:42 +01001962 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
Wei Liuccc9d902015-04-03 14:44:59 +08001963 &rx_ring_ref, 1, &addr);
David Vrabelc9d63692011-09-29 16:53:31 +01001964 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001965 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001966
David Vrabelc9d63692011-09-29 16:53:31 +01001967 rxs = (struct xen_netif_rx_sring *)addr;
Julien Gralld0089e82015-05-05 13:15:29 +01001968 BACK_RING_INIT(&queue->rx, rxs, XEN_PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001969
1970 return 0;
1971
1972err:
Paul Durrant4e15ee22016-05-13 09:37:26 +01001973 xenvif_unmap_frontend_data_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001974 return err;
1975}
1976
David Vrabelecf08d22014-10-22 14:08:55 +01001977static void xenvif_queue_carrier_off(struct xenvif_queue *queue)
Paul Durrantca2f09f2013-12-06 16:36:07 +00001978{
David Vrabelecf08d22014-10-22 14:08:55 +01001979 struct xenvif *vif = queue->vif;
1980
1981 queue->stalled = true;
1982
1983 /* At least one queue has stalled? Disable the carrier. */
1984 spin_lock(&vif->lock);
1985 if (vif->stalled_queues++ == 0) {
1986 netdev_info(vif->dev, "Guest Rx stalled");
1987 netif_carrier_off(vif->dev);
1988 }
1989 spin_unlock(&vif->lock);
Paul Durrantca2f09f2013-12-06 16:36:07 +00001990}
1991
David Vrabelecf08d22014-10-22 14:08:55 +01001992static void xenvif_queue_carrier_on(struct xenvif_queue *queue)
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01001993{
David Vrabelecf08d22014-10-22 14:08:55 +01001994 struct xenvif *vif = queue->vif;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01001995
David Vrabelecf08d22014-10-22 14:08:55 +01001996 queue->last_rx_time = jiffies; /* Reset Rx stall detection. */
1997 queue->stalled = false;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01001998
David Vrabelecf08d22014-10-22 14:08:55 +01001999 /* All queues are ready? Enable the carrier. */
2000 spin_lock(&vif->lock);
2001 if (--vif->stalled_queues == 0) {
2002 netdev_info(vif->dev, "Guest Rx ready");
2003 netif_carrier_on(vif->dev);
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002004 }
David Vrabelecf08d22014-10-22 14:08:55 +01002005 spin_unlock(&vif->lock);
2006}
2007
2008static bool xenvif_rx_queue_stalled(struct xenvif_queue *queue)
2009{
2010 RING_IDX prod, cons;
2011
2012 prod = queue->rx.sring->req_prod;
2013 cons = queue->rx.req_cons;
2014
David Vrabel1d5d4852015-09-08 14:25:14 +01002015 return !queue->stalled && prod - cons < 1
David Vrabelecf08d22014-10-22 14:08:55 +01002016 && time_after(jiffies,
David Vrabel26c0e102014-12-18 11:13:06 +00002017 queue->last_rx_time + queue->vif->stall_timeout);
David Vrabelecf08d22014-10-22 14:08:55 +01002018}
2019
2020static bool xenvif_rx_queue_ready(struct xenvif_queue *queue)
2021{
2022 RING_IDX prod, cons;
2023
2024 prod = queue->rx.sring->req_prod;
2025 cons = queue->rx.req_cons;
2026
David Vrabel1d5d4852015-09-08 14:25:14 +01002027 return queue->stalled && prod - cons >= 1;
David Vrabelecf08d22014-10-22 14:08:55 +01002028}
2029
David Vrabelf48da8b2014-10-22 14:08:54 +01002030static bool xenvif_have_rx_work(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00002031{
David Vrabel99a2dea2016-01-15 14:55:34 +00002032 return xenvif_rx_ring_slots_available(queue)
David Vrabel26c0e102014-12-18 11:13:06 +00002033 || (queue->vif->stall_timeout &&
2034 (xenvif_rx_queue_stalled(queue)
2035 || xenvif_rx_queue_ready(queue)))
David Vrabelf48da8b2014-10-22 14:08:54 +01002036 || kthread_should_stop()
2037 || queue->vif->disabled;
Ian Campbellf942dc22011-03-15 00:06:18 +00002038}
2039
David Vrabelf48da8b2014-10-22 14:08:54 +01002040static long xenvif_rx_queue_timeout(struct xenvif_queue *queue)
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002041{
David Vrabelf48da8b2014-10-22 14:08:54 +01002042 struct sk_buff *skb;
2043 long timeout;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002044
David Vrabelf48da8b2014-10-22 14:08:54 +01002045 skb = skb_peek(&queue->rx_queue);
2046 if (!skb)
2047 return MAX_SCHEDULE_TIMEOUT;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002048
David Vrabelf48da8b2014-10-22 14:08:54 +01002049 timeout = XENVIF_RX_CB(skb)->expires - jiffies;
2050 return timeout < 0 ? 0 : timeout;
2051}
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002052
David Vrabelf48da8b2014-10-22 14:08:54 +01002053/* Wait until the guest Rx thread has work.
2054 *
2055 * The timeout needs to be adjusted based on the current head of the
2056 * queue (and not just the head at the beginning). In particular, if
2057 * the queue is initially empty an infinite timeout is used and this
2058 * needs to be reduced when a skb is queued.
2059 *
2060 * This cannot be done with wait_event_timeout() because it only
2061 * calculates the timeout once.
2062 */
2063static void xenvif_wait_for_rx_work(struct xenvif_queue *queue)
2064{
2065 DEFINE_WAIT(wait);
2066
2067 if (xenvif_have_rx_work(queue))
2068 return;
2069
2070 for (;;) {
2071 long ret;
2072
2073 prepare_to_wait(&queue->wq, &wait, TASK_INTERRUPTIBLE);
2074 if (xenvif_have_rx_work(queue))
2075 break;
2076 ret = schedule_timeout(xenvif_rx_queue_timeout(queue));
2077 if (!ret)
2078 break;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002079 }
David Vrabelf48da8b2014-10-22 14:08:54 +01002080 finish_wait(&queue->wq, &wait);
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002081}
2082
Zoltan Kiss121fa4b2014-03-06 21:48:24 +00002083int xenvif_kthread_guest_rx(void *data)
Wei Liub3f980b2013-08-26 12:59:38 +01002084{
Wei Liue9ce7cb2014-06-04 10:30:42 +01002085 struct xenvif_queue *queue = data;
David Vrabelf48da8b2014-10-22 14:08:54 +01002086 struct xenvif *vif = queue->vif;
Wei Liub3f980b2013-08-26 12:59:38 +01002087
David Vrabel26c0e102014-12-18 11:13:06 +00002088 if (!vif->stall_timeout)
2089 xenvif_queue_carrier_on(queue);
2090
David Vrabelf48da8b2014-10-22 14:08:54 +01002091 for (;;) {
2092 xenvif_wait_for_rx_work(queue);
Wei Liue9d8b2c2014-04-01 12:46:12 +01002093
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002094 if (kthread_should_stop())
2095 break;
2096
Wei Liue9d8b2c2014-04-01 12:46:12 +01002097 /* This frontend is found to be rogue, disable it in
2098 * kthread context. Currently this is only set when
2099 * netback finds out frontend sends malformed packet,
2100 * but we cannot disable the interface in softirq
Wei Liue9ce7cb2014-06-04 10:30:42 +01002101 * context so we defer it here, if this thread is
2102 * associated with queue 0.
Wei Liue9d8b2c2014-04-01 12:46:12 +01002103 */
David Vrabelf48da8b2014-10-22 14:08:54 +01002104 if (unlikely(vif->disabled && queue->id == 0)) {
2105 xenvif_carrier_off(vif);
David Vrabel42b52122015-02-02 16:57:51 +00002106 break;
Zoltan Kiss09350782014-03-06 21:48:30 +00002107 }
2108
Wei Liue9ce7cb2014-06-04 10:30:42 +01002109 if (!skb_queue_empty(&queue->rx_queue))
2110 xenvif_rx_action(queue);
Wei Liub3f980b2013-08-26 12:59:38 +01002111
David Vrabelecf08d22014-10-22 14:08:55 +01002112 /* If the guest hasn't provided any Rx slots for a
2113 * while it's probably not responsive, drop the
2114 * carrier so packets are dropped earlier.
2115 */
David Vrabel26c0e102014-12-18 11:13:06 +00002116 if (vif->stall_timeout) {
2117 if (xenvif_rx_queue_stalled(queue))
2118 xenvif_queue_carrier_off(queue);
2119 else if (xenvif_rx_queue_ready(queue))
2120 xenvif_queue_carrier_on(queue);
2121 }
David Vrabelecf08d22014-10-22 14:08:55 +01002122
David Vrabelf48da8b2014-10-22 14:08:54 +01002123 /* Queued packets may have foreign pages from other
2124 * domains. These cannot be queued indefinitely as
2125 * this would starve guests of grant refs and transmit
2126 * slots.
2127 */
2128 xenvif_rx_queue_drop_expired(queue);
2129
2130 xenvif_rx_queue_maybe_wake(queue);
2131
Wei Liub3f980b2013-08-26 12:59:38 +01002132 cond_resched();
2133 }
2134
Paul Durrantca2f09f2013-12-06 16:36:07 +00002135 /* Bin any remaining skbs */
David Vrabelf48da8b2014-10-22 14:08:54 +01002136 xenvif_rx_queue_purge(queue);
Paul Durrantca2f09f2013-12-06 16:36:07 +00002137
Wei Liub3f980b2013-08-26 12:59:38 +01002138 return 0;
2139}
2140
Wei Liua64bd932014-08-12 11:48:07 +01002141static bool xenvif_dealloc_kthread_should_stop(struct xenvif_queue *queue)
2142{
2143 /* Dealloc thread must remain running until all inflight
2144 * packets complete.
2145 */
2146 return kthread_should_stop() &&
2147 !atomic_read(&queue->inflight_packets);
2148}
2149
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002150int xenvif_dealloc_kthread(void *data)
2151{
Wei Liue9ce7cb2014-06-04 10:30:42 +01002152 struct xenvif_queue *queue = data;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002153
Wei Liua64bd932014-08-12 11:48:07 +01002154 for (;;) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01002155 wait_event_interruptible(queue->dealloc_wq,
2156 tx_dealloc_work_todo(queue) ||
Wei Liua64bd932014-08-12 11:48:07 +01002157 xenvif_dealloc_kthread_should_stop(queue));
2158 if (xenvif_dealloc_kthread_should_stop(queue))
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002159 break;
2160
Wei Liue9ce7cb2014-06-04 10:30:42 +01002161 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002162 cond_resched();
2163 }
2164
2165 /* Unmap anything remaining*/
Wei Liue9ce7cb2014-06-04 10:30:42 +01002166 if (tx_dealloc_work_todo(queue))
2167 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002168
2169 return 0;
2170}
2171
Paul Durrant4e15ee22016-05-13 09:37:26 +01002172static void make_ctrl_response(struct xenvif *vif,
2173 const struct xen_netif_ctrl_request *req,
2174 u32 status, u32 data)
2175{
2176 RING_IDX idx = vif->ctrl.rsp_prod_pvt;
2177 struct xen_netif_ctrl_response rsp = {
2178 .id = req->id,
2179 .type = req->type,
2180 .status = status,
2181 .data = data,
2182 };
2183
2184 *RING_GET_RESPONSE(&vif->ctrl, idx) = rsp;
2185 vif->ctrl.rsp_prod_pvt = ++idx;
2186}
2187
2188static void push_ctrl_response(struct xenvif *vif)
2189{
2190 int notify;
2191
2192 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->ctrl, notify);
2193 if (notify)
2194 notify_remote_via_irq(vif->ctrl_irq);
2195}
2196
2197static void process_ctrl_request(struct xenvif *vif,
2198 const struct xen_netif_ctrl_request *req)
2199{
Paul Durrant40d8abd2016-05-13 09:37:27 +01002200 u32 status = XEN_NETIF_CTRL_STATUS_NOT_SUPPORTED;
2201 u32 data = 0;
2202
2203 switch (req->type) {
2204 case XEN_NETIF_CTRL_TYPE_SET_HASH_ALGORITHM:
2205 status = xenvif_set_hash_alg(vif, req->data[0]);
2206 break;
2207
2208 case XEN_NETIF_CTRL_TYPE_GET_HASH_FLAGS:
2209 status = xenvif_get_hash_flags(vif, &data);
2210 break;
2211
2212 case XEN_NETIF_CTRL_TYPE_SET_HASH_FLAGS:
2213 status = xenvif_set_hash_flags(vif, req->data[0]);
2214 break;
2215
2216 case XEN_NETIF_CTRL_TYPE_SET_HASH_KEY:
2217 status = xenvif_set_hash_key(vif, req->data[0],
2218 req->data[1]);
2219 break;
2220
2221 case XEN_NETIF_CTRL_TYPE_GET_HASH_MAPPING_SIZE:
2222 status = XEN_NETIF_CTRL_STATUS_SUCCESS;
2223 data = XEN_NETBK_MAX_HASH_MAPPING_SIZE;
2224 break;
2225
2226 case XEN_NETIF_CTRL_TYPE_SET_HASH_MAPPING_SIZE:
2227 status = xenvif_set_hash_mapping_size(vif,
2228 req->data[0]);
2229 break;
2230
2231 case XEN_NETIF_CTRL_TYPE_SET_HASH_MAPPING:
2232 status = xenvif_set_hash_mapping(vif, req->data[0],
2233 req->data[1],
2234 req->data[2]);
2235 break;
2236
2237 default:
2238 break;
2239 }
2240
2241 make_ctrl_response(vif, req, status, data);
Paul Durrant4e15ee22016-05-13 09:37:26 +01002242 push_ctrl_response(vif);
2243}
2244
2245static void xenvif_ctrl_action(struct xenvif *vif)
2246{
2247 for (;;) {
2248 RING_IDX req_prod, req_cons;
2249
2250 req_prod = vif->ctrl.sring->req_prod;
2251 req_cons = vif->ctrl.req_cons;
2252
2253 /* Make sure we can see requests before we process them. */
2254 rmb();
2255
2256 if (req_cons == req_prod)
2257 break;
2258
2259 while (req_cons != req_prod) {
2260 struct xen_netif_ctrl_request req;
2261
2262 RING_COPY_REQUEST(&vif->ctrl, req_cons, &req);
2263 req_cons++;
2264
2265 process_ctrl_request(vif, &req);
2266 }
2267
2268 vif->ctrl.req_cons = req_cons;
2269 vif->ctrl.sring->req_event = req_cons + 1;
2270 }
2271}
2272
2273static bool xenvif_ctrl_work_todo(struct xenvif *vif)
2274{
2275 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->ctrl)))
2276 return 1;
2277
2278 return 0;
2279}
2280
2281int xenvif_ctrl_kthread(void *data)
2282{
2283 struct xenvif *vif = data;
2284
2285 for (;;) {
2286 wait_event_interruptible(vif->ctrl_wq,
2287 xenvif_ctrl_work_todo(vif) ||
2288 kthread_should_stop());
2289 if (kthread_should_stop())
2290 break;
2291
2292 while (xenvif_ctrl_work_todo(vif))
2293 xenvif_ctrl_action(vif);
2294
2295 cond_resched();
2296 }
2297
2298 return 0;
2299}
2300
Ian Campbellf942dc22011-03-15 00:06:18 +00002301static int __init netback_init(void)
2302{
Ian Campbellf942dc22011-03-15 00:06:18 +00002303 int rc = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00002304
Daniel De Graaf2a14b2442011-12-14 15:12:13 -05002305 if (!xen_domain())
Ian Campbellf942dc22011-03-15 00:06:18 +00002306 return -ENODEV;
2307
Wei Liu4c82ac32015-09-10 11:18:57 +01002308 /* Allow as many queues as there are CPUs if user has not
2309 * specified a value.
2310 */
2311 if (xenvif_max_queues == 0)
2312 xenvif_max_queues = num_online_cpus();
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +01002313
Wei Liu37641492013-05-02 00:43:59 +00002314 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
Joe Perches383eda32013-06-27 21:57:49 -07002315 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
2316 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu37641492013-05-02 00:43:59 +00002317 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
Wei Liu2810e5b2013-04-22 02:20:42 +00002318 }
2319
Ian Campbellf942dc22011-03-15 00:06:18 +00002320 rc = xenvif_xenbus_init();
2321 if (rc)
2322 goto failed_init;
2323
Zoltan Kissf51de242014-07-08 19:49:14 +01002324#ifdef CONFIG_DEBUG_FS
2325 xen_netback_dbg_root = debugfs_create_dir("xen-netback", NULL);
2326 if (IS_ERR_OR_NULL(xen_netback_dbg_root))
2327 pr_warn("Init of debugfs returned %ld!\n",
2328 PTR_ERR(xen_netback_dbg_root));
2329#endif /* CONFIG_DEBUG_FS */
2330
Ian Campbellf942dc22011-03-15 00:06:18 +00002331 return 0;
2332
2333failed_init:
Ian Campbellf942dc22011-03-15 00:06:18 +00002334 return rc;
Ian Campbellf942dc22011-03-15 00:06:18 +00002335}
2336
2337module_init(netback_init);
2338
Wei Liub103f352013-05-16 23:26:11 +00002339static void __exit netback_fini(void)
2340{
Zoltan Kissf51de242014-07-08 19:49:14 +01002341#ifdef CONFIG_DEBUG_FS
2342 if (!IS_ERR_OR_NULL(xen_netback_dbg_root))
2343 debugfs_remove_recursive(xen_netback_dbg_root);
2344#endif /* CONFIG_DEBUG_FS */
Wei Liub103f352013-05-16 23:26:11 +00002345 xenvif_xenbus_fini();
Wei Liub103f352013-05-16 23:26:11 +00002346}
2347module_exit(netback_fini);
2348
Ian Campbellf942dc22011-03-15 00:06:18 +00002349MODULE_LICENSE("Dual BSD/GPL");
Bastian Blankf984cec2011-06-30 11:19:09 -07002350MODULE_ALIAS("xen-backend:vif");