Merge branch 'stmmac-next'
[linux-2.6-block.git] / drivers / net / xen-netback / netback.c
CommitLineData
f942dc25
IC
1/*
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>
e3377f36 40#include <linux/highmem.h>
f942dc25
IC
41
42#include <net/tcp.h>
43
ca981633 44#include <xen/xen.h>
f942dc25
IC
45#include <xen/events.h>
46#include <xen/interface/memory.h>
47
48#include <asm/xen/hypercall.h>
49#include <asm/xen/page.h>
50
e1f00a69
WL
51/* 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 */
55bool separate_tx_rx_irq = 1;
56module_param(separate_tx_rx_irq, bool, 0644);
57
f48da8b1
DV
58/* The time that packets can stay on the guest Rx internal queue
59 * before they are dropped.
09350788
ZK
60 */
61unsigned int rx_drain_timeout_msecs = 10000;
62module_param(rx_drain_timeout_msecs, uint, 0444);
63unsigned int rx_drain_timeout_jiffies;
64
ecf08d2d
DV
65/* The length of time before the frontend is considered unresponsive
66 * because it isn't providing Rx slots.
67 */
68static unsigned int rx_stall_timeout_msecs = 60000;
69module_param(rx_stall_timeout_msecs, uint, 0444);
70static unsigned int rx_stall_timeout_jiffies;
71
8d3d53b3
AB
72unsigned int xenvif_max_queues;
73module_param_named(max_queues, xenvif_max_queues, uint, 0644);
74MODULE_PARM_DESC(max_queues,
75 "Maximum number of queues per virtual interface");
76
2810e5b9
WL
77/*
78 * This is the maximum slots a skb can have. If a guest sends a skb
79 * which exceeds this limit it is considered malicious.
80 */
37641494
WL
81#define FATAL_SKB_SLOTS_DEFAULT 20
82static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
83module_param(fatal_skb_slots, uint, 0444);
84
e9ce7cb6 85static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
7376419a
WL
86 u8 status);
87
e9ce7cb6 88static void make_tx_response(struct xenvif_queue *queue,
f942dc25
IC
89 struct xen_netif_tx_request *txp,
90 s8 st);
b3f980bd 91
e9ce7cb6 92static inline int tx_work_todo(struct xenvif_queue *queue);
b3f980bd 93
e9ce7cb6 94static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
f942dc25
IC
95 u16 id,
96 s8 st,
97 u16 offset,
98 u16 size,
99 u16 flags);
100
e9ce7cb6 101static inline unsigned long idx_to_pfn(struct xenvif_queue *queue,
ea066ad1 102 u16 idx)
f942dc25 103{
e9ce7cb6 104 return page_to_pfn(queue->mmap_pages[idx]);
f942dc25
IC
105}
106
e9ce7cb6 107static inline unsigned long idx_to_kaddr(struct xenvif_queue *queue,
ea066ad1 108 u16 idx)
f942dc25 109{
e9ce7cb6 110 return (unsigned long)pfn_to_kaddr(idx_to_pfn(queue, idx));
f942dc25
IC
111}
112
7aceb47a
ZK
113#define callback_param(vif, pending_idx) \
114 (vif->pending_tx_info[pending_idx].callback_struct)
115
f53c3fe8
ZK
116/* Find the containing VIF's structure from a pointer in pending_tx_info array
117 */
e9ce7cb6 118static inline struct xenvif_queue *ubuf_to_queue(const struct ubuf_info *ubuf)
3e2234b3 119{
f53c3fe8
ZK
120 u16 pending_idx = ubuf->desc;
121 struct pending_tx_info *temp =
122 container_of(ubuf, struct pending_tx_info, callback_struct);
123 return container_of(temp - pending_idx,
e9ce7cb6 124 struct xenvif_queue,
f53c3fe8 125 pending_tx_info[0]);
3e2234b3 126}
f53c3fe8 127
2eba61d5
PD
128/* This is a miniumum size for the linear area to avoid lots of
129 * calls to __pskb_pull_tail() as we set up checksum offsets. The
130 * value 128 was chosen as it covers all IPv4 and most likely
131 * IPv6 headers.
f942dc25 132 */
2eba61d5 133#define PKT_PROT_LEN 128
f942dc25 134
ea066ad1
IC
135static u16 frag_get_pending_idx(skb_frag_t *frag)
136{
137 return (u16)frag->page_offset;
138}
139
140static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
141{
142 frag->page_offset = pending_idx;
143}
144
f942dc25
IC
145static inline pending_ring_idx_t pending_index(unsigned i)
146{
147 return i & (MAX_PENDING_REQS-1);
148}
149
e9ce7cb6 150bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue, int needed)
f942dc25 151{
ca2f09f2 152 RING_IDX prod, cons;
f942dc25 153
ca2f09f2 154 do {
e9ce7cb6
WL
155 prod = queue->rx.sring->req_prod;
156 cons = queue->rx.req_cons;
f942dc25 157
ca2f09f2
PD
158 if (prod - cons >= needed)
159 return true;
f942dc25 160
e9ce7cb6 161 queue->rx.sring->req_event = prod + 1;
f942dc25 162
ca2f09f2
PD
163 /* Make sure event is visible before we check prod
164 * again.
165 */
166 mb();
e9ce7cb6 167 } while (queue->rx.sring->req_prod != prod);
f942dc25 168
ca2f09f2 169 return false;
f942dc25
IC
170}
171
f48da8b1
DV
172void xenvif_rx_queue_tail(struct xenvif_queue *queue, struct sk_buff *skb)
173{
174 unsigned long flags;
175
176 spin_lock_irqsave(&queue->rx_queue.lock, flags);
177
178 __skb_queue_tail(&queue->rx_queue, skb);
179
180 queue->rx_queue_len += skb->len;
181 if (queue->rx_queue_len > queue->rx_queue_max)
182 netif_tx_stop_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
183
184 spin_unlock_irqrestore(&queue->rx_queue.lock, flags);
185}
186
187static struct sk_buff *xenvif_rx_dequeue(struct xenvif_queue *queue)
188{
189 struct sk_buff *skb;
190
191 spin_lock_irq(&queue->rx_queue.lock);
192
193 skb = __skb_dequeue(&queue->rx_queue);
194 if (skb)
195 queue->rx_queue_len -= skb->len;
196
197 spin_unlock_irq(&queue->rx_queue.lock);
198
199 return skb;
200}
201
202static void xenvif_rx_queue_maybe_wake(struct xenvif_queue *queue)
203{
204 spin_lock_irq(&queue->rx_queue.lock);
205
206 if (queue->rx_queue_len < queue->rx_queue_max)
207 netif_tx_wake_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
208
209 spin_unlock_irq(&queue->rx_queue.lock);
210}
211
212
213static void xenvif_rx_queue_purge(struct xenvif_queue *queue)
214{
215 struct sk_buff *skb;
216 while ((skb = xenvif_rx_dequeue(queue)) != NULL)
217 kfree_skb(skb);
218}
219
220static void xenvif_rx_queue_drop_expired(struct xenvif_queue *queue)
221{
222 struct sk_buff *skb;
223
224 for(;;) {
225 skb = skb_peek(&queue->rx_queue);
226 if (!skb)
227 break;
228 if (time_before(jiffies, XENVIF_RX_CB(skb)->expires))
229 break;
230 xenvif_rx_dequeue(queue);
231 kfree_skb(skb);
232 }
233}
234
f942dc25
IC
235/*
236 * Returns true if we should start a new receive buffer instead of
237 * adding 'size' bytes to a buffer which currently contains 'offset'
238 * bytes.
239 */
59ae9fc6
ZK
240static bool start_new_rx_buffer(int offset, unsigned long size, int head,
241 bool full_coalesce)
f942dc25
IC
242{
243 /* simple case: we have completely filled the current buffer. */
244 if (offset == MAX_BUFFER_OFFSET)
245 return true;
246
247 /*
248 * complex case: start a fresh buffer if the current frag
249 * would overflow the current buffer but only if:
250 * (i) this frag would fit completely in the next buffer
251 * and (ii) there is already some data in the current buffer
252 * and (iii) this is not the head buffer.
59ae9fc6 253 * and (iv) there is no need to fully utilize the buffers
f942dc25
IC
254 *
255 * Where:
256 * - (i) stops us splitting a frag into two copies
257 * unless the frag is too large for a single buffer.
258 * - (ii) stops us from leaving a buffer pointlessly empty.
259 * - (iii) stops us leaving the first buffer
260 * empty. Strictly speaking this is already covered
261 * by (ii) but is explicitly checked because
262 * netfront relies on the first buffer being
263 * non-empty and can crash otherwise.
59ae9fc6
ZK
264 * - (iv) is needed for skbs which can use up more than MAX_SKB_FRAGS
265 * slot
f942dc25
IC
266 *
267 * This means we will effectively linearise small
268 * frags but do not needlessly split large buffers
269 * into multiple copies tend to give large frags their
270 * own buffers as before.
271 */
0576eddf 272 BUG_ON(size > MAX_BUFFER_OFFSET);
59ae9fc6
ZK
273 if ((offset + size > MAX_BUFFER_OFFSET) && offset && !head &&
274 !full_coalesce)
f942dc25
IC
275 return true;
276
277 return false;
278}
279
f942dc25
IC
280struct netrx_pending_operations {
281 unsigned copy_prod, copy_cons;
282 unsigned meta_prod, meta_cons;
283 struct gnttab_copy *copy;
b3f980bd 284 struct xenvif_rx_meta *meta;
f942dc25
IC
285 int copy_off;
286 grant_ref_t copy_gref;
287};
288
e9ce7cb6 289static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif_queue *queue,
b3f980bd 290 struct netrx_pending_operations *npo)
f942dc25 291{
b3f980bd 292 struct xenvif_rx_meta *meta;
f942dc25
IC
293 struct xen_netif_rx_request *req;
294
e9ce7cb6 295 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25
IC
296
297 meta = npo->meta + npo->meta_prod++;
82cada22 298 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25
IC
299 meta->gso_size = 0;
300 meta->size = 0;
301 meta->id = req->id;
302
303 npo->copy_off = 0;
304 npo->copy_gref = req->gref;
305
306 return meta;
307}
308
33bc801d
WL
309/*
310 * Set up the grant operations for this fragment. If it's a flipping
311 * interface, we also set up the unmap request from here.
312 */
e9ce7cb6 313static void xenvif_gop_frag_copy(struct xenvif_queue *queue, struct sk_buff *skb,
7376419a
WL
314 struct netrx_pending_operations *npo,
315 struct page *page, unsigned long size,
3e2234b3 316 unsigned long offset, int *head,
e9ce7cb6 317 struct xenvif_queue *foreign_queue,
3e2234b3 318 grant_ref_t foreign_gref)
f942dc25
IC
319{
320 struct gnttab_copy *copy_gop;
b3f980bd 321 struct xenvif_rx_meta *meta;
f942dc25 322 unsigned long bytes;
5bd07670 323 int gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25
IC
324
325 /* Data must not cross a page boundary. */
6a8ed462 326 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
f942dc25
IC
327
328 meta = npo->meta + npo->meta_prod - 1;
329
6a8ed462
IC
330 /* Skip unused frames from start of page */
331 page += offset >> PAGE_SHIFT;
332 offset &= ~PAGE_MASK;
333
f942dc25 334 while (size > 0) {
6a8ed462 335 BUG_ON(offset >= PAGE_SIZE);
f942dc25
IC
336 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
337
6a8ed462
IC
338 bytes = PAGE_SIZE - offset;
339
340 if (bytes > size)
341 bytes = size;
342
59ae9fc6
ZK
343 if (start_new_rx_buffer(npo->copy_off,
344 bytes,
345 *head,
346 XENVIF_RX_CB(skb)->full_coalesce)) {
f942dc25
IC
347 /*
348 * Netfront requires there to be some data in the head
349 * buffer.
350 */
33bc801d 351 BUG_ON(*head);
f942dc25 352
e9ce7cb6 353 meta = get_next_rx_buffer(queue, npo);
f942dc25
IC
354 }
355
f942dc25
IC
356 if (npo->copy_off + bytes > MAX_BUFFER_OFFSET)
357 bytes = MAX_BUFFER_OFFSET - npo->copy_off;
358
359 copy_gop = npo->copy + npo->copy_prod++;
360 copy_gop->flags = GNTCOPY_dest_gref;
b3f980bd
WL
361 copy_gop->len = bytes;
362
e9ce7cb6
WL
363 if (foreign_queue) {
364 copy_gop->source.domid = foreign_queue->vif->domid;
3e2234b3
ZK
365 copy_gop->source.u.ref = foreign_gref;
366 copy_gop->flags |= GNTCOPY_source_gref;
367 } else {
368 copy_gop->source.domid = DOMID_SELF;
369 copy_gop->source.u.gmfn =
370 virt_to_mfn(page_address(page));
371 }
f942dc25 372 copy_gop->source.offset = offset;
f942dc25 373
e9ce7cb6 374 copy_gop->dest.domid = queue->vif->domid;
f942dc25
IC
375 copy_gop->dest.offset = npo->copy_off;
376 copy_gop->dest.u.ref = npo->copy_gref;
f942dc25
IC
377
378 npo->copy_off += bytes;
379 meta->size += bytes;
380
381 offset += bytes;
382 size -= bytes;
383
6a8ed462
IC
384 /* Next frame */
385 if (offset == PAGE_SIZE && size) {
386 BUG_ON(!PageCompound(page));
387 page++;
388 offset = 0;
389 }
390
f942dc25 391 /* Leave a gap for the GSO descriptor. */
5bd07670
AL
392 if (skb_is_gso(skb)) {
393 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
394 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
395 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
396 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
397 }
82cada22 398
e9ce7cb6
WL
399 if (*head && ((1 << gso_type) & queue->vif->gso_mask))
400 queue->rx.req_cons++;
f942dc25 401
33bc801d 402 *head = 0; /* There must be something in this buffer now. */
f942dc25
IC
403
404 }
405}
406
58375744
ZK
407/*
408 * Find the grant ref for a given frag in a chain of struct ubuf_info's
409 * skb: the skb itself
410 * i: the frag's number
411 * ubuf: a pointer to an element in the chain. It should not be NULL
412 *
413 * Returns a pointer to the element in the chain where the page were found. If
414 * not found, returns NULL.
415 * See the definition of callback_struct in common.h for more details about
416 * the chain.
417 */
418static const struct ubuf_info *xenvif_find_gref(const struct sk_buff *const skb,
419 const int i,
420 const struct ubuf_info *ubuf)
421{
e9ce7cb6 422 struct xenvif_queue *foreign_queue = ubuf_to_queue(ubuf);
58375744
ZK
423
424 do {
425 u16 pending_idx = ubuf->desc;
426
427 if (skb_shinfo(skb)->frags[i].page.p ==
e9ce7cb6 428 foreign_queue->mmap_pages[pending_idx])
58375744
ZK
429 break;
430 ubuf = (struct ubuf_info *) ubuf->ctx;
431 } while (ubuf);
432
433 return ubuf;
434}
435
f942dc25
IC
436/*
437 * Prepare an SKB to be transmitted to the frontend.
438 *
439 * This function is responsible for allocating grant operations, meta
440 * structures, etc.
441 *
442 * It returns the number of meta structures consumed. The number of
443 * ring slots used is always equal to the number of meta slots used
444 * plus the number of GSO descriptors used. Currently, we use either
445 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
446 * frontend-side LRO).
447 */
7376419a 448static int xenvif_gop_skb(struct sk_buff *skb,
e9ce7cb6
WL
449 struct netrx_pending_operations *npo,
450 struct xenvif_queue *queue)
f942dc25
IC
451{
452 struct xenvif *vif = netdev_priv(skb->dev);
453 int nr_frags = skb_shinfo(skb)->nr_frags;
454 int i;
455 struct xen_netif_rx_request *req;
b3f980bd 456 struct xenvif_rx_meta *meta;
f942dc25 457 unsigned char *data;
33bc801d 458 int head = 1;
f942dc25 459 int old_meta_prod;
82cada22 460 int gso_type;
58375744
ZK
461 const struct ubuf_info *ubuf = skb_shinfo(skb)->destructor_arg;
462 const struct ubuf_info *const head_ubuf = ubuf;
f942dc25
IC
463
464 old_meta_prod = npo->meta_prod;
465
5bd07670
AL
466 gso_type = XEN_NETIF_GSO_TYPE_NONE;
467 if (skb_is_gso(skb)) {
468 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
469 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
470 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
471 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
82cada22
PD
472 }
473
f942dc25 474 /* Set up a GSO prefix descriptor, if necessary */
a3314f3d 475 if ((1 << gso_type) & vif->gso_prefix_mask) {
e9ce7cb6 476 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25 477 meta = npo->meta + npo->meta_prod++;
82cada22 478 meta->gso_type = gso_type;
5bd07670 479 meta->gso_size = skb_shinfo(skb)->gso_size;
f942dc25
IC
480 meta->size = 0;
481 meta->id = req->id;
482 }
483
e9ce7cb6 484 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25
IC
485 meta = npo->meta + npo->meta_prod++;
486
82cada22
PD
487 if ((1 << gso_type) & vif->gso_mask) {
488 meta->gso_type = gso_type;
5bd07670 489 meta->gso_size = skb_shinfo(skb)->gso_size;
82cada22
PD
490 } else {
491 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25 492 meta->gso_size = 0;
82cada22 493 }
f942dc25
IC
494
495 meta->size = 0;
496 meta->id = req->id;
497 npo->copy_off = 0;
498 npo->copy_gref = req->gref;
499
500 data = skb->data;
501 while (data < skb_tail_pointer(skb)) {
502 unsigned int offset = offset_in_page(data);
503 unsigned int len = PAGE_SIZE - offset;
504
505 if (data + len > skb_tail_pointer(skb))
506 len = skb_tail_pointer(skb) - data;
507
e9ce7cb6 508 xenvif_gop_frag_copy(queue, skb, npo,
3e2234b3
ZK
509 virt_to_page(data), len, offset, &head,
510 NULL,
511 0);
f942dc25
IC
512 data += len;
513 }
514
515 for (i = 0; i < nr_frags; i++) {
58375744
ZK
516 /* This variable also signals whether foreign_gref has a real
517 * value or not.
518 */
e9ce7cb6 519 struct xenvif_queue *foreign_queue = NULL;
58375744
ZK
520 grant_ref_t foreign_gref;
521
522 if ((skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) &&
523 (ubuf->callback == &xenvif_zerocopy_callback)) {
524 const struct ubuf_info *const startpoint = ubuf;
525
526 /* Ideally ubuf points to the chain element which
527 * belongs to this frag. Or if frags were removed from
528 * the beginning, then shortly before it.
529 */
530 ubuf = xenvif_find_gref(skb, i, ubuf);
531
532 /* Try again from the beginning of the list, if we
533 * haven't tried from there. This only makes sense in
534 * the unlikely event of reordering the original frags.
535 * For injected local pages it's an unnecessary second
536 * run.
537 */
538 if (unlikely(!ubuf) && startpoint != head_ubuf)
539 ubuf = xenvif_find_gref(skb, i, head_ubuf);
540
541 if (likely(ubuf)) {
542 u16 pending_idx = ubuf->desc;
543
e9ce7cb6
WL
544 foreign_queue = ubuf_to_queue(ubuf);
545 foreign_gref =
546 foreign_queue->pending_tx_info[pending_idx].req.gref;
58375744
ZK
547 /* Just a safety measure. If this was the last
548 * element on the list, the for loop will
549 * iterate again if a local page were added to
550 * the end. Using head_ubuf here prevents the
551 * second search on the chain. Or the original
552 * frags changed order, but that's less likely.
553 * In any way, ubuf shouldn't be NULL.
554 */
555 ubuf = ubuf->ctx ?
556 (struct ubuf_info *) ubuf->ctx :
557 head_ubuf;
558 } else
559 /* This frag was a local page, added to the
560 * array after the skb left netback.
561 */
562 ubuf = head_ubuf;
563 }
e9ce7cb6 564 xenvif_gop_frag_copy(queue, skb, npo,
7376419a
WL
565 skb_frag_page(&skb_shinfo(skb)->frags[i]),
566 skb_frag_size(&skb_shinfo(skb)->frags[i]),
567 skb_shinfo(skb)->frags[i].page_offset,
3e2234b3 568 &head,
e9ce7cb6
WL
569 foreign_queue,
570 foreign_queue ? foreign_gref : UINT_MAX);
f942dc25
IC
571 }
572
573 return npo->meta_prod - old_meta_prod;
574}
575
576/*
7376419a 577 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
f942dc25
IC
578 * used to set up the operations on the top of
579 * netrx_pending_operations, which have since been done. Check that
580 * they didn't give any errors and advance over them.
581 */
7376419a
WL
582static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
583 struct netrx_pending_operations *npo)
f942dc25
IC
584{
585 struct gnttab_copy *copy_op;
586 int status = XEN_NETIF_RSP_OKAY;
587 int i;
588
589 for (i = 0; i < nr_meta_slots; i++) {
590 copy_op = npo->copy + npo->copy_cons++;
591 if (copy_op->status != GNTST_okay) {
592 netdev_dbg(vif->dev,
593 "Bad status %d from copy to DOM%d.\n",
594 copy_op->status, vif->domid);
595 status = XEN_NETIF_RSP_ERROR;
596 }
597 }
598
599 return status;
600}
601
e9ce7cb6 602static void xenvif_add_frag_responses(struct xenvif_queue *queue, int status,
7376419a
WL
603 struct xenvif_rx_meta *meta,
604 int nr_meta_slots)
f942dc25
IC
605{
606 int i;
607 unsigned long offset;
608
609 /* No fragments used */
610 if (nr_meta_slots <= 1)
611 return;
612
613 nr_meta_slots--;
614
615 for (i = 0; i < nr_meta_slots; i++) {
616 int flags;
617 if (i == nr_meta_slots - 1)
618 flags = 0;
619 else
620 flags = XEN_NETRXF_more_data;
621
622 offset = 0;
e9ce7cb6 623 make_rx_response(queue, meta[i].id, status, offset,
f942dc25
IC
624 meta[i].size, flags);
625 }
626}
627
e9ce7cb6 628void xenvif_kick_thread(struct xenvif_queue *queue)
b3f980bd 629{
e9ce7cb6 630 wake_up(&queue->wq);
b3f980bd
WL
631}
632
e9ce7cb6 633static void xenvif_rx_action(struct xenvif_queue *queue)
f942dc25 634{
f942dc25 635 s8 status;
e1f00a69 636 u16 flags;
f942dc25
IC
637 struct xen_netif_rx_response *resp;
638 struct sk_buff_head rxq;
639 struct sk_buff *skb;
640 LIST_HEAD(notify);
641 int ret;
f942dc25 642 unsigned long offset;
11b57f90 643 bool need_to_notify = false;
f942dc25
IC
644
645 struct netrx_pending_operations npo = {
e9ce7cb6
WL
646 .copy = queue->grant_copy_op,
647 .meta = queue->meta,
f942dc25
IC
648 };
649
650 skb_queue_head_init(&rxq);
651
f48da8b1
DV
652 while (xenvif_rx_ring_slots_available(queue, XEN_NETBK_RX_SLOTS_MAX)
653 && (skb = xenvif_rx_dequeue(queue)) != NULL) {
9ab9831b 654 RING_IDX max_slots_needed;
1425c7a4
PD
655 RING_IDX old_req_cons;
656 RING_IDX ring_slots_used;
ca2f09f2
PD
657 int i;
658
ecf08d2d
DV
659 queue->last_rx_time = jiffies;
660
ca2f09f2
PD
661 /* We need a cheap worse case estimate for the number of
662 * slots we'll use.
663 */
664
665 max_slots_needed = DIV_ROUND_UP(offset_in_page(skb->data) +
666 skb_headlen(skb),
667 PAGE_SIZE);
668 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
669 unsigned int size;
a02eb473
PD
670 unsigned int offset;
671
ca2f09f2 672 size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
a02eb473
PD
673 offset = skb_shinfo(skb)->frags[i].page_offset;
674
675 /* For a worse-case estimate we need to factor in
676 * the fragment page offset as this will affect the
677 * number of times xenvif_gop_frag_copy() will
678 * call start_new_rx_buffer().
679 */
680 max_slots_needed += DIV_ROUND_UP(offset + size,
681 PAGE_SIZE);
ca2f09f2 682 }
a02eb473
PD
683
684 /* To avoid the estimate becoming too pessimal for some
685 * frontends that limit posted rx requests, cap the estimate
59ae9fc6
ZK
686 * at MAX_SKB_FRAGS. In this case netback will fully coalesce
687 * the skb into the provided slots.
a02eb473 688 */
59ae9fc6 689 if (max_slots_needed > MAX_SKB_FRAGS) {
a02eb473 690 max_slots_needed = MAX_SKB_FRAGS;
59ae9fc6
ZK
691 XENVIF_RX_CB(skb)->full_coalesce = true;
692 } else {
693 XENVIF_RX_CB(skb)->full_coalesce = false;
694 }
a02eb473
PD
695
696 /* We may need one more slot for GSO metadata */
5bd07670
AL
697 if (skb_is_gso(skb) &&
698 (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4 ||
699 skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6))
ca2f09f2
PD
700 max_slots_needed++;
701
e9ce7cb6
WL
702 old_req_cons = queue->rx.req_cons;
703 XENVIF_RX_CB(skb)->meta_slots_used = xenvif_gop_skb(skb, &npo, queue);
704 ring_slots_used = queue->rx.req_cons - old_req_cons;
1425c7a4
PD
705
706 BUG_ON(ring_slots_used > max_slots_needed);
f942dc25
IC
707
708 __skb_queue_tail(&rxq, skb);
f942dc25
IC
709 }
710
e9ce7cb6 711 BUG_ON(npo.meta_prod > ARRAY_SIZE(queue->meta));
f942dc25
IC
712
713 if (!npo.copy_prod)
ca2f09f2 714 goto done;
f942dc25 715
ac3d5ac2 716 BUG_ON(npo.copy_prod > MAX_GRANT_COPY_OPS);
e9ce7cb6 717 gnttab_batch_copy(queue->grant_copy_op, npo.copy_prod);
f942dc25
IC
718
719 while ((skb = __skb_dequeue(&rxq)) != NULL) {
f942dc25 720
e9ce7cb6
WL
721 if ((1 << queue->meta[npo.meta_cons].gso_type) &
722 queue->vif->gso_prefix_mask) {
723 resp = RING_GET_RESPONSE(&queue->rx,
724 queue->rx.rsp_prod_pvt++);
f942dc25
IC
725
726 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
727
e9ce7cb6
WL
728 resp->offset = queue->meta[npo.meta_cons].gso_size;
729 resp->id = queue->meta[npo.meta_cons].id;
8f13dd96 730 resp->status = XENVIF_RX_CB(skb)->meta_slots_used;
f942dc25
IC
731
732 npo.meta_cons++;
8f13dd96 733 XENVIF_RX_CB(skb)->meta_slots_used--;
f942dc25
IC
734 }
735
736
e9ce7cb6
WL
737 queue->stats.tx_bytes += skb->len;
738 queue->stats.tx_packets++;
f942dc25 739
e9ce7cb6 740 status = xenvif_check_gop(queue->vif,
8f13dd96
ZK
741 XENVIF_RX_CB(skb)->meta_slots_used,
742 &npo);
f942dc25 743
8f13dd96 744 if (XENVIF_RX_CB(skb)->meta_slots_used == 1)
f942dc25
IC
745 flags = 0;
746 else
747 flags = XEN_NETRXF_more_data;
748
749 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
750 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
751 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
752 /* remote but checksummed. */
753 flags |= XEN_NETRXF_data_validated;
754
755 offset = 0;
e9ce7cb6 756 resp = make_rx_response(queue, queue->meta[npo.meta_cons].id,
f942dc25 757 status, offset,
e9ce7cb6 758 queue->meta[npo.meta_cons].size,
f942dc25
IC
759 flags);
760
e9ce7cb6
WL
761 if ((1 << queue->meta[npo.meta_cons].gso_type) &
762 queue->vif->gso_mask) {
f942dc25
IC
763 struct xen_netif_extra_info *gso =
764 (struct xen_netif_extra_info *)
e9ce7cb6
WL
765 RING_GET_RESPONSE(&queue->rx,
766 queue->rx.rsp_prod_pvt++);
f942dc25
IC
767
768 resp->flags |= XEN_NETRXF_extra_info;
769
e9ce7cb6
WL
770 gso->u.gso.type = queue->meta[npo.meta_cons].gso_type;
771 gso->u.gso.size = queue->meta[npo.meta_cons].gso_size;
f942dc25
IC
772 gso->u.gso.pad = 0;
773 gso->u.gso.features = 0;
774
775 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
776 gso->flags = 0;
777 }
778
e9ce7cb6
WL
779 xenvif_add_frag_responses(queue, status,
780 queue->meta + npo.meta_cons + 1,
8f13dd96 781 XENVIF_RX_CB(skb)->meta_slots_used);
f942dc25 782
e9ce7cb6 783 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->rx, ret);
f942dc25 784
11b57f90 785 need_to_notify |= !!ret;
b3f980bd 786
8f13dd96 787 npo.meta_cons += XENVIF_RX_CB(skb)->meta_slots_used;
f942dc25
IC
788 dev_kfree_skb(skb);
789 }
790
ca2f09f2 791done:
b3f980bd 792 if (need_to_notify)
e9ce7cb6 793 notify_remote_via_irq(queue->rx_irq);
f942dc25
IC
794}
795
e9ce7cb6 796void xenvif_napi_schedule_or_enable_events(struct xenvif_queue *queue)
f942dc25
IC
797{
798 int more_to_do;
799
e9ce7cb6 800 RING_FINAL_CHECK_FOR_REQUESTS(&queue->tx, more_to_do);
f942dc25
IC
801
802 if (more_to_do)
e9ce7cb6 803 napi_schedule(&queue->napi);
f942dc25
IC
804}
805
e9ce7cb6 806static void tx_add_credit(struct xenvif_queue *queue)
f942dc25
IC
807{
808 unsigned long max_burst, max_credit;
809
810 /*
811 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
812 * Otherwise the interface can seize up due to insufficient credit.
813 */
e9ce7cb6 814 max_burst = RING_GET_REQUEST(&queue->tx, queue->tx.req_cons)->size;
f942dc25 815 max_burst = min(max_burst, 131072UL);
e9ce7cb6 816 max_burst = max(max_burst, queue->credit_bytes);
f942dc25
IC
817
818 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
e9ce7cb6
WL
819 max_credit = queue->remaining_credit + queue->credit_bytes;
820 if (max_credit < queue->remaining_credit)
f942dc25
IC
821 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
822
e9ce7cb6 823 queue->remaining_credit = min(max_credit, max_burst);
f942dc25
IC
824}
825
826static void tx_credit_callback(unsigned long data)
827{
e9ce7cb6
WL
828 struct xenvif_queue *queue = (struct xenvif_queue *)data;
829 tx_add_credit(queue);
830 xenvif_napi_schedule_or_enable_events(queue);
f942dc25
IC
831}
832
e9ce7cb6 833static void xenvif_tx_err(struct xenvif_queue *queue,
7376419a 834 struct xen_netif_tx_request *txp, RING_IDX end)
f942dc25 835{
e9ce7cb6 836 RING_IDX cons = queue->tx.req_cons;
f53c3fe8 837 unsigned long flags;
f942dc25
IC
838
839 do {
e9ce7cb6
WL
840 spin_lock_irqsave(&queue->response_lock, flags);
841 make_tx_response(queue, txp, XEN_NETIF_RSP_ERROR);
842 spin_unlock_irqrestore(&queue->response_lock, flags);
b9149729 843 if (cons == end)
f942dc25 844 break;
e9ce7cb6 845 txp = RING_GET_REQUEST(&queue->tx, cons++);
f942dc25 846 } while (1);
e9ce7cb6 847 queue->tx.req_cons = cons;
f942dc25
IC
848}
849
7376419a 850static void xenvif_fatal_tx_err(struct xenvif *vif)
48856286
IC
851{
852 netdev_err(vif->dev, "fatal error; disabling device\n");
e9d8b2c2 853 vif->disabled = true;
e9ce7cb6
WL
854 /* Disable the vif from queue 0's kthread */
855 if (vif->queues)
856 xenvif_kick_thread(&vif->queues[0]);
48856286
IC
857}
858
e9ce7cb6 859static int xenvif_count_requests(struct xenvif_queue *queue,
7376419a
WL
860 struct xen_netif_tx_request *first,
861 struct xen_netif_tx_request *txp,
862 int work_to_do)
f942dc25 863{
e9ce7cb6 864 RING_IDX cons = queue->tx.req_cons;
2810e5b9
WL
865 int slots = 0;
866 int drop_err = 0;
59ccb4eb 867 int more_data;
f942dc25
IC
868
869 if (!(first->flags & XEN_NETTXF_more_data))
870 return 0;
871
872 do {
59ccb4eb
WL
873 struct xen_netif_tx_request dropped_tx = { 0 };
874
2810e5b9 875 if (slots >= work_to_do) {
e9ce7cb6 876 netdev_err(queue->vif->dev,
2810e5b9
WL
877 "Asked for %d slots but exceeds this limit\n",
878 work_to_do);
e9ce7cb6 879 xenvif_fatal_tx_err(queue->vif);
35876b5f 880 return -ENODATA;
f942dc25
IC
881 }
882
2810e5b9
WL
883 /* This guest is really using too many slots and
884 * considered malicious.
885 */
37641494 886 if (unlikely(slots >= fatal_skb_slots)) {
e9ce7cb6 887 netdev_err(queue->vif->dev,
2810e5b9 888 "Malicious frontend using %d slots, threshold %u\n",
37641494 889 slots, fatal_skb_slots);
e9ce7cb6 890 xenvif_fatal_tx_err(queue->vif);
35876b5f 891 return -E2BIG;
f942dc25
IC
892 }
893
2810e5b9 894 /* Xen network protocol had implicit dependency on
37641494
WL
895 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
896 * the historical MAX_SKB_FRAGS value 18 to honor the
897 * same behavior as before. Any packet using more than
898 * 18 slots but less than fatal_skb_slots slots is
899 * dropped
2810e5b9 900 */
37641494 901 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
2810e5b9 902 if (net_ratelimit())
e9ce7cb6 903 netdev_dbg(queue->vif->dev,
2810e5b9 904 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
37641494 905 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
2810e5b9
WL
906 drop_err = -E2BIG;
907 }
908
59ccb4eb
WL
909 if (drop_err)
910 txp = &dropped_tx;
911
e9ce7cb6 912 memcpy(txp, RING_GET_REQUEST(&queue->tx, cons + slots),
f942dc25 913 sizeof(*txp));
03393fd5
WL
914
915 /* If the guest submitted a frame >= 64 KiB then
916 * first->size overflowed and following slots will
917 * appear to be larger than the frame.
918 *
919 * This cannot be fatal error as there are buggy
920 * frontends that do this.
921 *
922 * Consume all slots and drop the packet.
923 */
924 if (!drop_err && txp->size > first->size) {
925 if (net_ratelimit())
e9ce7cb6 926 netdev_dbg(queue->vif->dev,
03393fd5
WL
927 "Invalid tx request, slot size %u > remaining size %u\n",
928 txp->size, first->size);
929 drop_err = -EIO;
f942dc25
IC
930 }
931
932 first->size -= txp->size;
2810e5b9 933 slots++;
f942dc25
IC
934
935 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
e9ce7cb6 936 netdev_err(queue->vif->dev, "Cross page boundary, txp->offset: %x, size: %u\n",
f942dc25 937 txp->offset, txp->size);
e9ce7cb6 938 xenvif_fatal_tx_err(queue->vif);
35876b5f 939 return -EINVAL;
f942dc25 940 }
59ccb4eb
WL
941
942 more_data = txp->flags & XEN_NETTXF_more_data;
943
944 if (!drop_err)
945 txp++;
946
947 } while (more_data);
2810e5b9
WL
948
949 if (drop_err) {
e9ce7cb6 950 xenvif_tx_err(queue, first, cons + slots);
2810e5b9
WL
951 return drop_err;
952 }
953
954 return slots;
f942dc25
IC
955}
956
8f13dd96
ZK
957
958struct xenvif_tx_cb {
959 u16 pending_idx;
960};
961
962#define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb)
963
e9ce7cb6 964static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue,
9074ce24
ZK
965 u16 pending_idx,
966 struct xen_netif_tx_request *txp,
967 struct gnttab_map_grant_ref *mop)
f53c3fe8 968{
e9ce7cb6
WL
969 queue->pages_to_map[mop-queue->tx_map_ops] = queue->mmap_pages[pending_idx];
970 gnttab_set_map_op(mop, idx_to_kaddr(queue, pending_idx),
f53c3fe8 971 GNTMAP_host_map | GNTMAP_readonly,
e9ce7cb6 972 txp->gref, queue->vif->domid);
f53c3fe8 973
e9ce7cb6 974 memcpy(&queue->pending_tx_info[pending_idx].req, txp,
f53c3fe8
ZK
975 sizeof(*txp));
976}
977
e3377f36
ZK
978static inline struct sk_buff *xenvif_alloc_skb(unsigned int size)
979{
980 struct sk_buff *skb =
981 alloc_skb(size + NET_SKB_PAD + NET_IP_ALIGN,
982 GFP_ATOMIC | __GFP_NOWARN);
983 if (unlikely(skb == NULL))
984 return NULL;
985
986 /* Packets passed to netif_rx() must have some headroom. */
987 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
988
989 /* Initialize it here to avoid later surprises */
990 skb_shinfo(skb)->destructor_arg = NULL;
991
992 return skb;
993}
994
e9ce7cb6 995static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue,
f53c3fe8
ZK
996 struct sk_buff *skb,
997 struct xen_netif_tx_request *txp,
998 struct gnttab_map_grant_ref *gop)
f942dc25
IC
999{
1000 struct skb_shared_info *shinfo = skb_shinfo(skb);
1001 skb_frag_t *frags = shinfo->frags;
8f13dd96 1002 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
62bad319
ZK
1003 int start;
1004 pending_ring_idx_t index;
e3377f36 1005 unsigned int nr_slots, frag_overflow = 0;
2810e5b9
WL
1006
1007 /* At this point shinfo->nr_frags is in fact the number of
37641494 1008 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
2810e5b9 1009 */
e3377f36
ZK
1010 if (shinfo->nr_frags > MAX_SKB_FRAGS) {
1011 frag_overflow = shinfo->nr_frags - MAX_SKB_FRAGS;
1012 BUG_ON(frag_overflow > MAX_SKB_FRAGS);
1013 shinfo->nr_frags = MAX_SKB_FRAGS;
1014 }
2810e5b9 1015 nr_slots = shinfo->nr_frags;
f942dc25
IC
1016
1017 /* Skip first skb fragment if it is on same page as header fragment. */
ea066ad1 1018 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
f942dc25 1019
f53c3fe8
ZK
1020 for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots;
1021 shinfo->nr_frags++, txp++, gop++) {
e9ce7cb6
WL
1022 index = pending_index(queue->pending_cons++);
1023 pending_idx = queue->pending_ring[index];
1024 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
f53c3fe8 1025 frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx);
f942dc25
IC
1026 }
1027
e3377f36
ZK
1028 if (frag_overflow) {
1029 struct sk_buff *nskb = xenvif_alloc_skb(0);
1030 if (unlikely(nskb == NULL)) {
1031 if (net_ratelimit())
e9ce7cb6 1032 netdev_err(queue->vif->dev,
e3377f36
ZK
1033 "Can't allocate the frag_list skb.\n");
1034 return NULL;
1035 }
1036
1037 shinfo = skb_shinfo(nskb);
1038 frags = shinfo->frags;
1039
1040 for (shinfo->nr_frags = 0; shinfo->nr_frags < frag_overflow;
1041 shinfo->nr_frags++, txp++, gop++) {
e9ce7cb6
WL
1042 index = pending_index(queue->pending_cons++);
1043 pending_idx = queue->pending_ring[index];
1044 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
e3377f36
ZK
1045 frag_set_pending_idx(&frags[shinfo->nr_frags],
1046 pending_idx);
1047 }
1048
1049 skb_shinfo(skb)->frag_list = nskb;
1050 }
2810e5b9 1051
f942dc25
IC
1052 return gop;
1053}
1054
e9ce7cb6 1055static inline void xenvif_grant_handle_set(struct xenvif_queue *queue,
f53c3fe8
ZK
1056 u16 pending_idx,
1057 grant_handle_t handle)
1058{
e9ce7cb6 1059 if (unlikely(queue->grant_tx_handle[pending_idx] !=
f53c3fe8 1060 NETBACK_INVALID_HANDLE)) {
e9ce7cb6 1061 netdev_err(queue->vif->dev,
f53c3fe8
ZK
1062 "Trying to overwrite active handle! pending_idx: %x\n",
1063 pending_idx);
1064 BUG();
1065 }
e9ce7cb6 1066 queue->grant_tx_handle[pending_idx] = handle;
f53c3fe8
ZK
1067}
1068
e9ce7cb6 1069static inline void xenvif_grant_handle_reset(struct xenvif_queue *queue,
f53c3fe8
ZK
1070 u16 pending_idx)
1071{
e9ce7cb6 1072 if (unlikely(queue->grant_tx_handle[pending_idx] ==
f53c3fe8 1073 NETBACK_INVALID_HANDLE)) {
e9ce7cb6 1074 netdev_err(queue->vif->dev,
f53c3fe8
ZK
1075 "Trying to unmap invalid handle! pending_idx: %x\n",
1076 pending_idx);
1077 BUG();
1078 }
e9ce7cb6 1079 queue->grant_tx_handle[pending_idx] = NETBACK_INVALID_HANDLE;
f53c3fe8
ZK
1080}
1081
e9ce7cb6 1082static int xenvif_tx_check_gop(struct xenvif_queue *queue,
7376419a 1083 struct sk_buff *skb,
bdab8275
ZK
1084 struct gnttab_map_grant_ref **gopp_map,
1085 struct gnttab_copy **gopp_copy)
f942dc25 1086{
9074ce24 1087 struct gnttab_map_grant_ref *gop_map = *gopp_map;
8f13dd96 1088 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
1a998d3e
ZK
1089 /* This always points to the shinfo of the skb being checked, which
1090 * could be either the first or the one on the frag_list
1091 */
f942dc25 1092 struct skb_shared_info *shinfo = skb_shinfo(skb);
1a998d3e
ZK
1093 /* If this is non-NULL, we are currently checking the frag_list skb, and
1094 * this points to the shinfo of the first one
1095 */
1096 struct skb_shared_info *first_shinfo = NULL;
f942dc25 1097 int nr_frags = shinfo->nr_frags;
1b860da0
ZK
1098 const bool sharedslot = nr_frags &&
1099 frag_get_pending_idx(&shinfo->frags[0]) == pending_idx;
bdab8275 1100 int i, err;
f942dc25
IC
1101
1102 /* Check status of header. */
bdab8275 1103 err = (*gopp_copy)->status;
bdab8275
ZK
1104 if (unlikely(err)) {
1105 if (net_ratelimit())
e9ce7cb6 1106 netdev_dbg(queue->vif->dev,
00aefceb 1107 "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
bdab8275
ZK
1108 (*gopp_copy)->status,
1109 pending_idx,
1110 (*gopp_copy)->source.u.ref);
1b860da0
ZK
1111 /* The first frag might still have this slot mapped */
1112 if (!sharedslot)
1113 xenvif_idx_release(queue, pending_idx,
1114 XEN_NETIF_RSP_ERROR);
bdab8275 1115 }
d8cfbfc4 1116 (*gopp_copy)++;
f942dc25 1117
e3377f36 1118check_frags:
bdab8275 1119 for (i = 0; i < nr_frags; i++, gop_map++) {
f942dc25 1120 int j, newerr;
f942dc25 1121
ea066ad1 1122 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
f942dc25
IC
1123
1124 /* Check error status: if okay then remember grant handle. */
bdab8275 1125 newerr = gop_map->status;
2810e5b9 1126
f942dc25 1127 if (likely(!newerr)) {
e9ce7cb6 1128 xenvif_grant_handle_set(queue,
9074ce24
ZK
1129 pending_idx,
1130 gop_map->handle);
f942dc25 1131 /* Had a previous error? Invalidate this fragment. */
1b860da0 1132 if (unlikely(err)) {
e9ce7cb6 1133 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
1134 /* If the mapping of the first frag was OK, but
1135 * the header's copy failed, and they are
1136 * sharing a slot, send an error
1137 */
1138 if (i == 0 && sharedslot)
1139 xenvif_idx_release(queue, pending_idx,
1140 XEN_NETIF_RSP_ERROR);
1141 else
1142 xenvif_idx_release(queue, pending_idx,
1143 XEN_NETIF_RSP_OKAY);
1144 }
f942dc25
IC
1145 continue;
1146 }
1147
1148 /* Error on this fragment: respond to client with an error. */
bdab8275 1149 if (net_ratelimit())
e9ce7cb6 1150 netdev_dbg(queue->vif->dev,
00aefceb 1151 "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
bdab8275
ZK
1152 i,
1153 gop_map->status,
1154 pending_idx,
1155 gop_map->ref);
1b860da0 1156
e9ce7cb6 1157 xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR);
f942dc25
IC
1158
1159 /* Not the first error? Preceding frags already invalidated. */
1160 if (err)
1161 continue;
1b860da0
ZK
1162
1163 /* First error: if the header haven't shared a slot with the
1164 * first frag, release it as well.
1165 */
1166 if (!sharedslot)
1167 xenvif_idx_release(queue,
1168 XENVIF_TX_CB(skb)->pending_idx,
1169 XEN_NETIF_RSP_OKAY);
1170
1171 /* Invalidate preceding fragments of this skb. */
bdab8275 1172 for (j = 0; j < i; j++) {
5ccb3ea7 1173 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
e9ce7cb6 1174 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
1175 xenvif_idx_release(queue, pending_idx,
1176 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1177 }
1178
1a998d3e
ZK
1179 /* And if we found the error while checking the frag_list, unmap
1180 * the first skb's frags
1181 */
1182 if (first_shinfo) {
1183 for (j = 0; j < first_shinfo->nr_frags; j++) {
1184 pending_idx = frag_get_pending_idx(&first_shinfo->frags[j]);
1185 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
1186 xenvif_idx_release(queue, pending_idx,
1187 XEN_NETIF_RSP_OKAY);
1a998d3e 1188 }
f942dc25
IC
1189 }
1190
1191 /* Remember the error: invalidate all subsequent fragments. */
1192 err = newerr;
1193 }
1194
1a998d3e
ZK
1195 if (skb_has_frag_list(skb) && !first_shinfo) {
1196 first_shinfo = skb_shinfo(skb);
1197 shinfo = skb_shinfo(skb_shinfo(skb)->frag_list);
e3377f36 1198 nr_frags = shinfo->nr_frags;
e3377f36
ZK
1199
1200 goto check_frags;
1201 }
1202
bdab8275 1203 *gopp_map = gop_map;
f942dc25
IC
1204 return err;
1205}
1206
e9ce7cb6 1207static void xenvif_fill_frags(struct xenvif_queue *queue, struct sk_buff *skb)
f942dc25
IC
1208{
1209 struct skb_shared_info *shinfo = skb_shinfo(skb);
1210 int nr_frags = shinfo->nr_frags;
1211 int i;
f53c3fe8
ZK
1212 u16 prev_pending_idx = INVALID_PENDING_IDX;
1213
f942dc25
IC
1214 for (i = 0; i < nr_frags; i++) {
1215 skb_frag_t *frag = shinfo->frags + i;
1216 struct xen_netif_tx_request *txp;
ea066ad1
IC
1217 struct page *page;
1218 u16 pending_idx;
f942dc25 1219
ea066ad1 1220 pending_idx = frag_get_pending_idx(frag);
f942dc25 1221
f53c3fe8 1222 /* If this is not the first frag, chain it to the previous*/
bdab8275 1223 if (prev_pending_idx == INVALID_PENDING_IDX)
f53c3fe8 1224 skb_shinfo(skb)->destructor_arg =
e9ce7cb6 1225 &callback_param(queue, pending_idx);
bdab8275 1226 else
e9ce7cb6
WL
1227 callback_param(queue, prev_pending_idx).ctx =
1228 &callback_param(queue, pending_idx);
f53c3fe8 1229
e9ce7cb6 1230 callback_param(queue, pending_idx).ctx = NULL;
f53c3fe8
ZK
1231 prev_pending_idx = pending_idx;
1232
e9ce7cb6
WL
1233 txp = &queue->pending_tx_info[pending_idx].req;
1234 page = virt_to_page(idx_to_kaddr(queue, pending_idx));
ea066ad1 1235 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
f942dc25
IC
1236 skb->len += txp->size;
1237 skb->data_len += txp->size;
1238 skb->truesize += txp->size;
1239
f53c3fe8 1240 /* Take an extra reference to offset network stack's put_page */
e9ce7cb6 1241 get_page(queue->mmap_pages[pending_idx]);
f942dc25 1242 }
f53c3fe8
ZK
1243 /* FIXME: __skb_fill_page_desc set this to true because page->pfmemalloc
1244 * overlaps with "index", and "mapping" is not set. I think mapping
1245 * should be set. If delivered to local stack, it would drop this
1246 * skb in sk_filter unless the socket has the right to use it.
1247 */
1248 skb->pfmemalloc = false;
f942dc25
IC
1249}
1250
e9ce7cb6 1251static int xenvif_get_extras(struct xenvif_queue *queue,
f942dc25
IC
1252 struct xen_netif_extra_info *extras,
1253 int work_to_do)
1254{
1255 struct xen_netif_extra_info extra;
e9ce7cb6 1256 RING_IDX cons = queue->tx.req_cons;
f942dc25
IC
1257
1258 do {
1259 if (unlikely(work_to_do-- <= 0)) {
e9ce7cb6
WL
1260 netdev_err(queue->vif->dev, "Missing extra info\n");
1261 xenvif_fatal_tx_err(queue->vif);
f942dc25
IC
1262 return -EBADR;
1263 }
1264
e9ce7cb6 1265 memcpy(&extra, RING_GET_REQUEST(&queue->tx, cons),
f942dc25
IC
1266 sizeof(extra));
1267 if (unlikely(!extra.type ||
1268 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
e9ce7cb6
WL
1269 queue->tx.req_cons = ++cons;
1270 netdev_err(queue->vif->dev,
f942dc25 1271 "Invalid extra type: %d\n", extra.type);
e9ce7cb6 1272 xenvif_fatal_tx_err(queue->vif);
f942dc25
IC
1273 return -EINVAL;
1274 }
1275
1276 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
e9ce7cb6 1277 queue->tx.req_cons = ++cons;
f942dc25
IC
1278 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1279
1280 return work_to_do;
1281}
1282
7376419a
WL
1283static int xenvif_set_skb_gso(struct xenvif *vif,
1284 struct sk_buff *skb,
1285 struct xen_netif_extra_info *gso)
f942dc25
IC
1286{
1287 if (!gso->u.gso.size) {
48856286 1288 netdev_err(vif->dev, "GSO size must not be zero.\n");
7376419a 1289 xenvif_fatal_tx_err(vif);
f942dc25
IC
1290 return -EINVAL;
1291 }
1292
a9468587
PD
1293 switch (gso->u.gso.type) {
1294 case XEN_NETIF_GSO_TYPE_TCPV4:
1295 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1296 break;
1297 case XEN_NETIF_GSO_TYPE_TCPV6:
1298 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1299 break;
1300 default:
48856286 1301 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
7376419a 1302 xenvif_fatal_tx_err(vif);
f942dc25
IC
1303 return -EINVAL;
1304 }
1305
1306 skb_shinfo(skb)->gso_size = gso->u.gso.size;
b89587a7 1307 /* gso_segs will be calculated later */
f942dc25
IC
1308
1309 return 0;
1310}
1311
e9ce7cb6 1312static int checksum_setup(struct xenvif_queue *queue, struct sk_buff *skb)
2eba61d5 1313{
2721637c 1314 bool recalculate_partial_csum = false;
2eba61d5
PD
1315
1316 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
1317 * peers can fail to set NETRXF_csum_blank when sending a GSO
1318 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1319 * recalculate the partial checksum.
1320 */
1321 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
e9ce7cb6 1322 queue->stats.rx_gso_checksum_fixup++;
2eba61d5 1323 skb->ip_summed = CHECKSUM_PARTIAL;
2721637c 1324 recalculate_partial_csum = true;
2eba61d5
PD
1325 }
1326
1327 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1328 if (skb->ip_summed != CHECKSUM_PARTIAL)
1329 return 0;
1330
2721637c 1331 return skb_checksum_setup(skb, recalculate_partial_csum);
2eba61d5
PD
1332}
1333
e9ce7cb6 1334static bool tx_credit_exceeded(struct xenvif_queue *queue, unsigned size)
f942dc25 1335{
059dfa6a 1336 u64 now = get_jiffies_64();
e9ce7cb6
WL
1337 u64 next_credit = queue->credit_window_start +
1338 msecs_to_jiffies(queue->credit_usec / 1000);
f942dc25
IC
1339
1340 /* Timer could already be pending in rare cases. */
e9ce7cb6 1341 if (timer_pending(&queue->credit_timeout))
f942dc25
IC
1342 return true;
1343
1344 /* Passed the point where we can replenish credit? */
059dfa6a 1345 if (time_after_eq64(now, next_credit)) {
e9ce7cb6
WL
1346 queue->credit_window_start = now;
1347 tx_add_credit(queue);
f942dc25
IC
1348 }
1349
1350 /* Still too big to send right now? Set a callback. */
e9ce7cb6
WL
1351 if (size > queue->remaining_credit) {
1352 queue->credit_timeout.data =
1353 (unsigned long)queue;
1354 queue->credit_timeout.function =
f942dc25 1355 tx_credit_callback;
e9ce7cb6 1356 mod_timer(&queue->credit_timeout,
f942dc25 1357 next_credit);
e9ce7cb6 1358 queue->credit_window_start = next_credit;
f942dc25
IC
1359
1360 return true;
1361 }
1362
1363 return false;
1364}
1365
e9ce7cb6 1366static void xenvif_tx_build_gops(struct xenvif_queue *queue,
bdab8275
ZK
1367 int budget,
1368 unsigned *copy_ops,
1369 unsigned *map_ops)
f942dc25 1370{
e9ce7cb6 1371 struct gnttab_map_grant_ref *gop = queue->tx_map_ops, *request_gop;
f942dc25
IC
1372 struct sk_buff *skb;
1373 int ret;
1374
e9ce7cb6 1375 while (skb_queue_len(&queue->tx_queue) < budget) {
f942dc25 1376 struct xen_netif_tx_request txreq;
37641494 1377 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
f942dc25
IC
1378 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
1379 u16 pending_idx;
1380 RING_IDX idx;
1381 int work_to_do;
1382 unsigned int data_len;
1383 pending_ring_idx_t index;
1384
e9ce7cb6 1385 if (queue->tx.sring->req_prod - queue->tx.req_cons >
48856286 1386 XEN_NETIF_TX_RING_SIZE) {
e9ce7cb6 1387 netdev_err(queue->vif->dev,
48856286
IC
1388 "Impossible number of requests. "
1389 "req_prod %d, req_cons %d, size %ld\n",
e9ce7cb6 1390 queue->tx.sring->req_prod, queue->tx.req_cons,
48856286 1391 XEN_NETIF_TX_RING_SIZE);
e9ce7cb6 1392 xenvif_fatal_tx_err(queue->vif);
e9d8b2c2 1393 break;
48856286
IC
1394 }
1395
e9ce7cb6 1396 work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
b3f980bd
WL
1397 if (!work_to_do)
1398 break;
f942dc25 1399
e9ce7cb6 1400 idx = queue->tx.req_cons;
f942dc25 1401 rmb(); /* Ensure that we see the request before we copy it. */
e9ce7cb6 1402 memcpy(&txreq, RING_GET_REQUEST(&queue->tx, idx), sizeof(txreq));
f942dc25
IC
1403
1404 /* Credit-based scheduling. */
e9ce7cb6
WL
1405 if (txreq.size > queue->remaining_credit &&
1406 tx_credit_exceeded(queue, txreq.size))
b3f980bd 1407 break;
f942dc25 1408
e9ce7cb6 1409 queue->remaining_credit -= txreq.size;
f942dc25
IC
1410
1411 work_to_do--;
e9ce7cb6 1412 queue->tx.req_cons = ++idx;
f942dc25
IC
1413
1414 memset(extras, 0, sizeof(extras));
1415 if (txreq.flags & XEN_NETTXF_extra_info) {
e9ce7cb6 1416 work_to_do = xenvif_get_extras(queue, extras,
7376419a 1417 work_to_do);
e9ce7cb6 1418 idx = queue->tx.req_cons;
48856286 1419 if (unlikely(work_to_do < 0))
b3f980bd 1420 break;
f942dc25
IC
1421 }
1422
e9ce7cb6 1423 ret = xenvif_count_requests(queue, &txreq, txfrags, work_to_do);
48856286 1424 if (unlikely(ret < 0))
b3f980bd 1425 break;
48856286 1426
f942dc25
IC
1427 idx += ret;
1428
1429 if (unlikely(txreq.size < ETH_HLEN)) {
e9ce7cb6 1430 netdev_dbg(queue->vif->dev,
f942dc25 1431 "Bad packet size: %d\n", txreq.size);
e9ce7cb6 1432 xenvif_tx_err(queue, &txreq, idx);
b3f980bd 1433 break;
f942dc25
IC
1434 }
1435
1436 /* No crossing a page as the payload mustn't fragment. */
1437 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
e9ce7cb6 1438 netdev_err(queue->vif->dev,
f942dc25
IC
1439 "txreq.offset: %x, size: %u, end: %lu\n",
1440 txreq.offset, txreq.size,
1441 (txreq.offset&~PAGE_MASK) + txreq.size);
e9ce7cb6 1442 xenvif_fatal_tx_err(queue->vif);
b3f980bd 1443 break;
f942dc25
IC
1444 }
1445
e9ce7cb6
WL
1446 index = pending_index(queue->pending_cons);
1447 pending_idx = queue->pending_ring[index];
f942dc25
IC
1448
1449 data_len = (txreq.size > PKT_PROT_LEN &&
37641494 1450 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
f942dc25
IC
1451 PKT_PROT_LEN : txreq.size;
1452
e3377f36 1453 skb = xenvif_alloc_skb(data_len);
f942dc25 1454 if (unlikely(skb == NULL)) {
e9ce7cb6 1455 netdev_dbg(queue->vif->dev,
f942dc25 1456 "Can't allocate a skb in start_xmit.\n");
e9ce7cb6 1457 xenvif_tx_err(queue, &txreq, idx);
f942dc25
IC
1458 break;
1459 }
1460
f942dc25
IC
1461 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1462 struct xen_netif_extra_info *gso;
1463 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1464
e9ce7cb6 1465 if (xenvif_set_skb_gso(queue->vif, skb, gso)) {
7376419a 1466 /* Failure in xenvif_set_skb_gso is fatal. */
f942dc25 1467 kfree_skb(skb);
b3f980bd 1468 break;
f942dc25
IC
1469 }
1470 }
1471
8f13dd96 1472 XENVIF_TX_CB(skb)->pending_idx = pending_idx;
f942dc25
IC
1473
1474 __skb_put(skb, data_len);
e9ce7cb6
WL
1475 queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref;
1476 queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid;
1477 queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset;
bdab8275 1478
e9ce7cb6 1479 queue->tx_copy_ops[*copy_ops].dest.u.gmfn =
bdab8275 1480 virt_to_mfn(skb->data);
e9ce7cb6
WL
1481 queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF;
1482 queue->tx_copy_ops[*copy_ops].dest.offset =
bdab8275
ZK
1483 offset_in_page(skb->data);
1484
e9ce7cb6
WL
1485 queue->tx_copy_ops[*copy_ops].len = data_len;
1486 queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref;
bdab8275
ZK
1487
1488 (*copy_ops)++;
f942dc25
IC
1489
1490 skb_shinfo(skb)->nr_frags = ret;
1491 if (data_len < txreq.size) {
1492 skb_shinfo(skb)->nr_frags++;
ea066ad1
IC
1493 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1494 pending_idx);
e9ce7cb6 1495 xenvif_tx_create_map_op(queue, pending_idx, &txreq, gop);
bdab8275 1496 gop++;
f942dc25 1497 } else {
ea066ad1
IC
1498 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1499 INVALID_PENDING_IDX);
e9ce7cb6 1500 memcpy(&queue->pending_tx_info[pending_idx].req, &txreq,
bdab8275 1501 sizeof(txreq));
f942dc25
IC
1502 }
1503
e9ce7cb6 1504 queue->pending_cons++;
f942dc25 1505
e9ce7cb6 1506 request_gop = xenvif_get_requests(queue, skb, txfrags, gop);
f942dc25
IC
1507 if (request_gop == NULL) {
1508 kfree_skb(skb);
e9ce7cb6 1509 xenvif_tx_err(queue, &txreq, idx);
b3f980bd 1510 break;
f942dc25
IC
1511 }
1512 gop = request_gop;
1513
e9ce7cb6 1514 __skb_queue_tail(&queue->tx_queue, skb);
1e0b6eac 1515
e9ce7cb6 1516 queue->tx.req_cons = idx;
f942dc25 1517
e9ce7cb6
WL
1518 if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) ||
1519 (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops)))
f942dc25
IC
1520 break;
1521 }
1522
e9ce7cb6 1523 (*map_ops) = gop - queue->tx_map_ops;
bdab8275 1524 return;
f942dc25
IC
1525}
1526
e3377f36
ZK
1527/* Consolidate skb with a frag_list into a brand new one with local pages on
1528 * frags. Returns 0 or -ENOMEM if can't allocate new pages.
1529 */
e9ce7cb6 1530static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *skb)
e3377f36
ZK
1531{
1532 unsigned int offset = skb_headlen(skb);
1533 skb_frag_t frags[MAX_SKB_FRAGS];
1534 int i;
1535 struct ubuf_info *uarg;
1536 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1537
e9ce7cb6
WL
1538 queue->stats.tx_zerocopy_sent += 2;
1539 queue->stats.tx_frag_overflow++;
e3377f36 1540
e9ce7cb6 1541 xenvif_fill_frags(queue, nskb);
e3377f36
ZK
1542 /* Subtract frags size, we will correct it later */
1543 skb->truesize -= skb->data_len;
1544 skb->len += nskb->len;
1545 skb->data_len += nskb->len;
1546
1547 /* create a brand new frags array and coalesce there */
1548 for (i = 0; offset < skb->len; i++) {
1549 struct page *page;
1550 unsigned int len;
1551
1552 BUG_ON(i >= MAX_SKB_FRAGS);
44cc8ed1 1553 page = alloc_page(GFP_ATOMIC);
e3377f36
ZK
1554 if (!page) {
1555 int j;
1556 skb->truesize += skb->data_len;
1557 for (j = 0; j < i; j++)
1558 put_page(frags[j].page.p);
1559 return -ENOMEM;
1560 }
1561
1562 if (offset + PAGE_SIZE < skb->len)
1563 len = PAGE_SIZE;
1564 else
1565 len = skb->len - offset;
1566 if (skb_copy_bits(skb, offset, page_address(page), len))
1567 BUG();
1568
1569 offset += len;
1570 frags[i].page.p = page;
1571 frags[i].page_offset = 0;
1572 skb_frag_size_set(&frags[i], len);
1573 }
1574 /* swap out with old one */
1575 memcpy(skb_shinfo(skb)->frags,
1576 frags,
1577 i * sizeof(skb_frag_t));
1578 skb_shinfo(skb)->nr_frags = i;
1579 skb->truesize += i * PAGE_SIZE;
1580
1581 /* remove traces of mapped pages and frag_list */
1582 skb_frag_list_init(skb);
1583 uarg = skb_shinfo(skb)->destructor_arg;
a64bd934
WL
1584 /* increase inflight counter to offset decrement in callback */
1585 atomic_inc(&queue->inflight_packets);
e3377f36
ZK
1586 uarg->callback(uarg, true);
1587 skb_shinfo(skb)->destructor_arg = NULL;
1588
a64bd934 1589 xenvif_skb_zerocopy_prepare(queue, nskb);
e3377f36
ZK
1590 kfree_skb(nskb);
1591
1592 return 0;
1593}
b3f980bd 1594
e9ce7cb6 1595static int xenvif_tx_submit(struct xenvif_queue *queue)
f942dc25 1596{
e9ce7cb6
WL
1597 struct gnttab_map_grant_ref *gop_map = queue->tx_map_ops;
1598 struct gnttab_copy *gop_copy = queue->tx_copy_ops;
f942dc25 1599 struct sk_buff *skb;
b3f980bd 1600 int work_done = 0;
f942dc25 1601
e9ce7cb6 1602 while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) {
f942dc25 1603 struct xen_netif_tx_request *txp;
f942dc25
IC
1604 u16 pending_idx;
1605 unsigned data_len;
1606
8f13dd96 1607 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
e9ce7cb6 1608 txp = &queue->pending_tx_info[pending_idx].req;
f942dc25
IC
1609
1610 /* Check the remap error code. */
e9ce7cb6 1611 if (unlikely(xenvif_tx_check_gop(queue, skb, &gop_map, &gop_copy))) {
b42cc6e4
ZK
1612 /* If there was an error, xenvif_tx_check_gop is
1613 * expected to release all the frags which were mapped,
1614 * so kfree_skb shouldn't do it again
1615 */
f942dc25 1616 skb_shinfo(skb)->nr_frags = 0;
b42cc6e4
ZK
1617 if (skb_has_frag_list(skb)) {
1618 struct sk_buff *nskb =
1619 skb_shinfo(skb)->frag_list;
1620 skb_shinfo(nskb)->nr_frags = 0;
1621 }
f942dc25
IC
1622 kfree_skb(skb);
1623 continue;
1624 }
1625
1626 data_len = skb->len;
e9ce7cb6 1627 callback_param(queue, pending_idx).ctx = NULL;
f942dc25
IC
1628 if (data_len < txp->size) {
1629 /* Append the packet payload as a fragment. */
1630 txp->offset += data_len;
1631 txp->size -= data_len;
1632 } else {
1633 /* Schedule a response immediately. */
e9ce7cb6 1634 xenvif_idx_release(queue, pending_idx,
bdab8275 1635 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1636 }
1637
1638 if (txp->flags & XEN_NETTXF_csum_blank)
1639 skb->ip_summed = CHECKSUM_PARTIAL;
1640 else if (txp->flags & XEN_NETTXF_data_validated)
1641 skb->ip_summed = CHECKSUM_UNNECESSARY;
1642
e9ce7cb6 1643 xenvif_fill_frags(queue, skb);
f942dc25 1644
e3377f36 1645 if (unlikely(skb_has_frag_list(skb))) {
e9ce7cb6 1646 if (xenvif_handle_frag_list(queue, skb)) {
e3377f36 1647 if (net_ratelimit())
e9ce7cb6 1648 netdev_err(queue->vif->dev,
e3377f36 1649 "Not enough memory to consolidate frag_list!\n");
a64bd934 1650 xenvif_skb_zerocopy_prepare(queue, skb);
e3377f36
ZK
1651 kfree_skb(skb);
1652 continue;
1653 }
1654 }
1655
2eba61d5 1656 if (skb_is_nonlinear(skb) && skb_headlen(skb) < PKT_PROT_LEN) {
f942dc25
IC
1657 int target = min_t(int, skb->len, PKT_PROT_LEN);
1658 __pskb_pull_tail(skb, target - skb_headlen(skb));
1659 }
1660
e9ce7cb6 1661 skb->dev = queue->vif->dev;
f942dc25 1662 skb->protocol = eth_type_trans(skb, skb->dev);
f9ca8f74 1663 skb_reset_network_header(skb);
f942dc25 1664
e9ce7cb6
WL
1665 if (checksum_setup(queue, skb)) {
1666 netdev_dbg(queue->vif->dev,
f942dc25 1667 "Can't setup checksum in net_tx_action\n");
f53c3fe8
ZK
1668 /* We have to set this flag to trigger the callback */
1669 if (skb_shinfo(skb)->destructor_arg)
a64bd934 1670 xenvif_skb_zerocopy_prepare(queue, skb);
f942dc25
IC
1671 kfree_skb(skb);
1672 continue;
1673 }
1674
40893fd0 1675 skb_probe_transport_header(skb, 0);
f9ca8f74 1676
b89587a7
PD
1677 /* If the packet is GSO then we will have just set up the
1678 * transport header offset in checksum_setup so it's now
1679 * straightforward to calculate gso_segs.
1680 */
1681 if (skb_is_gso(skb)) {
1682 int mss = skb_shinfo(skb)->gso_size;
1683 int hdrlen = skb_transport_header(skb) -
1684 skb_mac_header(skb) +
1685 tcp_hdrlen(skb);
1686
1687 skb_shinfo(skb)->gso_segs =
1688 DIV_ROUND_UP(skb->len - hdrlen, mss);
1689 }
1690
e9ce7cb6
WL
1691 queue->stats.rx_bytes += skb->len;
1692 queue->stats.rx_packets++;
f942dc25 1693
b3f980bd
WL
1694 work_done++;
1695
f53c3fe8
ZK
1696 /* Set this flag right before netif_receive_skb, otherwise
1697 * someone might think this packet already left netback, and
1698 * do a skb_copy_ubufs while we are still in control of the
1699 * skb. E.g. the __pskb_pull_tail earlier can do such thing.
1700 */
1bb332af 1701 if (skb_shinfo(skb)->destructor_arg) {
a64bd934 1702 xenvif_skb_zerocopy_prepare(queue, skb);
e9ce7cb6 1703 queue->stats.tx_zerocopy_sent++;
1bb332af 1704 }
f53c3fe8 1705
b3f980bd 1706 netif_receive_skb(skb);
f942dc25 1707 }
b3f980bd
WL
1708
1709 return work_done;
f942dc25
IC
1710}
1711
3e2234b3
ZK
1712void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success)
1713{
f53c3fe8
ZK
1714 unsigned long flags;
1715 pending_ring_idx_t index;
e9ce7cb6 1716 struct xenvif_queue *queue = ubuf_to_queue(ubuf);
f53c3fe8
ZK
1717
1718 /* This is the only place where we grab this lock, to protect callbacks
1719 * from each other.
1720 */
e9ce7cb6 1721 spin_lock_irqsave(&queue->callback_lock, flags);
f53c3fe8
ZK
1722 do {
1723 u16 pending_idx = ubuf->desc;
1724 ubuf = (struct ubuf_info *) ubuf->ctx;
e9ce7cb6 1725 BUG_ON(queue->dealloc_prod - queue->dealloc_cons >=
f53c3fe8 1726 MAX_PENDING_REQS);
e9ce7cb6
WL
1727 index = pending_index(queue->dealloc_prod);
1728 queue->dealloc_ring[index] = pending_idx;
f53c3fe8
ZK
1729 /* Sync with xenvif_tx_dealloc_action:
1730 * insert idx then incr producer.
1731 */
1732 smp_wmb();
e9ce7cb6 1733 queue->dealloc_prod++;
f53c3fe8 1734 } while (ubuf);
e9ce7cb6
WL
1735 wake_up(&queue->dealloc_wq);
1736 spin_unlock_irqrestore(&queue->callback_lock, flags);
f53c3fe8 1737
1bb332af 1738 if (likely(zerocopy_success))
e9ce7cb6 1739 queue->stats.tx_zerocopy_success++;
1bb332af 1740 else
e9ce7cb6 1741 queue->stats.tx_zerocopy_fail++;
a64bd934 1742 xenvif_skb_zerocopy_complete(queue);
f53c3fe8
ZK
1743}
1744
e9ce7cb6 1745static inline void xenvif_tx_dealloc_action(struct xenvif_queue *queue)
f53c3fe8
ZK
1746{
1747 struct gnttab_unmap_grant_ref *gop;
1748 pending_ring_idx_t dc, dp;
1749 u16 pending_idx, pending_idx_release[MAX_PENDING_REQS];
1750 unsigned int i = 0;
1751
e9ce7cb6
WL
1752 dc = queue->dealloc_cons;
1753 gop = queue->tx_unmap_ops;
f53c3fe8
ZK
1754
1755 /* Free up any grants we have finished using */
1756 do {
e9ce7cb6 1757 dp = queue->dealloc_prod;
f53c3fe8
ZK
1758
1759 /* Ensure we see all indices enqueued by all
1760 * xenvif_zerocopy_callback().
1761 */
1762 smp_rmb();
1763
1764 while (dc != dp) {
e9ce7cb6 1765 BUG_ON(gop - queue->tx_unmap_ops > MAX_PENDING_REQS);
f53c3fe8 1766 pending_idx =
e9ce7cb6 1767 queue->dealloc_ring[pending_index(dc++)];
f53c3fe8 1768
e9ce7cb6 1769 pending_idx_release[gop-queue->tx_unmap_ops] =
f53c3fe8 1770 pending_idx;
e9ce7cb6
WL
1771 queue->pages_to_unmap[gop-queue->tx_unmap_ops] =
1772 queue->mmap_pages[pending_idx];
f53c3fe8 1773 gnttab_set_unmap_op(gop,
e9ce7cb6 1774 idx_to_kaddr(queue, pending_idx),
f53c3fe8 1775 GNTMAP_host_map,
e9ce7cb6
WL
1776 queue->grant_tx_handle[pending_idx]);
1777 xenvif_grant_handle_reset(queue, pending_idx);
f53c3fe8
ZK
1778 ++gop;
1779 }
1780
e9ce7cb6 1781 } while (dp != queue->dealloc_prod);
f53c3fe8 1782
e9ce7cb6 1783 queue->dealloc_cons = dc;
f53c3fe8 1784
e9ce7cb6 1785 if (gop - queue->tx_unmap_ops > 0) {
f53c3fe8 1786 int ret;
e9ce7cb6 1787 ret = gnttab_unmap_refs(queue->tx_unmap_ops,
f53c3fe8 1788 NULL,
e9ce7cb6
WL
1789 queue->pages_to_unmap,
1790 gop - queue->tx_unmap_ops);
f53c3fe8 1791 if (ret) {
e9ce7cb6
WL
1792 netdev_err(queue->vif->dev, "Unmap fail: nr_ops %tx ret %d\n",
1793 gop - queue->tx_unmap_ops, ret);
1794 for (i = 0; i < gop - queue->tx_unmap_ops; ++i) {
f53c3fe8 1795 if (gop[i].status != GNTST_okay)
e9ce7cb6 1796 netdev_err(queue->vif->dev,
f53c3fe8
ZK
1797 " host_addr: %llx handle: %x status: %d\n",
1798 gop[i].host_addr,
1799 gop[i].handle,
1800 gop[i].status);
1801 }
1802 BUG();
1803 }
1804 }
1805
e9ce7cb6
WL
1806 for (i = 0; i < gop - queue->tx_unmap_ops; ++i)
1807 xenvif_idx_release(queue, pending_idx_release[i],
f53c3fe8 1808 XEN_NETIF_RSP_OKAY);
3e2234b3
ZK
1809}
1810
f53c3fe8 1811
f942dc25 1812/* Called after netfront has transmitted */
e9ce7cb6 1813int xenvif_tx_action(struct xenvif_queue *queue, int budget)
f942dc25 1814{
bdab8275 1815 unsigned nr_mops, nr_cops = 0;
f53c3fe8 1816 int work_done, ret;
f942dc25 1817
e9ce7cb6 1818 if (unlikely(!tx_work_todo(queue)))
b3f980bd
WL
1819 return 0;
1820
e9ce7cb6 1821 xenvif_tx_build_gops(queue, budget, &nr_cops, &nr_mops);
f942dc25 1822
bdab8275 1823 if (nr_cops == 0)
b3f980bd
WL
1824 return 0;
1825
e9ce7cb6 1826 gnttab_batch_copy(queue->tx_copy_ops, nr_cops);
bdab8275 1827 if (nr_mops != 0) {
e9ce7cb6 1828 ret = gnttab_map_refs(queue->tx_map_ops,
bdab8275 1829 NULL,
e9ce7cb6 1830 queue->pages_to_map,
bdab8275
ZK
1831 nr_mops);
1832 BUG_ON(ret);
1833 }
f942dc25 1834
e9ce7cb6 1835 work_done = xenvif_tx_submit(queue);
f942dc25 1836
b3f980bd 1837 return work_done;
f942dc25
IC
1838}
1839
e9ce7cb6 1840static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
7376419a 1841 u8 status)
f942dc25 1842{
f942dc25 1843 struct pending_tx_info *pending_tx_info;
f53c3fe8 1844 pending_ring_idx_t index;
f53c3fe8 1845 unsigned long flags;
2810e5b9 1846
e9ce7cb6
WL
1847 pending_tx_info = &queue->pending_tx_info[pending_idx];
1848 spin_lock_irqsave(&queue->response_lock, flags);
1849 make_tx_response(queue, &pending_tx_info->req, status);
1850 index = pending_index(queue->pending_prod);
1851 queue->pending_ring[index] = pending_idx;
62bad319
ZK
1852 /* TX shouldn't use the index before we give it back here */
1853 mb();
e9ce7cb6
WL
1854 queue->pending_prod++;
1855 spin_unlock_irqrestore(&queue->response_lock, flags);
f942dc25
IC
1856}
1857
2810e5b9 1858
e9ce7cb6 1859static void make_tx_response(struct xenvif_queue *queue,
f942dc25
IC
1860 struct xen_netif_tx_request *txp,
1861 s8 st)
1862{
e9ce7cb6 1863 RING_IDX i = queue->tx.rsp_prod_pvt;
f942dc25
IC
1864 struct xen_netif_tx_response *resp;
1865 int notify;
1866
e9ce7cb6 1867 resp = RING_GET_RESPONSE(&queue->tx, i);
f942dc25
IC
1868 resp->id = txp->id;
1869 resp->status = st;
1870
1871 if (txp->flags & XEN_NETTXF_extra_info)
e9ce7cb6 1872 RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL;
f942dc25 1873
e9ce7cb6
WL
1874 queue->tx.rsp_prod_pvt = ++i;
1875 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify);
f942dc25 1876 if (notify)
e9ce7cb6 1877 notify_remote_via_irq(queue->tx_irq);
f942dc25
IC
1878}
1879
e9ce7cb6 1880static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
f942dc25
IC
1881 u16 id,
1882 s8 st,
1883 u16 offset,
1884 u16 size,
1885 u16 flags)
1886{
e9ce7cb6 1887 RING_IDX i = queue->rx.rsp_prod_pvt;
f942dc25
IC
1888 struct xen_netif_rx_response *resp;
1889
e9ce7cb6 1890 resp = RING_GET_RESPONSE(&queue->rx, i);
f942dc25
IC
1891 resp->offset = offset;
1892 resp->flags = flags;
1893 resp->id = id;
1894 resp->status = (s16)size;
1895 if (st < 0)
1896 resp->status = (s16)st;
1897
e9ce7cb6 1898 queue->rx.rsp_prod_pvt = ++i;
f942dc25
IC
1899
1900 return resp;
1901}
1902
e9ce7cb6 1903void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx)
f53c3fe8
ZK
1904{
1905 int ret;
1906 struct gnttab_unmap_grant_ref tx_unmap_op;
1907
1908 gnttab_set_unmap_op(&tx_unmap_op,
e9ce7cb6 1909 idx_to_kaddr(queue, pending_idx),
f53c3fe8 1910 GNTMAP_host_map,
e9ce7cb6
WL
1911 queue->grant_tx_handle[pending_idx]);
1912 xenvif_grant_handle_reset(queue, pending_idx);
f53c3fe8
ZK
1913
1914 ret = gnttab_unmap_refs(&tx_unmap_op, NULL,
e9ce7cb6 1915 &queue->mmap_pages[pending_idx], 1);
7aceb47a 1916 if (ret) {
e9ce7cb6 1917 netdev_err(queue->vif->dev,
7aceb47a
ZK
1918 "Unmap fail: ret: %d pending_idx: %d host_addr: %llx handle: %x status: %d\n",
1919 ret,
1920 pending_idx,
1921 tx_unmap_op.host_addr,
1922 tx_unmap_op.handle,
1923 tx_unmap_op.status);
1924 BUG();
1925 }
f53c3fe8
ZK
1926}
1927
e9ce7cb6 1928static inline int tx_work_todo(struct xenvif_queue *queue)
f942dc25 1929{
e9ce7cb6 1930 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&queue->tx)))
f942dc25
IC
1931 return 1;
1932
1933 return 0;
1934}
1935
e9ce7cb6 1936static inline bool tx_dealloc_work_todo(struct xenvif_queue *queue)
f53c3fe8 1937{
e9ce7cb6 1938 return queue->dealloc_cons != queue->dealloc_prod;
f53c3fe8
ZK
1939}
1940
e9ce7cb6 1941void xenvif_unmap_frontend_rings(struct xenvif_queue *queue)
f942dc25 1942{
e9ce7cb6
WL
1943 if (queue->tx.sring)
1944 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1945 queue->tx.sring);
1946 if (queue->rx.sring)
1947 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1948 queue->rx.sring);
f942dc25
IC
1949}
1950
e9ce7cb6 1951int xenvif_map_frontend_rings(struct xenvif_queue *queue,
7376419a
WL
1952 grant_ref_t tx_ring_ref,
1953 grant_ref_t rx_ring_ref)
f942dc25 1954{
c9d63699 1955 void *addr;
f942dc25
IC
1956 struct xen_netif_tx_sring *txs;
1957 struct xen_netif_rx_sring *rxs;
1958
1959 int err = -ENOMEM;
1960
e9ce7cb6 1961 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
c9d63699
DV
1962 tx_ring_ref, &addr);
1963 if (err)
f942dc25
IC
1964 goto err;
1965
c9d63699 1966 txs = (struct xen_netif_tx_sring *)addr;
e9ce7cb6 1967 BACK_RING_INIT(&queue->tx, txs, PAGE_SIZE);
f942dc25 1968
e9ce7cb6 1969 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
c9d63699
DV
1970 rx_ring_ref, &addr);
1971 if (err)
f942dc25 1972 goto err;
f942dc25 1973
c9d63699 1974 rxs = (struct xen_netif_rx_sring *)addr;
e9ce7cb6 1975 BACK_RING_INIT(&queue->rx, rxs, PAGE_SIZE);
f942dc25
IC
1976
1977 return 0;
1978
1979err:
e9ce7cb6 1980 xenvif_unmap_frontend_rings(queue);
f942dc25
IC
1981 return err;
1982}
1983
ecf08d2d 1984static void xenvif_queue_carrier_off(struct xenvif_queue *queue)
ca2f09f2 1985{
ecf08d2d
DV
1986 struct xenvif *vif = queue->vif;
1987
1988 queue->stalled = true;
1989
1990 /* At least one queue has stalled? Disable the carrier. */
1991 spin_lock(&vif->lock);
1992 if (vif->stalled_queues++ == 0) {
1993 netdev_info(vif->dev, "Guest Rx stalled");
1994 netif_carrier_off(vif->dev);
1995 }
1996 spin_unlock(&vif->lock);
ca2f09f2
PD
1997}
1998
ecf08d2d 1999static void xenvif_queue_carrier_on(struct xenvif_queue *queue)
f34a4cf9 2000{
ecf08d2d 2001 struct xenvif *vif = queue->vif;
f34a4cf9 2002
ecf08d2d
DV
2003 queue->last_rx_time = jiffies; /* Reset Rx stall detection. */
2004 queue->stalled = false;
f34a4cf9 2005
ecf08d2d
DV
2006 /* All queues are ready? Enable the carrier. */
2007 spin_lock(&vif->lock);
2008 if (--vif->stalled_queues == 0) {
2009 netdev_info(vif->dev, "Guest Rx ready");
2010 netif_carrier_on(vif->dev);
2011 }
2012 spin_unlock(&vif->lock);
2013}
f34a4cf9 2014
ecf08d2d
DV
2015static bool xenvif_rx_queue_stalled(struct xenvif_queue *queue)
2016{
2017 RING_IDX prod, cons;
2018
2019 prod = queue->rx.sring->req_prod;
2020 cons = queue->rx.req_cons;
2021
2022 return !queue->stalled
2023 && prod - cons < XEN_NETBK_RX_SLOTS_MAX
2024 && time_after(jiffies,
2025 queue->last_rx_time + rx_stall_timeout_jiffies);
2026}
2027
2028static bool xenvif_rx_queue_ready(struct xenvif_queue *queue)
2029{
2030 RING_IDX prod, cons;
2031
2032 prod = queue->rx.sring->req_prod;
2033 cons = queue->rx.req_cons;
2034
2035 return queue->stalled
2036 && prod - cons >= XEN_NETBK_RX_SLOTS_MAX;
2037}
2038
f48da8b1 2039static bool xenvif_have_rx_work(struct xenvif_queue *queue)
ca2f09f2 2040{
f48da8b1
DV
2041 return (!skb_queue_empty(&queue->rx_queue)
2042 && xenvif_rx_ring_slots_available(queue, XEN_NETBK_RX_SLOTS_MAX))
ecf08d2d
DV
2043 || xenvif_rx_queue_stalled(queue)
2044 || xenvif_rx_queue_ready(queue)
f48da8b1
DV
2045 || kthread_should_stop()
2046 || queue->vif->disabled;
ca2f09f2
PD
2047}
2048
f48da8b1 2049static long xenvif_rx_queue_timeout(struct xenvif_queue *queue)
f34a4cf9 2050{
f48da8b1
DV
2051 struct sk_buff *skb;
2052 long timeout;
f34a4cf9 2053
f48da8b1
DV
2054 skb = skb_peek(&queue->rx_queue);
2055 if (!skb)
2056 return MAX_SCHEDULE_TIMEOUT;
f34a4cf9 2057
f48da8b1
DV
2058 timeout = XENVIF_RX_CB(skb)->expires - jiffies;
2059 return timeout < 0 ? 0 : timeout;
2060}
f34a4cf9 2061
f48da8b1
DV
2062/* Wait until the guest Rx thread has work.
2063 *
2064 * The timeout needs to be adjusted based on the current head of the
2065 * queue (and not just the head at the beginning). In particular, if
2066 * the queue is initially empty an infinite timeout is used and this
2067 * needs to be reduced when a skb is queued.
2068 *
2069 * This cannot be done with wait_event_timeout() because it only
2070 * calculates the timeout once.
2071 */
2072static void xenvif_wait_for_rx_work(struct xenvif_queue *queue)
2073{
2074 DEFINE_WAIT(wait);
2075
2076 if (xenvif_have_rx_work(queue))
2077 return;
2078
2079 for (;;) {
2080 long ret;
2081
2082 prepare_to_wait(&queue->wq, &wait, TASK_INTERRUPTIBLE);
2083 if (xenvif_have_rx_work(queue))
2084 break;
2085 ret = schedule_timeout(xenvif_rx_queue_timeout(queue));
2086 if (!ret)
2087 break;
f34a4cf9 2088 }
f48da8b1 2089 finish_wait(&queue->wq, &wait);
f34a4cf9
ZK
2090}
2091
121fa4b7 2092int xenvif_kthread_guest_rx(void *data)
b3f980bd 2093{
e9ce7cb6 2094 struct xenvif_queue *queue = data;
f48da8b1 2095 struct xenvif *vif = queue->vif;
b3f980bd 2096
f48da8b1
DV
2097 for (;;) {
2098 xenvif_wait_for_rx_work(queue);
e9d8b2c2 2099
f34a4cf9
ZK
2100 if (kthread_should_stop())
2101 break;
2102
e9d8b2c2
WL
2103 /* This frontend is found to be rogue, disable it in
2104 * kthread context. Currently this is only set when
2105 * netback finds out frontend sends malformed packet,
2106 * but we cannot disable the interface in softirq
e9ce7cb6
WL
2107 * context so we defer it here, if this thread is
2108 * associated with queue 0.
e9d8b2c2 2109 */
f48da8b1
DV
2110 if (unlikely(vif->disabled && queue->id == 0)) {
2111 xenvif_carrier_off(vif);
2112 xenvif_rx_queue_purge(queue);
2113 continue;
09350788
ZK
2114 }
2115
e9ce7cb6
WL
2116 if (!skb_queue_empty(&queue->rx_queue))
2117 xenvif_rx_action(queue);
b3f980bd 2118
ecf08d2d
DV
2119 /* If the guest hasn't provided any Rx slots for a
2120 * while it's probably not responsive, drop the
2121 * carrier so packets are dropped earlier.
2122 */
2123 if (xenvif_rx_queue_stalled(queue))
2124 xenvif_queue_carrier_off(queue);
2125 else if (xenvif_rx_queue_ready(queue))
2126 xenvif_queue_carrier_on(queue);
2127
f48da8b1
DV
2128 /* Queued packets may have foreign pages from other
2129 * domains. These cannot be queued indefinitely as
2130 * this would starve guests of grant refs and transmit
2131 * slots.
2132 */
2133 xenvif_rx_queue_drop_expired(queue);
2134
2135 xenvif_rx_queue_maybe_wake(queue);
2136
b3f980bd
WL
2137 cond_resched();
2138 }
2139
ca2f09f2 2140 /* Bin any remaining skbs */
f48da8b1 2141 xenvif_rx_queue_purge(queue);
ca2f09f2 2142
b3f980bd
WL
2143 return 0;
2144}
2145
a64bd934
WL
2146static bool xenvif_dealloc_kthread_should_stop(struct xenvif_queue *queue)
2147{
2148 /* Dealloc thread must remain running until all inflight
2149 * packets complete.
2150 */
2151 return kthread_should_stop() &&
2152 !atomic_read(&queue->inflight_packets);
2153}
2154
f53c3fe8
ZK
2155int xenvif_dealloc_kthread(void *data)
2156{
e9ce7cb6 2157 struct xenvif_queue *queue = data;
f53c3fe8 2158
a64bd934 2159 for (;;) {
e9ce7cb6
WL
2160 wait_event_interruptible(queue->dealloc_wq,
2161 tx_dealloc_work_todo(queue) ||
a64bd934
WL
2162 xenvif_dealloc_kthread_should_stop(queue));
2163 if (xenvif_dealloc_kthread_should_stop(queue))
f53c3fe8
ZK
2164 break;
2165
e9ce7cb6 2166 xenvif_tx_dealloc_action(queue);
f53c3fe8
ZK
2167 cond_resched();
2168 }
2169
2170 /* Unmap anything remaining*/
e9ce7cb6
WL
2171 if (tx_dealloc_work_todo(queue))
2172 xenvif_tx_dealloc_action(queue);
f53c3fe8
ZK
2173
2174 return 0;
2175}
2176
f942dc25
IC
2177static int __init netback_init(void)
2178{
f942dc25 2179 int rc = 0;
f942dc25 2180
2a14b244 2181 if (!xen_domain())
f942dc25
IC
2182 return -ENODEV;
2183
8d3d53b3
AB
2184 /* Allow as many queues as there are CPUs, by default */
2185 xenvif_max_queues = num_online_cpus();
2186
37641494 2187 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
383eda32
JP
2188 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
2189 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
37641494 2190 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
2810e5b9
WL
2191 }
2192
f942dc25
IC
2193 rc = xenvif_xenbus_init();
2194 if (rc)
2195 goto failed_init;
2196
09350788 2197 rx_drain_timeout_jiffies = msecs_to_jiffies(rx_drain_timeout_msecs);
ecf08d2d 2198 rx_stall_timeout_jiffies = msecs_to_jiffies(rx_stall_timeout_msecs);
09350788 2199
f51de243
ZK
2200#ifdef CONFIG_DEBUG_FS
2201 xen_netback_dbg_root = debugfs_create_dir("xen-netback", NULL);
2202 if (IS_ERR_OR_NULL(xen_netback_dbg_root))
2203 pr_warn("Init of debugfs returned %ld!\n",
2204 PTR_ERR(xen_netback_dbg_root));
2205#endif /* CONFIG_DEBUG_FS */
2206
f942dc25
IC
2207 return 0;
2208
2209failed_init:
f942dc25 2210 return rc;
f942dc25
IC
2211}
2212
2213module_init(netback_init);
2214
b103f358
WL
2215static void __exit netback_fini(void)
2216{
f51de243
ZK
2217#ifdef CONFIG_DEBUG_FS
2218 if (!IS_ERR_OR_NULL(xen_netback_dbg_root))
2219 debugfs_remove_recursive(xen_netback_dbg_root);
2220#endif /* CONFIG_DEBUG_FS */
b103f358 2221 xenvif_xenbus_fini();
b103f358
WL
2222}
2223module_exit(netback_fini);
2224
f942dc25 2225MODULE_LICENSE("Dual BSD/GPL");
f984cec6 2226MODULE_ALIAS("xen-backend:vif");